| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 332 class ObjCAtThrowStmt : public Stmt { 337 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr) in ObjCAtThrowStmt() function 341 explicit ObjCAtThrowStmt(EmptyShell Empty) : in ObjCAtThrowStmt() function
|
| H A D | RecursiveASTVisitor.h | 2278 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.h | 42 class ObjCAtThrowStmt; variable 288 const ObjCAtThrowStmt &S,
|
| H A D | CGObjCMac.cpp | 1371 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 D | CodeGenFunction.h | 78 class ObjCAtThrowStmt; variable 3201 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
|
| H A D | CGObjCGNU.cpp | 633 const ObjCAtThrowStmt &S, 3950 const ObjCAtThrowStmt &S, in EmitThrowStmt()
|
| H A D | CGException.cpp | 447 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); in EmitCXXThrowExpr()
|
| H A D | CGStmt.cpp | 178 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
|
| H A D | CGObjC.cpp | 2037 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 43 def ObjCAtThrowStmt : StmtNode<Stmt>;
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CalledOnceCheck.cpp | 1630 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
|
| H A D | CFG.cpp | 593 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 D | ASTMatchersInternal.cpp | 826 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 305 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S); 1959 Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt() 4658 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| H A D | RewriteModernObjC.cpp | 362 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 D | ASTReaderStmt.cpp | 1621 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt() 3131 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1502 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtProfile.cpp | 399 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| H A D | StmtPrinter.cpp | 536 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
|
| H A D | ASTImporter.cpp | 592 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 D | AnalysisBasedWarnings.cpp | 482 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
|
| H A D | SemaStmt.cpp | 4188 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
|
| H A D | TreeTransform.h | 8015 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1621 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|