HomeSort by relevance Sort by last modified time
    Searched refs:rawContactId (Results 51 - 71 of 71) sorted by null

1 23

  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactFragment.java 340 final long rawContactId = entValues.getAsLong(RawContacts._ID);
346 if (!mRawContactIds.contains(rawContactId)) {
347 mRawContactIds.add(rawContactId);
355 mWritableRawContactIds.add(rawContactId);
361 entryValues.put(Data.RAW_CONTACT_ID, rawContactId);
372 rawContactId, dataId, entryValues);
414 imMime, imKind, rawContactId, dataId, entryValues);
440 final boolean isNameRawContact = (mNameRawContactId == rawContactId);
459 final boolean isNameRawContact = (mNameRawContactId == rawContactId);
551 long rawContactId, long dataId, ContentValues values)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
ContactDeletionInteraction.java 237 final long rawContactId = cursor.getLong(COLUMN_INDEX_RAW_CONTACT_ID);
245 writableRawContacts.add(rawContactId);
247 readOnlyRawContacts.add(rawContactId);
  /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/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 560 long rawContactId = rawContact.getId();
563 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
    [all...]
AggregationSuggestionView.java 145 rawContactIds.add(rawContact.rawContactId);
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_RawContactsTest.java 95 long rawContactid = RawContactUtil.insertRawContact(mResolver,
98 assertTrue(RawContactUtil.rawContactExistsById(mResolver, rawContactid));
100 RawContactUtil.delete(mResolver, rawContactid, false);
106 String[] result = RawContactUtil.queryByRawContactId(mResolver, rawContactid,
116 long rawContactid = RawContactUtil.insertRawContact(mResolver,
118 assertTrue(RawContactUtil.rawContactExistsById(mResolver, rawContactid));
120 RawContactUtil.delete(mResolver, rawContactid, true);
122 assertFalse(RawContactUtil.rawContactExistsById(mResolver, rawContactid));
184 long rawContactId) {
185 long contactId = RawContactUtil.queryContactIdByRawContactId(mResolver, rawContactId);
    [all...]
ContactsContract_DataTest.java 385 private long createData(long rawContactId) {
391 return DataUtil.insertData(mResolver, rawContactId, values);
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);
  /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/ContactsCommon/src/com/android/contacts/common/vcard/
NotificationImportExportListener.java 123 final long rawContactId = ContentUris.parseId(createdUri);
126 RawContacts.CONTENT_URI, 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/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 489 long rawContactId = cursor.getLong(ContactQuery.RAW_CONTACT_ID);
490 if (rawContactId != currentRawContactId) {
493 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/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
ContactAggregatorTest.java 124 long rawContactId = RawContactUtil.createRawContact(mResolver);
126 Uri resultUri = DataUtil.insertStructuredName(mResolver, rawContactId, "Johna", "Smitha");
131 long contactId = queryContactId(rawContactId);
    [all...]
  /frameworks/base/core/java/android/provider/
ContactsContract.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
QuickContactActivity.java     [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 1060 milliseconds

1 23