Lines Matching refs:stmt_ast

4402 	zend_ast *stmt_ast = ast->child[1];  in zend_compile_while()  local
4411 zend_compile_stmt(stmt_ast); in zend_compile_while()
4425 zend_ast *stmt_ast = ast->child[0]; in zend_compile_do_while() local
4434 zend_compile_stmt(stmt_ast); in zend_compile_do_while()
4472 zend_ast *stmt_ast = ast->child[3]; in zend_compile_for() local
4485 zend_compile_stmt(stmt_ast); in zend_compile_for()
4506 zend_ast *stmt_ast = ast->child[3]; in zend_compile_foreach() local
4568 zend_compile_stmt(stmt_ast); in zend_compile_foreach()
4597 zend_ast *stmt_ast = elem_ast->child[1]; in zend_compile_if() local
4606 zend_compile_stmt(stmt_ast); in zend_compile_if()
4685 zend_ast *stmt_ast = case_ast->child[1]; in zend_compile_switch() local
4693 zend_compile_stmt(stmt_ast); in zend_compile_switch()
4773 zend_ast *stmt_ast = catch_ast->child[2]; in zend_compile_try() local
4824 zend_compile_stmt(stmt_ast); in zend_compile_try()
4963 zend_ast *stmt_ast = ast->child[1]; in zend_compile_declare() local
5016 if (stmt_ast) { in zend_compile_declare()
5017 zend_compile_stmt(stmt_ast); in zend_compile_declare()
5578 zend_ast *stmt_ast = decl->child[2]; in zend_compile_func_decl() local
5600 zend_bool has_body = stmt_ast != NULL; in zend_compile_func_decl()
5634 zend_compile_stmt(stmt_ast); in zend_compile_func_decl()
5926 zend_ast *stmt_ast = decl->child[2]; in zend_compile_class_decl() local
6036 zend_compile_stmt(stmt_ast); in zend_compile_class_decl()
6351 zend_ast *stmt_ast = ast->child[1]; in zend_compile_namespace() local
6353 zend_bool with_bracket = stmt_ast != NULL; in zend_compile_namespace()
6413 if (stmt_ast) { in zend_compile_namespace()
6414 zend_compile_top_stmt(stmt_ast); in zend_compile_namespace()