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

/external/clang/include/clang/AST/
H A DStmtObjC.h74 class ObjCAtCatchStmt : public Stmt { class in namespace:clang
81 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, function in class:clang::ObjCAtCatchStmt
87 explicit ObjCAtCatchStmt(EmptyShell Empty) : function in class:clang::ObjCAtCatchStmt
205 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const {
207 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
211 ObjCAtCatchStmt *getCatchStmt(unsigned I) {
213 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]);
217 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) {
H A DDataRecursiveASTVisitor.h1915 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
H A DRecursiveASTVisitor.h1932 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp193 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I);
H A DCGObjCMac.cpp3937 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp44 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) {
/external/clang/lib/AST/
H A DASTDumper.cpp346 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
1916 void ASTDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) {
H A DStmtPrinter.cpp459 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I);
483 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) {
H A DStmtProfile.cpp229 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) {
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp394 ObjCAtCatchStmt *AC = AT->getCatchStmt(I);
H A DSemaStmt.cpp3041 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body);
H A DTreeTransform.h5958 TreeTransform<Derived>::TransformObjCAtCatchStmt(ObjCAtCatchStmt *S) {
/external/clang/lib/Analysis/
H A DCFG.cpp393 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
1438 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
2711 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1084 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
1111 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Reader.ReadSubStmt()));
2382 S = new (Context) ObjCAtCatchStmt(Empty);
H A DASTWriterStmt.cpp1032 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
/external/clang/lib/Rewrite/Frontend/
H A DRewriteModernObjC.cpp1993 ObjCAtCatchStmt *Catch = S->getCatchStmt(I);
H A DRewriteObjC.cpp1837 ObjCAtCatchStmt *Catch = S->getCatchStmt(I);

Completed in 1946 milliseconds