Home | History | Annotate | Download | only in misc

Lines Matching defs:Entry

46  * <code>SoftCache</code> entry is no longer strongly reachable, then it may
47 * remove that entry in order to release the memory occupied by the value
95 * key set, the value set, and the entry set to yield successively smaller
250 * invoked by the <code>get</code> method when there is no entry for
351 private class Entry implements Map.Entry {
352 private Map.Entry ent;
354 from flushing the value while this Entry
357 Entry(Map.Entry ent, Object value) {
375 if (! (o instanceof Map.Entry)) return false;
376 Map.Entry e = (Map.Entry)o;
390 /* Internal class for entry sets */
398 Entry next = null;
402 Map.Entry ent = (Map.Entry)hashIterator.next();
409 next = new Entry(ent, v);
418 Entry e = next;
442 if (o instanceof Entry) return hashEntries.remove(((Entry)o).ent);