| /openbsd-src/gnu/llvm/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 | 2401 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGObjCRuntime.h | 43 class ObjCAtThrowStmt; variable 289 const ObjCAtThrowStmt &S,
|
| H A D | CGObjCMac.cpp | 1375 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S, 1688 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S, 4897 const ObjCAtThrowStmt &S, in EmitThrowStmt() 7819 const ObjCAtThrowStmt &S, in EmitThrowStmt()
|
| H A D | CGObjCGNU.cpp | 634 const ObjCAtThrowStmt &S, 4031 const ObjCAtThrowStmt &S, in EmitThrowStmt()
|
| H A D | CodeGenFunction.h | 76 class ObjCAtThrowStmt; variable 3261 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 | 180 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
|
| H A D | CGObjC.cpp | 2094 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 43 def ObjCAtThrowStmt : StmtNode<Stmt>;
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CalledOnceCheck.cpp | 1630 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
|
| H A D | CFG.cpp | 598 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); 2350 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit() 4037 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 841 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | StmtProfile.cpp | 403 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| H A D | StmtPrinter.cpp | 612 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
|
| H A D | ASTImporter.cpp | 609 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S); 6873 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt() 6880 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1612 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt() 3232 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1498 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 486 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
|
| H A D | SemaStmt.cpp | 4252 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
|
| H A D | TreeTransform.h | 8231 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 1635 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>
|