Home
last modified time | relevance | path

Searched refs:RawContactNameQuery (Results 1 – 1 of 1) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java838 private interface RawContactNameQuery { interface in ContactsDatabaseHelper
4601 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1); in updateRawContactDisplayName()
4604 int mimeType = c.getInt(RawContactNameQuery.MIMETYPE); in updateRawContactDisplayName()
4608 final String given = c.getString(RawContactNameQuery.GIVEN_NAME); in updateRawContactDisplayName()
4609 final String middle = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
4610 final String family = c.getString(RawContactNameQuery.FAMILY_NAME); in updateRawContactDisplayName()
4611 final String suffix = c.getString(RawContactNameQuery.SUFFIX); in updateRawContactDisplayName()
4612 final String prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
4627 && c.getInt(RawContactNameQuery.IS_PRIMARY) == 0) { in updateRawContactDisplayName()
4639 name.prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
[all …]