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() << ")))";
 3751     OS << " [[gnu::format(" << (getType() ? getType()->getName() : "") << ", " << getFormatIdx() << ", " << getFirstArg() << ")]]";
gen/tools/clang/include/clang/AST/AttrTextNodeDump.inc
  243     OS << " " << SA->getFirstArg();
gen/tools/clang/include/clang/Serialization/AttrPCHWrite.inc
  646     Record.push_back(SA->getFirstArg());
tools/clang/lib/Sema/SemaChecking.cpp
 4090   FSI->HasVAListArg = Format->getFirstArg() == 0;
 4092   FSI->FirstDataArg = FSI->HasVAListArg ? 0 : Format->getFirstArg() - 1;
tools/clang/lib/Sema/SemaDecl.cpp
 2545                                 FA->getFirstArg());
tools/clang/lib/Sema/SemaDeclAttr.cpp
 3210         F->getFirstArg() == FirstArg) {