Searched defs:StepPattern (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/xml/src/main/java/org/apache/xpath/patterns/
H A DStepPattern.java19 * $Id: StepPattern.java 468655 2006-10-28 07:12:06Z minchau $
39 public class StepPattern extends NodeTest implements SubContextList, ExpressionOwner class in inherits:NodeTest,SubContextList,ExpressionOwner
47 * Construct a StepPattern that tests for namespaces and node names.
56 public StepPattern(int whatToShow, String namespace, String name, int axis, method in class:StepPattern
66 * Construct a StepPattern that doesn't test for node names.
73 public StepPattern(int whatToShow, int axis, int axisForPredicate) method in class:StepPattern
145 StepPattern m_relativePathPattern;
184 public void setRelativePathPattern(StepPattern expr)
200 public StepPattern getRelativePathPattern()
792 for (StepPattern pa
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
H A DXPathParser.java2238 * RelativePathPattern ::= StepPattern
2239 * | RelativePathPattern '/' StepPattern
2240 * | RelativePathPattern '//' StepPattern
2249 // RelativePathPattern, so let StepPattern know it can't begin with a '/'
2250 boolean trailingSlashConsumed = StepPattern(false);
2256 // StepPattern() may consume first slash of pair in "a//b" while
2257 // processing StepPattern "a". On next iteration, let StepPattern know
2259 trailingSlashConsumed = StepPattern(!trailingSlashConsumed);
2265 * StepPattern
2274 protected boolean StepPattern(boolean isLeadingSlashPermitted) method in class:XPathParser
[all...]

Completed in 48 milliseconds