Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DStmtObjC.h73 class ObjCAtCatchStmt : public Stmt {
80 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, in ObjCAtCatchStmt() function
86 explicit ObjCAtCatchStmt(EmptyShell Empty) : in ObjCAtCatchStmt() function
115 static bool classof(const ObjCAtCatchStmt *) { return true; } in classof() argument
208 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const { in getCatchStmt()
210 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
214 ObjCAtCatchStmt *getCatchStmt(unsigned I) { in getCatchStmt()
216 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
220 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) { in setCatchStmt()
DRecursiveASTVisitor.h1718 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, { })
/external/clang/lib/AST/
DStmtDumper.cpp164 void VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node);
615 void StmtDumper::VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
DStmtPrinter.cpp407 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I); in VisitObjCAtTryStmt()
431 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
DStmtProfile.cpp201 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/external/clang/include/clang/Basic/
DStmtNodes.td35 def ObjCAtCatchStmt : Stmt;
/external/clang/lib/CodeGen/
DCGObjCRuntime.cpp186 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I); in EmitTryCatchStmt()
DCGObjCMac.cpp3048 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I); in EmitTryOrSynchronizedStmt()
/external/clang/lib/Sema/
DJumpDiagnostics.cpp379 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); in BuildScopeInformation()
DSemaStmt.cpp2132 return Owned(new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body)); in ActOnObjCAtCatchStmt()
DTreeTransform.h5396 TreeTransform<Derived>::TransformObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TransformObjCAtCatchStmt()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp876 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
903 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Reader.ReadSubStmt())); in VisitObjCAtTryStmt()
1757 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp855 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/external/clang/lib/Analysis/
DCFG.cpp341 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
953 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit()
2022 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) { in VisitObjCAtCatchStmt()
/external/clang/lib/Rewrite/
DRewriteObjC.cpp1956 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()