/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
D | SparseWeakArray.java | 47 private static final WeakReference<?> DELETED = new WeakReference(DELETED_REF); field in SparseWeakArray 83 if (i < 0 || mValues[i] == DELETED || mValues[i].get() == null) { in get() 97 if (mValues[i] != DELETED) { in delete() 98 mValues[i] = DELETED; in delete() 115 if (mValues[index] != DELETED) { in removeAt() 116 mValues[index] = DELETED; in removeAt() 132 if (val != DELETED && val.get() != null) { in gc() 159 if (i < mSize && (mValues[i] == DELETED || mValues[i].get() == null)) { in put()
|
/frameworks/base/core/java/android/util/ |
D | LongSparseArray.java | 53 private static final Object DELETED = new Object(); field in LongSparseArray 115 if (i < 0 || mValues[i] == DELETED) { in get() 129 if (mValues[i] != DELETED) { in delete() 130 mValues[i] = DELETED; in delete() 147 if (mValues[index] != DELETED) { in removeAt() 148 mValues[index] = DELETED; in removeAt() 164 if (val != DELETED) { in gc() 194 if (i < mSize && mValues[i] == DELETED) { in put()
|
D | SparseArray.java | 53 private static final Object DELETED = new Object(); field in SparseArray 115 if (i < 0 || mValues[i] == DELETED) { in get() 129 if (mValues[i] != DELETED) { in delete() 130 mValues[i] = DELETED; in delete() 147 if (mValues[index] != DELETED) { in removeAt() 148 mValues[index] = DELETED; in removeAt() 177 if (val != DELETED) { in gc() 207 if (i < mSize && mValues[i] == DELETED) { in put()
|
/frameworks/support/v4/java/android/support/v4/util/ |
D | LongSparseArray.java | 44 private static final Object DELETED = new Object(); field in LongSparseArray 107 if (i < 0 || mValues[i] == DELETED) { in get() 121 if (mValues[i] != DELETED) { in delete() 122 mValues[i] = DELETED; in delete() 139 if (mValues[index] != DELETED) { in removeAt() 140 mValues[index] = DELETED; in removeAt() 156 if (val != DELETED) { in gc() 186 if (i < mSize && mValues[i] == DELETED) { in put()
|
D | SparseArrayCompat.java | 24 private static final Object DELETED = new Object(); field in SparseArrayCompat 87 if (i < 0 || mValues[i] == DELETED) { in get() 101 if (mValues[i] != DELETED) { in delete() 102 mValues[i] = DELETED; in delete() 119 if (mValues[index] != DELETED) { in removeAt() 120 mValues[index] = DELETED; in removeAt() 149 if (val != DELETED) { in gc() 179 if (i < mSize && mValues[i] == DELETED) { in put()
|
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/ |
D | PositionMap.java | 26 private static final Object DELETED = new Object(); field in PositionMap 89 if (i < 0 || mValues[i] == DELETED) { in get() 103 if (mValues[i] != DELETED) { in delete() 104 mValues[i] = DELETED; in delete() 121 if (mValues[index] != DELETED) { in removeAt() 122 mValues[index] = DELETED; in removeAt() 159 if (val != DELETED) { in gc() 189 if (i < mSize && mValues[i] == DELETED) { in put()
|
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
D | BluetoothMasRequestSetMessageStatus.java | 29 READ, DELETED; enumConstant
|
D | BluetoothMasClient.java | 1033 StatusIndicator.DELETED, deleted); in setMessageDeletedStatus()
|
/frameworks/base/core/java/android/provider/ |
D | CalendarContract.java | 318 public static final String DELETED = "deleted"; field 571 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, DELETED); in getEntityAndIncrementCursor() 735 DELETED, 1409 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, DELETED); in getEntityAndIncrementCursor()
|
D | ContactsContract.java | 2258 public static final String DELETED = "deleted"; field 2980 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DELETED); in getEntityAndIncrementCursor() 7385 public static final String DELETED = "deleted"; field 7578 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, values, DELETED); in getEntityAndIncrementCursor()
|
/frameworks/base/docs/html/guide/topics/providers/ |
D | contacts-provider.jd | 223 {@link android.provider.ContactsContract.RawContactsColumns#DELETED}
|
/frameworks/base/api/ |
D | current.txt | 23492 field public static final java.lang.String DELETED = "deleted"; 24392 field public static final java.lang.String DELETED = "deleted"; 24552 field public static final java.lang.String DELETED = "deleted";
|