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
  106   if (possibleVarDecl(MI, MI->tokens_begin()))
  106   if (possibleVarDecl(MI, MI->tokens_begin()))
  115   for (auto TI = MI->tokens_begin(), TE = MI->tokens_end(); TI != TE; ++TI) {
  115   for (auto TI = MI->tokens_begin(), TE = MI->tokens_end(); TI != TE; ++TI) {
  134       if (TI == MI->tokens_begin() && (TI + 1) != TE &&
  146     const Token &Last = *(MI->tokens_end() - 1);
  148         << FixItHint::CreateInsertion(MI->tokens_begin()->getLocation(), "(")