HomeSort by relevance Sort by last modified time
    Searched defs:PhoneQuery (Results 1 - 3 of 3) sorted by null

  /packages/apps/Dialer/src/com/android/dialer/calllog/
PhoneQuery.java 24 final class PhoneQuery {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java 53 protected static class PhoneQuery {
138 loader.setProjection(PhoneQuery.PROJECTION_PRIMARY);
140 loader.setProjection(PhoneQuery.PROJECTION_ALTERNATIVE);
191 return ((Cursor) getItem(position)).getString(PhoneQuery.PHONE_DISPLAY_NAME);
202 long id = cursor.getLong(PhoneQuery.PHONE_ID);
234 final long currentContactId = cursor.getLong(PhoneQuery.PHONE_CONTACT_ID);
236 final long previousContactId = cursor.getLong(PhoneQuery.PHONE_CONTACT_ID);
243 final long nextContactId = cursor.getLong(PhoneQuery.PHONE_CONTACT_ID);
260 bindQuickContact(view, partition, cursor, PhoneQuery.PHONE_PHOTO_ID, -1,
261 PhoneQuery.PHONE_CONTACT_ID, PhoneQuery.PHONE_LOOKUP_KEY)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialCache.java 77 public static interface PhoneQuery {
223 final Cursor c = context.getContentResolver().query(PhoneQuery.URI,
225 ? PhoneQuery.PROJECTION_PRIMARY : PhoneQuery.PROJECTION_ALTERNATIVE,
227 PhoneQuery.SORT_ORDER);
245 final String displayName = c.getString(PhoneQuery.PHONE_DISPLAY_NAME);
246 final String phoneNumber = c.getString(PhoneQuery.PHONE_NUMBER);
247 final long id = c.getLong(PhoneQuery.PHONE_CONTACT_ID);
248 final String lookupKey = c.getString(PhoneQuery.PHONE_LOOKUP_KEY);

Completed in 78 milliseconds