Searched refs:fContext (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaNamespaceSupport.java49 if (fContext.length <= fCurrentContext)
50 fContext = new int[fCurrentContext+1];
51 System.arraycopy(nSupport.fContext, 0, fContext, 0, fCurrentContext+1);
87 // happen to start at fContext[3].
93 int bottomLocalContext = fContext[3];
109 fNamespaceSize = fContext[3];
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];
/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/xinclude/
H A DMultipleScopeNamespaceSupport.java76 for (int i = fContext[fScope[fCurrentScope]];
106 return getPrefix(uri, fNamespaceSize, fContext[fScope[fCurrentScope]]);
113 return getURI(prefix, fNamespaceSize, fContext[fScope[fCurrentScope]]);
117 return getPrefix(uri, fContext[context+1], fContext[fScope[getScopeForContext(context)]]);
121 return getURI(prefix, fContext[context+1], fContext[fScope[getScopeForContext(context)]]);
171 fNamespaceSize = fContext[fCurrentContext];

Completed in 45 milliseconds