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 68 public static class PhoneQuery {
152 loader.setProjection(PhoneQuery.PROJECTION_PRIMARY);
200 loader.setProjection(PhoneQuery.PROJECTION_PRIMARY);
202 loader.setProjection(PhoneQuery.PROJECTION_ALTERNATIVE);
263 return ((Cursor) getItem(position)).getString(PhoneQuery.DISPLAY_NAME);
268 return item != null ? item.getString(PhoneQuery.PHONE_NUMBER) : null;
286 final long phoneId = cursor.getLong(PhoneQuery.PHONE_ID);
317 final long contactId = cursor.getLong(PhoneQuery.CONTACT_ID);
341 final long currentContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
343 final long previousContactId = cursor.getLong(PhoneQuery.CONTACT_ID)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/database/
DialerDatabaseHelper.java 124 public static interface PhoneQuery {
596 final Long contactId = updatedContactCursor.getLong(PhoneQuery.PHONE_CONTACT_ID);
652 final String number = updatedContactCursor.getString(PhoneQuery.PHONE_NUMBER);
660 PhoneQuery.PHONE_LOOKUP_KEY);
668 PhoneQuery.PHONE_DISPLAY_NAME);
674 insert.bindLong(1, updatedContactCursor.getLong(PhoneQuery.PHONE_ID));
675 insert.bindLong(3, updatedContactCursor.getLong(PhoneQuery.PHONE_CONTACT_ID));
676 insert.bindLong(6, updatedContactCursor.getLong(PhoneQuery.PHONE_PHOTO_ID));
677 insert.bindLong(7, updatedContactCursor.getLong(PhoneQuery.PHONE_LAST_TIME_USED));
678 insert.bindLong(8, updatedContactCursor.getInt(PhoneQuery.PHONE_TIMES_USED))
    [all...]

Completed in 325 milliseconds