Searched defs:mParticipants (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/telephony/java/android/telephony/ims/
H A DImsConferenceState.java92 public final HashMap<String, Bundle> mParticipants = new HashMap<String, Bundle>(); field in class:ImsConferenceState
109 out.writeInt(mParticipants.size());
111 if (mParticipants.size() > 0) {
112 Set<Entry<String, Bundle>> entries = mParticipants.entrySet();
133 mParticipants.put(user, state);
184 if (mParticipants.size() > 0) {
185 Set<Entry<String, Bundle>> entries = mParticipants.entrySet();
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompat.java4812 private final String[] mParticipants; field in class:NotificationCompat.CarExtender.UnreadConversation
4822 mParticipants = participants;
4861 return mParticipants;
4868 return mParticipants.length > 0 ? mParticipants[0] : null;
/frameworks/base/core/java/android/app/
H A DNotification.java9179 private final String[] mParticipants; field in class:Notification.CarExtender.UnreadConversation
9189 mParticipants = participants;
9228 return mParticipants;
9235 return mParticipants.length > 0 ? mParticipants[0] : null;
9248 if (mParticipants != null && mParticipants.length > 1) {
9249 author = mParticipants[0];
9264 b.putStringArray(KEY_PARTICIPANTS, mParticipants);

Completed in 121 milliseconds