reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clang-tidy/bugprone/MacroParenthesesCheck.cpp
  159   bool VarDecl = possibleVarDecl(MI, MI->tokens_begin());
  159   bool VarDecl = possibleVarDecl(MI, MI->tokens_begin());
  161   for (auto TI = MI->tokens_begin(), TE = MI->tokens_end(); TI != TE; ++TI) {
  161   for (auto TI = MI->tokens_begin(), TE = MI->tokens_end(); TI != TE; ++TI) {
  163     if (TI == MI->tokens_begin())
  167     if ((TI + 1) == MI->tokens_end())
  187     if (MI->getParameterNum(Tok.getIdentifierInfo()) < 0)
  222         TI + 2 != MI->tokens_end() && (TI + 2)->is(tok::r_paren))
  239     if (MI->isVariadic())