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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDTDScannerImpl.java164 private int fContentDepth; field in class:XMLDTDScannerImpl
1004 fContentDepth = 0;
1124 if (fContentDepth == 0) {
2058 if (fContentStack.length == fContentDepth) {
2059 int[] newStack = new int[fContentDepth * 2];
2060 System.arraycopy(fContentStack, 0, newStack, 0, fContentDepth);
2063 fContentStack[fContentDepth++] = c;
2067 return fContentStack[--fContentDepth];

Completed in 33 milliseconds