Searched refs:SEHExceptStmt (Results 1 – 14 of 14) sorted by relevance
/external/clang/lib/AST/ |
D | Stmt.cpp | 1036 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()
|
D | StmtPrinter.cpp | 71 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()
|
D | StmtProfile.cpp | 213 void StmtProfiler::VisitSEHExceptStmt(const SEHExceptStmt *S) { in VisitSEHExceptStmt()
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1824 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;
|
D | DataRecursiveASTVisitor.h | 2252 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
|
D | RecursiveASTVisitor.h | 2282 DEF_TRAVERSE_STMT(SEHExceptStmt, {})
|
/external/clang/include/clang/Basic/ |
D | StmtNodes.td | 173 def SEHExceptStmt : Stmt;
|
/external/clang/lib/CodeGen/ |
D | CGException.cpp | 1482 const SEHExceptStmt &Except) { in GenerateSEHFilterFunction() 1619 const SEHExceptStmt *Except = S.getExceptHandler(); in EnterSEHTryStmt() 1649 const SEHExceptStmt *Except = S.getExceptHandler(); in ExitSEHTryStmt()
|
D | CodeGenFunction.h | 2000 const SEHExceptStmt &Except);
|
/external/clang/lib/Sema/ |
D | JumpDiagnostics.cpp | 352 if (SEHExceptStmt *Except = TS->getExceptHandler()) { in BuildScopeInformation()
|
D | SemaStmt.cpp | 3655 return SEHExceptStmt::Create(Context,Loc,FilterExpr,Block); in ActOnSEHExceptBlock()
|
D | TreeTransform.h | 6620 StmtResult TreeTransform<Derived>::TransformSEHExceptStmt(SEHExceptStmt *S) { in TransformSEHExceptStmt() 6638 return getDerived().TransformSEHExceptStmt(cast<SEHExceptStmt>(Handler)); in TransformSEHHandler()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1633 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()
|
D | ASTWriterStmt.cpp | 1653 void ASTStmtWriter::VisitSEHExceptStmt(SEHExceptStmt *S) { in VisitSEHExceptStmt()
|