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

References

gen/tools/clang/include/clang/AST/AttrImpl.inc
 3747     OS << " __attribute__((format(" << (getType() ? getType()->getName() : "") << ", " << getFormatIdx() << ", " << getFirstArg() << ")))";
 3747     OS << " __attribute__((format(" << (getType() ? getType()->getName() : "") << ", " << getFormatIdx() << ", " << getFirstArg() << ")))";
 3751     OS << " [[gnu::format(" << (getType() ? getType()->getName() : "") << ", " << getFormatIdx() << ", " << getFirstArg() << ")]]";
 3751     OS << " [[gnu::format(" << (getType() ? getType()->getName() : "") << ", " << getFormatIdx() << ", " << getFirstArg() << ")]]";
gen/tools/clang/include/clang/AST/AttrTextNodeDump.inc
  240     if (SA->getType())
  241       OS << " " << SA->getType()->getName();
gen/tools/clang/include/clang/Serialization/AttrPCHWrite.inc
  644     Record.AddIdentifierRef(SA->getType());
tools/clang/lib/Sema/SemaChecking.cpp
 7102   return llvm::StringSwitch<FormatStringType>(Format->getType()->getName())
tools/clang/lib/Sema/SemaDecl.cpp
 2544     NewAttr = S.mergeFormatAttr(D, *FA, FA->getType(), FA->getFormatIdx(),
tools/clang/lib/Sema/SemaDeclAttr.cpp
 3208     if (F->getType() == Format &&
tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
  708     if ((Format->getType()->getName() == "printf") && CE->getNumArgs() > ArgNum)