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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/CXX/basic/basic.start/basic.start.init/
p3.cpp 15 #if DELETED
16 = delete; // expected-error {{'main' is not allowed to be deleted}}
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Flag.java 21 public static final String DELETED = "deleted";
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Flag.java 26 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
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
insn-notes.def 35 INSN_NOTE (DELETED)
37 /* Generated in place of user-declared labels when they are deleted. */
  /frameworks/base/core/java/android/util/
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...]
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) {
  /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.
  /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:
  /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) {
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaDataLoader.java 40 Groups.DELETED,
51 public final static int DELETED = 8;
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
RequestSetMessageStatus.java 25 public enum StatusIndicator { READ, 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) {
  /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) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactMetadataProviderTest.java 165 newValues.put(MetadataSync.DELETED, 0);
189 String deleted = "0"; local
212 insertedValues.put(MetadataSync.DELETED, deleted);
248 updatedValues.put(MetadataSync.DELETED, deleted);
262 String deleted = "0"; local
285 insertedValues.put(MetadataSync.DELETED, deleted);
315 newValues.put(MetadataSync.DELETED, 1)
    [all...]
VoicemailCleanupTest.java 98 "(ifnull(" + Voicemails.DELETED + ",0)==0)", null, null);
  /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);
  /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
  /packages/apps/Contacts/tests/src/com/android/contacts/
GroupsDaoIntegrationTests.java 84 ContactsContract.Groups.DELETED)));
160 final Uri uri = sut.create("a deleted group", getLocalAccount());
206 ContactsContract.Groups.DELETED + "=?",
220 ContactsContract.Groups.DELETED + "=?",
250 // is deleted.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DbModifierWithNotification.java 65 Voicemails.DELETED + " == 0";
175 if (values.containsKey(Voicemails.DELETED)
176 && !values.getAsBoolean(Voicemails.DELETED)) {
264 // this means that the user deleted the voicemail. However, we do not want to delete it from
266 // mark the entry as "deleted"--deleted entries should be hidden from the user.
275 values.put(VoicemailContract.Voicemails.DELETED, 1);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupUtil.java 51 + Groups.DELETED + "=0";
306 public final int deleted; field in class:GroupUtil.GroupsProjection
319 deleted = cursor.getColumnIndex(Groups.DELETED);
334 deleted = list.indexOf(Groups.DELETED);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_GroupMembershipTest.java 94 .with(Groups.DELETED, 0)

Completed in 623 milliseconds

1 2 3 4 5 6 7 8 91011