Home
last modified time | relevance | path

Searched refs:CXXCatchStmt (Results 1 – 25 of 28) sorted by relevance

12

/external/clang/include/clang/AST/
DStmtCXX.h29 class CXXCatchStmt : public Stmt {
37 CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock) in CXXCatchStmt() function
41 CXXCatchStmt(EmptyShell Empty) in CXXCatchStmt() function
104 CXXCatchStmt *getHandler(unsigned i) { in getHandler()
105 return cast<CXXCatchStmt>(getStmts()[i + 1]); in getHandler()
107 const CXXCatchStmt *getHandler(unsigned i) const { in getHandler()
108 return cast<CXXCatchStmt>(getStmts()[i + 1]); in getHandler()
DRecursiveASTVisitor.h1905 DEF_TRAVERSE_STMT(CXXCatchStmt, {
/external/clang/lib/AST/
DStmtCXX.cpp20 QualType CXXCatchStmt::getCaughtType() const { in getCaughtType()
DStmtPrinter.cpp70 void PrintRawCXXCatchStmt(CXXCatchStmt *Catch);
513 void StmtPrinter::PrintRawCXXCatchStmt(CXXCatchStmt *Node) { in PrintRawCXXCatchStmt()
523 void StmtPrinter::VisitCXXCatchStmt(CXXCatchStmt *Node) { in VisitCXXCatchStmt()
DASTDumper.cpp488 void VisitCXXCatchStmt(const CXXCatchStmt *Node);
1691 void ASTDumper::VisitCXXCatchStmt(const CXXCatchStmt *Node) { in VisitCXXCatchStmt()
DStmtProfile.cpp186 void StmtProfiler::VisitCXXCatchStmt(const CXXCatchStmt *S) { in VisitCXXCatchStmt()
DASTImporter.cpp201 Stmt *VisitCXXCatchStmt(CXXCatchStmt *S);
4861 Stmt *ASTNodeImporter::VisitCXXCatchStmt(CXXCatchStmt *S) { in VisitCXXCatchStmt()
4873 return new (Importer.getToContext()) CXXCatchStmt(ToCatchLoc, in VisitCXXCatchStmt()
4885 CXXCatchStmt *FromHandler = S->getHandler(HI); in VisitCXXTryStmt()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExprEngine.h32 class CXXCatchStmt; variable
429 void VisitCXXCatchStmt(const CXXCatchStmt *CS, ExplodedNode *Pred,
/external/clang/lib/CodeGen/
DCodeGenPGO.cpp86 CXXCatchStmt, enumerator
179 return PGOHash::CXXCatchStmt; in getHashType()
516 void VisitCXXCatchStmt(const CXXCatchStmt *S) { in VisitCXXCatchStmt()
DCGCXXABI.h233 virtual void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) = 0;
DCGException.cpp547 const CXXCatchStmt *C = S.getHandler(I); in EnterCXXTryStmt()
1049 const CXXCatchStmt *C = S.getHandler(I-1); in ExitCXXTryStmt()
DCoverageMappingGen.cpp833 void VisitCXXCatchStmt(const CXXCatchStmt *S) { in VisitCXXCatchStmt()
DItaniumCXXABI.cpp173 void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) override;
3741 const CXXCatchStmt *S) { in emitBeginCatch()
DMicrosoftCXXABI.cpp122 void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) override;
892 const CXXCatchStmt *S) { in emitBeginCatch()
/external/clang/lib/Sema/
DSemaStmt.cpp3454 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
3538 const llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> &TypesToCheck;
3541 CXXCatchStmt *FoundHandler;
3547 const llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> &T, bool C) in CatchTypePublicBases()
3551 CXXCatchStmt *getFoundHandler() const { return FoundHandler; } in getFoundHandler()
3594 llvm::DenseMap<CatchHandlerType, CXXCatchStmt *> HandledTypes; in ActOnCXXTryBlock()
3596 CXXCatchStmt *H = cast<CXXCatchStmt>(Handlers[i]); in ActOnCXXTryBlock()
3630 const CXXCatchStmt *Problem = CTPB.getFoundHandler(); in ActOnCXXTryBlock()
3646 const CXXCatchStmt *Problem = R.first->second; in ActOnCXXTryBlock()
DJumpDiagnostics.cpp333 CXXCatchStmt *CS = TS->getHandler(I); in BuildScopeInformation()
/external/clang/include/clang/Basic/
DStmtNodes.td47 def CXXCatchStmt : Stmt;
/external/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp49 bool TraverseCXXCatchStmt(CXXCatchStmt *S) { in TraverseCXXCatchStmt()
/external/clang/lib/Analysis/
DCFG.cpp441 CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S);
1481 return VisitCXXCatchStmt(cast<CXXCatchStmt>(S)); in Visit()
3306 CXXCatchStmt *CS = Terminator->getHandler(h); in VisitCXXTryStmt()
3337 CFGBlock *CFGBuilder::VisitCXXCatchStmt(CXXCatchStmt *CS) { in VisitCXXCatchStmt()
4018 cast<CXXCatchStmt>(stmt)->getExceptionDecl(); in StmtPrinterHelper()
4349 else if (CXXCatchStmt *CS = dyn_cast<CXXCatchStmt>(Label)) { in print_block()
/external/v8/tools/gcmole/
Dgcmole.cc871 VISIT(CXXCatchStmt); in VisitStmt()
908 IGNORE_STMT(CXXCatchStmt);
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCXX.cpp538 void ExprEngine::VisitCXXCatchStmt(const CXXCatchStmt *CS, in VisitCXXCatchStmt()
DExprEngine.cpp1105 VisitCXXCatchStmt(cast<CXXCatchStmt>(S), Pred, Dst); in Visit()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1415 const internal::VariadicDynCastAllOfMatcher<Stmt, CXXCatchStmt> cxxCatchStmt;
2701 AST_MATCHER(CXXCatchStmt, isCatchAll) { in AST_MATCHER() argument
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1182 void ASTStmtReader::VisitCXXCatchStmt(CXXCatchStmt *S) { in VisitCXXCatchStmt()
2935 S = new (Context) CXXCatchStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1137 void ASTStmtWriter::VisitCXXCatchStmt(CXXCatchStmt *S) { in VisitCXXCatchStmt()

12