Home | History | Annotate | Download | only in libcpp

Lines Matching defs:paren

1852   const cpp_token *paren;
1854 paren = get_token_no_padding (pfile);
1855 if (paren->type == CPP_EOF)
1857 if (paren->type != CPP_OPEN_PAREN)
1868 paren = get_token_no_padding (pfile);
1869 if (paren->type == CPP_EOF)
1871 if (paren->type != CPP_CLOSE_PAREN)
2298 /* In a conditional, it is legal to not have an open paren. We
2300 const cpp_token *paren = cpp_get_token (pfile);
2302 /* If not a paren, see if we're OK. */
2303 if (paren->type != CPP_OPEN_PAREN)
2314 if (type == T_UNASSERT && paren->type == CPP_EOF)