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

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xinclude/
H A DXIncludeHandler.java335 private boolean[] fSawInclude = new boolean[INITIAL_SIZE]; field in class:XIncludeHandler
385 fSawInclude[fDepth] = false;
435 for (int i = 0; i < fSawInclude.length; ++i) {
436 fSawInclude[i] = false;
2409 if (depth >= fSawInclude.length) {
2411 System.arraycopy(fSawInclude, 0, newarray, 0, fSawInclude.length);
2412 fSawInclude = newarray;
2414 fSawInclude[depth] = val;
2425 if (depth >= fSawInclude
[all...]

Completed in 93 milliseconds