Lines Matching refs:nest_location_stack
194 zend_stack_init(&SCNG(nest_location_stack), sizeof(zend_nest_location)); in startup_scanner()
208 zend_stack_destroy(&SCNG(nest_location_stack)); in shutdown_scanner()
227 lex_state->nest_location_stack = SCNG(nest_location_stack); in zend_save_lexical_state()
228 zend_stack_init(&SCNG(nest_location_stack), sizeof(zend_nest_location)); in zend_save_lexical_state()
266 zend_stack_destroy(&SCNG(nest_location_stack)); in zend_restore_lexical_state()
267 SCNG(nest_location_stack) = lex_state->nest_location_stack; in zend_restore_lexical_state()
1264 zend_stack_push(&SCNG(nest_location_stack), &nest_loc); in enter_nesting()
1269 if (zend_stack_is_empty(&SCNG(nest_location_stack))) { in exit_nesting()
1274 zend_nest_location *nest_loc = zend_stack_top(&SCNG(nest_location_stack)); in exit_nesting()
1284 zend_stack_del_top(&SCNG(nest_location_stack)); in exit_nesting()
1290 if (!zend_stack_is_empty(&SCNG(nest_location_stack))) { in check_nesting_at_end()
1291 zend_nest_location *nest_loc = zend_stack_top(&SCNG(nest_location_stack)); in check_nesting_at_end()