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
  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())
  170     const Token &Prev = *(TI - 1);
  171     const Token &Next = *(TI + 1);
  173     const Token &Tok = *TI;
  222         TI + 2 != MI->tokens_end() && (TI + 2)->is(tok::r_paren))
  222         TI + 2 != MI->tokens_end() && (TI + 2)->is(tok::r_paren))