Home
last modified time | relevance | path

Searched refs:ObjCAtThrowStmt (Results 1 – 21 of 21) sorted by relevance

/external/clang/include/clang/AST/
DStmtObjC.h313 class ObjCAtThrowStmt : public Stmt {
317 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr) in ObjCAtThrowStmt() function
321 explicit ObjCAtThrowStmt(EmptyShell Empty) : in ObjCAtThrowStmt() function
DRecursiveASTVisitor.h2026 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, { })
/external/clang/lib/CodeGen/
DCGObjCRuntime.h41 class ObjCAtThrowStmt; variable
238 const ObjCAtThrowStmt &S,
DCodeGenFunction.h70 class ObjCAtThrowStmt; variable
1836 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
DCGException.cpp440 const ObjCAtThrowStmt S(E->getExprLoc(), in EmitCXXThrowExpr()
DCGStmt.cpp152 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
DCGObjCMac.cpp1240 const ObjCAtThrowStmt &S,
1538 const ObjCAtThrowStmt &S,
4123 const ObjCAtThrowStmt &S, in EmitThrowStmt()
6984 const ObjCAtThrowStmt &S, in EmitThrowStmt()
DCGObjCGNU.cpp536 const ObjCAtThrowStmt &S,
2702 const ObjCAtThrowStmt &S, in EmitThrowStmt()
DCGObjC.cpp1698 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
/external/clang/include/clang/Basic/
DStmtNodes.td41 def ObjCAtThrowStmt : Stmt;
/external/clang/lib/Analysis/
DCFG.cpp392 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
1180 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit()
2430 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/external/clang/lib/AST/
DStmtProfile.cpp246 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
DStmtPrinter.cpp493 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
/external/clang/lib/Rewrite/Frontend/
DRewriteObjC.cpp312 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
1984 Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
4765 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
DRewriteModernObjC.cpp357 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
2075 Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
5765 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1119 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
2168 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1066 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp181 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
DSemaStmt.cpp2903 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, Throw)); in BuildObjCAtThrowStmt()
DTreeTransform.h5870 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
/external/clang/tools/libclang/
DRecursiveASTVisitor.h1941 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, { })