| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 77 class ObjCAtCatchStmt : public Stmt { 84 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, in ObjCAtCatchStmt() function 90 explicit ObjCAtCatchStmt(EmptyShell Empty) : in ObjCAtCatchStmt() function 221 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const { in getCatchStmt() 223 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt() 227 ObjCAtCatchStmt *getCatchStmt(unsigned I) { in getCatchStmt() 229 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt() 233 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) { in setCatchStmt() 272 using catch_stmt_iterator = CastIterator<ObjCAtCatchStmt>; 273 using const_catch_stmt_iterator = ConstCastIterator<ObjCAtCatchStmt>;
|
| H A D | StmtDataCollectors.td | 178 class ObjCAtCatchStmt {
|
| H A D | TextNodeDumper.h | 291 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
|
| H A D | JSONNodeDumper.h | 325 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *OACS);
|
| H A D | ASTNodeTraverser.h | 784 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | RecursiveASTVisitor.h | 2398 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DeadStoresChecker.cpp | 45 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TraverseObjCAtCatchStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.cpp | 167 for (const ObjCAtCatchStmt *CatchStmt : S.catch_stmts()) { in EmitTryCatchStmt()
|
| H A D | CGObjCMac.cpp | 4742 for (const ObjCAtCatchStmt *CatchStmt : AtTryStmt->catch_stmts()) { in EmitTryOrSynchronizedStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 41 def ObjCAtCatchStmt : StmtNode<Stmt>;
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CFG.cpp | 596 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); 2341 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit() 4007 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *CS) { in VisitObjCAtCatchStmt() 4081 for (ObjCAtCatchStmt *CS : Terminator->catch_stmts()) { in VisitObjCAtTryStmt() 5956 } else if (ObjCAtCatchStmt *CS = dyn_cast<ObjCAtCatchStmt>(Label)) { in print_block()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 496 for (ObjCAtCatchStmt *AC : AT->catch_stmts()) { in BuildScopeInformation()
|
| H A D | SemaExceptionSpec.cpp | 1587 const ObjCAtCatchStmt *Catch = TS->getCatchStmt(I - 1); in canThrow()
|
| H A D | SemaStmt.cpp | 4203 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body); in ActOnObjCAtCatchStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 844 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | StmtPrinter.cpp | 587 for (ObjCAtCatchStmt *catchStmt : Node->catch_stmts()) { in VisitObjCAtTryStmt() 608 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | JSONNodeDumper.cpp | 1557 void JSONNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt* OACS) { in VisitObjCAtCatchStmt()
|
| H A D | StmtProfile.cpp | 383 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
|
| H A D | TextNodeDumper.cpp | 1327 void TextNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | ASTImporter.cpp | 605 ExpectedStmt VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); 6810 ExpectedStmt ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt() 6820 return new (Importer.getToContext()) ObjCAtCatchStmt ( in VisitObjCAtCatchStmt() 6846 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI); in VisitObjCAtTryStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1571 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt() 1598 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Record.readSubStmt())); in VisitObjCAtTryStmt() 3214 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1454 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt() 1482 for (ObjCAtCatchStmt *C : S->catch_stmts()) in VisitObjCAtTryStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1655 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 1833 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
|
| H A D | RewriteModernObjC.cpp | 1961 for (ObjCAtCatchStmt *Catch : S->catch_stmts()) { in RewriteObjCTryStmt()
|