Lines Matching defs:id

1249     // only need to check id/idref/entity, so we set checkFacets to false
1305 // cleanup id table
2181 IdentityConstraint id;
2182 if ((id = selMatcher.getIdentityConstraint()) != null
2183 && id.getCategory() != IdentityConstraint.IC_KEYREF) {
2184 fValueStoreCache.transplant(id, selMatcher.getInitialDepth());
2194 IdentityConstraint id;
2195 if ((id = selMatcher.getIdentityConstraint()) != null
2196 && id.getCategory() == IdentityConstraint.IC_KEYREF) {
2198 fValueStoreCache.getValueStoreFor(id, selMatcher.getInitialDepth());
2213 reportSchemaError("cvc-id.1", new Object[] { invIdRef });
2490 String id = XMLEntityManager.expandSystemId(locations[i], desc.getBaseSystemId(), false);
2491 if (!docLocations.contains(id)) {
4015 // (which comprises all the "eligible" id constraints);
4021 // the preceding siblings' eligible id constraints;
4074 IdentityConstraint id = (IdentityConstraint) entry.getKey();
4077 ValueStoreBase currVal = (ValueStoreBase) fGlobalIDConstraintMap.get(id);
4079 fGlobalIDConstraintMap.put(id, oldVal);
4148 public ValueStoreBase getValueStoreFor(IdentityConstraint id, int initialDepth) {
4150 fLocalId.fId = id;
4155 public ValueStoreBase getGlobalValueStoreFor(IdentityConstraint id) {
4156 return (ValueStoreBase) fGlobalIDConstraintMap.get(id);
4160 // associated with id and moves them into the global
4161 // hashtable, if id is a <unique> or a <key>.
4163 public void transplant(IdentityConstraint id, int initialDepth) {
4165 fLocalId.fId = id;
4168 if (id.getCategory() == IdentityConstraint.IC_KEYREF)
4170 ValueStoreBase currVals = (ValueStoreBase) fGlobalIDConstraintMap.get(id);
4173 fGlobalIDConstraintMap.put(id, currVals);
4175 fGlobalIDConstraintMap.put(id, newVals);
4177 } // transplant(id)
4220 public LocalIDKey(IdentityConstraint id, int depth) {
4221 fId = id;