Searched refs:token_type (Results 1 – 4 of 4) sorted by relevance
/PHP-8.1/Zend/ |
H A D | zend_highlight.c | 87 int token_type; in zend_highlight() local 94 while ((token_type=lex_scan(&token, NULL))) { in zend_highlight() 95 switch (token_type) { in zend_highlight() 148 switch (token_type) { in zend_highlight() 177 int token_type; in zend_strip() local 180 while ((token_type=lex_scan(&token, NULL))) { in zend_strip() 181 switch (token_type) { in zend_strip() 210 switch (token_type) { in zend_strip()
|
/PHP-8.1/ext/tokenizer/ |
H A D | tokenizer.c | 288 zval *return_value, int token_type, unsigned char *text, size_t leng, int lineno, in add_token() argument 294 ZVAL_LONG(OBJ_PROP_NUM(obj, 0), token_type); in add_token() 309 } else if (token_type >= 256) { in add_token() 313 ZEND_HASH_FILL_SET_LONG(token_type); in add_token() 331 int token_type; in tokenize() local 345 while ((token_type = lex_scan(&token, NULL))) { in tokenize() 346 ZEND_ASSERT(token_type != T_ERROR); in tokenize() 349 return_value, token_type, zendtext, zendleng, token_line, in tokenize() 359 if (token_type != T_WHITESPACE && token_type != T_OPEN_TAG in tokenize() 360 && token_type != T_COMMENT && token_type != T_DOC_COMMENT in tokenize() [all …]
|
H A D | php_tokenizer.h | 31 char *get_token_type_name(int token_type);
|
H A D | tokenizer_data.c | 177 char *get_token_type_name(int token_type) in get_token_type_name() argument 179 switch (token_type) { in get_token_type_name()
|
Completed in 10 milliseconds