Home | History | Annotate | Download | only in data

Lines Matching defs:participant

32  * Includes both the participant records for each participant referenced in conversation
37 // A map from a participant id to a participant
68 final ParticipantData participant = mConversationParticipantsMap.valueAt(i);
69 if (!participant.isSelf()) {
70 retList.add(participant);
77 * For a 1:1 conversation return the other (not self) participant
82 final ParticipantData participant = mConversationParticipantsMap.valueAt(i);
83 if (!participant.isSelf()) {
84 return participant;
87 Assert.fail("Could not find other participant");