Lines Matching refs:ast_ptr
7611 void zend_compile_const_expr_class_const(zend_ast **ast_ptr) /* {{{ */ in zend_compile_const_expr_class_const() argument
7613 zend_ast *ast = *ast_ptr; in zend_compile_const_expr_class_const()
7627 *ast_ptr = zend_ast_create_zval(&result); in zend_compile_const_expr_class_const()
7654 *ast_ptr = zend_ast_create_zval(&result); in zend_compile_const_expr_class_const()
7658 void zend_compile_const_expr_const(zend_ast **ast_ptr) /* {{{ */ in zend_compile_const_expr_const() argument
7660 zend_ast *ast = *ast_ptr; in zend_compile_const_expr_const()
7672 *ast_ptr = zend_ast_create_zval(&result); in zend_compile_const_expr_const()
7682 *ast_ptr = zend_ast_create_zval(&resolved_name); in zend_compile_const_expr_const()
7686 void zend_compile_const_expr_magic_const(zend_ast **ast_ptr) /* {{{ */ in zend_compile_const_expr_magic_const() argument
7688 zend_ast *ast = *ast_ptr; in zend_compile_const_expr_magic_const()
7701 *ast_ptr = zend_ast_create_zval(&const_zv); in zend_compile_const_expr_magic_const()
7706 void zend_compile_const_expr(zend_ast **ast_ptr) /* {{{ */ in zend_compile_const_expr() argument
7708 zend_ast *ast = *ast_ptr; in zend_compile_const_expr()
7719 zend_compile_const_expr_class_const(ast_ptr); in zend_compile_const_expr()
7722 zend_compile_const_expr_const(ast_ptr); in zend_compile_const_expr()
7725 zend_compile_const_expr_magic_const(ast_ptr); in zend_compile_const_expr()
8085 void zend_eval_const_expr(zend_ast **ast_ptr) /* {{{ */ in zend_eval_const_expr() argument
8087 zend_ast *ast = *ast_ptr; in zend_eval_const_expr()
8178 *ast_ptr = ast->child[1]; in zend_eval_const_expr()
8182 *ast_ptr = ast->child[0]; in zend_eval_const_expr()
8207 *ast_ptr = child_ast; in zend_eval_const_expr()
8208 zend_eval_const_expr(ast_ptr); in zend_eval_const_expr()
8312 *ast_ptr = zend_ast_create_ex(ZEND_AST_MAGIC_CONST, T_CLASS_C); in zend_eval_const_expr()
8350 *ast_ptr = zend_ast_create_zval(&result); in zend_eval_const_expr()