Searched refs:FilterExpr (Results 1 – 8 of 8) sorted by relevance
/external/clang/lib/AST/ |
D | Stmt.cpp | 933 Expr *FilterExpr, in SEHExceptStmt() argument 938 Children[FILTER_EXPR] = FilterExpr; in SEHExceptStmt() 943 Expr *FilterExpr, Stmt *Block) { in Create() argument 944 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
|
/external/clang/lib/CodeGen/ |
D | CGException.cpp | 1691 const Expr *FilterExpr = Except.getFilterExpr(); in GenerateSEHFilterFunction() local 1692 startOutlinedSEHHelper(ParentCGF, true, FilterExpr); in GenerateSEHFilterFunction() 1695 llvm::Value *R = EmitScalarExpr(FilterExpr); in GenerateSEHFilterFunction() 1697 FilterExpr->getType()->isSignedIntegerType()); in GenerateSEHFilterFunction() 1700 FinishFunction(FilterExpr->getLocEnd()); in GenerateSEHFilterFunction()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 493 ExprResult FilterExpr; in ParseSEHExceptBlock() local 497 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock() 506 if(FilterExpr.isInvalid()) in ParseSEHExceptBlock() 520 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); in ParseSEHExceptBlock()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 3766 Expr *FilterExpr, in ActOnSEHExceptBlock() argument 3768 assert(FilterExpr && Block); in ActOnSEHExceptBlock() 3770 if(!FilterExpr->getType()->isIntegerType()) { in ActOnSEHExceptBlock() 3771 return StmtError(Diag(FilterExpr->getExprLoc(), in ActOnSEHExceptBlock() 3773 << FilterExpr->getType()); in ActOnSEHExceptBlock() 3776 return SEHExceptStmt::Create(Context,Loc,FilterExpr,Block); in ActOnSEHExceptBlock()
|
D | TreeTransform.h | 1950 StmtResult RebuildSEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, in RebuildSEHExceptStmt() argument 1952 return getSema().ActOnSEHExceptBlock(Loc, FilterExpr, Block); in RebuildSEHExceptStmt() 7134 ExprResult FilterExpr = getDerived().TransformExpr(S->getFilterExpr()); in TransformSEHExceptStmt() local 7135 if (FilterExpr.isInvalid()) in TransformSEHExceptStmt() 7142 return getDerived().RebuildSEHExceptStmt(S->getExceptLoc(), FilterExpr.get(), in TransformSEHExceptStmt()
|
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
D | XPathParser.java | 1278 int filterExprMatch = FilterExpr(); in PathExpr() 1338 protected int FilterExpr() throws javax.xml.transform.TransformerException in FilterExpr() method in XPathParser
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1851 Expr *FilterExpr, 1861 Expr *FilterExpr,
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3560 Expr *FilterExpr,
|