Home
last modified time | relevance | path

Searched refs:ObjCAtCatchStmt (Results 1 – 23 of 23) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtObjC.h74 class ObjCAtCatchStmt : public Stmt {
81 ObjCAtCatchStmt(SourceLocation atCatchLoc, SourceLocation rparenloc, in ObjCAtCatchStmt() function
87 explicit ObjCAtCatchStmt(EmptyShell Empty) : in ObjCAtCatchStmt() function
206 const ObjCAtCatchStmt *getCatchStmt(unsigned I) const { in getCatchStmt()
208 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
212 ObjCAtCatchStmt *getCatchStmt(unsigned I) { in getCatchStmt()
214 return cast_or_null<ObjCAtCatchStmt>(getStmts()[I + 1]); in getCatchStmt()
218 void setCatchStmt(unsigned I, ObjCAtCatchStmt *S) { in setCatchStmt()
H A DStmtDataCollectors.td178 class ObjCAtCatchStmt {
H A DTextNodeDumper.h261 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
H A DRecursiveASTVisitor.h2173 DEF_TRAVERSE_STMT(ObjCAtCatchStmt, {})
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp169 const ObjCAtCatchStmt *CatchStmt = S.getCatchStmt(I); in EmitTryCatchStmt()
H A DCGObjCMac.cpp4541 const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I); in EmitTryOrSynchronizedStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp44 bool TraverseObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TraverseObjCAtCatchStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td39 def ObjCAtCatchStmt : Stmt;
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTDumper.cpp312 void VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node);
1518 void ASTDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
H A DStmtPrinter.cpp498 ObjCAtCatchStmt *catchStmt = Node->getCatchStmt(I); in VisitObjCAtTryStmt()
521 void StmtPrinter::VisitObjCAtCatchStmt (ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
H A DTextNodeDumper.cpp938 void TextNodeDumper::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *Node) { in VisitObjCAtCatchStmt()
H A DStmtProfile.cpp376 void StmtProfiler::VisitObjCAtCatchStmt(const ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
H A DASTImporter.cpp541 ExpectedStmt VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
5963 ExpectedStmt ASTNodeImporter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
5975 return new (Importer.getToContext()) ObjCAtCatchStmt ( in VisitObjCAtCatchStmt()
6002 ObjCAtCatchStmt *FromCatchStmt = S->getCatchStmt(CI); in VisitObjCAtTryStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DJumpDiagnostics.cpp456 ObjCAtCatchStmt *AC = AT->getCatchStmt(I); in BuildScopeInformation()
H A DSemaStmt.cpp3781 return new (Context) ObjCAtCatchStmt(AtLoc, RParen, Var, Body); in ActOnObjCAtCatchStmt()
H A DTreeTransform.h7236 TreeTransform<Derived>::TransformObjCAtCatchStmt(ObjCAtCatchStmt *S) { in TransformObjCAtCatchStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp648 const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1240 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
1267 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Record.readSubStmt())); in VisitObjCAtTryStmt()
2751 S = new (Context) ObjCAtCatchStmt(Empty); in ReadStmtFromStream()
H A DASTWriterStmt.cpp1195 void ASTStmtWriter::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp567 CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
2132 return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S)); in Visit()
3605 CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { in VisitObjCAtCatchStmt()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1450 extern const internal::VariadicDynCastAllOfMatcher<Stmt, ObjCAtCatchStmt>
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp1825 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()
H A DRewriteModernObjC.cpp1957 ObjCAtCatchStmt *Catch = S->getCatchStmt(I); in RewriteObjCTryStmt()