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.java840 private interface RawContactNameQuery { interface in ContactsDatabaseHelper
4588 Cursor c = db.rawQuery(RawContactNameQuery.RAW_SQL, mSelectionArgs1); in updateRawContactDisplayName()
4591 int mimeType = c.getInt(RawContactNameQuery.MIMETYPE); in updateRawContactDisplayName()
4595 final String given = c.getString(RawContactNameQuery.GIVEN_NAME); in updateRawContactDisplayName()
4596 final String middle = c.getString(RawContactNameQuery.MIDDLE_NAME); in updateRawContactDisplayName()
4597 final String family = c.getString(RawContactNameQuery.FAMILY_NAME); in updateRawContactDisplayName()
4598 final String suffix = c.getString(RawContactNameQuery.SUFFIX); in updateRawContactDisplayName()
4599 final String prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
4614 && c.getInt(RawContactNameQuery.IS_PRIMARY) == 0) { in updateRawContactDisplayName()
4626 name.prefix = c.getString(RawContactNameQuery.PREFIX); in updateRawContactDisplayName()
[all …]