Lines Matching refs:skip_stack
248 if (parser->skip_stack == NULL ||
249 parser->skip_stack->type == SKIP_NO_SKIP)
263 if (parser->skip_stack == NULL ||
264 parser->skip_stack->type == SKIP_NO_SKIP)
272 parser->skip_stack->type = SKIP_TO_ENDIF;
278 if (parser->skip_stack == NULL ||
279 parser->skip_stack->type == SKIP_NO_SKIP)
303 if (parser->skip_stack &&
304 parser->skip_stack->type == SKIP_TO_ELSE)
318 if (parser->skip_stack &&
319 parser->skip_stack->type == SKIP_TO_ELSE)
1136 parser->skip_stack = NULL; in glcpp_parser_create()
1918 if (parser->skip_stack) in _glcpp_parser_skip_stack_push_if()
1919 current = parser->skip_stack->type; in _glcpp_parser_skip_stack_push_if()
1933 node->next = parser->skip_stack; in _glcpp_parser_skip_stack_push_if()
1934 parser->skip_stack = node; in _glcpp_parser_skip_stack_push_if()
1941 if (parser->skip_stack == NULL) { in _glcpp_parser_skip_stack_change_if()
1946 if (parser->skip_stack->type == SKIP_TO_ELSE) { in _glcpp_parser_skip_stack_change_if()
1948 parser->skip_stack->type = SKIP_NO_SKIP; in _glcpp_parser_skip_stack_change_if()
1950 parser->skip_stack->type = SKIP_TO_ENDIF; in _glcpp_parser_skip_stack_change_if()
1959 if (parser->skip_stack == NULL) { in _glcpp_parser_skip_stack_pop()
1964 node = parser->skip_stack; in _glcpp_parser_skip_stack_pop()
1965 parser->skip_stack = node->next; in _glcpp_parser_skip_stack_pop()