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

1 2 3

  /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;
AndroidTypeRenameParticipant.java 66 import org.eclipse.ltk.core.refactoring.participants.CheckConditionsContext;
67 import org.eclipse.ltk.core.refactoring.participants.RefactoringProcessor;
68 import org.eclipse.ltk.core.refactoring.participants.RenameParticipant;
69 import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
94 * Rename participants are registered via the extension point <code>
97 * <code>org.eclipse.ltk.core.refactoring.participants.RenameParticipant</code>.
  /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*/,
  /frameworks/support/v4/donut/android/support/v4/app/
NotificationCompatBase.java 54 String[] participants, long latestTimestamp);
  /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/services/Telephony/src/com/android/services/telephony/
ImsConference.java 50 * conference participants. The conference host connection represents the radio connection to the
54 * actual radio connections to the participants; they act as a virtual representation of the
59 * the participants.
64 * Listener used to respond to changes to conference participants. At the conference level we
142 * @param participants The participant information.
146 List<ConferenceParticipant> participants) {
148 if (c == null || participants == null) {
151 Log.v(this, "onConferenceParticipantsChanged: %d participants", participants.size());
153 handleConferenceParticipantsUpdate(telephonyConnection, participants);
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
ConferenceManagerFragment.java 109 // Request focus on the list of participants for accessibility purposes. This ensures
110 // that once the list of participants is shown, the first participant is announced.
124 public void update(Context context, List<Call> participants, boolean parentCanSeparate) {
131 mConferenceParticipantListAdapter.updateParticipants(participants, parentCanSeparate);
ConferenceManagerPresenter.java 141 void update(Context context, List<Call> participants, boolean parentCanSeparate);
  /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);
  /frameworks/opt/net/ims/src/java/com/android/ims/internal/
ImsCallSession.java 283 * Called when the invitation request of the participants is delivered to the conference
293 * Called when the invitation request of the participants is failed.
304 * Called when the removal request of the participants is delivered to the conference
314 * Called when the removal request of the participants is failed.
660 * @param participants participant list to initiate an IMS conference call
665 public void start(String[] participants, ImsCallProfile profile) {
671 miSession.startConference(participants, profile);
800 * @participants participant list to be invited to the conference call after extending the call
803 public void extendToConference(String[] participants) {
809 miSession.extendToConference(participants);
    [all...]
  /frameworks/support/v4/api21/android/support/v4/app/
NotificationCompatApi21.java 52 private static final String KEY_PARTICIPANTS = "participants";
190 String[] participants = b.getStringArray(KEY_PARTICIPANTS); local
191 if (participants == null || participants.length != 1) {
201 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
  /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) {
665 * Gets the list of conference participants currently
668 * @return The list of conference participants.
1575 Set<Entry<String, Bundle>> participants = state.mParticipants.entrySet(); local
    [all...]
  /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;
  /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 1116 milliseconds

1 2 3