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

1 2

  /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}}
  /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:
  /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) {
  /external/libchrome/mojo/public/cpp/bindings/
struct_ptr.h 214 DELETED, // For use in WTF::HashMap only
244 // |slot| refers to a previous, real value that got deleted and had its
245 // destructor run, so this is the first time the "deleted value" has its
249 // called for deleted buckets, so this is okay.
259 return value.state_ == InlinedStructPtr<Struct>::DELETED;
263 // |slot| refers to a previous, real value that got deleted and had its
264 // destructor run, so this is the first time the "deleted value" has its
267 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);
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_GroupMembershipTest.java 94 .with(Groups.DELETED, 0)
ContactsContract_RawContactsTest.java 40 RawContacts.DELETED,
133 ContactsContract.RawContacts.DELETED
140 // Record should be marked deleted.
VoicemailContractTest.java 105 Voicemails.DELETED,
158 value.put(Voicemails.DELETED, 0);
200 value.put(Voicemails.DELETED, 1);
ContactsContract_ContactsTest.java 146 ContactsContract.RawContacts.DELETED
ContactsContract_DataTest.java 260 RawContacts.DELETED,
327 Contacts.Entity.DELETED,
    [all...]
  /art/tools/ahat/src/test/com/android/ahat/
DiffFieldsTest.java 102 DiffedFieldValue x = DiffedFieldValue.deleted(normal);
106 assertEquals(DiffedFieldValue.Status.DELETED, x.status);
113 DiffedFieldValue x = DiffedFieldValue.deleted(nulled);
117 assertEquals(DiffedFieldValue.Status.DELETED, x.status);
145 expected.add(DiffedFieldValue.deleted(b.get(1)));
151 expected.add(DiffedFieldValue.deleted(b.get(6)));
  /art/tools/ahat/src/main/com/android/ahat/
ObjectHandler.java 195 case DELETED:
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 241 * on deleted contacts. When the user initially deletes them on the client, they're
242 * marked for deletion - but they're not actually deleted until we delete them
571 * both for contacts that were deleted locally and then that deletion was synced
572 * to the server, and for contacts that were deleted on the server and the
727 * and deleted contacts.
738 RawContacts.DELETED,
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 111 Calendars.DELETED,
345 Events.DELETED,
514 values.put(Events.DELETED, 0);
540 * @param values Set of values to update (sets DELETED and DIRTY).
544 values.put(Events.DELETED, 1);
    [all...]
  /external/syzkaller/vendor/google.golang.org/appengine/internal/datastore/
datastore_v3.pb.go 263 3: "DELETED",
269 "DELETED": 3,
    [all...]
  /external/pdfium/third_party/pymock/
mock.py 365 _deleted = sentinel.DELETED
    [all...]
  /external/python/cpython2/Lib/test/
_mock_backport.py 270 _deleted = sentinel.DELETED
    [all...]
  /external/python/cpython3/Lib/unittest/
mock.py 267 _deleted = sentinel.DELETED
    [all...]
  /external/python/mock/mock/
mock.py 380 _deleted = sentinel.DELETED
    [all...]
  /development/samples/training/multiscreen/newsreader/libs/
android-support-v4.jar 
  /development/samples/ControllerSample/libs/
android-support-v4.jar 
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 

Completed in 832 milliseconds

1 2