Lines Matching refs:return_value
93 zval *return_value, zend_string *source, zend_long flags, zend_class_entry *token_class);
118 if (!tokenize_common(return_value, source, flags, token_class)) { in PHP_METHOD()
288 zval *return_value, int token_type, unsigned char *text, size_t leng, int lineno, in add_token() argument
323 zend_hash_next_index_insert_new(Z_ARRVAL_P(return_value), &token); in add_token()
326 static bool tokenize(zval *return_value, zend_string *source, zend_class_entry *token_class) in tokenize() argument
343 array_init(return_value); in tokenize()
349 return_value, token_type, zendtext, zendleng, token_line, in tokenize()
366 return_value, T_INLINE_HTML, zendcursor, zendlimit - zendcursor, in tokenize()
459 zval *return_value, zend_string *source, zend_class_entry *token_class) in tokenize_parse() argument
487 ZVAL_COPY_VALUE(return_value, &token_stream); in tokenize_parse()
505 zval *return_value, zend_string *source, zend_long flags, zend_class_entry *token_class) in tokenize_common() argument
508 return tokenize_parse(return_value, source, token_class); in tokenize_common()
510 int success = tokenize(return_value, source, token_class); in tokenize_common()
531 if (!tokenize_common(return_value, source, flags, /* token_class */ NULL)) { in PHP_FUNCTION()