Home
last modified time | relevance | path

Searched refs:SEHExceptStmt (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/AST/
DStmt.cpp924 SEHExceptStmt* SEHTryStmt::getExceptHandler() const { in getExceptHandler()
925 return dyn_cast<SEHExceptStmt>(getHandler()); in getExceptHandler()
932 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, in SEHExceptStmt() function in SEHExceptStmt
942 SEHExceptStmt* SEHExceptStmt::Create(const ASTContext &C, SourceLocation Loc, in Create()
944 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
DStmtPrinter.cpp73 void PrintRawSEHExceptHandler(SEHExceptStmt *S);
543 SEHExceptStmt *E = Node->getExceptHandler(); in VisitSEHTryStmt()
560 void StmtPrinter::PrintRawSEHExceptHandler(SEHExceptStmt *Node) { in PrintRawSEHExceptHandler()
568 void StmtPrinter::VisitSEHExceptStmt(SEHExceptStmt *Node) { in VisitSEHExceptStmt()
DStmtProfile.cpp215 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { in VisitSEHExceptStmt()
/external/clang/include/clang/AST/
DStmt.h1844 class SEHExceptStmt : public Stmt {
1850 SEHExceptStmt(SourceLocation Loc,
1856 explicit SEHExceptStmt(EmptyShell E) : Stmt(SEHExceptStmtClass, E) { } in SEHExceptStmt() function
1859 static SEHExceptStmt* Create(const ASTContext &C,
1958 SEHExceptStmt *getExceptHandler() const;
DRecursiveASTVisitor.h2378 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
/external/clang/include/clang/Basic/
DStmtNodes.td187 def SEHExceptStmt : Stmt;
/external/clang/lib/CodeGen/
DCGException.cpp1690 const SEHExceptStmt &Except) { in GenerateSEHFilterFunction()
1792 const SEHExceptStmt *Except = S.getExceptHandler(); in EnterSEHTryStmt()
1826 const SEHExceptStmt *Except = S.getExceptHandler(); in ExitSEHTryStmt()
DCodeGenFunction.h2306 const SEHExceptStmt &Except);
/external/clang/lib/Sema/
DJumpDiagnostics.cpp395 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
DSemaStmt.cpp3776 return SEHExceptStmt::Create(Context,Loc,FilterExpr,Block); in ActOnSEHExceptBlock()
DTreeTransform.h7133 StmtResult TreeTransform<Derived>::TransformSEHExceptStmt(SEHExceptStmt *S) { in TransformSEHExceptStmt()
7151 return getDerived().TransformSEHExceptStmt(cast<SEHExceptStmt>(Handler)); in TransformSEHHandler()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1712 void ASTStmtReader::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()
1715 S->Children[SEHExceptStmt::FILTER_EXPR] = Reader.ReadSubStmt(); in VisitSEHExceptStmt()
1716 S->Children[SEHExceptStmt::BLOCK] = Reader.ReadSubStmt(); in VisitSEHExceptStmt()
3228 S = new (Context) SEHExceptStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1733 void ASTStmtWriter::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()