Home | History | Annotate | Download | only in impl

Lines Matching refs:Referenced

141         Referenced referenced = new Referenced(key);
142 return super.containsKey(referenced);
162 Referenced referencedKey = (Referenced) entry.getKey();
178 Referenced referenceKey = new Referenced(key);
193 Referenced nextReference = (Referenced) enumer.nextElement();
208 Referenced referenceKey = (Referenced) it.next();
241 Referenced keyRef = new Referenced(key, queue);
280 return super.remove(new Referenced(key));
390 private final static class Referenced {
399 private Referenced(Object referant) {
410 private Referenced(Object key, ReferenceQueue queue) {
428 if (o instanceof Referenced) {
429 Referenced otherKey = (Referenced) o;
437 // hashcode/equals contract, as two cleared Referenced
461 * the Referenced object holding it.
465 private final Referenced referenced;
469 Referenced referenced) {
471 this.referenced = referenced;
474 private Referenced getReferenced() {
475 return referenced;