Home | History | Annotate | Download | only in impl

Lines Matching refs:Referenced

146         Referenced referenced = new Referenced(key);
147 return super.containsKey(referenced);
167 Referenced referencedKey = (Referenced) entry.getKey();
183 Referenced referenceKey = new Referenced(key);
198 Referenced nextReference = (Referenced) enumer.nextElement();
213 Referenced referenceKey = (Referenced) it.next();
246 Referenced keyRef = new Referenced(key, queue);
285 return super.remove(new Referenced(key));
395 private final static class Referenced {
404 private Referenced(Object referant) {
415 private Referenced(Object key, ReferenceQueue queue) {
433 if (o instanceof Referenced) {
434 Referenced otherKey = (Referenced) o;
442 // hashcode/equals contract, as two cleared Referenced
466 * the Referenced object holding it.
470 Referenced referenced;
474 Referenced referenced) {
476 this.referenced = referenced;
479 private Referenced getReferenced() {
480 return referenced;