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
4594 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1); in updateRawContactDisplayName()
4597 int mimeType = c.getInt(RawContactNameQuery.MIMETYPE); in updateRawContactDisplayName()
4601 final String given = c.getString(RawContactNameQuery.GIVEN_NAME); in updateRawContactDisplayName()
4602 final String middle = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
4603 final String family = c.getString(RawContactNameQuery.FAMILY_NAME); in updateRawContactDisplayName()
4604 final String suffix = c.getString(RawContactNameQuery.SUFFIX); in updateRawContactDisplayName()
4605 final String prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
4620 && c.getInt(RawContactNameQuery.IS_PRIMARY) == 0) { in updateRawContactDisplayName()
4632 name.prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
[all …]