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 65 public static class PhoneQuery {
144 loader.setProjection(PhoneQuery.PROJECTION_PRIMARY);
182 loader.setProjection(PhoneQuery.PROJECTION_PRIMARY);
184 loader.setProjection(PhoneQuery.PROJECTION_ALTERNATIVE);
245 return ((Cursor) getItem(position)).getString(PhoneQuery.DISPLAY_NAME);
250 return item != null ? item.getString(PhoneQuery.PHONE_NUMBER) : null;
268 final long phoneId = cursor.getLong(PhoneQuery.PHONE_ID);
299 final long contactId = cursor.getLong(PhoneQuery.CONTACT_ID);
322 final long currentContactId = cursor.getLong(PhoneQuery.CONTACT_ID);
324 final long previousContactId = cursor.getLong(PhoneQuery.CONTACT_ID)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/database/
DialerDatabaseHelper.java 124 public static interface PhoneQuery {
580 final Long contactId = updatedContactCursor.getLong(PhoneQuery.PHONE_CONTACT_ID);
631 insert.bindLong(1, updatedContactCursor.getLong(PhoneQuery.PHONE_ID));
632 insert.bindString(2, updatedContactCursor.getString(PhoneQuery.PHONE_NUMBER));
633 insert.bindLong(3, updatedContactCursor.getLong(PhoneQuery.PHONE_CONTACT_ID));
634 insert.bindString(4, updatedContactCursor.getString(PhoneQuery.PHONE_LOOKUP_KEY));
636 PhoneQuery.PHONE_DISPLAY_NAME);
642 insert.bindLong(6, updatedContactCursor.getLong(PhoneQuery.PHONE_PHOTO_ID));
643 insert.bindLong(7, updatedContactCursor.getLong(PhoneQuery.PHONE_LAST_TIME_USED));
644 insert.bindLong(8, updatedContactCursor.getInt(PhoneQuery.PHONE_TIMES_USED))
    [all...]

Completed in 378 milliseconds