Searched defs:initialDepth (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DFieldActivator.java46 * @param initialDepth the depth at which the selector began matching
49 int initialDepth);
58 * @param initialDepth the 0-indexed depth in the instance document at which the Selector began to match.
60 public XPathMatcher activateField(Field field, int initialDepth); argument
84 * @param initialDepth the 0-indexed depth where the Selector began to match.
86 public void endValueScopeFor(IdentityConstraint identityConstraint, int initialDepth); argument
48 startValueScopeFor(IdentityConstraint identityConstraint, int initialDepth) argument
H A DSelector.java85 * @param initialDepth The depth in the document at which this matcher began its life;
88 public XPathMatcher createMatcher(FieldActivator activator, int initialDepth) { argument
89 return new Selector.Matcher(fXPath, activator, initialDepth);
190 int initialDepth) {
193 fInitialDepth = initialDepth;
189 Matcher(Selector.XPath xpath, FieldActivator activator, int initialDepth) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java1433 public void startValueScopeFor(IdentityConstraint identityConstraint, int initialDepth) { argument
1436 fValueStoreCache.getValueStoreFor(identityConstraint, initialDepth);
1447 public XPathMatcher activateField(Field field, int initialDepth) { argument
1449 fValueStoreCache.getValueStoreFor(field.getIdentityConstraint(), initialDepth);
1462 public void endValueScopeFor(IdentityConstraint identityConstraint, int initialDepth) { argument
1465 fValueStoreCache.getValueStoreFor(identityConstraint, initialDepth);
4148 public ValueStoreBase getValueStoreFor(IdentityConstraint id, int initialDepth) { argument
4149 fLocalId.fDepth = initialDepth;
4163 public void transplant(IdentityConstraint id, int initialDepth) { argument
4164 fLocalId.fDepth = initialDepth;
[all...]

Completed in 403 milliseconds