Searched refs:fLocationPaths (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DXPathMatcher.java91 private XPath.LocationPath[] fLocationPaths; field in class:XPathMatcher
125 fLocationPaths = xpath.getLocationPaths();
126 fStepIndexes = new IntStack[fLocationPaths.length];
128 fCurrentStep = new int[fLocationPaths.length];
129 fNoMatchDepth = new int[fLocationPaths.length];
130 fMatched = new int[fLocationPaths.length];
143 for (int i=0; i < fLocationPaths.length; i++)
188 for(int i = 0; i < fLocationPaths.length; i++) {
216 for(int i = 0; i < fLocationPaths.length; i++) {
235 XPath.Step[] steps = fLocationPaths[
[all...]
H A DSelector.java123 for (int i=0;i<fLocationPaths.length;i++) {
125 fLocationPaths[i].steps[fLocationPaths[i].steps.length-1].axis;
H A DField.java125 for (int i=0;i<fLocationPaths.length;i++) {
126 for(int j=0; j<fLocationPaths[i].steps.length; j++) {
128 fLocationPaths[i].steps[j].axis;
130 (j < fLocationPaths[i].steps.length-1)) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/
H A DXPath.java62 protected LocationPath[] fLocationPaths; field in class:XPath
86 LocationPath[] ret=new LocationPath[fLocationPaths.length];
87 for (int i=0;i<fLocationPaths.length;i++){
88 ret[i]=(LocationPath)fLocationPaths[i].clone();
95 return (LocationPath)fLocationPaths[0].clone();
105 for (int i=0;i<fLocationPaths.length;i++){
109 buf.append(fLocationPaths[i].toString());
309 fLocationPaths=new LocationPath[locationPathsVector.size()];
310 locationPathsVector.copyInto(fLocationPaths);
314 System.out.println(">>> "+fLocationPaths);
[all...]

Completed in 33 milliseconds