Home
last modified time | relevance | path

Searched refs:top_if (Results 1 – 2 of 2) sorted by relevance

/third_party/ltp/tools/sparse/sparse-src/
Dpre-process.c78 if (stream->ifndef == stream->top_if) { \
1560 token->next = stream->top_if; in preprocessor_if()
1561 stream->top_if = token; in preprocessor_if()
1681 struct token *top_if = stream->top_if; in handle_elif() local
1684 if (!top_if) { in handle_elif()
1690 if (token_type(top_if) == TOKEN_ELSE) { in handle_elif()
1699 if (token_type(top_if) != TOKEN_IF) in handle_elif()
1707 token_type(top_if) = TOKEN_SKIP_GROUPS; in handle_elif()
1714 struct token *top_if = stream->top_if; in handle_else() local
1717 if (!top_if) { in handle_else()
[all …]
Dtoken.h63 struct token *top_if; member