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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DSelector.java179 protected int fElementDepth; field in class:Selector.Matcher
202 fElementDepth = 0;
217 fElementDepth++;
224 fMatchedDepth = fElementDepth;
238 if (fElementDepth-- == fMatchedDepth) {
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/
H A DDTDGrammarUtil.java87 private int fElementDepth = -1; field in class:DTDGrammarUtil
144 fElementDepth = -1;
461 fElementDepth++;
462 ensureStackCapacity(fElementDepth);
463 fElementContentState[fElementDepth] = fInElementContent;
470 fElementDepth--;
471 if (fElementDepth < -1) {
474 if (fElementDepth < 0) {
480 fInElementContent = fElementContentState[fElementDepth];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java775 // fElementDepth == -2 indicates that the schema validator was removed
777 if (fElementDepth != -2)
1170 private int fElementDepth; field in class:XMLSchemaValidator
1321 fElementDepth = -1;
1498 XPathMatcher matcher = selector.createMatcher(activator, fElementDepth);
1510 if (fElementDepth == fElemDeclStack.length) {
1511 int newSize = fElementDepth + INC_STACK_SIZE;
1513 System.arraycopy(fSubElementStack, 0, newArrayB, 0, fElementDepth);
1517 System.arraycopy(fElemDeclStack, 0, newArrayE, 0, fElementDepth);
1521 System.arraycopy(fNilStack, 0, newArrayB, 0, fElementDepth);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DXMLDTDValidator.java325 private int fElementDepth = -1; field in class:XMLDTDValidator
438 fElementDepth = -1;
827 fDTDGrammar.getContentSpecAsString(fElementDepth),
943 if (fPerformValidation && fElementDepth >= 0 && fDTDGrammar != null) {
983 if (fPerformValidation && fElementDepth >= 0 && fDTDGrammar != null) {
1021 if (fPerformValidation && fElementDepth >= 0 && fDTDGrammar != null) {
1925 fElementDepth++;
1928 if (fElementChildrenOffsetStack.length <= fElementDepth) {
1933 fElementChildrenOffsetStack[fElementDepth] = fElementChildrenLength;
1954 ensureStackCapacity(fElementDepth);
[all...]

Completed in 69 milliseconds