Lines Matching refs:fDepth

47     private int fDepth = 0;
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][currentIndex], -1);
181 fGroupIndexStack[fDepth][currentIndex] = addContentSpecNode(XMLContentSpec.CONTENTSPECNODE_ONE_OR_MORE, fGroupIndexStack[fDepth][currentIndex], -1);
194 final int length = fGroupIndexStackSizes[fDepth];
196 --fDepth;
235 return fGroupIndexStack[fDepth][begin];
238 return addContentSpecNode(fOpStack[fDepth],
252 else if (fDepth == fOpStack.length) {
253 short [] newOpStack = new short[fDepth * 2];
254 System.arraycopy(fOpStack, 0, newOpStack, 0, fDepth);
256 int [][] newGroupIndexStack = new int[fDepth * 2][];
257 System.arraycopy(fGroupIndexStack, 0, newGroupIndexStack, 0, fDepth);
259 int [] newGroupIndexStackLengths = new int[fDepth * 2];
260 System.arraycopy(fGroupIndexStackSizes, 0, newGroupIndexStackLengths, 0, fDepth);
263 fOpStack[fDepth] = -1;
264 fGroupIndexStackSizes[fDepth] = 0;
273 int [] currentGroup = fGroupIndexStack[fDepth];
274 int length = fGroupIndexStackSizes[fDepth]++;
277 fGroupIndexStack[fDepth] = currentGroup;
283 fGroupIndexStack[fDepth] = currentGroup;