| /netbsd-src/external/apache2/llvm/dist/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 217 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const { in getCatchStmt() 219 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt() 223 ObjCAtCatchStmt *getCatchStmt(unsigned I) { in getCatchStmt() 225 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt() 229 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) { in setCatchStmt()
|
| H A D | StmtDataCollectors.td | 178 class ObjCAtCatchStmt {
|
| H A D | TextNodeDumper.h | 286 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
|
| H A D | JSONNodeDumper.h | 315 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *OACS);
|
| H A D | ASTNodeTraverser.h | 727 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | RecursiveASTVisitor.h | 2261 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.cpp | 167 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I); in EmitTryCatchStmt()
|
| H A D | CGObjCMac.cpp | 4792 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I); in EmitTryOrSynchronizedStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DeadStoresChecker.cpp | 45 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TraverseObjCAtCatchStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 41 def ObjCAtCatchStmt : StmtNode<Stmt>;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | JumpDiagnostics.cpp | 491 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); in BuildScopeInformation()
|
| H A D | SemaExceptionSpec.cpp | 1567 const ObjCAtCatchStmt *Catch = TS->getCatchStmt(I - 1); in canThrow()
|
| H A D | SemaStmt.cpp | 4198 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body); in ActOnObjCAtCatchStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | StmtPrinter.cpp | 508 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I); in VisitObjCAtTryStmt() 531 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | JSONNodeDumper.cpp | 1465 void JSONNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt* OACS) { in VisitObjCAtCatchStmt()
|
| H A D | TextNodeDumper.cpp | 1266 void TextNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
|
| H A D | StmtProfile.cpp | 379 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
|
| H A D | ASTImporter.cpp | 570 ExpectedStmt VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); 6434 ExpectedStmt ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt() 6444 return new (Importer.getToContext()) ObjCAtCatchStmt ( in VisitObjCAtCatchStmt() 6470 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI); in VisitObjCAtTryStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 829 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1570 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt() 1597 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Record.readSubStmt())); in VisitObjCAtTryStmt() 3095 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1447 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | CFG.cpp | 591 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S); 2275 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit() 3831 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1641 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 1833 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
|
| H A D | RewriteModernObjC.cpp | 1961 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
|