Home
last modified time | relevance | path

Searched refs:FilterExpr (Results 1 – 8 of 8) sorted by relevance

/external/clang/lib/AST/
DStmt.cpp933 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/
DCGException.cpp1691 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/
DParseStmt.cpp493 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/
DSemaStmt.cpp3766 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()
DTreeTransform.h1950 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/
DXPathParser.java1278 int filterExprMatch = FilterExpr(); in PathExpr()
1338 protected int FilterExpr() throws javax.xml.transform.TransformerException in FilterExpr() method in XPathParser
/external/clang/include/clang/AST/
DStmt.h1851 Expr *FilterExpr,
1861 Expr *FilterExpr,
/external/clang/include/clang/Sema/
DSema.h3560 Expr *FilterExpr,