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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DJAXPNamespaceContextWrapper.java49 private int[] fContext = new int[8]; field in class:JAXPNamespaceContextWrapper
116 if (fCurrentContext + 1 == fContext.length) {
117 int[] contextarray = new int[fContext.length * 2];
118 System.arraycopy(fContext, 0, contextarray, 0, fContext.length);
119 fContext = contextarray;
122 fContext[++fCurrentContext] = fAllPrefixes.size();
129 fAllPrefixes.setSize(fContext[fCurrentContext--]);
146 fContext[fCurrentContext] = 0;
H A DNamespaceSupport.java93 * @see #fContext
111 protected int[] fContext = new int[8]; field in class:NamespaceSupport
163 fContext[fCurrentContext] = fNamespaceSize;
175 if (fCurrentContext + 1 == fContext.length) {
176 int[] contextarray = new int[fContext.length * 2];
177 System.arraycopy(fContext, 0, contextarray, 0, fContext.length);
178 fContext = contextarray;
182 fContext[++fCurrentContext] = fNamespaceSize;
191 fNamespaceSize = fContext[fCurrentContex
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java386 int[] fContext = new int[INITIAL_STACK_SIZE]; field in class:XMLSchemaValidator.XSIErrorReporter
403 if (fContextCount == fContext.length) {
406 System.arraycopy(fContext, 0, newArray, 0, fContextCount);
407 fContext = newArray;
410 fContext[fContextCount++] = fErrors.size();
419 int contextPos = fContext[--fContextCount];
443 int contextPos = fContext[--fContextCount];

Completed in 63 milliseconds