Searched refs:SEHExceptStmt (Results 1 - 12 of 12) sorted by relevance

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

Completed in 1262 milliseconds