| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 74 class ObjCAtCatchStmt : public Stmt { 81 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, in ObjCAtCatchStmt() function 87 explicit ObjCAtCatchStmt(EmptyShell Empty) : in ObjCAtCatchStmt() function 206 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const { in getCatchStmt() 208 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt() 212 ObjCAtCatchStmt *getCatchStmt(unsigned I) { in getCatchStmt() 214 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt() 218 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) { in setCatchStmt()
|
| H A D | StmtDataCollectors.td | 178 class ObjCAtCatchStmt {
|
| H A D | TextNodeDumper.h | 261 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
|
| H A D | RecursiveASTVisitor.h | 2173 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.cpp | 169 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I); in EmitTryCatchStmt()
|
| H A D | CGObjCMac.cpp | 4541 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I); in EmitTryOrSynchronizedStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DeadStoresChecker.cpp | 44 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TraverseObjCAtCatchStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 39 def ObjCAtCatchStmt : Stmt;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | ASTDumper.cpp | 312 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node); 1518 void ASTDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | StmtPrinter.cpp | 498 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I); in VisitObjCAtTryStmt() 521 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | TextNodeDumper.cpp | 938 void TextNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | StmtProfile.cpp | 376 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
|
| H A D | ASTImporter.cpp | 541 ExpectedStmt VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); 5963 ExpectedStmt ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt() 5975 return new (Importer.getToContext()) ObjCAtCatchStmt ( in VisitObjCAtCatchStmt() 6002 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI); in VisitObjCAtTryStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 456 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); in BuildScopeInformation()
|
| H A D | SemaStmt.cpp | 3781 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body); in ActOnObjCAtCatchStmt()
|
| H A D | TreeTransform.h | 7236 TreeTransform<Derived>::TransformObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TransformObjCAtCatchStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 648 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1240 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt() 1267 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Record.readSubStmt())); in VisitObjCAtTryStmt() 2751 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1195 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/ |
| H A D | CFG.cpp | 567 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); 2132 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit() 3605 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1450 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 1825 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
|
| H A D | RewriteModernObjC.cpp | 1957 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
|