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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaNamespaceSupport.java48 fCurrentContext = nSupport.fCurrentContext;
49 if (fContext.length <= fCurrentContext)
50 fContext = new int[fCurrentContext+1];
51 System.arraycopy(nSupport.fContext, 0, fContext, 0, fCurrentContext+1);
92 if (fCurrentContext >= 3) {
107 if (fCurrentContext >= 3) {
108 fCurrentContext = 3;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeNamespaceSupport.java59 if (fCurrentContext + 1 == fValidContext.length) {
65 fValidContext[fCurrentContext] = true;
76 fValidContext[fCurrentContext] = false;
89 int lastValidContext = fCurrentContext - 1;
H A DMultipleScopeNamespaceSupport.java170 fCurrentContext = fScope[fCurrentScope];
171 fNamespaceSize = fContext[fCurrentContext];
185 fScope[++fCurrentScope] = fCurrentContext;
193 fCurrentContext = fScope[fCurrentScope--];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DJAXPNamespaceContextWrapper.java50 private int fCurrentContext; field in class:JAXPNamespaceContextWrapper
116 if (fCurrentContext + 1 == fContext.length) {
122 fContext[++fCurrentContext] = fAllPrefixes.size();
129 fAllPrefixes.setSize(fContext[fCurrentContext--]);
145 fCurrentContext = 0;
146 fContext[fCurrentContext] = 0;
H A DNamespaceSupport.java114 protected int fCurrentContext; field in class:NamespaceSupport
153 fCurrentContext = 0;
163 fContext[fCurrentContext] = fNamespaceSize;
164 //++fCurrentContext;
175 if (fCurrentContext + 1 == fContext.length) {
182 fContext[++fCurrentContext] = fNamespaceSize;
183 //System.out.println("calling push context, current context = " + fCurrentContext);
191 fNamespaceSize = fContext[fCurrentContext--];
192 //System.out.println("Calling popContext, fCurrentContext = " + fCurrentContext);
[all...]

Completed in 37 milliseconds