HomeSort by relevance Sort by last modified time
    Searched refs:participants (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/webrtc/webrtc/modules/audio_conference_mixer/test/
audio_conference_mixer_unittest.cc 80 // Anonymous participants do not show status by MixabilityStatus.
117 MockMixerParticipant participants[kParticipants]; local
120 participants[i].fake_frame()->id_ = i;
121 participants[i].fake_frame()->sample_rate_hz_ = kSampleRateHz;
122 participants[i].fake_frame()->speech_type_ = AudioFrame::kNormalSpeech;
123 participants[i].fake_frame()->vad_activity_ = AudioFrame::kVadActive;
124 participants[i].fake_frame()->num_channels_ = 1;
127 participants[i].fake_frame()->samples_per_channel_ = kSampleRateHz / 100;
131 participants[i].fake_frame()->data_[80] = i;
133 EXPECT_EQ(0, mixer->SetMixabilityStatus(&participants[i], true))
    [all...]
  /frameworks/base/telephony/java/com/android/ims/internal/
IImsCallSession.aidl 116 * Initiates an IMS call with the specified participants and call profile.
121 * @param participants participant list to initiate an IMS conference call
126 void startConference(in String[] participants, in ImsCallProfile profile);
192 * @param participants participant list to be invited to the conference call after extending the call
195 void extendToConference(in String[] participants);
198 * Requests the conference server to invite an additional participants to the conference.
200 * @param participants participant list to be invited to the conference call
204 void inviteParticipants(in String[] participants);
207 * Requests the conference server to remove the specified participants from the conference.
209 * @param participants participant list to be removed from the conference cal
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
GetOrCreateConversationAction.java 38 * Action used to get or create a conversation for a list of conversation participants.
55 final ArrayList<ParticipantData> participants, final Object data,
59 final GetOrCreateConversationAction action = new GetOrCreateConversationAction(participants,
68 final ArrayList<ParticipantData> participants = new ArrayList<>(); local
72 participants.add(ParticipantData.getFromRawPhoneBySystemLocale(recipient));
77 return getOrCreateConversation(participants, data, listener);
82 private GetOrCreateConversationAction(final ArrayList<ParticipantData> participants,
85 actionParameters.putParcelableArrayList(KEY_PARTICIPANTS_LIST, participants);
95 // First find the thread id for this list of participants.
96 final ArrayList<ParticipantData> participants local
    [all...]
InsertNewMessageAction.java 240 // First find the thread id for this list of participants.
247 final ArrayList<ParticipantData> participants = new ArrayList<>(); local
249 participants.add(ParticipantData.getFromRawPhoneBySimLocale(recipient, subId));
251 if (participants.size() == 0) {
252 Assert.fail("InsertNewMessage: Empty participants");
257 BugleDatabaseOperations.sanitizeConversationParticipants(participants);
259 BugleDatabaseOperations.getRecipientsFromConversationParticipants(participants);
276 false, participants, false, false, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceProcessor.java 31 import org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext;
32 import org.eclipse.ltk.core.refactoring.participants.ParticipantManager;
33 import org.eclipse.ltk.core.refactoring.participants.RefactoringParticipant;
34 import org.eclipse.ltk.core.refactoring.participants.RenameArguments;
35 import org.eclipse.ltk.core.refactoring.participants.RenameProcessor;
36 import org.eclipse.ltk.core.refactoring.participants.SharableParticipants;
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
MessageDetailsDialog.java 54 final ConversationParticipantsData participants, final ParticipantData self) {
59 return getMessageDetails(context, data, participants, self);
68 String messageDetails = getMessageDetails(context, data, participants, self);
75 final ConversationParticipantsData participants, final ParticipantData self) {
78 messageDetails = getSmsMessageDetails(data, participants, self);
81 messageDetails = getMmsMessageDetails(context, data, participants, self);
103 final ConversationParticipantsData participants, final ParticipantData self) {
119 final String rawRecipients = getRecipientParticipantString(participants,
156 final ConversationParticipantsData participants, final ParticipantData self) {
176 final String rawRecipients = getRecipientParticipantString(participants,
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleDatabaseOperations.java 80 // Generate a list of partially formed participants
81 final ArrayList<ParticipantData> participants = new local
86 participants.add(ParticipantData.getFromRawPhoneBySimLocale(recipient, refSubId));
89 return participants;
93 * Sanitize a given list of conversation participants by de-duping and stripping out self
97 public static void sanitizeConversationParticipants(final List<ParticipantData> participants) {
99 if (participants.size() > 0) {
102 for (int i = participants.size() - 1; i >= 0; i--) {
103 final String recipient = participants.get(i).getNormalizedDestination();
107 participants.remove(i)
171 final ArrayList<ParticipantData> participants = local
827 final ArrayList<ParticipantData> participants = local
905 final ArrayList<ParticipantData> participants = local
979 final ArrayList<ParticipantData> participants = local
    [all...]
SyncManager.java 423 final ArrayList<ParticipantData> participants = local
430 customization.isArchived(), participants, customization.isMuted(),
437 false/*archived*/, participants, false/*noNotification*/,
  /packages/apps/Messaging/src/com/android/messaging/util/
AvatarUriUtil.java 93 * Creates an avatar uri based on a list of ParticipantData. The list of participants may not
97 public static Uri createAvatarUri(@NonNull final List<ParticipantData> participants) {
98 Assert.notNull(participants);
99 Assert.isTrue(!participants.isEmpty());
101 if (participants.size() == 1) {
102 return createAvatarUri(participants.get(0));
105 final int numParticipants = Math.min(participants.size(), MAX_GROUP_PARTICIPANTS);
108 avatarUris.add(createAvatarUri(participants.get(i)));
114 * Joins together a list of valid avatar uri into a group uri.The list of participants may not
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
ConferenceManagerFragment.java 110 // Request focus on the list of participants for accessibility purposes. This ensures
111 // that once the list of participants is shown, the first participant is announced.
125 public void update(Context context, List<Call> participants, boolean parentCanSeparate) {
132 mConferenceParticipantListAdapter.updateParticipants(participants, parentCanSeparate);
ConferenceManagerPresenter.java 141 void update(Context context, List<Call> participants, boolean parentCanSeparate);
  /frameworks/support/v4/donut/android/support/v4/app/
NotificationCompatBase.java 58 String[] participants, long latestTimestamp);
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
GetOrCreateConversationActionTest.java 57 // Generate a list of partially formed participants
58 final ArrayList<ParticipantData> participants = new local
63 participants.add(ParticipantData.getFromRawPhoneBySystemLocale(recipient));
76 GetOrCreateConversationAction.getOrCreateConversation(participants, null,
94 monitor = GetOrCreateConversationAction.getOrCreateConversation(participants, null,
ReadWriteDraftMessageActionTest.java 111 final ArrayList<ParticipantData> participants = local
113 participants.add(ParticipantData.getFromRawPhoneBySystemLocale(participantNumber));
116 senderBlocked, participants, false, false, null);
187 final ArrayList<ParticipantData> participants = local
189 participants.add(ParticipantData.getFromRawPhoneBySystemLocale(Long.toString(phoneNumber)));
192 senderBlocked, participants, false, false, null);
  /packages/services/Telephony/src/com/android/services/telephony/
ImsConference.java 53 * conference participants. The conference host connection represents the radio connection to the
57 * actual radio connections to the participants; they act as a virtual representation of the
62 * the participants.
67 * Listener used to respond to changes to conference participants. At the conference level we
145 * @param participants The participant information.
149 List<ConferenceParticipant> participants) {
151 if (c == null || participants == null) {
154 Log.v(this, "onConferenceParticipantsChanged: %d participants", participants.size());
156 handleConferenceParticipantsUpdate(telephonyConnection, participants);
    [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java 284 * Called when the invitation request of the participants is delivered to the conference
294 * Called when the invitation request of the participants is failed.
305 * Called when the removal request of the participants is delivered to the conference
315 * Called when the removal request of the participants is failed.
670 * @param participants participant list to initiate an IMS conference call
675 public void start(String[] participants, ImsCallProfile profile) {
681 miSession.startConference(participants, profile);
810 * @participants participant list to be invited to the conference call after extending the call
813 public void extendToConference(String[] participants) {
819 miSession.extendToConference(participants);
    [all...]
  /frameworks/support/v4/api21/android/support/v4/app/
NotificationCompatApi21.java 52 private static final String KEY_PARTICIPANTS = "participants";
212 String[] participants = b.getStringArray(KEY_PARTICIPANTS); local
213 if (participants == null || participants.length != 1) {
223 participants, b.getLong(KEY_TIMESTAMP));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeRenameParticipantTest.java 25 import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
  /packages/apps/Messaging/tests/src/com/android/messaging/ui/contact/
ContactPickerFragmentTest.java 189 final List<ParticipantData> participants = local
191 assertEquals(1, participants.size());
192 assertEquals(cliv.mData.getDestination(), participants.get(0).getSendDestination());
200 // Click on the add more participants button
201 // TODO: Figure out a way to click on the add more participants button now that
  /packages/apps/Messaging/src/com/android/messaging/datamodel/data/
ConversationListItemData.java 494 participants) {
495 if (participants.size() == 1) {
497 return participants.get(0).getDisplayName(true);
501 for (final ParticipantData participant : participants) {
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationsettings/
PeopleAndOptionsFragment.java 58 * Shows a list of participants of a conversation and displays options.
125 final List<ParticipantData> participants) {
127 mPeopleListAdapter.updateParticipants(participants);
128 final ParticipantData otherParticipant = participants.size() == 1 ?
129 participants.get(0) : null;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidPackageRenameParticipantTest.java 28 import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
RenameResourceParticipantTest.java 30 import org.eclipse.ltk.core.refactoring.participants.RenameProcessor;
31 import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java 276 * Called when the invitation request of the participants is delivered to
286 * Called when the invitation request of the participants is failed.
297 * Called when the removal request of the participants is delivered to
307 * Called when the removal request of the participants is failed.
331 * @param participants the participant(s) and their new state information.
334 List<ConferenceParticipant> participants) {
675 * Gets the list of conference participants currently
678 * @return The list of conference participants.
1589 Set<Entry<String, Bundle>> participants = state.mParticipants.entrySet(); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactPickerFragment.java 94 // The contact picker mode when max number of participants is reached.
435 final ArrayList<ParticipantData> participants = local
437 if (ContactPickerData.isTooManyParticipants(participants.size())) {
439 } else if (participants.size() > 0 && mMonitor == null) {
440 mMonitor = GetOrCreateConversationAction.getOrCreateConversation(participants,
447 * the initial conversation, adding more participants or finish the current conversation)
457 // chips, don't switch to "add more participants" mode in this case.
460 // only existing contact. Either way, switch to picking more participants mode.

Completed in 582 milliseconds

1 2 3