HomeSort by relevance Sort by last modified time
    Searched defs:DELETED (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
RequestSetMessageStatus.java 25 public enum StatusIndicator { READ, DELETED }
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaDataLoader.java 40 Groups.DELETED,
51 public final static int DELETED = 8;
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Flag.java 21 public static final String DELETED = "deleted";
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
IUiUpdateListener.java 33 /** The XML counterpart for the UI node has just been deleted.
34 * Note that mandatory UI nodes are never actually deleted. */
35 DELETED
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
DiffedFieldValue.java 47 * Whether the field was added to, deleted from, or matched with a field in
53 * A status enum to indicate whether a field was added to, deleted from, or
70 DELETED
105 public static DiffedFieldValue deleted(FieldValue baseline) { method in class:DiffedFieldValue
106 return new DiffedFieldValue(baseline.name, baseline.type, null, baseline.value, Status.DELETED);
139 case DELETED:
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Flag.java 26 DELETED,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 48 RawContacts.DELETED,
52 int DELETED = 0;
  /external/libmojo/mojo/public/cpp/bindings/
struct_ptr.h 205 DELETED, // For use in WTF::HashMap only
235 // |slot| refers to a previous, real value that got deleted and had its
236 // destructor run, so this is the first time the "deleted value" has its
240 // called for deleted buckets, so this is okay.
250 return value.state_ == InlinedStructPtr<Struct>::DELETED;
254 // |slot| refers to a previous, real value that got deleted and had its
255 // destructor run, so this is the first time the "deleted value" has its
258 slot.state_ = InlinedStructPtr<Struct>::DELETED;
  /external/mesa3d/src/gallium/auxiliary/util/
u_cache.c 50 enum { EMPTY = 0, FILLED, DELETED } state;
146 * Deleted or non-matching slots are not indicative of completion
188 entry->state = DELETED;
354 header->state == DELETED);
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
FieldArray.java 44 private static final FieldData DELETED = new FieldData();
77 if (i < 0 || mData[i] == DELETED) {
90 if (i >= 0 && mData[i] != DELETED) {
91 mData[i] = DELETED;
105 if (val != DELETED) {
132 if (i < mSize && mData[i] == DELETED) {
279 // Trigger GC so we compact and don't copy DELETED elements.
  /external/smali/util/src/main/java/org/jf/util/
SparseArray.java 44 private static final Object DELETED = new Object();
80 if (i < 0 || mValues[i] == DELETED) {
94 if (mValues[i] != DELETED) {
95 mValues[i] = DELETED;
119 if (val != DELETED) {
148 if (i < mSize && mValues[i] == DELETED) {
  /frameworks/base/core/java/android/util/
LongSparseArray.java 41 * as deleted. The entry can then be re-used for the same key, or compacted later in
53 private static final Object DELETED = new Object();
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) {
SparseArray.java 41 * as deleted. The entry can then be re-used for the same key, or compacted later in
53 private static final Object DELETED = new Object();
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) {
    [all...]
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 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))
    [all...]
  /frameworks/support/collection/src/main/java/androidx/collection/
LongSparseArray.java 38 * as deleted. The entry can then be re-used for the same key, or compacted later in
44 private static final Object DELETED = new Object();
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) {
SparseArrayCompat.java 36 * as deleted. The entry can then be re-used for the same key, or compacted later in
48 private static final Object DELETED = new Object();
111 if (i < 0 || mValues[i] == DELETED) {
125 if (mValues[i] != DELETED) {
126 mValues[i] = DELETED;
143 if (mValues[index] != DELETED) {
144 mValues[index] = DELETED;
173 if (val != DELETED) {
203 if (i < mSize && mValues[i] == DELETED) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSparseArray.java 43 private static final Object DELETED = new Object();
84 if (i < 0 || mValues[i] == DELETED) {
100 if (mValues[i] != DELETED) {
101 mValues[i] = DELETED;
126 if (val != DELETED) {
156 if (i < mSize && mValues[i] == DELETED) {
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
VoicemailsQueryHelper.java 42 Voicemails.DELETED, // 3
49 public static final int DELETED = 3;
52 static final String DELETED_SELECTION = Voicemails.DELETED + "=1";
66 * Get all the locally deleted voicemails that have not been synced to the server.
68 * @return A list of deleted voicemails.
121 * @return The number of voicemails deleted
  /frameworks/base/core/java/android/provider/
VoicemailContract.java 215 * Value of {@link #STATE} when the voicemail has been marked as deleted.
315 * Currently, this is used to indicate that the voicemail was read or deleted.
337 * Flag used to indicate that the voicemail was deleted but not synced to the server.
338 * A deleted row should be ignored.
339 * The value will be 1 if deleted is true, 0 if false.
342 public static final String DELETED = "deleted";
345 * The date the row is last inserted, updated, or marked as deleted, in milliseconds
369 * deleted even if it no longer exist on the server. The value will be 1 if archived true, 0
437 * @return the number of voicemails deleted
    [all...]
CalendarContract.java 78 * delete them when their related events are deleted.</li>
277 * deleted.
285 * form being deleted if there are no matching accounts on the device.
312 * Whether the row has been deleted but not synced to the server. A
313 * deleted row should be ignored.
318 public static final String DELETED = "deleted";
325 * queries of the events table. It will also be deleted when the
571 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, DELETED);
632 * <dd>Calendars can be deleted either by the {@link #_ID} as an appended i
    [all...]
ContactsContract.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java 149 RawContacts.DELETED,
231 public static final int DELETED = 25;
644 cursorColumnToContentValues(cursor, cv, ContactQuery.DELETED);
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java 484 cursorColumnToContentValues(cursor, cv, ContactQuery.DELETED);
814 public static final int DELETED = 25;
    [all...]
  /prebuilts/sdk/current/androidx/m2repository/androidx/collection/collection/1.0.0-alpha1/
collection-1.0.0-alpha1.jar 
  /prebuilts/sdk/current/support/m2repository/com/android/support/collections/28.0.0/
collections-28.0.0.jar 

Completed in 680 milliseconds

1 2 3 4 5 6 7 8 9