Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/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.h2384 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
/freebsd-14.2/contrib/llvm-project/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,
4871 const ObjCAtThrowStmt &S, in EmitThrowStmt()
7766 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCGObjCGNU.cpp638 const ObjCAtThrowStmt &S,
4172 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCodeGenFunction.h76 class ObjCAtThrowStmt; variable
3346 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
H A DCGException.cpp458 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); in EmitCXXThrowExpr()
H A DCGStmt.cpp182 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
H A DCGObjC.cpp2083 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td43 def ObjCAtThrowStmt : StmtNode<Stmt>;
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DCalledOnceCheck.cpp1630 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
H A DCFG.cpp611 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
2357 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit()
4046 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp842 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
/freebsd-14.2/contrib/llvm-project/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()
5552 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1641 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
3315 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1599 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp419 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
H A DStmtPrinter.cpp617 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
H A DASTImporter.cpp564 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
7122 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
7129 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp509 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
H A DSemaStmt.cpp4287 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
H A DTreeTransform.h8389 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1646 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>