HomeSort by relevance Sort by last modified time
    Searched full:rawcontactid (Results 51 - 70 of 70) sorted by null

1 23

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/database/
ContactsTableUtil.java 121 public static void deleteContactIfSingleton(SQLiteDatabase db, long rawContactId) {
131 final Cursor cursor = db.rawQuery(sql, new String[]{rawContactId + ""});
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java 82 * @param rawContactId the unique Id of the existing rawContact
86 public static ContactOperations updateExistingContact(Context context, long rawContactId,
88 return new ContactOperations(context, rawContactId, isSyncOperation, batchOperation);
113 public ContactOperations(Context context, long rawContactId, boolean isSyncOperation,
117 mRawContactId = rawContactId;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 273 public static long queryForContactId(ContentResolver cr, long rawContactId) {
279 RawContacts._ID + "=" + rawContactId, null, null);
317 long rawContactId = -1;
324 rawContactId = rawContactIdCursor.getLong(0);
331 return rawContactId;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java 53 long rawContactId = RawContactUtil.createRawContact(mResolver, account);
54 DataUtil.insertStructuredName(mResolver, rawContactId, "Deer", "Dough");
57 mResolver.delete(Data.CONTENT_URI, Data.RAW_CONTACT_ID + "=" + rawContactId
NameLookupBuilderTest.java 70 protected void insertNameLookup(long rawContactId, long dataId, int lookupType,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregatorTest.java 118 long rawContactId = RawContactUtil.createRawContact(mResolver);
120 Uri resultUri = DataUtil.insertStructuredName(mResolver, rawContactId, "Johna", "Smitha");
125 long contactId = queryContactId(rawContactId);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_PinnedPositionsTest.java 345 * rawContactId contain the exact same name-value pairs in the given ContentValues.
347 * @param rawContactId Id of a valid contact in the contacts database
350 private void assertValuesForRawContact(long rawContactId, ContentValues contentValues) {
352 buildUpon().appendEncodedPath(String.valueOf(rawContactId)).build(), contentValues);
ContactsContract_DataTest.java 385 private long createData(long rawContactId) {
391 return DataUtil.insertData(mResolver, rawContactId, values);
  /packages/apps/Contacts/src/com/android/contacts/editor/
AggregationSuggestionView.java 145 rawContactIds.add(rawContact.rawContactId);
ContactEditorFragment.java 554 long rawContactId = rawContact.getId();
557 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java 101 public void setRawContactId(long rawContactId) {
102 mContentValues.put(Data.RAW_CONTACT_ID, rawContactId);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 127 private static final String MEMBER_RAW_CONTACT_ID_KEY = "rawContactId";
492 public void loadMemberToAddToGroup(long rawContactId, String contactId) {
494 args.putLong(MEMBER_RAW_CONTACT_ID_KEY, rawContactId);
785 long rawContactId = data.getLong(GroupEditorQuery.RAW_CONTACT_ID);
789 listExistingMembers.add(new Member(rawContactId, lookupKey, contactId,
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ContactLoader.java 472 long rawContactId = cursor.getLong(ContactQuery.RAW_CONTACT_ID);
473 if (rawContactId != currentRawContactId) {
476 currentRawContactId = rawContactId;
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/
ContactLoaderTest.java 303 Uri baseUri, long contactId, long rawContactId, long dataId, String encodedLookup) {
348 rawContactId, 40,
355 rawContactId,
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 397 final long rawContactId = ContentUris.parseId(data);
398 final long contactId = queryForContactId(resolver, rawContactId);
403 final long rawContactId = ContentUris.parseId(data);
404 selectionArg = String.valueOf(rawContactId);
415 private static long queryForContactId(ContentResolver resolver, long rawContactId) {
421 RawContacts._ID + "=?", new String[] { String.valueOf(rawContactId) },
    [all...]
PhotoSelectionActivity.java 539 long rawContactId = getWritableEntityId();
542 mContext, delta, "", 0, mIsProfile, null, null, rawContactId, uri);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
NotificationImportExportListener.java 120 final long rawContactId = ContentUris.parseId(createdUri);
123 RawContacts.CONTENT_URI, rawContactId));
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java     [all...]

Completed in 3326 milliseconds

1 23