Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/xml/
DXPathGrammar.y109 %type <expr> FilterExpr
429 FilterExpr
431 FilterExpr '/' RelativeLocationPath
440 FilterExpr DescendantOrSelf RelativeLocationPath
452 FilterExpr:
/external/clang/lib/AST/
DStmt.cpp760 Expr *FilterExpr, in SEHExceptStmt() argument
765 Children[FILTER_EXPR] = reinterpret_cast<Stmt*>(FilterExpr); in SEHExceptStmt()
771 Expr *FilterExpr, in Create() argument
773 return new(C) SEHExceptStmt(Loc,FilterExpr,Block); in Create()
/external/clang/lib/Sema/
DSemaStmt.cpp2345 Expr *FilterExpr, in ActOnSEHExceptBlock() argument
2347 assert(FilterExpr && Block); in ActOnSEHExceptBlock()
2349 if(!FilterExpr->getType()->isIntegerType()) { in ActOnSEHExceptBlock()
2350 return StmtError(Diag(FilterExpr->getExprLoc(), in ActOnSEHExceptBlock()
2352 << FilterExpr->getType()); in ActOnSEHExceptBlock()
2355 return Owned(SEHExceptStmt::Create(Context,Loc,FilterExpr,Block)); in ActOnSEHExceptBlock()
DTreeTransform.h1289 Expr *FilterExpr, in RebuildSEHExceptStmt() argument
1291 return getSema().ActOnSEHExceptBlock(Loc,FilterExpr,Block); in RebuildSEHExceptStmt()
5697 ExprResult FilterExpr = getDerived().TransformExpr(S->getFilterExpr()); in TransformSEHExceptStmt() local
5698 if(FilterExpr.isInvalid()) return StmtError(); in TransformSEHExceptStmt()
5704 FilterExpr.take(), in TransformSEHExceptStmt()
/external/clang/lib/Parse/
DParseStmt.cpp394 ExprResult FilterExpr(ParseExpression()); in ParseSEHExceptBlock() local
402 if(FilterExpr.isInvalid()) in ParseSEHExceptBlock()
414 return Actions.ActOnSEHExceptBlock(ExceptLoc, FilterExpr.take(), Block.take()); in ParseSEHExceptBlock()
/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.h1470 Expr *FilterExpr,
1480 Expr *FilterExpr,
/external/clang/include/clang/Sema/
DSema.h2110 Expr *FilterExpr,
/external/webkit/Source/WebCore/
DChangeLog-2006-12-3150466 "FilterExpr DescendantOrSelf RelativeLocationPath" production.
DChangeLog-2009-06-163671 always a node-set (this is not so for FilterExpr production in the spec, but is for us,