Lines Matching refs:token
92 zval token; in zend_highlight() local
100 token.type = 0; in zend_highlight()
101 while ((token_type=lex_scan(&token TSRMLS_CC))) { in zend_highlight()
124 token.type = 0; in zend_highlight()
128 if (token.type == 0) { in zend_highlight()
148 if (token.type == IS_STRING) { in zend_highlight()
158 efree(token.value.str.val); in zend_highlight()
162 efree(token.value.str.val); in zend_highlight()
164 token.type = 0; in zend_highlight()
176 zval token; in zend_strip() local
180 token.type = 0; in zend_strip()
181 while ((token_type=lex_scan(&token TSRMLS_CC))) { in zend_strip()
191 token.type = 0; in zend_strip()
196 efree(token.value.str.val); in zend_strip()
198 if (lex_scan(&token TSRMLS_CC) != T_WHITESPACE) { in zend_strip()
203 token.type = 0; in zend_strip()
211 if (token.type == IS_STRING) { in zend_strip()
222 efree(token.value.str.val); in zend_strip()
226 prev_space = token.type = 0; in zend_strip()