| /PHP_5_5/TSRM/ |
| H A D | tsrm_strtok_r.c | 19 char *token; local 32 token = s; 43 return token; 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/ext/tokenizer/ |
| H A D | tokenizer.php | 18 $token = $tokens[$i]; variable 19 if (is_array($token)) { 20 if ($state == 1 && $token[0] == T_STRING) { 21 $token[1] = preg_replace('!([a-z])([A-Z])!e', '"$1_".strtolower("$2")', $token[1]); 23 } else if ($token[0] == T_FUNCTION) { 26 $chunk = $token[1]; 28 $chunk = $token;
|
| H A D | tokenizer.c | 46 ZEND_ARG_INFO(0, token) 106 zval token; local 115 ZVAL_NULL(&token); 116 while ((token_type = lex_scan(&token TSRMLS_CC))) { 148 if (destroy && Z_TYPE(token) != IS_NULL) { 149 zval_dtor(&token); 151 ZVAL_NULL(&token);
|
| /PHP_5_5/ext/intl/locale/ |
| H A D | locale_methods.c | 141 * returns the position of next token for lookup 142 * or -1 if no token 143 * strtokr equivalent search for token in reverse direction 154 /* a singleton; so send the position of token before the singleton */ 1023 char* token = NULL; local 1041 token = php_strtok_r( key_value , DELIMITER ,&last_ptr); 1047 add_assoc_string( hash_arr, cur_key_name , token ,TRUE ); 1049 while( (token = php_strtok_r(NULL , DELIMITER , &last_ptr)) && (strlen(token)>1) ){ 1051 add_assoc_string( hash_arr, cur_key_name , token , TRU 1132 char* token = NULL; local 1229 char* token = 0; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_highlight.c | 87 zval token; local 95 token.type = 0; 96 while ((token_type=lex_scan(&token TSRMLS_CC))) { 119 token.type = 0; 123 if (token.type == 0) { 143 if (token.type == IS_STRING) { 153 efree(token.value.str.val); 157 token.type = 0; 169 zval token; local 173 token [all...] |
| H A D | zend_indent.c | 52 zval token; local 63 token.type = 0; 64 while ((token_type=lex_scan(&token TSRMLS_CC))) { 70 token.type = 0; 82 if (token.type==0) { 135 if (token.type == IS_STRING) { 142 efree(token.value.str.val); 146 token.type = 0;
|
| /PHP_5_5/ext/mbstring/ |
| H A D | mbstring.c | 3821 if (token.a > 0) { \ 3822 smart_str_appendc(&token, ch); \ 3824 token.len++; \ 3855 smart_str token = { 0, 0, 0 }; local 3880 fld_name = token; 3909 SEPARATE_SMART_STR(&token); 3929 token.c = (char *)ps; 3930 token.len = 0; 3931 token.a = 0; 3937 token [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | php_fopen_wrapper.c | 135 char *p, *token; local 138 p = php_strtok_r(filterlist, "|", &token); 155 p = php_strtok_r(NULL, "|", &token); 165 char *p, *token, *pathdup; local 329 p = php_strtok_r(pathdup + 1, "/", &token); 338 p = php_strtok_r(NULL, "/", &token);
|
| H A D | string.c | 1260 /* {{{ proto string strtok([string str,] string token) 1268 char *token; local 1300 token = tok; 1301 token_end = token + tok_len; 1303 while (token < token_end) { 1304 STRTOK_TABLE(token++) = 1; 1336 token = tok; 1338 while (token < token_end) { 1339 STRTOK_TABLE(token++) = 0; 5484 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only a single %%i or %%n token ca [all...] |
| /PHP_5_5/ext/phar/ |
| H A D | phar.c | 1471 * Or scan a phar file for the required __HALT_COMPILER(); ?> token and verify 1562 * Scan an open fp for the required __HALT_COMPILER(); ?> token and verify 1568 const char token[] = "__HALT_COMPILER();"; local 1574 char buffer[1024 + sizeof(token)]; /* a 1024 byte window + the size of the halt_compiler token (moving window) */ 1575 const long readsize = sizeof(buffer) - sizeof(token); 1576 const long tokenlen = sizeof(token) - 1; 1590 memset(buffer, 32, sizeof(token)); 1716 if (got > 0 && (pos = phar_strnstr(buffer, got + sizeof(token), token, sizeo 2111 char *token; local [all...] |
| /PHP_5_5/sapi/fpm/fpm/ |
| H A D | fpm_log.c | 102 int token, test; local 141 token = 0; 158 if (!token && *s == '%') { 159 token = 1; 165 if (token) { 166 token = 0; 407 token = 1; 436 zlog(ZLOG_WARNING, "Invalid token in the access.format (%%%c)", *s);
|
| H A D | fpm_conf.c | 168 * Expands the '$pool' token in a dynamically allocated string 171 char *token; local 177 while (*value && (token = strstr(*value, "$pool"))) { 179 char *p2 = token + strlen("$pool"); 187 token[0] = '\0'; 189 /* Build a brand new string with the expanded token */
|
| /PHP_5_5/ext/session/ |
| H A D | session.c | 292 zval **token; local 299 zend_hash_find(Z_ARRVAL_PP(array), "REMOTE_ADDR", sizeof("REMOTE_ADDR"), (void **) &token) == SUCCESS 301 remote_addr = Z_STRVAL_PP(token);
|
| /PHP_5_5/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 2270 ** complete if it ends with a semicolon token and is not a prefix of a 2273 ** independent tokens (they are part of the token in which they are 8216 void *token; /* id that may be used to recursive triggers */ member in struct:SubProgram 10115 ** Each token coming out of the lexer is an instance of 10123 const char *z; /* Text of the token. Not NULL-terminated! */ 10124 unsigned int n; /* Number of characters in this token */ 10191 ** Expr.op is the opcode. The integer parser token codes are reused 10198 ** or TK_STRING), then Expr.token contains the text of the SQL literal. If 10199 ** the expression is a variable (TK_VARIABLE), then Expr.token contains the 10201 ** then Expr.token contain 12605 void *token; /* Copy of SubProgram.token */ member in struct:VdbeFrame 75026 int token; local 75097 int token; /* Type of token */ local 75146 int token; local 107655 u8 token; /* Value of the next token */ local [all...] |
| /PHP_5_5/win32/ |
| H A D | sendmail.c | 387 char *tempMailTo, *token, *pos1, *pos2; local 437 token = strtok(tempMailTo, ","); 438 while (token != NULL) 440 SMTP_SKIP_SPACE(token); 441 FormatEmailAddress(Buffer, token, "RCPT TO:<%s>\r\n"); 451 token = strtok(NULL, ","); 458 token = strtok(tempMailTo, ","); 459 while (token != NULL) 461 SMTP_SKIP_SPACE(token); 462 FormatEmailAddress(Buffer, token, "RCP [all...] |