/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapVcardManager.java | 433 long contactId = 0; 440 contactId = contactCursor.getLong(CONTACTS_ID_COLUMN_INDEX); 441 if (V) Log.v(TAG, "Query startPointId = " + contactId); 454 contactId = contactCursor.getLong(CONTACTS_ID_COLUMN_INDEX); 455 if (V) Log.v(TAG, "Query startPointId = " + contactId); 466 selection = Contacts._ID + "=" + contactId;
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
ContactDeletionInteraction.java | 226 long contactId = 0; 239 contactId = cursor.getLong(COLUMN_INDEX_CONTACT_ID); 262 final Uri contactUri = Contacts.getLookupUri(contactId, lookupKey);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsProvider2.java | [all...] |
ContactsDatabaseHelper.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/group/ |
GroupEditorFragment.java | 492 public void loadMemberToAddToGroup(long rawContactId, String contactId) { 495 args.putString(MEMBER_LOOKUP_URI_KEY, contactId); 784 long contactId = data.getLong(GroupEditorQuery.CONTACT_ID); 789 listExistingMembers.add(new Member(rawContactId, lookupKey, contactId, [all...] |
/frameworks/ex/common/java/com/android/common/contacts/ |
DataUsageStatUpdater.java | 233 for (long contactId : contactIds) { 234 whereArgs.add(String.valueOf(contactId)); 242 Log.d(TAG, "contactId where: " + whereBuilder.toString()); 243 Log.d(TAG, "contactId selection: " + whereArgs);
|
/packages/apps/Contacts/src/com/android/contacts/list/ |
JoinContactListAdapter.java | 204 long contactId = cursor.getLong(ContactQuery.CONTACT_ID); 206 return Contacts.getLookupUri(contactId, lookupKey);
|
ContactBrowseListFragment.java | 120 final long contactId = cursor.getLong(0); 122 if (contactId != 0 && !TextUtils.isEmpty(lookupKey)) { 123 return Contacts.getLookupUri(contactId, lookupKey);
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
ContactInfoHelper.java | 157 long contactId = phonesCursor.getLong(PhoneQuery.PERSON_ID); 160 info.lookupUri = Contacts.getLookupUri(contactId, lookupKey);
|
/packages/apps/UnifiedEmail/src/com/android/mail/ |
SenderInfoLoader.java | 139 long contactId = cursor.getLong(DATA_CONTACT_ID_COLUMN); 141 Uri contactUri = ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
|
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
VoiceContact.java | 61 * @param contactId ID in person table. 68 private VoiceContact(String name, long contactId, long primaryId, 71 mContactId = contactId;
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
ContactLoader.java | 116 final long contactId = ContentUris.parseId(contactUri); 118 + "=" + contactId, null, null);
|
/frameworks/base/core/java/android/provider/ |
ContactsContract.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/activities/ |
ConfirmAddDetailActivity.java | 393 final long contactId = ContentUris.parseId(data); 394 selectionArg = String.valueOf(contactId); 398 final long contactId = queryForContactId(resolver, rawContactId); 399 selectionArg = String.valueOf(contactId); 417 long contactId = -1; 424 contactId = contactIdCursor.getLong(0); 431 return contactId; [all...] |
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardComposer.java | 292 * String[] selectionArgs = new String[] {contactId}; 327 * @param contentUri Uri for obtaining the list of contactId. Used with 336 * contactId. 349 * First we'll create {@link Cursor} for the list of contactId. 356 * After that, we'll obtain data for each contactId in the list. 361 * Data.CONTACT_ID + "=?", new String[] {contactId}, null) 367 * @param contentUri Uri for obtaining the list of contactId. Used with 378 * contactId. 479 // this doesn't work now, as resolver doesn't return any data with "-1" contactId. 493 private String createOneEntryInternal(final String contactId, [all...] |
/packages/apps/Calendar/src/com/android/calendar/event/ |
AttendeesView.java | 431 final long contactId = cursor.getLong(EMAIL_PROJECTION_CONTACT_ID_INDEX); 433 ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId); 437 item.mContactLookupUri = Contacts.getLookupUri(contactId, lookupKey);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/ |
ContactHeaderWidget.java | 281 long contactId = cursor.getLong(PHONE_LOOKUP_CONTACT_ID_COLUMN_INDEX); 284 bindFromContactUriInternal(Contacts.getLookupUri(contactId, lookupKey), 297 long contactId = cursor.getLong(EMAIL_LOOKUP_CONTACT_ID_COLUMN_INDEX); 300 bindFromContactUriInternal(Contacts.getLookupUri(contactId, lookupKey),
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
ContactEditorFragment.java | [all...] |
/frameworks/ex/chips/src/com/android/ex/chips/ |
RecipientEditTextView.java | 474 long contactId = mSelectedChip != null ? mSelectedChip.getEntry().getContactId() : -1; 475 if (mSelectedChip != null && contactId != RecipientEntry.INVALID_CONTACT 476 && (!isPhoneQuery() && contactId != RecipientEntry.GENERATED_CONTACT)) { 614 long contactId = contact.getContactId(); 616 contactId != RecipientEntry.INVALID_CONTACT 617 : (contactId != RecipientEntry.INVALID_CONTACT 618 && (contactId != RecipientEntry.GENERATED_CONTACT && [all...] |
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/ |
PhoneNumberListAdapter.java | 300 final long contactId = cursor.getLong(PhoneQuery.CONTACT_ID); 301 if (contactId != curContactId) { 302 curContactId = contactId;
|
ContactEntryListAdapter.java | 676 long contactId = cursor.getLong(contactIdColumn); 684 Uri uri = Contacts.getLookupUri(contactId, lookupKey);
|
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/ |
RawContactDeltaTests.java | 68 public static RawContact getRawContact(Context context, long contactId, long phoneId) { 72 contact.put(RawContacts._ID, contactId);
|
/packages/apps/Dialer/tests/src/com/android/dialer/database/ |
SmartDialPrefixTest.java | 144 int id, String number, int contactId, String lookupKey, String displayName, int photoId, 150 contactCursor.addRow(new Object[]{id, "", "", number, contactId, lookupKey, displayName, 153 nameCursor.addRow(new Object[]{displayName, contactId}); 155 return new ContactNumber(contactId, id, displayName, number, lookupKey, 0);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ |
ContactEntryAdapter.java | 46 public long contactId;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
ContactLoader.java | 606 final long contactId = cursor.getLong(ContactQuery.CONTACT_ID); 626 Uri.withAppendedPath(Contacts.CONTENT_LOOKUP_URI, lookupKey), contactId); 632 contactId, nameRawContactId, displayNameSource, photoId, photoUri, displayName, [all...] |