Home
last modified time | relevance | path

Searched refs:token (Results 1 – 25 of 47) sorted by path

12

/PHP-5.5/
H A DCODING_STANDARDS29 - Low-level parser routines, that are tightly integrated with the token
H A DNEWS7690 - Fixed bug #40417 (Allow multiple instances of the same named PDO token in
/PHP-5.5/TSRM/
H A Dtsrm_strtok_r.c19 char *token; in tsrm_strtok_r() local
32 token = s; in tsrm_strtok_r()
43 return token; in tsrm_strtok_r()
52 char *token;
54 token = tsrm_strtok_r(foo, "/\\", &last);
55 while (token) {
56 printf ("Token = '%s'\n", token);
57 token = tsrm_strtok_r(NULL, "/\\", &last);
/PHP-5.5/Zend/
H A Dzend_highlight.c87 zval token; in zend_highlight() local
95 token.type = 0; in zend_highlight()
119 token.type = 0; in zend_highlight()
123 if (token.type == 0) { in zend_highlight()
143 if (token.type == IS_STRING) { in zend_highlight()
157 token.type = 0; in zend_highlight()
169 zval token; in zend_strip() local
173 token.type = 0; in zend_strip()
184 token.type = 0; in zend_strip()
195 token.type = 0; in zend_strip()
[all …]
H A Dzend_indent.c52 zval token; in zend_indent() local
63 token.type = 0; in zend_indent()
64 while ((token_type=lex_scan(&token TSRMLS_CC))) { in zend_indent()
70 token.type = 0; in zend_indent()
82 if (token.type==0) { in zend_indent()
135 if (token.type == IS_STRING) { in zend_indent()
142 efree(token.value.str.val); in zend_indent()
146 token.type = 0; in zend_indent()
H A Dzend_ini_parser.y258 %token TC_SECTION
259 %token TC_RAW
260 %token TC_CONSTANT
261 %token TC_NUMBER
262 %token TC_STRING
264 %token TC_LABEL
265 %token TC_OFFSET
267 %token TC_VARNAME
269 %token BOOL_TRUE
270 %token BOOL_FALSE
[all …]
H A Dzend_language_parser.y57 %token END 0 "end of file"
104 %token T_SL "<< (T_SL)"
105 %token T_SR ">> (T_SR)"
112 %token T_INC "++ (T_INC)"
113 %token T_DEC "-- (T_DEC)"
126 %token T_IF "if (T_IF)"
139 %token T_INLINE_HTML
140 %token T_CHARACTER
141 %token T_BAD_CHARACTER
145 %token T_DO "do (T_DO)"
[all …]
/PHP-5.5/ext/date/tests/
H A D005.phpt29 Warning: idate(): Unrecognized date format token. in %s on line %d
35 Warning: idate(): Unrecognized date format token. in %s on line %d
39 Warning: idate(): Unrecognized date format token. in %s on line %d
42 Warning: idate(): Unrecognized date format token. in %s on line %d
H A Didate_variation1.phpt104 Warning: idate(): Unrecognized date format token. in %s on line %d
107 Warning: idate(): Unrecognized date format token. in %s on line %d
112 Warning: idate(): Unrecognized date format token. in %s on line %d
115 Warning: idate(): Unrecognized date format token. in %s on line %d
224 Warning: idate(): Unrecognized date format token. in %s on line %d
227 Warning: idate(): Unrecognized date format token. in %s on line %d
240 Warning: idate(): Unrecognized date format token. in %s on line %d
243 Warning: idate(): Unrecognized date format token. in %s on line %d
/PHP-5.5/ext/intl/locale/
H A Dlocale_methods.c1034 char* token = NULL; in add_array_entry() local
1060 while( (token = php_strtok_r(NULL , DELIMITER , &last_ptr)) && (strlen(token)>1) ){ in add_array_entry()
1143 char* token = NULL; in PHP_FUNCTION() local
1175 add_next_index_stringl( return_value, token , strlen(token) ,TRUE ); in PHP_FUNCTION()
1177 while( (token = php_strtok_r(NULL , DELIMITER, &saved_ptr)) && (strlen(token)>1) ){ in PHP_FUNCTION()
1178 add_next_index_stringl( return_value, token , strlen(token) ,TRUE ); in PHP_FUNCTION()
1238 char* token = 0; in PHP_FUNCTION() local
1311 if( token && (token==cur_lang_tag) ){ in PHP_FUNCTION()
1313 chrcheck = token + (strlen(cur_loc_range)); in PHP_FUNCTION()
1367 if( token && (token==cur_lang_tag) ){ in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/mbstring/
H A Dmbstring.c3821 if (token.a > 0) { \
3824 token.len++; \
3930 token.len = 0; in _php_mbstr_parse_mail_headers()
3931 token.a = 0; in _php_mbstr_parse_mail_headers()
3938 token.len = 0; in _php_mbstr_parse_mail_headers()
3939 token.a = 0; in _php_mbstr_parse_mail_headers()
3968 token.a = 0; in _php_mbstr_parse_mail_headers()
3993 token.c = ""; in _php_mbstr_parse_mail_headers()
3994 token.len = 0; in _php_mbstr_parse_mail_headers()
3995 token.a = 0; in _php_mbstr_parse_mail_headers()
[all …]
/PHP-5.5/ext/pgsql/
H A Dpgsql.c6138 const char *token; local
6143 token = php_strtok_r(table_copy, ".", &tmp);
6144 if (token == NULL) {
6145 token = table;
6147 len = strlen(token);
6148 if (_php_pgsql_detect_identifier_escape(token, len) == SUCCESS) {
6149 smart_str_appendl(querystr, token, len);
6151 escaped = PGSQLescapeIdentifier(pg_link, token, len);
/PHP-5.5/ext/phar/
H A Dmakestub.php6 foreach (token_get_all($s) as $token) {
7 if (is_array($token)) {
8 if ($token[0] == T_COMMENT) {
9 $token[1] = '';
11 if ($token[0] == T_WHITESPACE) {
12 $n = str_repeat("\n", substr_count($token[1], "\n"));
13 $token[1] = strlen($n) ? $n : ' ';
15 $news .= $token[1];
17 $news .= $token;
H A Dphar.c1564 const char token[] = "__HALT_COMPILER();"; local
1570 …char buffer[1024 + sizeof(token)]; /* a 1024 byte window + the size of the halt_compiler token (mo…
1571 const long readsize = sizeof(buffer) - sizeof(token);
1572 const long tokenlen = sizeof(token) - 1;
1586 memset(buffer, 32, sizeof(token));
1712 …if (got > 0 && (pos = phar_strnstr(buffer, got + sizeof(token), token, sizeof(token)-1)) != NULL) {
2107 char *token; local
2121 token = s;
2134 return token;
/PHP-5.5/ext/session/
H A Dsession.c300 zval **token; in php_session_create_id() local
307 …zend_hash_find(Z_ARRVAL_PP(array), "REMOTE_ADDR", sizeof("REMOTE_ADDR"), (void **) &token) == SUCC… in php_session_create_id()
308 Z_TYPE_PP(token) == IS_STRING in php_session_create_id()
310 remote_addr = Z_STRVAL_PP(token); in php_session_create_id()
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug50762.phpt9 public function authToken($token){
38 public function __construct($token){
39 $this->authToken=$token;
/PHP-5.5/ext/soap/tests/schema/
H A Dschema009.phpt10 <list itemType="token"/>
H A Dschema010.phpt10 <list itemType="token"/>
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c76262 t = pProgram->token;
76306 pFrame->token = pProgram->token;
87272 int token;
87305 } while( token!=TK_LP && token!=TK_USING );
87394 int token;
87440 if( token==TK_DOT || token==TK_ON ){
87443 } while( dist!=2 || (token!=TK_WHEN && token!=TK_FOR && token!=TK_BEGIN) );
127758 token = tkSEMI;
127766 token = tkWS;
127778 token = tkWS;
[all …]
/PHP-5.5/ext/standard/
H A Dbasic_functions.c2221 ZEND_ARG_INFO(0, token)
H A Dphp_fopen_wrapper.c135 char *p, *token; in php_stream_apply_filter_list() local
138 p = php_strtok_r(filterlist, "|", &token); in php_stream_apply_filter_list()
155 p = php_strtok_r(NULL, "|", &token); in php_stream_apply_filter_list()
165 char *p, *token, *pathdup; in php_stream_url_wrap_php() local
329 p = php_strtok_r(pathdup + 1, "/", &token); in php_stream_url_wrap_php()
338 p = php_strtok_r(NULL, "/", &token); in php_stream_url_wrap_php()
H A Dstring.c1282 char *token; in PHP_FUNCTION() local
1314 token = tok; in PHP_FUNCTION()
1315 token_end = token + tok_len; in PHP_FUNCTION()
1317 while (token < token_end) { in PHP_FUNCTION()
1318 STRTOK_TABLE(token++) = 1; in PHP_FUNCTION()
1350 token = tok; in PHP_FUNCTION()
1352 while (token < token_end) { in PHP_FUNCTION()
1353 STRTOK_TABLE(token++) = 0; in PHP_FUNCTION()
/PHP-5.5/ext/standard/tests/serialize/
H A Dbug65481.phpt33 $token = new Token;
34 $token = serialize($token);
/PHP-5.5/ext/standard/tests/strings/
H A Dmoneyformat.phpt22 Warning: money_format(): Only a single %ci or %cn token can be used in %s on line %d
H A Dstrtok_basic.phpt5 /* Prototype : string strtok ( str $str, str $token )
6 …ring (str) into smaller strings (tokens), with each token being delimited by any character from to…
18 $token = ' ().';
21 echo "\nThe token string is:\n\"$token\"\n";
25 var_dump( strtok($str, $token) );
29 var_dump( strtok($token) );
40 The token string is:

Completed in 407 milliseconds

12