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

1 2

  /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...]
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
Chat.java 30 private Map<String, Profile> participants; field in class:Chat
53 return participants;
56 public void setParticipants(Map<String, Profile> participants) {
57 this.participants = participants;
63 // Iterates through each participants then generates a comma separated string as the alias.
64 for (Profile profile : participants.values()) {
73 * Sets the participants and adds an alias. The alias is displayed in the chat list.
75 * @param participants chat participants
    [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);
  /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/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
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 252 SearchParticipant[] participants = new SearchParticipant[] { local
261 engine.search(pattern, participants, scope, requestor,
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
SyncManager.java 423 final ArrayList<ParticipantData> participants = local
430 customization.isArchived(), participants, customization.isMuted(),
437 false/*archived*/, participants, false/*noNotification*/,
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
910 final ArrayList<ParticipantData> participants = local
984 final ArrayList<ParticipantData> participants = 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.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 842 SearchParticipant[] participants = new SearchParticipant[] { local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 680 SearchParticipant[] participants = new SearchParticipant[] { local
687 engine.search(pattern, participants, scope, requestor, new NullProgressMonitor());
695 engine.search(pattern, participants, scope, requestor, new NullProgressMonitor());
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationFragment.java 1095 final ConversationParticipantsData participants = conversationData.getParticipants(); local
    [all...]
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java 281 * Called when the invitation request of the participants is delivered to
291 * Called when the invitation request of the participants is failed.
302 * Called when the removal request of the participants is delivered to
312 * Called when the removal request of the participants is failed.
336 * @param participants the participant(s) and their new state information.
339 List<ConferenceParticipant> participants) {
754 * Gets the list of conference participants currently
757 * @return Copy of the list of conference participants.
1763 Set<Entry<String, Bundle>> participants = state.mParticipants.entrySet(); local
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
RefactoredBackupManagerService.java 789 // Now that we know about valid backup participants, parse any
1138 HashSet<String> participants = mBackupParticipants.valueAt(i); local
3386 HashSet<String> participants = mBackupParticipants.valueAt(i); local
    [all...]
BackupManagerService.java 1924 HashSet<String> participants = mBackupParticipants.valueAt(i); local
11338 HashSet<String> participants = mBackupParticipants.valueAt(i); local
    [all...]
  /frameworks/support/compat/java/android/support/v4/app/
NotificationCompat.java 4195 String[] participants = b.getStringArray(KEY_PARTICIPANTS); local
4502 String[] participants = { mParticipant }; local
    [all...]
  /frameworks/base/core/java/android/app/
Notification.java 8165 String[] participants = b.getStringArray(KEY_PARTICIPANTS); local
8265 String[] participants = { mParticipant }; local
    [all...]
  /prebuilts/sdk/current/support/compat/libs/
android-support-compat.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.jdt.core_3.11.0.v20150602-1242.jar 
org.eclipse.core.resources_3.10.0.v20150423-0755.jar 
  /external/robolectric/v3/runtime/
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-6.0.0_r1-robolectric-0.jar 
  /external/guice/extensions/struts2/lib/
core-3.1.1.jar 

Completed in 1461 milliseconds

1 2