Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp355 const TokenInfo NameToken = Tokenizer->consumeNextToken(); in parseIdentifierPrefixImpl() local
360 NamedValues ? NamedValues->lookup(NameToken.Text) in parseIdentifierPrefixImpl()
386 NameToken.Text, NameToken.Range); in parseIdentifierPrefixImpl()
421 !S->lookupMatcherCtor(NameToken.Text)) { in parseIdentifierPrefixImpl()
422 Error->addError(NameToken.Range, Error->ET_RegistryValueNotFound) in parseIdentifierPrefixImpl()
423 << NameToken.Text; in parseIdentifierPrefixImpl()
431 assert(NameToken.Kind == TokenInfo::TK_Ident); in parseIdentifierPrefixImpl()
439 std::optional<MatcherCtor> Ctor = S->lookupMatcherCtor(NameToken.Text); in parseIdentifierPrefixImpl()
442 return parseMatcherExpressionImpl(NameToken, OpenToken, Ctor, Value); in parseIdentifierPrefixImpl()
469 bool Parser::parseMatcherBuilder(MatcherCtor Ctor, const TokenInfo &NameToken, in parseMatcherBuilder() argument
[all …]
/src/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h253 bool parseMatcherBuilder(MatcherCtor Ctor, const TokenInfo &NameToken,
255 bool parseMatcherExpressionImpl(const TokenInfo &NameToken,