Searched refs:RawContactsQuery (Results 1 - 2 of 2) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactAggregator.java301 RawContactsQuery.SQL_FORMAT_BY_RAW_CONTACT_ID,
305 RawContactsQuery.SQL_FORMAT_BY_CONTACT_ID,
1012 private interface RawContactsQuery { interface in class:ContactAggregator
1141 long rawContactId = c.getLong(RawContactsQuery.RAW_CONTACT_ID);
1147 String displayName = c.getString(RawContactsQuery.DISPLAY_NAME);
1148 int displayNameSource = c.getInt(RawContactsQuery.DISPLAY_NAME_SOURCE);
1149 int nameVerified = c.getInt(RawContactsQuery.NAME_VERIFIED);
1150 String accountType = c.getString(RawContactsQuery.ACCOUNT_TYPE);
1156 if (!c.isNull(RawContactsQuery.SEND_TO_VOICEMAIL)) {
1158 (c.getInt(RawContactsQuery
[all...]
H A DContactsProvider2.java296 private interface RawContactsQuery { interface in class:ContactsProvider2
2648 Cursor c = db.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS,
2652 String accountName = c.getString(RawContactsQuery.ACCOUNT_NAME);
2653 String accountType = c.getString(RawContactsQuery.ACCOUNT_TYPE);
3737 Cursor cursor = mDb.query(RawContactsQuery.TABLE, RawContactsQuery.COLUMNS, selection,
3741 previousDeleted = cursor.getInt(RawContactsQuery.DELETED);
3742 accountType = cursor.getString(RawContactsQuery.ACCOUNT_TYPE);
3743 accountName = cursor.getString(RawContactsQuery
[all...]

Completed in 13 milliseconds