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.java831 private interface RawContactNameQuery { interface in ContactsDatabaseHelper
4842 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1); in updateRawContactDisplayName()
4845 int mimeType = c.getInt(RawContactNameQuery.MIMETYPE); in updateRawContactDisplayName()
4849 final String given = c.getString(RawContactNameQuery.GIVEN_NAME); in updateRawContactDisplayName()
4850 final String middle = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
4851 final String family = c.getString(RawContactNameQuery.FAMILY_NAME); in updateRawContactDisplayName()
4852 final String suffix = c.getString(RawContactNameQuery.SUFFIX); in updateRawContactDisplayName()
4853 final String prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
4868 && c.getInt(RawContactNameQuery.IS_PRIMARY) == 0) { in updateRawContactDisplayName()
4880 name.prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
[all …]