Searched refs:DELETED (Results 1 - 25 of 26) sorted by relevance

12

/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DFlag.java26 DELETED, enum constant in enum:Flag
/packages/apps/Contacts/src/com/android/contacts/
H A DGroupMetaDataLoader.java38 Groups.DELETED,
49 public final static int DELETED = 8; field in class:GroupMetaDataLoader
H A DGroupListLoader.java52 Groups.FAVORITES + "=0 AND " + Groups.DELETED + "=0", null,
H A DContactLoader.java519 RawContacts.DELETED,
591 public final static int DELETED = 26; field in class:ContactLoader.ContactQuery
896 cursorColumnToContentValues(cursor, cv, ContactQuery.DELETED);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DDataRowHandlerForGroupMembership.java47 RawContacts.DELETED,
53 int DELETED = 0; field in interface:DataRowHandlerForGroupMembership.RawContactsQuery
H A DLegacyApiSupport.java599 " WHERE " + Tables.RAW_CONTACTS + "." + RawContacts.DELETED + "=0;");
622 + " AND " + Tables.RAW_CONTACTS + "." + RawContacts.DELETED + "=0" +
646 + " AND " + Tables.RAW_CONTACTS + "." + RawContacts.DELETED + "=0" +
674 + " AND " + Tables.RAW_CONTACTS + "." + RawContacts.DELETED + "=0" +
692 + " AND " + Tables.RAW_CONTACTS + "." + RawContacts.DELETED + "=0" +
736 + " AND " + Tables.RAW_CONTACTS + "." + RawContacts.DELETED + "=0" +
760 + " AND " + Tables.RAW_CONTACTS + "." + RawContacts.DELETED + "=0" +
H A DLegacyContactImporter.java1245 RawContacts.DELETED + "," +
1253 int DELETED = 4; field in interface:LegacyContactImporter.DeletedRawContactInsert
1281 insert.bindLong(DeletedRawContactInsert.DELETED, 1);
H A DContactsDatabaseHelper.java352 Tables.RAW_CONTACTS + "." + RawContacts.DELETED;
901 RawContacts.DELETED + " INTEGER NOT NULL DEFAULT 0," +
1112 Groups.DELETED + " INTEGER NOT NULL DEFAULT 0," +
1391 + " AND NEW." + RawContacts.DELETED + "!= OLD." + RawContacts.DELETED + ";"
1641 + RawContacts.DELETED + ", "
1685 + RawContactsColumns.CONCRETE_DELETED + " AS " + RawContacts.DELETED + ","
1715 + RawContactsColumns.CONCRETE_DELETED + " AS " + RawContacts.DELETED + ","
1848 + Groups.DELETED + ","
H A DContactsProvider2.java454 RawContacts.DELETED,
460 int DELETED = 0; field in interface:ContactsProvider2.RawContactsQuery
742 .add(RawContacts.DELETED)
766 .add(RawContacts.DELETED)
781 .add(Contacts.Entity.DELETED)
872 .add(Groups.DELETED)
912 + Groups.DELETED + "=0 AND "
2602 if (values.containsKey(RawContacts.DELETED)
2603 && values.getAsInteger(RawContacts.DELETED) != 0) {
3685 mValues.put(Groups.DELETED,
[all...]
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
H A DCalendarInstancesHelper.java122 Events.DELETED
184 int deletedColumn = entries.getColumnIndex(Events.DELETED);
404 // we temporarily store the DELETED status (will be cleaned later)
405 initialValues.put(Events.DELETED, deleted);
509 boolean deleted = values.containsKey(Events.DELETED) ?
510 values.getAsBoolean(Events.DELETED) : false;
516 values.remove(Events.DELETED);
H A DCalendarDatabaseHelper.java542 CalendarContract.Events.DELETED + " INTEGER NOT NULL DEFAULT 0," +
762 CalendarContract.Calendars.DELETED + " INTEGER NOT NULL DEFAULT 0," +
3018 + Tables.EVENTS + "." + CalendarContract.Events.DELETED
3019 + " AS " + CalendarContract.Events.DELETED + ","
H A DCalendarProvider2.java3110 values.put(Events.DELETED, 1);
4581 sEventsProjectionMap.put(Events.DELETED, Events.DELETED);
4669 sEventEntitiesProjectionMap.put(Events.DELETED, Events.DELETED);
4696 sInstancesProjectionMap.put(Events.DELETED, "Events.deleted as deleted");
4714 sAttendeesProjectionMap.put(Events.DELETED, "Events.deleted AS deleted");
4722 sRemindersProjectionMap.put(Events.DELETED, "Events.deleted AS deleted");
/packages/apps/Email/tests/src/com/android/email/mail/store/
H A DPop3StoreUnitTests.java297 // getPermanentFlags() returns { Flag.DELETED }
300 assertEquals(Flag.DELETED, flags[0]);
695 mFolder.setFlags(messages, new Flag[] { Flag.DELETED }, true);
H A DImapStoreUnitTests.java1838 getNextTag(false) + " UID STORE 11\\,12 \\-FLAGS.SILENT \\(\\\\DELETED\\)",
1842 mFolder.setFlags(messages, new Flag[] {Flag.DELETED}, false);
1939 getNextTag(false) + " UID SEARCH 3:5 NOT DELETED",
1949 getNextTag(false) + " UID SEARCH 3:5 NOT DELETED",
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DLegacyContactImporterTest.java187 RawContacts.DELETED,
H A DGroupsTest.java191 assertStoredValue(uri, Groups.DELETED, "1");
H A DContactsProvider2Test.java180 RawContacts.DELETED,
393 RawContacts.DELETED,
446 RawContacts.DELETED,
519 Groups.DELETED,
547 Groups.DELETED,
625 values.put(RawContacts.DELETED, 1);
2113 values.put(Groups.DELETED, 1);
4355 assertStoredValue(uri, RawContacts.DELETED, "1");
4405 assertStoredValue(uri, RawContacts.DELETED, "0");
4415 assertStoredValue(uri, RawContacts.DELETED, "
[all...]
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapFolder.java66 { Flag.DELETED, Flag.SEEN, Flag.FLAGGED, Flag.ANSWERED };
481 searchForUids(String.format("%d:%d NOT DELETED", start, end)), listener);
489 uids = searchForUids("1:* NOT DELETED");
604 message.setFlagInternal(Flag.DELETED, true);
1029 } else if (flag == Flag.DELETED) {
H A DPop3Store.java58 private static final Flag[] PERMANENT_FLAGS = { Flag.DELETED };
841 if (!value || !Utility.arrayContains(flags, Flag.DELETED)) {
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupDetailFragment.java230 boolean deleted = data.getInt(GroupMetaDataLoader.DELETED) == 1;
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DContactLoaderTest.java306 RawContacts.DELETED, RawContacts.NAME_VERIFIED,
/packages/apps/Email/src/com/android/email/
H A DLegacyConversions.java340 message.setFlag(Flag.DELETED,
H A DMessagingController.java846 // mFlagLoaded = DELETED -> message has been deleted
1539 remoteMessage.setFlag(Flag.DELETED, true);
1660 remoteMessage.setFlag(Flag.DELETED, true);
1702 remoteMessage.setFlag(Flag.DELETED, true);
1802 remoteMessage.setFlag(Flag.DELETED, true);
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java1510 Integer deleted = entityValues.getAsInteger(Events.DELETED);
1900 if (entityValues.getAsInteger(Events.DELETED) == 1) {
1972 if ((getInt(exValues, Events.DELETED) == 1) ||
H A DContactsSyncAdapter.java1766 cr.delete(uriWithAccountAndIsSyncAdapter(Groups.CONTENT_URI), Groups.DELETED + "=1",
1822 if (entityValues.getAsInteger(RawContacts.DELETED) == 1) {

Completed in 2356 milliseconds

12