Lines Matching refs:heredoc_label

199 static void heredoc_label_dtor(zend_heredoc_label *heredoc_label) {  in heredoc_label_dtor()  argument
200 efree(heredoc_label->label); in heredoc_label_dtor()
1208 zend_heredoc_label *heredoc_label = void_heredoc_label; in copy_heredoc_label_stack() local
1211 *new_heredoc_label = *heredoc_label; in copy_heredoc_label_stack()
1212 new_heredoc_label->label = estrndup(heredoc_label->label, heredoc_label->length); in copy_heredoc_label_stack()
2368 zend_heredoc_label *heredoc_label = emalloc(sizeof(zend_heredoc_label));
2372 heredoc_label->length = yyleng-bprefix-3-1-(yytext[yyleng-2]=='\r'?1:0);
2376 heredoc_label->length--;
2381 heredoc_label->length -= 2;
2388 heredoc_label->length -= 2;
2394 heredoc_label->label = estrndup(s, heredoc_label->length);
2395 heredoc_label->indentation = 0;
2398 zend_ptr_stack_push(&SCNG(heredoc_label_stack), (void *) heredoc_label);
2416 if (heredoc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, s, heredoc_label->length)) {
2417 if (!IS_LABEL_SUCCESSOR(YYCURSOR[heredoc_label->length])) {
2426 heredoc_label->indentation = indentation;
2492 heredoc_label->indentation = SCNG(heredoc_indentation);
2493 heredoc_label->indentation_uses_spaces = SCNG(heredoc_indentation_uses_spaces);
2516 zend_heredoc_label *heredoc_label = zend_ptr_stack_pop(&SCNG(heredoc_label_stack));
2518 yyleng = heredoc_label->indentation + heredoc_label->length;
2521 heredoc_label_dtor(heredoc_label);
2522 efree(heredoc_label);
2648 zend_heredoc_label *heredoc_label = zend_ptr_stack_top(&SCNG(heredoc_label_stack));
2685 …_LABEL_START(*YYCURSOR) && heredoc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc…
2686 if (IS_LABEL_SUCCESSOR(YYCURSOR[heredoc_label->length])) {
2752 zendlval, heredoc_label->indentation, heredoc_label->indentation_uses_spaces,
2772 zend_heredoc_label *heredoc_label = zend_ptr_stack_top(&SCNG(heredoc_label_stack));
2809 …_LABEL_START(*YYCURSOR) && heredoc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc…
2810 if (IS_LABEL_SUCCESSOR(YYCURSOR[heredoc_label->length])) {
2832 heredoc_label->indentation = indentation;