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

1 2 3 4

  /packages/apps/Email/emailcommon/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
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaDataLoader.java 38 Groups.DELETED,
49 public final static int DELETED = 8;
GroupListLoader.java 26 * group names are in alphabetical order. Note that the list excludes default, favorite, and deleted
52 Groups.FAVORITES + "=0 AND " + Groups.DELETED + "=0", null,
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
insn-notes.def 35 INSN_NOTE (DELETED)
37 /* Generated in place of user-declared labels when they are deleted. */
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
insn-notes.def 35 INSN_NOTE (DELETED)
37 /* Generated in place of user-declared labels when they are deleted. */
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
insn-notes.def 35 INSN_NOTE (DELETED)
37 /* Generated in place of user-declared labels when they are deleted. */
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
insn-notes.def 35 INSN_NOTE (DELETED)
37 /* Generated in place of user-declared labels when they are deleted. */
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformData.h 81 enum FontState { UNINITIALIZED, DELETED, VALID };
84 : m_fontState(DELETED)
122 case DELETED:
146 bool isHashTableDeletedValue() const { return m_fontState == DELETED; }
  /frameworks/base/core/java/android/util/
LongSparseArray.java 27 private static final Object DELETED = new Object();
84 if (i < 0 || mValues[i] == DELETED) {
98 if (mValues[i] != DELETED) {
99 mValues[i] = DELETED;
116 if (mValues[index] != DELETED) {
117 mValues[index] = DELETED;
133 if (val != DELETED) {
163 if (i < mSize && mValues[i] == DELETED) {
SparseArray.java 27 private static final Object DELETED = new Object();
84 if (i < 0 || mValues[i] == DELETED) {
98 if (mValues[i] != DELETED) {
99 mValues[i] = DELETED;
116 if (mValues[index] != DELETED) {
117 mValues[index] = DELETED;
133 if (val != DELETED) {
163 if (i < mSize && mValues[i] == DELETED) {
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
SparseWeakArray.java 28 * to it. When the array is compacted, not only deleted indices but also empty references
45 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) {
171 if (i < mSize && (mValues[i] == DELETED || mValues[i].get() == null))
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
LongSparseArray.java 25 private static final Object DELETED = new Object();
82 if (i < 0 || mValues[i] == DELETED) {
96 if (mValues[i] != DELETED) {
97 mValues[i] = DELETED;
114 if (mValues[index] != DELETED) {
115 mValues[index] = DELETED;
131 if (val != DELETED) {
161 if (i < mSize && mValues[i] == DELETED) {
SparseArrayCompat.java 24 private static final Object DELETED = new Object();
62 if (i < 0 || mValues[i] == DELETED) {
76 if (mValues[i] != DELETED) {
77 mValues[i] = DELETED;
94 if (mValues[index] != DELETED) {
95 mValues[index] = DELETED;
124 if (val != DELETED) {
153 if (i < mSize && mValues[i] == DELETED) {
  /external/robolectric/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/dexlib/src/main/java/org/jf/dexlib/Util/
SparseArray.java 37 private static final Object DELETED = new Object();
73 if (i < 0 || mValues[i] == DELETED) {
87 if (mValues[i] != DELETED) {
88 mValues[i] = DELETED;
112 if (val != DELETED) {
141 if (i < mSize && mValues[i] == DELETED) {
  /external/chromium/net/disk_cache/
eviction.cc 17 // Whenever an element is evicted, we move it to the DELETED list so that if the
278 rankings_->Insert(entry->rankings(), true, Rankings::DELETED);
353 } else if (header_->lru.sizes[Rankings::DELETED] > header_->num_entries / 4 &&
414 rankings_->Remove(entry->rankings(), Rankings::DELETED, true);
439 rankings_->Insert(entry->rankings(), true, Rankings::DELETED);
446 rankings_->Remove(entry->rankings(), Rankings::DELETED, true);
465 Trace("*** Trim Deleted ***");
472 rankings_->GetPrev(node.get(), Rankings::DELETED));
473 bool deleted = false; local
477 next.reset(rankings_->GetPrev(node.get(), Rankings::DELETED));
    [all...]
rankings.h 59 DELETED, // List of recently deleted or doomed entries.
64 // Rankings whenever a CacheRankingsBlock is deleted, to keep track of cache
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_GroupMembershipTest.java 94 .with(Groups.DELETED, 0)
ContactsContract_ContactsTest.java 133 ContactsContract.RawContacts.DELETED
ContactsContract_RawContactsTest.java 104 ContactsContract.RawContacts.DELETED
111 // Record should be marked deleted.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 48 RawContacts.DELETED,
52 int DELETED = 0;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java 123 Events.DELETED
185 int deletedColumn = entries.getColumnIndex(Events.DELETED);
252 boolean deleted = (entries.getInt(deletedColumn) != 0);
284 if (deleted) {
286 Log.d(CalendarProvider2.TAG, "Found deleted recurring event in "
405 // we temporarily store the DELETED status (will be cleaned later)
406 initialValues.put(Events.DELETED, deleted);
507 // If this instance was cancelled or deleted then don't create a new
510 boolean deleted = values.containsKey(Events.DELETED)
    [all...]
  /frameworks/base/core/java/android/provider/
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...]
  /packages/apps/Email/tests/src/com/android/email/mail/store/
Pop3StoreUnitTests.java 297 // getPermanentFlags() returns { Flag.DELETED }
300 assertEquals(Flag.DELETED, flags[0]);
694 mockTransport.expect("DELE 1", "+OK message deleted");
695 mFolder.setFlags(messages, new Flag[] { Flag.DELETED }, true);
    [all...]

Completed in 877 milliseconds

1 2 3 4