Searched defs:contactId (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/chips/tests/src/com/android/ex/chips/
H A DRecipientAlternatesAdapterTest.java82 long contactId,
88 contactId, dataId, photoUri, displayNameSource});
97 long contactId,
107 assertEquals(contactId, c.getLong(4));
77 addRow(MatrixCursor c, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
92 assertRow(Cursor c, int position, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
/frameworks/opt/chips/src/com/android/ex/chips/
H A DRecipientAlternatesAdapter.java369 public RecipientAlternatesAdapter(Context context, long contactId, Long directoryId, argument
373 this(context, contactId, directoryId, lookupKey, currentId, queryMode, listener,
377 public RecipientAlternatesAdapter(Context context, long contactId, Long directoryId, argument
382 getCursorForConstruction(context, contactId, directoryId, lookupKey, queryMode,
393 private static Cursor getCursorForConstruction(Context context, long contactId, argument
407 uri = Contacts.getLookupUri(contactId, lookupKey)
422 uri = Contacts.getLookupUri(contactId, lookupKey)
439 uri, projection, selection, new String[] {String.valueOf(contactId)}, null);
H A DRecipientEntry.java102 int destinationType, String destinationLabel, long contactId, Long directoryId,
106 destinationLabel, contactId, directoryId, dataId, photoThumbnailUri,
111 int destinationType, String destinationLabel, long contactId, Long directoryId,
120 mContactId = contactId;
134 int destinationType, String destinationLabel, long contactId, Long directoryId,
138 contactId, directoryId, dataId, photoThumbnailUri, isFirstLevel, isValid,
191 String destination, int destinationType, String destinationLabel, long contactId,
196 contactId, directoryId, dataId, photoThumbnailUri, true, isValid, lookupKey,
201 String destination, int destinationType, String destinationLabel, long contactId,
206 contactId, directoryI
101 RecipientEntry(int entryType, String displayName, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, Uri photoThumbnailUri, boolean isFirstLevel, boolean isValid, String lookupKey, String[] permissions) argument
110 RecipientEntry(int entryType, String displayName, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, Uri photoThumbnailUri, boolean shouldDisplayIcon, boolean isFirstLevel, boolean isValid, String lookupKey, String[] permissions) argument
133 RecipientEntry(int entryType, String displayName, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, Uri photoThumbnailUri, boolean isFirstLevel, boolean isValid, String lookupKey) argument
190 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, Uri photoThumbnailUri, boolean isValid, String lookupKey) argument
200 constructTopLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
211 constructSecondLevelEntry(String displayName, int displayNameSource, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriAsString, boolean isValid, String lookupKey) argument
[all...]
H A DBaseRecipientAdapter.java144 public final long contactId; field in class:BaseRecipientAdapter.TemporaryEntry
156 long contactId,
166 this.contactId = contactId;
179 this.contactId = cursor.getLong(Queries.Query.CONTACT_ID);
510 * First, each destination (an email address or a phone number) with a valid contactId is
511 * inserted into {@link #mEntryMap} and grouped by the contactId. Destinations without valid
512 * contactId (possible if they aren't in local storage) are stored in
818 entry.contactId, entry.directoryId, entry.dataId, entry.thumbnailUriString,
820 } else if (entryMap.containsKey(entry.contactId)) {
151 TemporaryEntry( String displayName, String destination, int destinationType, String destinationLabel, long contactId, Long directoryId, long dataId, String thumbnailUriString, int displayNameSource, String lookupKey) argument
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardComposer.java259 * String[] selectionArgs = new String[] {contactId};
294 * @param contentUri Uri for obtaining the list of contactId. Used with
303 * contactId.
316 * First we'll create {@link Cursor} for the list of contactId.
323 * After that, we'll obtain data for each contactId in the list.
328 * Data.CONTACT_ID + "=?", new String[] {contactId}, null)
334 * @param contentUri Uri for obtaining the list of contactId. Used with
345 * contactId.
462 // this doesn't work now, as resolver doesn't return any data with "-1" contactId.
477 * Class that store rawContactEntitlesUri and contactId
481 public final long contactId; field in class:VCardComposer.RawContactEntitlesInfo
482 RawContactEntitlesInfo(Uri rawContactEntitlesUri, long contactId) argument
498 getRawContactEntitlesInfo(long contactId) argument
501 createOneEntryInternal(long contactId, final Method getEntityIteratorMethod) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DContactsContract.java1605 final long contactId = c.getLong(1);
1606 return getLookupUri(contactId, lookupKey);
1621 public static Uri getLookupUri(long contactId, String lookupKey) { argument
1626 lookupKey), contactId);
1646 long contactId = c.getLong(0);
1647 return ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId);
1662 * @param contactId the person who was contacted
1668 public static void markAsContacted(ContentResolver resolver, long contactId) { argument
1669 Uri uri = ContentUris.withAppendedId(CONTENT_URI, contactId);
1758 public static boolean isEnterpriseContactId(long contactId) { argument
1941 setContactId(long contactId) argument
8307 undemote(ContentResolver contentResolver, long contactId) argument
8319 pin( ContentResolver contentResolver, long contactId, int pinnedPosition) argument
8461 rebuildManagedQuickContactsIntent(String lookupKey, long contactId, boolean isContactIdIgnored, long directoryId, Intent originalIntent) argument
[all...]

Completed in 113 milliseconds