Searched refs:DELETED (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/android/util/
H A DSparseArray.java53 private static final Object DELETED = new Object(); field in class:SparseArray
115 if (i < 0 || mValues[i] == DELETED) {
129 if (mValues[i] != DELETED) {
130 mValues[i] = DELETED;
144 if (mValues[i] != DELETED) {
146 mValues[i] = DELETED;
168 if (mValues[index] != DELETED) {
169 mValues[index] = DELETED;
201 if (val != DELETED) {
231 if (i < mSize && mValues[i] == DELETED) {
[all...]
H A DLongSparseArray.java53 private static final Object DELETED = new Object(); field in class:LongSparseArray
115 if (i < 0 || mValues[i] == DELETED) {
129 if (mValues[i] != DELETED) {
130 mValues[i] = DELETED;
147 if (mValues[index] != DELETED) {
148 mValues[index] = DELETED;
164 if (val != DELETED) {
194 if (i < mSize && mValues[i] == DELETED) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java47 private static final WeakReference<?> DELETED = new WeakReference(DELETED_REF); field in class:SparseWeakArray
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
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java44 private static final Object DELETED = new Object(); field in class:LongSparseArray
107 if (i < 0 || mValues[i] == DELETED) {
121 if (mValues[i] != DELETED) {
122 mValues[i] = DELETED;
139 if (mValues[index] != DELETED) {
140 mValues[index] = DELETED;
156 if (val != DELETED) {
186 if (i < mSize && mValues[i] == DELETED) {
H A DSparseArrayCompat.java24 private static final Object DELETED = new Object(); field in class:SparseArrayCompat
87 if (i < 0 || mValues[i] == DELETED) {
101 if (mValues[i] != DELETED) {
102 mValues[i] = DELETED;
119 if (mValues[index] != DELETED) {
120 mValues[index] = DELETED;
149 if (val != DELETED) {
179 if (i < mSize && mValues[i] == DELETED) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DPositionMap.java26 private static final Object DELETED = new Object(); field in class:PositionMap
89 if (i < 0 || mValues[i] == DELETED) {
103 if (mValues[i] != DELETED) {
104 mValues[i] = DELETED;
121 if (mValues[index] != DELETED) {
122 mValues[index] = DELETED;
159 if (val != DELETED) {
189 if (i < mSize && mValues[i] == DELETED) {
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestSetMessageStatus.java29 READ, DELETED; enum constant in enum:BluetoothMasRequestSetMessageStatus.StatusIndicator
H A DBluetoothMasClient.java1037 StatusIndicator.DELETED, deleted);
/frameworks/base/core/java/android/provider/
H A DCalendarContract.java318 public static final String DELETED = "deleted"; field in interface:CalendarContract.SyncColumns
571 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, DELETED);
669 * <li>{@link #DELETED}</li>
735 DELETED,
1409 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, DELETED);
H A DVoicemailContract.java251 public static final String DELETED = "deleted"; field in class:VoicemailContract.Voicemails
H A DContactsContract.java2355 public static final String DELETED = "deleted"; field in interface:ContactsContract.RawContactsColumns
2474 * Instead, it sets the {@link #DELETED} flag on the raw contact and
2510 * RawContacts.DELETED + "&lt;&gt;0", null, null, null);
2572 * <td>{@link #DELETED}</td>
3060 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DELETED);
4615 * <td>{@link #DELETED}</td>
4860 * <td>{@link #DELETED}</td>
7641 public static final String DELETED = "deleted"; field in interface:ContactsContract.GroupsColumns
7759 * <td>{@link #DELETED}</td>
7834 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, values, DELETED);
9378 public static final String DELETED = "deleted"; field in interface:ContactsContract.MetadataSyncColumns
[all...]

Completed in 1894 milliseconds