Home
last modified time | relevance | path

Searched refs:token (Results 76 – 91 of 91) sorted by relevance

1234

/PHP-8.0/ext/tokenizer/tests/
H A Dtoken_get_all_variation6.phpt8 * Passing 'source' argument with different bitwise operators to test them for token
H A Dtoken_get_all_variation2.phpt8 * Passing 'source' argument with different arithmetic operators to test them for token
H A Dtoken_get_all_variation12.phpt19 // parsing __FILE__ token
H A Dtoken_get_all_variation15.phpt8 …* Testing token_get_all() with heredoc 'source' string with all different types of token and hered…
H A Dtoken_get_all_variation10.phpt8 * Using different types of constants in 'source' string to check them for token
H A Dtoken_get_all_variation8.phpt8 * Passing 'source' argument with different type casting operators to test them for token
/PHP-8.0/Zend/
H A Dzend_globals.h316 zend_php_scanner_event event, int token, int line,
/PHP-8.0/ext/opcache/jit/dynasm/
H A Dminilua.c2238 int token;
2692 if(token<257){
2693 return(iscntrl(token))?luaO_pushfstring(ls->L,"char(%d)",token):
2700 switch(token){
2714 if(token)
3668 if(ls->t.token==TK_NAME||ls->t.token==TK_STRING){
3685 if(ls->t.token==c){
3692 if(ls->t.token!=c)
4015 switch(ls->t.token){
4302 switch(token){
[all …]
/PHP-8.0/ext/mbstring/
H A Dmbstring.c3290 char *token = NULL; in _php_mbstr_parse_mail_headers() local
3317 if(token && token_pos > 0) { in _php_mbstr_parse_mail_headers()
3318 fld_name = zend_string_init(token, token_pos, 0); in _php_mbstr_parse_mail_headers()
3366 token = (char*)ps; in _php_mbstr_parse_mail_headers()
3373 token = (char*)ps; in _php_mbstr_parse_mail_headers()
3383 if(token && token_pos > 0) { in _php_mbstr_parse_mail_headers()
3384 fld_val = zend_string_init(token, token_pos, 0); in _php_mbstr_parse_mail_headers()
3400 token = (char*)ps; in _php_mbstr_parse_mail_headers()
3426 token = ""; in _php_mbstr_parse_mail_headers()
3432 if(token && token_pos > 0) { in _php_mbstr_parse_mail_headers()
[all …]
/PHP-8.0/ext/phar/
H A Dphar.c1634 const char token[] = "__HALT_COMPILER();"; in phar_open_from_fp() local
1641 …char buffer[1024 + sizeof(token)]; /* a 1024 byte window + the size of the halt_compiler token (mo… in phar_open_from_fp()
1642 const zend_long readsize = sizeof(buffer) - sizeof(token); in phar_open_from_fp()
1643 const zend_long tokenlen = sizeof(token) - 1; in phar_open_from_fp()
1657 memset(buffer, 32, sizeof(token)); in phar_open_from_fp()
1791 …if (got > 0 && (pos = phar_strnstr(buffer, got + sizeof(token), token, sizeof(token)-1)) != NULL) { in phar_open_from_fp()
/PHP-8.0/sapi/fpm/fpm/
H A Dfpm_conf.c178 char *token; in fpm_conf_expand_pool_name() local
184 while (*value && (token = strstr(*value, "$pool"))) { in fpm_conf_expand_pool_name()
186 char *p2 = token + strlen("$pool"); in fpm_conf_expand_pool_name()
194 token[0] = '\0'; in fpm_conf_expand_pool_name()
/PHP-8.0/ext/standard/
H A Dstring.c1259 char *token; in PHP_FUNCTION() local
1295 token = ZSTR_VAL(tok); in PHP_FUNCTION()
1296 token_end = token + ZSTR_LEN(tok); in PHP_FUNCTION()
1298 while (token < token_end) { in PHP_FUNCTION()
1299 STRTOK_TABLE(token++) = 1; in PHP_FUNCTION()
1330 token = ZSTR_VAL(tok); in PHP_FUNCTION()
1331 while (token < token_end) { in PHP_FUNCTION()
1332 STRTOK_TABLE(token++) = 0; in PHP_FUNCTION()
H A Dbasic_functions.stub.php569 function strtok(string $string, ?string $token = null): string|false {} argument
H A Dbasic_functions_arginfo.h863 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, token, IS_STRING, 1, "null")
/PHP-8.0/
H A DCODING_STANDARDS.md27 * Low-level parser routines, that are tightly integrated with the token
H A DUPGRADING658 instead be part of a following T_WHITESPACE token. It should be noted that

Completed in 104 milliseconds

1234