Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmt.cpp922 Expr *FilterExpr, in SEHExceptStmt() argument
927 Children[FILTER_EXPR] = FilterExpr; in SEHExceptStmt()
932 Expr *FilterExpr, Stmt *Block) { in Create() argument
933 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.cpp481 ExprResult FilterExpr; in ParseSEHExceptBlock() local
485 FilterExpr = Actions.CorrectDelayedTyposInExpr(ParseExpression()); in ParseSEHExceptBlock()
494 if(FilterExpr.isInvalid()) in ParseSEHExceptBlock()
508 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.get(), Block.get()); in ParseSEHExceptBlock()
/external/clang/lib/Sema/
DSemaStmt.cpp3698 Expr *FilterExpr, in ActOnSEHExceptBlock() argument
3700 assert(FilterExpr && Block); in ActOnSEHExceptBlock()
3702 if(!FilterExpr->getType()->isIntegerType()) { in ActOnSEHExceptBlock()
3703 return StmtError(Diag(FilterExpr->getExprLoc(), in ActOnSEHExceptBlock()
3705 << FilterExpr->getType()); in ActOnSEHExceptBlock()
3708 return SEHExceptStmt::Create(Context,Loc,FilterExpr,Block); in ActOnSEHExceptBlock()
DTreeTransform.h1877 StmtResult RebuildSEHExceptStmt(SourceLocation Loc, Expr *FilterExpr, in RebuildSEHExceptStmt() argument
1879 return getSema().ActOnSEHExceptBlock(Loc, FilterExpr, Block); in RebuildSEHExceptStmt()
7024 ExprResult FilterExpr = getDerived().TransformExpr(S->getFilterExpr()); in TransformSEHExceptStmt() local
7025 if (FilterExpr.isInvalid()) in TransformSEHExceptStmt()
7032 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.h1829 Expr *FilterExpr,
1839 Expr *FilterExpr,
/external/clang/include/clang/Sema/
DSema.h3476 Expr *FilterExpr,