Home
last modified time | relevance | path

Searched refs:token (Results 151 – 175 of 182) sorted by relevance

12345678

/php-src/ext/dom/lexbor/lexbor/html/
H A Dtokenizer.h31 lxb_html_token_t *token, void *ctx);
49 lxb_html_token_t *token; member
/php-src/ext/tokenizer/tests/
H A Dtoken_get_all_variation7.phpt8 * Passing 'source' argument with different increment/decrement operators to test them for token
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_variation8.phpt8 * Passing 'source' argument with different type casting operators to test them for token
H A Dtoken_get_all_variation10.phpt8 * Using different types of constants in 'source' string to check them for token
/php-src/ext/dom/tests/modern/html/parser/
H A DHTMLDocument_fromFile_with_working_stream_wrapper.phpt55 Warning: DOM\HTMLDocument::createFromFile(): tree error unexpected-token-in-initial-mode in euw://<…
/php-src/ext/standard/tests/strings/
H A Dstrtok_variation5.phpt6 * Testing strtok() : with miscellaneous combinations of string and token
40 // when supplied with different string and token values
/php-src/.github/workflows/
H A Dnightly.yml41 token: ${{ secrets.ACTION_MONITORING_SLACK }}
146 token: ${{ secrets.ACTION_MONITORING_SLACK }}
225 token: ${{ secrets.ACTION_MONITORING_SLACK }}
289 token: ${{ secrets.ACTION_MONITORING_SLACK }}
343 token: ${{ secrets.ACTION_MONITORING_SLACK }}
531 token: ${{ secrets.ACTION_MONITORING_SLACK }}
621 token: ${{ secrets.ACTION_MONITORING_SLACK }}
719 token: ${{ secrets.ACTION_MONITORING_SLACK }}
770 token: ${{ secrets.ACTION_MONITORING_SLACK }}
882 token: ${{ secrets.ACTION_MONITORING_SLACK }}
/php-src/Zend/
H A Dzend_language_scanner.l1303 token = _token; \
1308 token = _token; \
1313 token = _token; \
1319 token = _token; \
1324 token = _token; \
1349 int token; in lex_scan() local
3123 SCNG(on_event)(ON_TOKEN, token, start_line, yytext, yyleng, SCNG(on_event_context));
3125 return token;
3132 SCNG(on_event)(ON_TOKEN, token, start_line, yytext, yyleng, SCNG(on_event_context));
3134 return token;
[all …]
H A Dzend_globals.h380 zend_php_scanner_event event, int token, int line,
H A Dzend_compile.c830 static char *zend_modifier_token_to_string(uint32_t token) in zend_modifier_token_to_string() argument
832 switch (token) { in zend_modifier_token_to_string()
851 uint32_t zend_modifier_token_to_flag(zend_modifier_target target, uint32_t token) in zend_modifier_token_to_flag() argument
853 switch (token) { in zend_modifier_token_to_flag()
896 "Cannot use the %s modifier on a %s", zend_modifier_token_to_string(token), member); in zend_modifier_token_to_flag()
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c2239 int token;
2693 if(token<257){
2694 return(iscntrl(token))?luaO_pushfstring(ls->L,"char(%d)",token):
2701 switch(token){
2715 if(token)
3669 if(ls->t.token==TK_NAME||ls->t.token==TK_STRING){
3686 if(ls->t.token==c){
3693 if(ls->t.token!=c)
4016 switch(ls->t.token){
4303 switch(token){
[all …]
/php-src/ext/dom/
H A Dnamespace_compat.c93 …mapper *mapper, xmlNsPtr *ptr, const char *uri, size_t length, const php_dom_ns_magic_token *token) in php_dom_libxml_ns_mapper_ensure_cached_ns() argument
101 (*ptr)->_private = (void *) token; in php_dom_libxml_ns_mapper_ensure_cached_ns()
H A Dconfig.w3227 …ADD_SOURCES("ext/dom/lexbor/lexbor/html", "encoding.c interface.c parser.c token.c token_attr.c to…
H A Dconfig.m423 …c $LEXBOR_DIR/html/interface.c $LEXBOR_DIR/html/parser.c $LEXBOR_DIR/html/token.c $LEXBOR_DIR/html…
/php-src/ext/phar/
H A Dphar.c1628 static const char token[] = "__HALT_COMPILER();"; in phar_open_from_fp() local
1635 …char buffer[1024 + sizeof(token)]; /* a 1024 byte window + the size of the halt_compiler token (mo… in phar_open_from_fp()
1636 const zend_long readsize = sizeof(buffer) - sizeof(token); in phar_open_from_fp()
1637 const zend_long tokenlen = sizeof(token) - 1; in phar_open_from_fp()
1651 memset(buffer, 32, sizeof(token)); in phar_open_from_fp()
1785 …if (got > 0 && (pos = phar_strnstr(buffer, got + sizeof(token), token, sizeof(token)-1)) != NULL) { in phar_open_from_fp()
/php-src/sapi/fpm/fpm/
H A Dfpm_conf.c183 char *token; in fpm_conf_expand_pool_name() local
189 while (*value && (token = strstr(*value, "$pool"))) { in fpm_conf_expand_pool_name()
191 char *p2 = token + strlen("$pool"); in fpm_conf_expand_pool_name()
199 token[0] = '\0'; in fpm_conf_expand_pool_name()
/php-src/ext/mbstring/
H A Dmbstring.c4271 char *token = NULL; in _php_mbstr_parse_mail_headers() local
4298 if(token && token_pos > 0) { in _php_mbstr_parse_mail_headers()
4299 fld_name = zend_string_init(token, token_pos, 0); in _php_mbstr_parse_mail_headers()
4347 token = (char*)ps; in _php_mbstr_parse_mail_headers()
4354 token = (char*)ps; in _php_mbstr_parse_mail_headers()
4364 if(token && token_pos > 0) { in _php_mbstr_parse_mail_headers()
4365 fld_val = zend_string_init(token, token_pos, 0); in _php_mbstr_parse_mail_headers()
4379 token = (char*)ps; in _php_mbstr_parse_mail_headers()
4405 token = ""; in _php_mbstr_parse_mail_headers()
4411 if(token && token_pos > 0) { in _php_mbstr_parse_mail_headers()
[all …]
/php-src/ext/standard/
H A Dstring.c1138 char *token; in PHP_FUNCTION() local
1174 token = ZSTR_VAL(tok); in PHP_FUNCTION()
1175 token_end = token + ZSTR_LEN(tok); in PHP_FUNCTION()
1177 while (token < token_end) { in PHP_FUNCTION()
1178 STRTOK_TABLE(token++) = 1; in PHP_FUNCTION()
1209 token = ZSTR_VAL(tok); in PHP_FUNCTION()
1210 while (token < token_end) { in PHP_FUNCTION()
1211 STRTOK_TABLE(token++) = 0; in PHP_FUNCTION()
H A Dbasic_functions.stub.php2372 function strtok(string $string, ?string $token = null): string|false {}
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst43 integer constant representing the token, and a lexeme, the literal string used in the source code.
/php-src/
H A DCODING_STANDARDS.md30 * Low-level parser routines, that are tightly integrated with the token

Completed in 125 milliseconds

12345678