Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtObjC.h357 class ObjCAtThrowStmt : public Stmt {
362 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr) in ObjCAtThrowStmt() function
366 explicit ObjCAtThrowStmt(EmptyShell Empty) : in ObjCAtThrowStmt() function
H A DRecursiveASTVisitor.h2401 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGObjCRuntime.h43 class ObjCAtThrowStmt; variable
289 const ObjCAtThrowStmt &S,
H A DCGObjCMac.cpp1375 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S,
1688 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S,
4897 const ObjCAtThrowStmt &S, in EmitThrowStmt()
7819 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCGObjCGNU.cpp634 const ObjCAtThrowStmt &S,
4031 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCodeGenFunction.h76 class ObjCAtThrowStmt; variable
3261 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
H A DCGException.cpp447 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); in EmitCXXThrowExpr()
H A DCGStmt.cpp180 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
H A DCGObjC.cpp2094 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td43 def ObjCAtThrowStmt : StmtNode<Stmt>;
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DCalledOnceCheck.cpp1630 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
H A DCFG.cpp598 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
2350 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit()
4037 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp841 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp305 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
1959 Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
4658 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
H A DRewriteModernObjC.cpp363 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
2040 Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
5553 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtProfile.cpp403 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
H A DStmtPrinter.cpp612 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
H A DASTImporter.cpp609 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
6873 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
6880 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp1612 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
3232 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1498 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp486 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
H A DSemaStmt.cpp4252 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
H A DTreeTransform.h8231 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1635 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>