Searched refs:CONTACTS (Results 1 – 5 of 5) sorted by relevance
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelper.java | 70 public static final String CONTACTS = "contacts"; field 253 public static final String CONCRETE_ID = Tables.CONTACTS + "." + BaseColumns._ID; 254 public static final String CONCRETE_DISPLAY_NAME = Tables.CONTACTS + "." 257 public static final String CONCRETE_TIMES_CONTACTED = Tables.CONTACTS + "." 259 public static final String CONCRETE_LAST_TIME_CONTACTED = Tables.CONTACTS + "." 261 public static final String CONCRETE_STARRED = Tables.CONTACTS + "." + Contacts.STARRED; 262 public static final String CONCRETE_CUSTOM_RINGTONE = Tables.CONTACTS + "." 264 public static final String CONCRETE_SEND_TO_VOICEMAIL = Tables.CONTACTS + "." 566 final String visibleUpdate = "UPDATE " + Tables.CONTACTS + " SET " in onOpen() 646 db.execSQL("CREATE TABLE " + Tables.CONTACTS + " (" + in onCreate() [all …]
|
D | ContactAggregator.java | 125 String TABLE = Tables.CONTACTS; 286 "DELETE FROM " + Tables.CONTACTS + in ContactAggregator() 300 "UPDATE " + Tables.CONTACTS + in ContactAggregator() 305 "UPDATE " + Tables.CONTACTS + in ContactAggregator() 310 "UPDATE " + Tables.CONTACTS + in ContactAggregator() 315 "UPDATE " + Tables.CONTACTS + in ContactAggregator() 324 mStarredUpdate = db.compileStatement("UPDATE " + Tables.CONTACTS + " SET " in ContactAggregator() 602 long contactId = db.insert(Tables.CONTACTS, Contacts.DISPLAY_NAME, contactValues); in insertContact() 630 db.update(Tables.CONTACTS, values, Contacts._ID + "=" + contactId, null); in updateAggregateData() 682 contactId = db.insert(Tables.CONTACTS, Contacts.DISPLAY_NAME, contactValues); in aggregateContact() [all …]
|
D | LegacyContactImporter.java | 379 String INSERT_SQL = "INSERT INTO " + Tables.CONTACTS + "(" + 826 String UPDATE_SQL = "UPDATE " + Tables.CONTACTS + 909 String UPDATE_SQL = "UPDATE " + Tables.CONTACTS +
|
D | ContactsProvider2.java | 156 "(SELECT COUNT(1) FROM " + Tables.CONTACTS + " WHERE " 159 private static final int CONTACTS = 1000; field in ContactsProvider2 409 matcher.addURI(ContactsContract.AUTHORITY, "contacts", CONTACTS); in matcher.addURI() argument 1704 "UPDATE " + Tables.CONTACTS + in initialize() 1718 "UPDATE " + Tables.CONTACTS in initialize() 2076 case CONTACTS: { in insertInTransaction() 2640 case CONTACTS: { in deleteInTransaction() 2781 return mDb.delete(Tables.CONTACTS, Contacts._ID + "=" + contactId, null); in deleteContact() 2844 case CONTACTS: { in updateInTransaction() 3183 return mDb.update(Tables.CONTACTS, mValues, Contacts._ID + "=" + contactId, null); in updateContactOptions() [all …]
|
/packages/apps/Email/src/com/android/exchange/adapter/ |
D | Tags.java | 36 public static final int CONTACTS = 0x01; field in Tags 101 public static final int CONTACTS_PAGE = CONTACTS << PAGE_SHIFT;
|