Home
last modified time | relevance | path

Searched refs:tokens_begin (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DMacroParenthesesCheck.cpp106 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/
DTokenLexer.cpp41 Tokens = &*Macro->tokens_begin(); in Init()
44 NumTokens = Macro->tokens_end()-Macro->tokens_begin(); in Init()
DPreprocessor.cpp331 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin()); in MacroDefinitionEquals()
/external/llvm-project/clang/lib/Lex/
DTokenLexer.cpp53 Tokens = &*Macro->tokens_begin(); in Init()
57 NumTokens = Macro->tokens_end()-Macro->tokens_begin(); in Init()
DPreprocessor.cpp352 std::equal(Tokens.begin(), Tokens.end(), MI->tokens_begin()); in MacroDefinitionEquals()
/external/llvm-project/clang/include/clang/Lex/
DMacroInfo.h242 tokens_iterator tokens_begin() const { return ReplacementTokens.begin(); } in tokens_begin() function
/external/clang/include/clang/Lex/
DMacroInfo.h239 tokens_iterator tokens_begin() const { return ReplacementTokens.begin(); } in tokens_begin() function
/external/clang/lib/Frontend/
DPrintPreprocessedOutput.cpp63 if (MI.tokens_empty() || !MI.tokens_begin()->hasLeadingSpace()) in PrintMacroDefinition()
/external/llvm-project/clang/lib/Frontend/
DPrintPreprocessedOutput.cpp62 if (MI.tokens_empty() || !MI.tokens_begin()->hasLeadingSpace()) in PrintMacroDefinition()
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangModulesDeclVendor.cpp533 for (clang::MacroInfo::tokens_iterator ti = macro_info->tokens_begin(), in ForEachMacro()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DPlistDiagnostics.cpp1033 for (auto It = MExpInfo.MI->tokens_begin(), E = MExpInfo.MI->tokens_end(); in getMacroNameAndPrintExpansion()