HomeSort by relevance Sort by last modified time
    Searched refs:profilePhotoUri (Results 1 - 2 of 2) sorted by null

  /packages/apps/Messaging/src/com/android/messaging/util/
AvatarUriUtil.java 145 * profilePhotoUri, fullName and normalizedDestination populated. This will never return a null
151 final Uri profilePhotoUri = (photoUriString == null) ? null : Uri.parse(photoUriString);
155 return createAvatarUri(profilePhotoUri, name, destination, contactLookupKey);
161 public static Uri createAvatarUri(final Uri profilePhotoUri, final CharSequence name,
172 if (profilePhotoUri != null) {
173 if (UriUtil.isLocalResourceUri(profilePhotoUri)) {
174 return fromLocalResourceWithFallback(profilePhotoUri, generatedUri);
176 return profilePhotoUri;
231 private static Uri fromLocalResourceWithFallback(@NonNull final Uri profilePhotoUri,
233 Assert.notNull(profilePhotoUri);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ParticipantData.java 408 public void setProfilePhotoUri(final String profilePhotoUri) {
409 mProfilePhotoUri = profilePhotoUri;

Completed in 257 milliseconds