Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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.h2278 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
/freebsd-13.1/contrib/llvm-project/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,
3950 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.cpp2037 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td43 def ObjCAtThrowStmt : StmtNode<Stmt>;
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DCalledOnceCheck.cpp1630 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
H A DCFG.cpp593 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
2291 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit()
3844 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp826 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
/freebsd-13.1/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.cpp362 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
2039 Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
5553 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1621 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
3131 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1502 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp399 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
H A DStmtPrinter.cpp536 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
H A DASTImporter.cpp592 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
6626 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
6633 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp482 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
H A DSemaStmt.cpp4188 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
H A DTreeTransform.h8015 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1621 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>