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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DElementSchemePointer.java83 private int fCurrentChildSequence[];; field in class:ElementSchemePointer
197 fCurrentChildSequence = new int[i];
293 // need to resize fCurrentChildSequence
294 if (fCurrentChildDepth >= fCurrentChildSequence.length) {
295 int tmpCurrentChildSequence[] = new int[fCurrentChildSequence.length];
296 System.arraycopy(fCurrentChildSequence, 0, tmpCurrentChildSequence,
297 0, fCurrentChildSequence.length);
300 fCurrentChildSequence = new int[fCurrentChildDepth * 2];
301 System.arraycopy(tmpCurrentChildSequence, 0, fCurrentChildSequence,
310 fCurrentChildSequence[fCurrentChildDept
[all...]

Completed in 148 milliseconds