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

/packages/apps/UnifiedEmail/src/com/android/mail/providers/
H A DParticipantInfo.java24 public class ParticipantInfo implements Parcelable { class in inherits:Parcelable
38 public ParticipantInfo(String name, String email, int priority, boolean readConversation) { method in class:ParticipantInfo
58 public static final Creator<ParticipantInfo> CREATOR = new Creator<ParticipantInfo>() {
60 public ParticipantInfo createFromParcel(Parcel parcel) {
61 return new ParticipantInfo(parcel);
65 public ParticipantInfo[] newArray(int size) {
66 return new ParticipantInfo[size];
70 public ParticipantInfo(Parcel in) { method in class:ParticipantInfo
92 return "[ParticipantInfo
[all...]
/packages/apps/InCallUI/src/com/android/incallui/
H A DConferenceParticipantListAdapter.java55 private class ParticipantInfo { class in class:ConferenceParticipantListAdapter
60 public ParticipantInfo(Call call, ContactCacheEntry contactCacheEntry) { method in class:ConferenceParticipantListAdapter.ParticipantInfo
91 if (o instanceof ParticipantInfo) {
92 ParticipantInfo p = (ParticipantInfo) o;
184 private List<ParticipantInfo> mConferenceParticipants = new ArrayList<>();
189 private final HashMap<String, ParticipantInfo> mParticipantsByCallId = new HashMap<>();
255 * @return The {@link ParticipantInfo}.
282 ParticipantInfo participantInfo = mParticipantsByCallId.get(callId);
324 ParticipantInfo participantInf
[all...]

Completed in 665 milliseconds