| /llvm-project-15.0.7/clang/test/Import/objc-try-catch/ |
| H A D | test.m | 11 // CHECK-NEXT: ObjCAtThrowStmt 29 // CHECK-NEXT: ObjCAtThrowStmt
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/google/ |
| H A D | AvoidThrowingObjCExceptionCheck.cpp | 34 Result.Nodes.getNodeAs<ObjCAtThrowStmt>("throwStmt"); in check()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 357 class ObjCAtThrowStmt : public Stmt { 362 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr) in ObjCAtThrowStmt() function 366 explicit ObjCAtThrowStmt(EmptyShell Empty) : in ObjCAtThrowStmt() function
|
| H A D | RecursiveASTVisitor.h | 2404 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.h | 43 class ObjCAtThrowStmt; variable 289 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, 4889 const ObjCAtThrowStmt &S, in EmitThrowStmt() 7811 const ObjCAtThrowStmt &S, in EmitThrowStmt()
|
| H A D | CGObjCGNU.cpp | 634 const ObjCAtThrowStmt &S, 4032 const ObjCAtThrowStmt &S, in EmitThrowStmt()
|
| H A D | CodeGenFunction.h | 75 class ObjCAtThrowStmt; variable 3259 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
|
| H A D | CGException.cpp | 447 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); in EmitCXXThrowExpr()
|
| H A D | CGStmt.cpp | 179 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
|
| H A D | CGObjC.cpp | 2042 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 43 def ObjCAtThrowStmt : StmtNode<Stmt>;
|
| /llvm-project-15.0.7/clang/lib/Analysis/ |
| H A D | CalledOnceCheck.cpp | 1630 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
|
| H A D | CFG.cpp | 594 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); 2290 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit() 3976 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| /llvm-project-15.0.7/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 840 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|
| /llvm-project-15.0.7/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 | 363 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S); 2040 Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt() 5553 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1606 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt() 3185 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1500 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | StmtProfile.cpp | 403 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| H A D | StmtPrinter.cpp | 611 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
|
| H A D | ASTImporter.cpp | 612 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); 6737 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt() 6744 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 482 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | XRefs.cpp | 1898 QualType VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in typeForNode()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1634 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|