Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtObjC.h332 class ObjCAtThrowStmt : public Stmt {
337 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr) in ObjCAtThrowStmt() function
341 explicit ObjCAtThrowStmt(EmptyShell Empty) : in ObjCAtThrowStmt() function
H A DRecursiveASTVisitor.h2264 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGObjCRuntime.h42 class ObjCAtThrowStmt; variable
288 const ObjCAtThrowStmt &S,
H A DCGObjCMac.cpp1371 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S,
1684 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S,
4948 const ObjCAtThrowStmt &S, in EmitThrowStmt()
7839 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCodeGenFunction.h78 class ObjCAtThrowStmt; variable
3201 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
H A DCGObjCGNU.cpp633 const ObjCAtThrowStmt &S,
3947 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCGException.cpp447 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); in EmitCXXThrowExpr()
H A DCGStmt.cpp178 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
H A DCGObjC.cpp2035 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DStmtNodes.td43 def ObjCAtThrowStmt : StmtNode<Stmt>;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DCalledOnceCheck.cpp1630 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
H A DCFG.cpp593 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
2284 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit()
3837 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp826 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp305 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
1959 Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
4670 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
H A DRewriteModernObjC.cpp362 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
2039 Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
5564 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1611 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
3113 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1491 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtProfile.cpp399 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
H A DStmtPrinter.cpp535 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
H A DASTImporter.cpp574 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
6497 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
6504 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp482 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
H A DSemaStmt.cpp4240 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
H A DTreeTransform.h7992 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1621 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>