Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h77 class ObjCAtCatchStmt : public Stmt {
84 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, in ObjCAtCatchStmt() function
90 explicit ObjCAtCatchStmt(EmptyShell Empty) : in ObjCAtCatchStmt() function
223 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const { in getCatchStmt()
225 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
229 ObjCAtCatchStmt *getCatchStmt(unsigned I) { in getCatchStmt()
231 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
235 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) { in setCatchStmt()
273 using catch_stmt_iterator = CastIterator<ObjCAtCatchStmt>;
274 using const_catch_stmt_iterator = ConstCastIterator<ObjCAtCatchStmt>;
H A DStmtDataCollectors.td177 class ObjCAtCatchStmt {
H A DTextNodeDumper.h312 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
H A DJSONNodeDumper.h343 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *OACS);
H A DASTNodeTraverser.h960 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
H A DRecursiveASTVisitor.h2482 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp163 for (const ObjCAtCatchStmt *CatchStmt : S.catch_stmts()) { in EmitTryCatchStmt()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp44 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) override { in TraverseObjCAtCatchStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td42 def ObjCAtCatchStmt : StmtNode<Stmt>;
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp631 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
2434 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit()
4125 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *CS) { in VisitObjCAtCatchStmt()
4199 for (ObjCAtCatchStmt *CS : Terminator->catch_stmts()) { in VisitObjCAtTryStmt()
6083 } else if (ObjCAtCatchStmt *CS = dyn_cast<ObjCAtCatchStmt>(Label)) { in print_block()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DJumpDiagnostics.cpp501 for (ObjCAtCatchStmt *AC : AT->catch_stmts()) { in BuildScopeInformation()
H A DSemaFunctionEffects.cpp1145 bool VisitObjCAtCatchStmt(ObjCAtCatchStmt *Catch) override { in VisitObjCAtCatchStmt()
H A DSemaExceptionSpec.cpp1606 const ObjCAtCatchStmt *Catch = TS->getCatchStmt(I - 1); in canThrow()
H A DSemaObjC.cpp210 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body); in ActOnObjCAtCatchStmt()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp602 for (ObjCAtCatchStmt *catchStmt : Node->catch_stmts()) { in VisitObjCAtTryStmt()
625 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
H A DJSONNodeDumper.cpp1687 void JSONNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt* OACS) { in VisitObjCAtCatchStmt()
H A DStmtProfile.cpp403 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
H A DTextNodeDumper.cpp1840 void TextNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
H A DASTImporter.cpp613 ExpectedStmt VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
7508 ExpectedStmt ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
7518 return new (Importer.getToContext()) ObjCAtCatchStmt ( in VisitObjCAtCatchStmt()
7544 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI); in VisitObjCAtTryStmt()
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp874 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1626 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
1653 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Record.readSubStmt())); in VisitObjCAtTryStmt()
3489 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1588 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
1616 for (ObjCAtCatchStmt *C : S->catch_stmts()) in VisitObjCAtTryStmt()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1706 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1831 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
H A DRewriteModernObjC.cpp1959 for (ObjCAtCatchStmt *Catch : S->catch_stmts()) { in RewriteObjCTryStmt()

12