Searched defs:DELETED (Results 1 - 9 of 9) sorted by path

/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 DContactsContract.java2258 public static final String DELETED = "deleted"; field in interface:ContactsContract.RawContactsColumns
2397 * Instead, it sets the {@link #DELETED} flag on the raw contact and
2433 * RawContacts.DELETED + "&lt;&gt;0", null, null, null);
2495 * <td>{@link #DELETED}</td>
2980 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, cv, DELETED);
4500 * <td>{@link #DELETED}</td>
4736 * <td>{@link #DELETED}</td>
7385 public static final String DELETED = "deleted"; field in interface:ContactsContract.GroupsColumns
7503 * <td>{@link #DELETED}</td>
7578 DatabaseUtils.cursorLongToContentValuesIfPresent(cursor, values, DELETED);
[all...]
/frameworks/base/core/java/android/util/
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) {
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;
147 if (mValues[index] != DELETED) {
148 mValues[index] = DELETED;
177 if (val != DELETED) {
207 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/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestSetMessageStatus.java29 READ, DELETED; enum constant in enum:BluetoothMasRequestSetMessageStatus.StatusIndicator
/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) {

Completed in 257 milliseconds