Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/util/
DContactUtil.java161 public static class StructuredNameQuery { class in ContactUtil
434 StructuredNameQuery.PROJECTION, selection, selectionArgs, null); in lookupStructuredName()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java780 private interface StructuredNameQuery { interface in ContactsDatabaseHelper
2786 Cursor cursor = db.query(StructuredNameQuery.TABLE, StructuredNameQuery.COLUMNS, in insertStructuredNameLookup()
2787 StructuredNameQuery.SELECTION, new String[] {String.valueOf(mimeTypeId)}, in insertStructuredNameLookup()
2791 long dataId = cursor.getLong(StructuredNameQuery.ID); in insertStructuredNameLookup()
2792 long rawContactId = cursor.getLong(StructuredNameQuery.RAW_CONTACT_ID); in insertStructuredNameLookup()
2793 String name = cursor.getString(StructuredNameQuery.DISPLAY_NAME); in insertStructuredNameLookup()