Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtObjC.h74 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()
DRecursiveASTVisitor.h2037 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
/external/clang/test/Misc/
Dast-dump-stmt.m31 // CHECK-NEXT: ObjCAtCatchStmt{{.*}}
34 // CHECK-NEXT: ObjCAtCatchStmt{{.*}} catch all
/external/clang/include/clang/Basic/
DStmtNodes.td39 def ObjCAtCatchStmt : Stmt;
/external/clang/lib/CodeGen/
DCGObjCRuntime.cpp193 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I); in EmitTryCatchStmt()
DCGObjCMac.cpp4190 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I); in EmitTryOrSynchronizedStmt()
/external/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp44 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TraverseObjCAtCatchStmt()
/external/clang/lib/Sema/
DJumpDiagnostics.cpp442 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); in BuildScopeInformation()
DSemaStmt.cpp3413 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body); in ActOnObjCAtCatchStmt()
DTreeTransform.h6706 TreeTransform<Derived>::TransformObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TransformObjCAtCatchStmt()
/external/clang/lib/AST/
DASTDumper.cpp548 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
2218 void ASTDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
DStmtPrinter.cpp463 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I); in VisitObjCAtTryStmt()
487 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
DStmtProfile.cpp231 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
DASTImporter.cpp213 Stmt *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
5248 Stmt *ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
5261 return new (Importer.getToContext()) ObjCAtCatchStmt(ToAtCatchLoc, in VisitObjCAtCatchStmt()
5283 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI); in VisitObjCAtTryStmt()
/external/clang/lib/Analysis/
DCFG.cpp471 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
1563 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit()
2869 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1132 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
1159 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Reader.ReadSubStmt())); in VisitObjCAtTryStmt()
3202 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1093 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp1824 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
DRewriteModernObjC.cpp1954 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()