Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h358 class ObjCAtThrowStmt : public Stmt {
363 ObjCAtThrowStmt(SourceLocation atThrowLoc, Stmt *throwExpr) in ObjCAtThrowStmt() function
367 explicit ObjCAtThrowStmt(EmptyShell Empty) : in ObjCAtThrowStmt() function
H A DRecursiveASTVisitor.h2442 DEF_TRAVERSE_STMT(ObjCAtThrowStmt, {})
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCRuntime.h43 class ObjCAtThrowStmt; variable
289 const ObjCAtThrowStmt &S,
H A DCGObjCMac.cpp1375 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S,
1696 void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S,
4879 const ObjCAtThrowStmt &S, in EmitThrowStmt()
7772 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCGObjCGNU.cpp636 const ObjCAtThrowStmt &S,
4171 const ObjCAtThrowStmt &S, in EmitThrowStmt()
H A DCGException.cpp458 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); in EmitCXXThrowExpr()
H A DCodeGenFunction.h78 class ObjCAtThrowStmt; variable
3572 void EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S);
H A DCGStmt.cpp186 EmitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(*S)); in EmitStmt()
H A DCGObjC.cpp2084 void CodeGenFunction::EmitObjCAtThrowStmt(const ObjCAtThrowStmt &S) { in EmitObjCAtThrowStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td43 def ObjCAtThrowStmt : StmtNode<Stmt>;
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCalledOnceCheck.cpp1631 void VisitObjCAtThrowStmt(const ObjCAtThrowStmt *) { in VisitObjCAtThrowStmt() argument
H A DCFG.cpp611 CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
2354 return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S)); in Visit()
4043 CFGBlock *CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp362 Stmt *RewriteObjCThrowStmt(ObjCAtThrowStmt *S);
2039 Stmt *RewriteModernObjC::RewriteObjCThrowStmt(ObjCAtThrowStmt *S) { in RewriteObjCThrowStmt()
5550 if (ObjCAtThrowStmt *StmtThrow = dyn_cast<ObjCAtThrowStmt>(S)) in RewriteFunctionBodyOrGlobalInitializer()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1648 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
3376 S = new (Context) ObjCAtThrowStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1609 void ASTStmtWriter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjC.cpp266 return new (Context) ObjCAtThrowStmt(AtLoc, Throw); in BuildObjCAtThrowStmt()
H A DAnalysisBasedWarnings.cpp509 if (isa<ObjCAtThrowStmt>(S)) { in CheckFallThrough()
H A DTreeTransform.h8684 TreeTransform<Derived>::TransformObjCAtThrowStmt(ObjCAtThrowStmt *S) { in TransformObjCAtThrowStmt()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp419 void StmtProfiler::VisitObjCAtThrowStmt(const ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
H A DStmtPrinter.cpp620 void StmtPrinter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) { in VisitObjCAtThrowStmt()
H A DASTImporter.cpp565 ExpectedStmt VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
7224 ExpectedStmt ASTNodeImporter::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { in VisitObjCAtThrowStmt()
7231 return new (Importer.getToContext()) ObjCAtThrowStmt( in VisitObjCAtThrowStmt()
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1647 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtThrowStmt>