Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/llvm/tools/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
205 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const { in getCatchStmt()
207 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
211 ObjCAtCatchStmt *getCatchStmt(unsigned I) { in getCatchStmt()
213 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
217 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) { in setCatchStmt()
DRecursiveASTVisitor.h1955 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, { })
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/Basic/
DStmtNodes.td39 def ObjCAtCatchStmt : Stmt;
/freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/
DCGObjCRuntime.cpp193 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I); in EmitTryCatchStmt()
DCGObjCMac.cpp3968 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I); in EmitTryOrSynchronizedStmt()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
DDeadStoresChecker.cpp44 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TraverseObjCAtCatchStmt()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DJumpDiagnostics.cpp418 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); in BuildScopeInformation()
DSemaStmt.cpp2926 return Owned(new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body)); in ActOnObjCAtCatchStmt()
DTreeTransform.h5858 TreeTransform<Derived>::TransformObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TransformObjCAtCatchStmt()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DStmtPrinter.cpp465 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I); in VisitObjCAtTryStmt()
489 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
DASTDumper.cpp306 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
1877 void ASTDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
DStmtProfile.cpp226 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReaderStmt.cpp1086 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
1113 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Reader.ReadSubStmt())); in VisitObjCAtTryStmt()
2193 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1037 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Analysis/
DCFG.cpp392 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
1180 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit()
2451 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp1858 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
DRewriteModernObjC.cpp2013 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()