Searched refs:participant (Results 1 – 24 of 24) sorted by relevance
92 ConferenceParticipantConnection participant =94 removeConferenceParticipant(participant);765 for (ConferenceParticipant participant : participants) { in handleConferenceParticipantsUpdate()766 Pair<Uri, Uri> userEntity = new Pair<>(participant.getHandle(), in handleConferenceParticipantsUpdate()767 participant.getEndpoint()); in handleConferenceParticipantsUpdate()773 if (!isParticipantHost(mConferenceHostAddress, participant.getHandle())) { in handleConferenceParticipantsUpdate()774 createConferenceParticipantConnection(parent, participant); in handleConferenceParticipantsUpdate()775 newParticipants.add(participant); in handleConferenceParticipantsUpdate()787 participant); in handleConferenceParticipantsUpdate()788 connection.updateState(participant.getState()); in handleConferenceParticipantsUpdate()[all …]
61 ConferenceParticipant participant, in ConferenceParticipantConnection() argument66 int presentation = participant.getParticipantPresentation(); in ConferenceParticipantConnection()72 address = ConferenceParticipant.getParticipantAddress(participant.getHandle(), in ConferenceParticipantConnection()77 setCallerDisplayName(participant.getDisplayName(), presentation); in ConferenceParticipantConnection()79 mUserEntity = participant.getHandle(); in ConferenceParticipantConnection()80 mEndpoint = participant.getEndpoint(); in ConferenceParticipantConnection()
41 public ParticipantListItemData(final ParticipantData participant) { in ParticipantListItemData() argument42 mAvatarUri = AvatarUriUtil.createAvatarUri(participant); in ParticipantListItemData()43 mContactId = participant.getContactId(); in ParticipantListItemData()44 mLookupKey = participant.getLookupKey(); in ParticipantListItemData()45 mNormalizedDestination = participant.getNormalizedDestination(); in ParticipantListItemData()46 if (TextUtils.isEmpty(participant.getFullName())) { in ParticipantListItemData()47 mDisplayName = participant.getSendDestination(); in ParticipantListItemData()50 mDisplayName = participant.getFullName(); in ParticipantListItemData()51 mDetails = (participant.isUnknownSender()) ? null : participant.getSendDestination(); in ParticipantListItemData()
68 final ParticipantData participant = mConversationParticipantsMap.valueAt(i); in getParticipantListExcludingSelf() local69 if (!participant.isSelf()) { in getParticipantListExcludingSelf()70 retList.add(participant); in getParticipantListExcludingSelf()82 final ParticipantData participant = mConversationParticipantsMap.valueAt(i); in getOtherParticipant() local83 if (!participant.isSelf()) { in getOtherParticipant()84 return participant; in getOtherParticipant()
619 for (final ParticipantData participant : mParticipantData) { in sendMessage()620 if (!participant.isSelf()) { in sendMessage()621 if (participant.isEmail()) { in sendMessage()622 emails.add(participant.getSendDestination()); in sendMessage()624 phones.add(participant.getSendDestination()); in sendMessage()700 final ParticipantData participant = this.getOtherParticipant(); in getParticipantPhoneNumber() local701 if (participant != null) { in getParticipantPhoneNumber()702 final String phoneNumber = participant.getSendDestination(); in getParticipantPhoneNumber()
481 for (final ParticipantData participant : participants) { in hasAnyEnterpriseContact()482 if (ContactUtil.isEnterpriseContactId(participant.getContactId())) { in hasAnyEnterpriseContact()531 for (final ParticipantData participant : participants) { in generateConversationName()533 participantNames.add(participant.getDisplayName(false)); in generateConversationName()
146 for (final ParticipantData participant : participants) { in getRecipientsFromConversationParticipants()147 recipients.add(participant.getSendDestination()); in getRecipientsFromConversationParticipants()372 for (final ParticipantData participant : participants) { in createConversationInTransaction()373 Assert.isTrue(!participant.isSelf()); in createConversationInTransaction()374 if (participant.isEmail()) { in createConversationInTransaction()416 for (final ParticipantData participant : participants) { in createConversationInTransaction()418 addParticipantToConversation(dbWrapper, participant, conversationId); in createConversationInTransaction()914 for (final ParticipantData participant : participants) { in getRecipientsForConversation()915 recipients.add(participant.getSendDestination()); in getRecipientsForConversation()948 ParticipantData participant = null; in getExistingParticipant() local[all …]
148 final ParticipantData participant) { in createParticipantListItemData() argument149 return new ParticipantListItemData(participant); in createParticipantListItemData()
637 final ParticipantData participant = iter.next(); in scanFirstNames() local639 if (participant.isSelf()) { in scanFirstNames()647 final String firstName = participant.getFirstName(); in scanFirstNames()
102 final ParticipantData participant); in createParticipantListItemData() argument
254 String participant = ""; in getContentDescription() local262 participant = TextUtils.isEmpty(lastParticipant) ? in getContentDescription()273 participant = TextUtils.isEmpty(firstUnread.name) ? in getContentDescription()277 if (TextUtils.isEmpty(participant)) { in getContentDescription()279 participant = lastParticipant; in getContentDescription()284 if (showToHeader && !TextUtils.isEmpty(participant)) { in getContentDescription()300 mContentDescription = context.getString(res, toHeader, participant, in getContentDescription()
420 final ParticipantInfo participant = conversationInfo.participantInfos.get(i); in handlePriority() local422 if (!TextUtils.isEmpty(participant.name)) { in handlePriority()424 final String senderEmail = TextUtils.isEmpty(participant.email) ? in handlePriority()425 participant.name : participant.email; in handlePriority()426 senderAvatarModel.populate(participant.name, senderEmail); in handlePriority()
121 for(final ParticipantData participant : conversationParticipants) { in testGetOrCreateConversation()122 assertTrue(recipients.contains(participant.getSendDestination())); in testGetOrCreateConversation()132 final ParticipantData participant = ParticipantData.getFromCursor(cursor); in testGetOrCreateConversation() local133 if (participant.isSelf()) { in testGetOrCreateConversation()136 assertTrue(recipients.contains(participant.getSendDestination())); in testGetOrCreateConversation()
148 public static Uri createAvatarUri(@NonNull final ParticipantData participant) { in createAvatarUri() argument149 Assert.notNull(participant); in createAvatarUri()150 final String photoUriString = participant.getProfilePhotoUri(); in createAvatarUri()152 final String name = participant.getFullName(); in createAvatarUri()153 final String destination = participant.getNormalizedDestination(); in createAvatarUri()154 final String contactLookupKey = participant.getLookupKey(); in createAvatarUri()
112 public static boolean isSendToDestinationContact(final ParticipantData participant) { in isSendToDestinationContact() argument113 return participant.getContactId() == CONTACT_ID_SENDTO_DESTINATION; in isSendToDestinationContact()
315 for (final ParticipantData participant : participants) { in getRecipientParticipantString()316 if (TextUtils.equals(participant.getId(), senderId)) { in getRecipientParticipantString()320 if (participant.isSelf() && in getRecipientParticipantString()321 (!participant.getId().equals(selfId) || !addSelf)) { in getRecipientParticipantString()326 final String phoneNumber = participant.getNormalizedDestination(); in getRecipientParticipantString()
748 final ParticipantData participant = data.getOtherParticipant(); in onCreateOptionsMenu() local749 final boolean addContactActionVisible = (participant != null in onCreateOptionsMenu()750 && TextUtils.isEmpty(participant.getLookupKey())); in onCreateOptionsMenu()804 final ParticipantData participant = mBinding.getData().getOtherParticipant(); in onOptionsItemSelected() local805 Assert.notNull(participant); in onOptionsItemSelected()806 final String destination = participant.getNormalizedDestination(); in onOptionsItemSelected()807 final Uri avatarUri = AvatarUriUtil.createAvatarUri(participant); in onOptionsItemSelected()1096 for (final ParticipantData participant : participants) { in ensureKnownRecipients()1099 if (participant.isUnknownSender()) { in ensureKnownRecipients()
198 final ParticipantData participant) { in createParticipantListItemData() argument199 return new ParticipantListItemData(participant); in createParticipantListItemData()
1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ...