/external/llvm-project/clang/lib/Format/ |
D | FormatToken.h | 833 AdditionalKeywords(IdentifierTable &IdentTable) { in AdditionalKeywords() 834 kw_final = &IdentTable.get("final"); in AdditionalKeywords() 835 kw_override = &IdentTable.get("override"); in AdditionalKeywords() 836 kw_in = &IdentTable.get("in"); in AdditionalKeywords() 837 kw_of = &IdentTable.get("of"); in AdditionalKeywords() 838 kw_CF_CLOSED_ENUM = &IdentTable.get("CF_CLOSED_ENUM"); in AdditionalKeywords() 839 kw_CF_ENUM = &IdentTable.get("CF_ENUM"); in AdditionalKeywords() 840 kw_CF_OPTIONS = &IdentTable.get("CF_OPTIONS"); in AdditionalKeywords() 841 kw_NS_CLOSED_ENUM = &IdentTable.get("NS_CLOSED_ENUM"); in AdditionalKeywords() 842 kw_NS_ENUM = &IdentTable.get("NS_ENUM"); in AdditionalKeywords() [all …]
|
D | MacroExpander.cpp | 126 IdentifierTable &IdentTable) in MacroExpander() argument 128 IdentTable(IdentTable) { in MacroExpander() 141 Allocator, IdentTable); in parseDefinition()
|
D | Macros.h | 109 IdentifierTable &IdentTable); 133 IdentifierTable &IdentTable; variable
|
D | FormatTokenLexer.h | 43 IdentifierTable &IdentTable); 108 IdentifierTable &IdentTable; variable
|
D | FormatTokenLexer.cpp | 29 IdentifierTable &IdentTable) in FormatTokenLexer() argument 32 Style(Style), IdentTable(IdentTable), Keywords(IdentTable), 41 Macros.insert({&IdentTable.get(ForEachMacro), TT_ForEachMacro}); 43 Macros.insert({&IdentTable.get(AttributeMacro), TT_AttributeMacro}); 45 Macros.insert({&IdentTable.get(StatementMacro), TT_StatementMacro}); 47 Macros.insert({&IdentTable.get(TypenameMacro), TT_TypenameMacro}); 49 Macros.insert({&IdentTable.get(NamespaceMacro), TT_NamespaceMacro}); 53 {&IdentTable.get(WhitespaceSensitiveMacro), TT_UntouchableMacroFunc}); 976 IdentifierInfo &Info = IdentTable.get(FormatTok->TokenText); in getNextToken()
|
D | TokenAnalyzer.cpp | 68 IdentifierTable IdentTable(getFormattingLangOpts(Style)); in process() local 72 IdentTable); in process()
|
/external/clang/lib/Format/ |
D | FormatToken.h | 570 AdditionalKeywords(IdentifierTable &IdentTable) { in AdditionalKeywords() 571 kw_final = &IdentTable.get("final"); in AdditionalKeywords() 572 kw_override = &IdentTable.get("override"); in AdditionalKeywords() 573 kw_in = &IdentTable.get("in"); in AdditionalKeywords() 574 kw_of = &IdentTable.get("of"); in AdditionalKeywords() 575 kw_CF_ENUM = &IdentTable.get("CF_ENUM"); in AdditionalKeywords() 576 kw_CF_OPTIONS = &IdentTable.get("CF_OPTIONS"); in AdditionalKeywords() 577 kw_NS_ENUM = &IdentTable.get("NS_ENUM"); in AdditionalKeywords() 578 kw_NS_OPTIONS = &IdentTable.get("NS_OPTIONS"); in AdditionalKeywords() 580 kw_as = &IdentTable.get("as"); in AdditionalKeywords() [all …]
|
D | FormatTokenLexer.h | 75 IdentifierTable IdentTable; variable
|
D | FormatTokenLexer.cpp | 32 IdentTable(getFormattingLangOpts(Style)), Keywords(IdentTable), in FormatTokenLexer() 41 ForEachMacros.push_back(&IdentTable.get(ForEachMacro)); in FormatTokenLexer() 486 IdentifierInfo &Info = IdentTable.get(FormatTok->TokenText); in getNextToken()
|
/external/llvm-project/clang-tools-extra/clang-tidy/google/ |
D | IntegerTypesCheck.cpp | 25 IdentifierTable &IdentTable) { in getTokenAtLoc() argument 32 IdentifierInfo &Info = IdentTable.get(Tok.getRawIdentifier()); in getTokenAtLoc() 66 IdentTable = std::make_unique<IdentifierTable>(getLangOpts()); in registerMatchers() 84 Token Tok = getTokenAtLoc(Loc, Result, *IdentTable); in check()
|
D | IntegerTypesCheck.h | 46 std::unique_ptr<IdentifierTable> IdentTable; variable
|
/external/llvm-project/clang/unittests/Format/ |
D | TestLexer.h | 66 SourceMgr("test.cpp", ""), IdentTable(getFormattingLangOpts(Style)) {} in Allocator() 107 IdentTable); in getNewLexer() 116 IdentifierTable IdentTable; variable
|
D | MacroExpanderTest.cpp | 19 Lex.Allocator, Lex.IdentTable); in create()
|
/external/clang/include/clang/Edit/ |
D | EditedSource.h | 49 IdentifierTable IdentTable; variable 55 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), IdentTable(LangOpts), in SourceMgr()
|
/external/llvm-project/clang/include/clang/Edit/ |
D | EditedSource.h | 69 IdentifierTable IdentTable; variable 75 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), IdentTable(LangOpts) {} in SourceMgr()
|
/external/clang/lib/Edit/ |
D | EditedSource.cpp | 37 II = &IdentTable.get(ArgName); in deconstructMacroArgLoc()
|
/external/llvm-project/clang/lib/Edit/ |
D | EditedSource.cpp | 51 ArgUse = {&IdentTable.get(ArgName), ImmediateExpansionLoc, in deconstructMacroArgLoc()
|