Searched defs:mUserDisplayName (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java2064 CharSequence mUserDisplayName; field in class:NotificationCompat.MessagingStyle
2078 mUserDisplayName = userDisplayName;
2085 return mUserDisplayName;
2182 new Notification.MessagingStyle(mUserDisplayName)
2264 replyName = mUserDisplayName == null
2265 ? "" : mUserDisplayName;
2289 if (mUserDisplayName != null) {
2290 extras.putCharSequence(EXTRA_SELF_DISPLAY_NAME, mUserDisplayName);
2307 mUserDisplayName = extras.getString(EXTRA_SELF_DISPLAY_NAME);
/frameworks/base/core/java/android/app/
H A DNotification.java5883 CharSequence mUserDisplayName; field in class:Notification.MessagingStyle
5898 mUserDisplayName = userDisplayName;
5905 return mUserDisplayName;
6004 if (mUserDisplayName != null) {
6005 extras.putCharSequence(EXTRA_SELF_DISPLAY_NAME, mUserDisplayName);
6024 : TextUtils.isEmpty(m.mSender) ? mUserDisplayName : m.mSender;
6056 mUserDisplayName = extras.getCharSequence(EXTRA_SELF_DISPLAY_NAME);
6210 CharSequence replyName = mUserDisplayName == null ? "" : mUserDisplayName;

Completed in 61 milliseconds