Home
last modified time | relevance | path

Searched refs:TokenInfo (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DParser.cpp37 struct Parser::TokenInfo { struct in clang::ast_matchers::dynamic::Parser
57 TokenInfo() = default;
93 TokenInfo SkipNewlines() { in SkipNewlines()
109 TokenInfo getNextToken() { in getNextToken()
111 TokenInfo Result; in getNextToken()
317 TokenInfo NextToken;
473 TokenInfo EndToken; in parseMatcherBuilder()
641 TokenInfo EndToken; in parseMatcherExpressionImpl()
790 case TokenInfo::TK_Ident: in parseExpressionImpl()
797 case TokenInfo::TK_Eof: in parseExpressionImpl()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp70 memset(TokenInfo, 0, sizeof(TokenInfo)); in TokenConcatenation()
73 TokenInfo[tok::identifier ] |= aci_custom; in TokenConcatenation()
90 TokenInfo[tok::string_literal ] |= aci_custom; in TokenConcatenation()
91 TokenInfo[tok::wide_string_literal ] |= aci_custom; in TokenConcatenation()
92 TokenInfo[tok::utf8_string_literal ] |= aci_custom; in TokenConcatenation()
93 TokenInfo[tok::utf16_string_literal] |= aci_custom; in TokenConcatenation()
94 TokenInfo[tok::utf32_string_literal] |= aci_custom; in TokenConcatenation()
95 TokenInfo[tok::char_constant ] |= aci_custom; in TokenConcatenation()
96 TokenInfo[tok::wide_char_constant ] |= aci_custom; in TokenConcatenation()
103 TokenInfo[tok::utf8_char_constant] |= aci_custom; in TokenConcatenation()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DParser.h245 struct TokenInfo;
253 bool parseMatcherBuilder(MatcherCtor Ctor, const TokenInfo &NameToken,
254 const TokenInfo &OpenToken, VariantValue *Value);
255 bool parseMatcherExpressionImpl(const TokenInfo &NameToken,
256 const TokenInfo &OpenToken,
261 void addCompletion(const TokenInfo &CompToken,
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/
H A DTokenConcatenation.h56 char TokenInfo[tok::NUM_TOKENS]; variable
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp355 struct TokenInfo { in writeCode() struct
388 bool operator==(const TokenInfo &Other) const { in writeCode() argument
410 std::vector<TokenInfo> State(Code.size()); in writeCode()