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.java832 private interface RawContactNameQuery { interface in ContactsDatabaseHelper
4817 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1); in updateRawContactDisplayName()
4820 int mimeType = c.getInt(RawContactNameQuery.MIMETYPE); in updateRawContactDisplayName()
4824 final String given = c.getString(RawContactNameQuery.GIVEN_NAME); in updateRawContactDisplayName()
4825 final String middle = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
4826 final String family = c.getString(RawContactNameQuery.FAMILY_NAME); in updateRawContactDisplayName()
4827 final String suffix = c.getString(RawContactNameQuery.SUFFIX); in updateRawContactDisplayName()
4828 final String prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
4843 && c.getInt(RawContactNameQuery.IS_PRIMARY) == 0) { in updateRawContactDisplayName()
4855 name.prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
[all …]