Lines Matching refs:Impl

59     public final static String COLUMN_ID = Contacts.Impl._ID;
66 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP;
73 Contacts.Impl._ID,
74 Contacts.Impl.CONTACT_NUMBER,
75 Contacts.Impl.CONTACT_NAME,
76 Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP,
77 Contacts.Impl.VOLTE_CALL_SERVICE_CONTACT_ADDRESS,
78 Contacts.Impl.VOLTE_CALL_CAPABILITY,
79 Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP,
80 Contacts.Impl.VOLTE_CALL_AVAILABILITY,
81 Contacts.Impl.VOLTE_CALL_AVAILABILITY_TIMESTAMP,
82 Contacts.Impl.VIDEO_CALL_SERVICE_CONTACT_ADDRESS,
83 Contacts.Impl.VIDEO_CALL_CAPABILITY,
84 Contacts.Impl.VIDEO_CALL_CAPABILITY_TIMESTAMP,
85 Contacts.Impl.VIDEO_CALL_AVAILABILITY,
86 Contacts.Impl.VIDEO_CALL_AVAILABILITY_TIMESTAMP,
87 Contacts.Impl.VOLTE_STATUS
94 Contacts.Impl._ID,
95 Contacts.Impl.FORMATTED_NUMBER,
318 values.put(Contacts.Impl.VOLTE_CALL_CAPABILITY,
322 values.put(Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP,
326 values.put(Contacts.Impl.VOLTE_CALL_AVAILABILITY,
330 values.put(Contacts.Impl.VOLTE_CALL_AVAILABILITY_TIMESTAMP,
334 values.put(Contacts.Impl.VOLTE_CALL_SERVICE_CONTACT_ADDRESS,
339 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY,
343 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY_TIMESTAMP,
347 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY,
351 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY_TIMESTAMP,
355 values.put(Contacts.Impl.VIDEO_CALL_SERVICE_CONTACT_ADDRESS,
360 values.put(Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP,
522 mOrderByColumn = Contacts.Impl._ID;
524 mOrderByColumn = Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP;
553 String cselection = "(" + Contacts.Impl.CONTACT_NUMBER + "=" + escapedPhoneNumber;
554 cselection += " OR PHONE_NUMBERS_EQUAL(" + Contacts.Impl.CONTACT_NUMBER + ", ";
605 String cselection = "(" + Contacts.Impl.CONTACT_NUMBER + "=" + escapedPhoneNumber;
606 cselection += " OR PHONE_NUMBERS_EQUAL(" + Contacts.Impl.CONTACT_NUMBER + ", ";
637 private Uri mBaseUri = Contacts.Impl.CONTENT_URI;
703 id = cursor.getLong(cursor.getColumnIndex(Contacts.Impl._ID));
815 values.put(Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP, (String)null);
816 values.put(Contacts.Impl.VOLTE_CALL_SERVICE_CONTACT_ADDRESS, (String)null);
817 values.put(Contacts.Impl.VOLTE_CALL_CAPABILITY, (String)null);
818 values.put(Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP, (String)null);
819 values.put(Contacts.Impl.VOLTE_CALL_AVAILABILITY, (String)null);
820 values.put(Contacts.Impl.VOLTE_CALL_AVAILABILITY_TIMESTAMP, (String)null);
822 values.put(Contacts.Impl.VIDEO_CALL_SERVICE_CONTACT_ADDRESS, (String)null);
823 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY, (String)null);
824 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY_TIMESTAMP, (String)null);
825 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY, (String)null);
826 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY_TIMESTAMP, (String)null);
832 count = mResolver.update(Contacts.Impl.CONTENT_URI,
847 values.put(Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP, (String)null);
848 values.put(Contacts.Impl.VIDEO_CALL_SERVICE_CONTACT_ADDRESS, (String)null);
849 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY, (String)null);
850 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY_TIMESTAMP, (String)null);
851 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY, (String)null);
852 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY_TIMESTAMP, (String)null);
858 count = mResolver.update(Contacts.Impl.CONTENT_URI,
886 values.put(Contacts.Impl.VOLTE_STATUS, volteStatus);
890 values.put(Contacts.Impl.CONTACT_LAST_UPDATED_TIMESTAMP,
898 values.put(Contacts.Impl.VOLTE_CALL_AVAILABILITY, lteCallCapability);
899 values.put(Contacts.Impl.VOLTE_CALL_AVAILABILITY_TIMESTAMP, (long)lteCallTimestamp);
905 values.put(Contacts.Impl.VOLTE_CALL_SERVICE_CONTACT_ADDRESS, lteCallContactAddress);
908 values.put(Contacts.Impl.VOLTE_CALL_CAPABILITY, lteCallCapability);
909 values.put(Contacts.Impl.VOLTE_CALL_CAPABILITY_TIMESTAMP, lteCallTimestamp);
916 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY, videoCallCapability);
917 values.put(Contacts.Impl.VIDEO_CALL_AVAILABILITY_TIMESTAMP, (long)videoCallTimestamp);
923 values.put(Contacts.Impl.VIDEO_CALL_SERVICE_CONTACT_ADDRESS,
927 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY, videoCallCapability);
928 values.put(Contacts.Impl.VIDEO_CALL_CAPABILITY_TIMESTAMP, videoCallTimestamp);
934 cursor = mResolver.query(Contacts.Impl.CONTENT_URI, DATA_QUERY_PROJECTION,
935 "PHONE_NUMBERS_EQUAL(" + Contacts.Impl.FORMATTED_NUMBER + ", ?, 1)",
954 count += mResolver.update(Contacts.Impl.CONTENT_URI, values,
955 Contacts.Impl._ID + "=" + id, null);