Home | History | Annotate | Download | only in media

Lines Matching defs:Entry

20     private Entry<E> mHead;
21 private Entry<E> mTail;
24 public static final class Entry<E> {
25 Entry(E value) {
30 public Entry<E> previous = null;
31 public Entry<E> next = null;
46 public void add(Entry<E> entry) {
47 // Requires that entry not be inserted in a list.
48 final Entry<E> tail = mTail;
50 tail.next = entry;
51 entry.previous = tail;
53 mHead = entry;
55 mTail = entry;
56 entry.inserted = true;
60 public Entry<E> remove(Entry<E> entry) {
61 // Requires that entry be inserted into this list.
62 final Entry<E> previous = entry.previous;
63 final Entry<E> next = entry.next;
66 entry.next = null;
72 entry.previous = null;
76 entry.inserted = false;
83 public Entry<E> getHead() {
87 public Entry<E> getTail() {