Home | History | Annotate | Download | only in util

Lines Matching refs:DELETED

29  * to it. When the array is compacted, not only deleted indices but also empty references
47 private static final WeakReference<?> DELETED = new WeakReference(DELETED_REF);
83 if (i < 0 || mValues[i] == DELETED || mValues[i].get() == null) {
97 if (mValues[i] != DELETED) {
98 mValues[i] = DELETED;
115 if (mValues[index] != DELETED) {
116 mValues[index] = DELETED;
130 // Don't keep any non DELETED values, but only the one that still have a valid
132 if (val != DELETED && val.get() != null) {
159 if (i < mSize && (mValues[i] == DELETED || mValues[i].get() == null)) {
298 if (mValues[i].get() == null) { // DELETED.get() never returns null.