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

References

tools/clang/include/clang/AST/ASTNodeTraverser.h
  594     Visit(Node->getExceptionDecl());
tools/clang/include/clang/AST/RecursiveASTVisitor.h
 2176   TRY_TO(TraverseDecl(S->getExceptionDecl()));
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 3782   return Node.getExceptionDecl() == nullptr;
tools/clang/lib/AST/ASTImporter.cpp
 5996       S->getCatchLoc(), S->getExceptionDecl(), S->getHandlerBlock());
tools/clang/lib/AST/StmtPrinter.cpp
  569   if (Decl *ExDecl = Node->getExceptionDecl())
tools/clang/lib/Analysis/CFG.cpp
 4253     if (CS->getExceptionDecl() == nullptr) {
 4293   if (VarDecl *VD = CS->getExceptionDecl()) {
 5118                 cast<CXXCatchStmt>(stmt)->getExceptionDecl();
 5605       if (CS->getExceptionDecl())
 5606         CS->getExceptionDecl()->print(OS, PrintingPolicy(Helper.getLangOpts()),
tools/clang/lib/CodeGen/CGException.cpp
  566     if (C->getExceptionDecl()) {
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 4294   VarDecl *CatchParam = S->getExceptionDecl();
tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  869   VarDecl *CatchParam = S->getExceptionDecl();
tools/clang/lib/Sema/SemaStmt.cpp
 4092     if (!H->getExceptionDecl()) {
 4096     } else if (H->getExceptionDecl()->isInvalidDecl())
 4123           Diag(H->getExceptionDecl()->getTypeSpecStartLoc(),
 4126           Diag(Problem->getExceptionDecl()->getTypeSpecStartLoc(),
 4138       Diag(H->getExceptionDecl()->getTypeSpecStartLoc(),
 4141       Diag(Problem->getExceptionDecl()->getTypeSpecStartLoc(),
tools/clang/lib/Sema/TreeTransform.h
 7563   if (VarDecl *ExceptionDecl = S->getExceptionDecl()) {
tools/clang/lib/Serialization/ASTWriterStmt.cpp
 1323   Record.AddDeclRef(S->getExceptionDecl());
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
  857   const VarDecl *VD = CS->getExceptionDecl();
tools/clang/tools/extra/clang-tidy/misc/ThrowByValueCatchByReferenceCheck.cpp
  141   auto *varDecl = catchStmt->getExceptionDecl();
tools/clang/tools/extra/clang-tidy/utils/ExceptionAnalyzer.cpp
  165       if (!Catch->getExceptionDecl()) {
tools/clang/tools/libclang/CIndex.cpp
 2553   AddDecl(S->getExceptionDecl());