Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmt.cpp1036 SEHExceptStmt* SEHTryStmt::getExceptHandler() const { in getExceptHandler()
1037 return dyn_cast<SEHExceptStmt>(getHandler()); in getExceptHandler()
1044 SEHExceptStmt::SEHExceptStmt(SourceLocation Loc, in SEHExceptStmt() function in SEHExceptStmt
1054 SEHExceptStmt* SEHExceptStmt::Create(const ASTContext &C, SourceLocation Loc, in Create()
1056 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
DStmtPrinter.cpp71 void PrintRawSEHExceptHandler(SEHExceptStmt *S);
539 SEHExceptStmt *E = Node->getExceptHandler(); in VisitSEHTryStmt()
556 void StmtPrinter::PrintRawSEHExceptHandler(SEHExceptStmt *Node) { in PrintRawSEHExceptHandler()
564 void StmtPrinter::VisitSEHExceptStmt(SEHExceptStmt *Node) { in VisitSEHExceptStmt()
DStmtProfile.cpp213 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { in VisitSEHExceptStmt()
/external/clang/include/clang/AST/
DStmt.h1824 class SEHExceptStmt : public Stmt {
1830 SEHExceptStmt(SourceLocation Loc,
1836 explicit SEHExceptStmt(EmptyShell E) : Stmt(SEHExceptStmtClass, E) { } in SEHExceptStmt() function
1839 static SEHExceptStmt* Create(const ASTContext &C,
1938 SEHExceptStmt *getExceptHandler() const;
DDataRecursiveASTVisitor.h2252 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
DRecursiveASTVisitor.h2282 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
/external/clang/include/clang/Basic/
DStmtNodes.td173 def SEHExceptStmt : Stmt;
/external/clang/lib/CodeGen/
DCGException.cpp1482 const SEHExceptStmt &Except) { in GenerateSEHFilterFunction()
1619 const SEHExceptStmt *Except = S.getExceptHandler(); in EnterSEHTryStmt()
1649 const SEHExceptStmt *Except = S.getExceptHandler(); in ExitSEHTryStmt()
DCodeGenFunction.h2000 const SEHExceptStmt &Except);
/external/clang/lib/Sema/
DJumpDiagnostics.cpp352 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
DSemaStmt.cpp3655 return SEHExceptStmt::Create(Context,Loc,FilterExpr,Block); in ActOnSEHExceptBlock()
DTreeTransform.h6620 StmtResult TreeTransform<Derived>::TransformSEHExceptStmt(SEHExceptStmt *S) { in TransformSEHExceptStmt()
6638 return getDerived().TransformSEHExceptStmt(cast<SEHExceptStmt>(Handler)); in TransformSEHHandler()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1633 void ASTStmtReader::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()
1636 S->Children[SEHExceptStmt::FILTER_EXPR] = Reader.ReadSubStmt(); in VisitSEHExceptStmt()
1637 S->Children[SEHExceptStmt::BLOCK] = Reader.ReadSubStmt(); in VisitSEHExceptStmt()
2670 S = new (Context) SEHExceptStmt(Empty); in ReadStmtFromStream()
DASTWriterStmt.cpp1653 void ASTStmtWriter::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()