Lines Matching refs:heredoc_label
187 static void heredoc_label_dtor(zend_heredoc_label *heredoc_label) { in heredoc_label_dtor() argument
188 efree(heredoc_label->label); in heredoc_label_dtor()
2060 zend_heredoc_label *heredoc_label = emalloc(sizeof(zend_heredoc_label));
2063 heredoc_label->length = yyleng-bprefix-3-1-(yytext[yyleng-2]=='\r'?1:0);
2067 heredoc_label->length--;
2072 heredoc_label->length -= 2;
2078 heredoc_label->length -= 2;
2084 heredoc_label->label = estrndup(s, heredoc_label->length);
2087 if (heredoc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, s, heredoc_label->length)) {
2088 YYCTYPE *end = YYCURSOR + heredoc_label->length;
2099 zend_ptr_stack_push(&SCNG(heredoc_label_stack), (void *) heredoc_label);
2112 zend_heredoc_label *heredoc_label = zend_ptr_stack_pop(&SCNG(heredoc_label_stack));
2114 YYCURSOR += heredoc_label->length - 1;
2115 yyleng = heredoc_label->length;
2117 heredoc_label_dtor(heredoc_label);
2118 efree(heredoc_label);
2239 zend_heredoc_label *heredoc_label = zend_ptr_stack_top(&SCNG(heredoc_label_stack));
2256 …_LABEL_START(*YYCURSOR) && heredoc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc…
2257 YYCTYPE *end = YYCURSOR + heredoc_label->length;
2313 zend_heredoc_label *heredoc_label = zend_ptr_stack_top(&SCNG(heredoc_label_stack));
2330 …_LABEL_START(*YYCURSOR) && heredoc_label->length < YYLIMIT - YYCURSOR && !memcmp(YYCURSOR, heredoc…
2331 YYCTYPE *end = YYCURSOR + heredoc_label->length;