| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtObjC.h | 358 class ObjCAtThrowStmt : public Stmt { 363 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr) in ObjCAtThrowStmt() function 367 explicit ObjCAtThrowStmt(EmptyShell Empty) : in ObjCAtThrowStmt() function
|
| H A D | RecursiveASTVisitor.h | 2485 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.h | 43 class ObjCAtThrowStmt; variable 273 const ObjCAtThrowStmt &S,
|
| H A D | CGObjCMac.cpp | 1322 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S, 1631 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S, 4779 const ObjCAtThrowStmt &S, in EmitThrowStmt() 7659 const ObjCAtThrowStmt &S, in EmitThrowStmt()
|
| H A D | CGObjCGNU.cpp | 635 const ObjCAtThrowStmt &S, 4262 const ObjCAtThrowStmt &S, in EmitThrowStmt()
|
| H A D | CGException.cpp | 458 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); in EmitCXXThrowExpr()
|
| H A D | CodeGenFunction.h | 79 class ObjCAtThrowStmt; variable 3614 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
|
| H A D | CGStmt.cpp | 189 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
|
| H A D | CGObjC.cpp | 2129 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 44 def ObjCAtThrowStmt : StmtNode<Stmt>;
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CalledOnceCheck.cpp | 1629 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
|
| H A D | CFG.cpp | 633 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); 2443 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit() 4155 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 871 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 303 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S); 1957 Stmt *RewriteObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt() 4637 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| H A D | RewriteModernObjC.cpp | 361 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S); 2038 Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt() 5516 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaFunctionEffects.cpp | 1138 bool VisitObjCAtThrowStmt(ObjCAtThrowStmt *Throw) override { in VisitObjCAtThrowStmt()
|
| H A D | SemaObjC.cpp | 262 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
|
| H A D | AnalysisBasedWarnings.cpp | 651 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
|
| H A D | TreeTransform.h | 9034 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1667 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt() 3507 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1632 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtProfile.cpp | 423 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| H A D | StmtPrinter.cpp | 629 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
|
| H A D | ASTImporter.cpp | 617 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); 7571 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt() 7578 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1686 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|