Searched refs:fOpStack (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DBalancedDTDGrammar.java50 private short [] fOpStack = null; field in class:BalancedDTDGrammar
150 fOpStack[fDepth] = XMLContentSpec.CONTENTSPECNODE_CHOICE;
153 fOpStack[fDepth] = XMLContentSpec.CONTENTSPECNODE_SEQ;
209 fOpStack = null;
238 return addContentSpecNode(fOpStack[fDepth],
247 if (fOpStack == null) {
248 fOpStack = new short[8];
252 else if (fDepth == fOpStack.length) {
254 System.arraycopy(fOpStack, 0, newOpStack, 0, fDepth);
255 fOpStack
[all...]
H A DDTDGrammar.java297 private short[] fOpStack = null; field in class:DTDGrammar
420 fOpStack = null;
1076 if (fOpStack[fDepth] != XMLContentSpec.CONTENTSPECNODE_SEQ && separator == XMLDTDContentModelHandler.SEPARATOR_CHOICE ) {
1078 fNodeIndexStack[fDepth] = addContentSpecNode(fOpStack[fDepth], fPrevNodeIndexStack[fDepth], fNodeIndexStack[fDepth]);
1081 fOpStack[fDepth] = XMLContentSpec.CONTENTSPECNODE_CHOICE;
1082 } else if (fOpStack[fDepth] != XMLContentSpec.CONTENTSPECNODE_CHOICE && separator == XMLDTDContentModelHandler.SEPARATOR_SEQUENCE) {
1084 fNodeIndexStack[fDepth] = addContentSpecNode(fOpStack[fDepth], fPrevNodeIndexStack[fDepth], fNodeIndexStack[fDepth]);
1087 fOpStack[fDepth] = XMLContentSpec.CONTENTSPECNODE_SEQ;
1132 fNodeIndexStack[fDepth] = addContentSpecNode(fOpStack[fDepth], fPrevNodeIndexStack[fDepth], fNodeIndexStack[fDepth]);
2054 if (fOpStack
[all...]

Completed in 61 milliseconds