Searched refs:fDepth (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DBalancedDTDGrammar.java47 private int fDepth = 0; field in class:BalancedDTDGrammar
83 fDepth = 0;
102 ++fDepth;
150 fOpStack[fDepth] = XMLContentSpec.CONTENTSPECNODE_CHOICE;
153 fOpStack[fDepth] = XMLContentSpec.CONTENTSPECNODE_SEQ;
173 int currentIndex = fGroupIndexStackSizes[fDepth] - 1;
175 fGroupIndexStack[fDepth][currentIndex] = addContentSpecNode(XMLContentSpec.CONTENTSPECNODE_ZERO_OR_ONE, fGroupIndexStack[fDepth][currentIndex], -1);
178 fGroupIndexStack[fDepth][currentIndex] = addContentSpecNode(XMLContentSpec.CONTENTSPECNODE_ZERO_OR_MORE, fGroupIndexStack[fDepth][currentInde
[all...]
H A DDTDGrammar.java306 private int fDepth = 0; field in class:DTDGrammar
996 fDepth = 0;
1015 fDepth++;
1047 if (fNodeIndexStack[fDepth] == -1 ) {
1048 fNodeIndexStack[fDepth] = addUniqueLeafNode(elementName);
1051 fNodeIndexStack[fDepth] = addContentSpecNode(XMLContentSpec.CONTENTSPECNODE_CHOICE,
1052 fNodeIndexStack[fDepth],
1057 fNodeIndexStack[fDepth] = addContentSpecNode(XMLContentSpec.CONTENTSPECNODE_LEAF, elementName);
1076 if (fOpStack[fDepth] != XMLContentSpec.CONTENTSPECNODE_SEQ && separator == XMLDTDContentModelHandler.SEPARATOR_CHOICE ) {
1077 if (fPrevNodeIndexStack[fDepth] !
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DIntStack.java38 private int fDepth; field in class:IntStack
49 return fDepth;
54 ensureCapacity(fDepth + 1);
55 fData[fDepth++] = value;
60 return fData[fDepth - 1];
70 return fData[--fDepth];
75 fDepth = 0;
83 System.out.print(fDepth);
85 for (int i = 0; i < fDepth; i++) {
92 if (i < fDepth
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOMParser.java97 private int fDepth = -1; field in class:SchemaDOMParser
122 fDepth = -1;
232 fDepth++;
247 fAnnotationDepth = fDepth;
260 else if (fDepth == fAnnotationDepth + 1) {
261 fInnerAnnotationDepth = fDepth;
366 if (fInnerAnnotationDepth == fDepth) {
370 } else if (fAnnotationDepth == fDepth) {
394 fDepth--;
559 private int fDepth; field in class:SchemaDOMParser.BooleanStack
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDocumentFragmentScannerImpl.java1062 sb.append(" fElementStack.fDepth = " + fElementStack.fDepth);
1067 if(fElementStack.fDepth < MAX_DEPTH_LIMIT){
1070 short pointer = getElementPointer((short)fElementStack.fDepth, (short)(column - 1) );
1077 resetPointer((short)fElementStack.fDepth , column) ;
1096 short depth = (short) fElementStack.fDepth ;
1108 sb.append(" fElementStack.fDepth = " + fElementStack.fDepth);
1192 short depth = (short)fElementStack.fDepth ;
1207 System.out.println("Element " + fElementRawname + " was SKIPPED at depth = " + fElementStack.fDepth
2093 protected int fDepth; field in class:XMLDocumentFragmentScannerImpl.ElementStack2
2256 protected int fDepth; field in class:XMLDocumentFragmentScannerImpl.ElementStack
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java324 private int fDepth; field in class:XIncludeHandler
373 fDepth = 0;
375 fSawFallback[fDepth] = false;
376 fSawInclude[fDepth] = false;
377 fState[fDepth] = STATE_NORMAL_PROCESSING;
398 fDepth = 0;
856 fDepth++;
859 fDepth--;
877 fDepth++;
880 fDepth
[all...]
H A DXPointerElementHandler.java149 private int fDepth; field in class:XPointerElementHandler
183 fDepth = 0;
185 fSawFallback[fDepth] = false;
186 fSawInclude[fDepth] = false;
212 fDepth = 0;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DStAXSchemaParser.java89 private int fDepth; field in class:StAXSchemaParser
121 ++fDepth;
139 --fDepth;
140 if (fDepth <= 0) {
170 fDepth++;
203 ++fDepth;
222 --fDepth;
223 if (fDepth <= 0) {
258 ++fDepth;
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DXMLStreamWriterImpl.java1901 protected short fDepth; field in class:XMLStreamWriterImpl.ElementStack
1926 if (fDepth == fElements.length) {
1928 System.arraycopy(fElements, 0, array, 0, fDepth);
1931 for (int i = fDepth; i < fElements.length; i++) {
1936 fElements[fDepth].setValues(element);
1938 return fElements[fDepth++];
1952 if (fDepth == fElements.length) {
1954 System.arraycopy(fElements, 0, array, 0, fDepth);
1957 for (int i = fDepth; i < fElements.length; i++) {
1962 fElements[fDepth]
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java4149 fLocalId.fDepth = initialDepth;
4164 fLocalId.fDepth = initialDepth;
4215 public int fDepth; field in class:XMLSchemaValidator.LocalIDKey
4222 fDepth = depth;
4227 return fId.hashCode() + fDepth;
4233 return (lIDKey.fId == fId && lIDKey.fDepth == fDepth);

Completed in 70 milliseconds