Searched refs:tokens_begin (Results 1 – 11 of 11) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | MacroParenthesesCheck.cpp | 106 if (possibleVarDecl(MI, MI->tokens_begin())) in replacementList() 115 for (auto TI = MI->tokens_begin(), TE = MI->tokens_end(); TI != TE; ++TI) { in replacementList() 134 if (TI == MI->tokens_begin() && (TI + 1) != TE && in replacementList() 148 << FixItHint::CreateInsertion(MI->tokens_begin()->getLocation(), "(") in replacementList() 159 bool VarDecl = possibleVarDecl(MI, MI->tokens_begin()); in argument() 161 for (auto TI = MI->tokens_begin(), TE = MI->tokens_end(); TI != TE; ++TI) { in argument() 163 if (TI == MI->tokens_begin()) in argument()
|
/external/clang/lib/Lex/ |
D | TokenLexer.cpp | 41 Tokens = &*Macro->tokens_begin(); in Init() 44 NumTokens = Macro->tokens_end()-Macro->tokens_begin(); in Init()
|
D | Preprocessor.cpp | 331 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin()); in MacroDefinitionEquals()
|
/external/llvm-project/clang/lib/Lex/ |
D | TokenLexer.cpp | 53 Tokens = &*Macro->tokens_begin(); in Init() 57 NumTokens = Macro->tokens_end()-Macro->tokens_begin(); in Init()
|
D | Preprocessor.cpp | 352 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin()); in MacroDefinitionEquals()
|
/external/llvm-project/clang/include/clang/Lex/ |
D | MacroInfo.h | 242 tokens_iterator tokens_begin() const { return ReplacementTokens.begin(); } in tokens_begin() function
|
/external/clang/include/clang/Lex/ |
D | MacroInfo.h | 239 tokens_iterator tokens_begin() const { return ReplacementTokens.begin(); } in tokens_begin() function
|
/external/clang/lib/Frontend/ |
D | PrintPreprocessedOutput.cpp | 63 if (MI.tokens_empty() || !MI.tokens_begin()->hasLeadingSpace()) in PrintMacroDefinition()
|
/external/llvm-project/clang/lib/Frontend/ |
D | PrintPreprocessedOutput.cpp | 62 if (MI.tokens_empty() || !MI.tokens_begin()->hasLeadingSpace()) in PrintMacroDefinition()
|
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
D | ClangModulesDeclVendor.cpp | 533 for (clang::MacroInfo::tokens_iterator ti = macro_info->tokens_begin(), in ForEachMacro()
|
/external/llvm-project/clang/lib/StaticAnalyzer/Core/ |
D | PlistDiagnostics.cpp | 1033 for (auto It = MExpInfo.MI->tokens_begin(), E = MExpInfo.MI->tokens_end(); in getMacroNameAndPrintExpansion()
|