Home
last modified time | relevance | path

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

/freebsd/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()
74 TokenInfo[tok::numeric_constant] |= aci_custom_firstchar; in TokenConcatenation()
75 TokenInfo[tok::period ] |= aci_custom_firstchar; in TokenConcatenation()
76 TokenInfo[tok::amp ] |= aci_custom_firstchar; in TokenConcatenation()
77 TokenInfo[tok::plus ] |= aci_custom_firstchar; in TokenConcatenation()
78 TokenInfo[tok::minus ] |= aci_custom_firstchar; in TokenConcatenation()
79 TokenInfo[tok::slash ] |= aci_custom_firstchar; in TokenConcatenation()
80 TokenInfo[tok::less ] |= aci_custom_firstchar; in TokenConcatenation()
81 TokenInfo[tok::greater ] |= aci_custom_firstchar; in TokenConcatenation()
[all …]
/freebsd/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/contrib/llvm-project/clang/include/clang/Lex/
H A DTokenConcatenation.h56 char TokenInfo[tok::NUM_TOKENS]; variable
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DHTMLLogger.cpp367 struct TokenInfo { in writeCode() struct
400 bool operator==(const TokenInfo &Other) const { in writeCode() argument
422 std::vector<TokenInfo> State(Code.size()); in writeCode()