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
  191     if (isSurroundedLeft(Prev) && isSurroundedRight(Next))
  195     if (Prev.isOneOf(tok::hash, tok::hashhash) || Next.is(tok::hashhash))
  199     if (Prev.isOneOf(tok::period, tok::arrow, tok::coloncolon, tok::arrowstar,
  208     if (isStringLiteral(Prev.getKind()) || isStringLiteral(Next.getKind()))
  212     if (isAnyIdentifier(Prev.getKind()) || isKeyword(Prev) ||
  212     if (isAnyIdentifier(Prev.getKind()) || isKeyword(Prev) ||
  221     if (Prev.is(tok::l_paren) && Next.is(tok::star) &&
  226     if (Prev.isOneOf(tok::equal, tok::kw_return) && Next.is(tok::semi))
  230     if (PP->getLangOpts().CPlusPlus && Prev.isOneOf(tok::comma, tok::less) &&
  235     if (Prev.is(tok::kw_namespace))