Home
last modified time | relevance | path

Searched refs:isNextPPTokenOneOf (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp833 if (!MI->isFunctionLike() || isNextPPTokenOneOf(tok::l_paren)) in HandleIdentifier()
840 if (MI->isObjectLike() || isNextPPTokenOneOf(tok::l_paren)) in HandleIdentifier()
H A DPPDirectives.cpp186 return PP.isNextPPTokenOneOf(tok::l_paren); in isReservedCXXAttributeName()
188 return !PP.isNextPPTokenOneOf(tok::l_paren) || in isReservedCXXAttributeName()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessor.h2308 template <typename... Ts> bool isNextPPTokenOneOf(Ts... Ks) { in isNextPPTokenOneOf() function