Searched defs:isVideoCall (Results 1 - 14 of 14) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DOnPhoneNumberPickerActionListener.java31 void onPickDataUri(Uri dataUri, boolean isVideoCall, int callInitiationType); argument
37 void onPickPhoneNumber(String phoneNumber, boolean isVideoCall, int callInitiationType); argument
H A DPhoneNumberPickerFragment.java79 callNumber(position, true /* isVideoCall */);
200 callNumber(position, false /* isVideoCall */);
207 * @param isVideoCall {@code true} if the call should be initiated as a video call,
210 private void callNumber(int position, boolean isVideoCall) { argument
214 pickPhoneNumber(phoneUri, isVideoCall);
219 mListener.onPickPhoneNumber(number, isVideoCall,
308 public void pickPhoneNumber(Uri uri, boolean isVideoCall) { argument
310 mListener.onPickDataUri(uri, isVideoCall,
313 startPhoneNumberShortcutIntent(uri, isVideoCall);
317 protected void startPhoneNumberShortcutIntent(Uri uri, boolean isVideoCall) { argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DLegacyPhoneNumberPickerFragment.java63 protected void startPhoneNumberShortcutIntent(Uri uri, boolean isVideoCall) { argument
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
H A DVideoUtils.java27 public static boolean isVideoCall(Call call) { method in class:VideoUtils
28 return call != null && isVideoCall(call.getVideoState());
31 public static boolean isVideoCall(int videoState) { method in class:VideoUtils
57 if (!VideoUtils.isVideoCall(call)) {
65 return VideoUtils.isVideoCall(call) && call.getState() == Call.State.ACTIVE;
69 if (!VideoUtils.isVideoCall(call)) {
87 return isVideoCall(call) && call.getState() == Call.State.ACTIVE;
H A DVideoPauseController.java171 } else if (!isVideoCall(mPrimaryCallContext) && canVideoPause && mIsInBackground) {
349 return isVideoCall(callContext) && callContext.getState() == Call.State.ACTIVE;
358 private static boolean isVideoCall(CallContext callContext) { method in class:VideoPauseController
359 return callContext != null && VideoUtils.isVideoCall(callContext.getVideoState());
H A DCall.java805 public boolean isVideoCall(Context context) { method in class:Call
807 VideoUtils.isVideoCall(getVideoState());
H A DCallCardPresenter.java562 if (mPrimary != null && mPrimary.isVideoCall(mContext)) {
840 false /* isVideoCall */, mIsFullscreen);
852 mSecondary.isVideoCall(mContext),
865 mSecondary.isVideoCall(mContext),
870 false /* isVideoCall */, mIsFullscreen);
1148 String providerLabel, boolean isConference, boolean isVideoCall,
1147 setSecondary(boolean show, String name, boolean nameIsNumber, String label, String providerLabel, boolean isConference, boolean isVideoCall, boolean isFullscreen) argument
H A DCallCardFragment.java597 String providerLabel, boolean isConference, boolean isVideoCall, boolean isFullscreen) {
609 mSecondaryCallVideoCallIcon.setVisibility(isVideoCall ? View.VISIBLE : View.GONE);
800 if (VideoUtils.isVideoCall(videoState)
1052 } else if (VideoUtils.isVideoCall(videoState)) {
1076 } else if (VideoUtils.isVideoCall(videoState)) {
596 setSecondary(boolean show, String name, boolean nameIsNumber, String label, String providerLabel, boolean isConference, boolean isVideoCall, boolean isFullscreen) argument
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallTypeHelper.java67 public CharSequence getCallTypeText(int callType, boolean isVideoCall) { argument
70 if (isVideoCall) {
77 if (isVideoCall) {
84 if (isVideoCall) {
/packages/apps/Dialer/src/com/android/dialer/util/
H A DIntentUtil.java65 public CallIntentBuilder setIsVideoCall(boolean isVideoCall) { argument
66 mIsVideoCall = isVideoCall;
/packages/apps/Contacts/src/com/android/contacts/activities/
H A DContactSelectionActivity.java423 public void onPickDataUri(Uri dataUri, boolean isVideoCall, int callInitiationType) { argument
428 public void onPickPhoneNumber(String phoneNumber, boolean isVideoCall, argument
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java203 int interactionType, boolean isVideoCall, int callInitiationType) {
209 bundle.putBoolean(ARG_IS_VIDEO_CALL, isVideoCall);
310 this(context, interactionType, dismissListener, false /*isVideoCall*/,
315 DialogInterface.OnDismissListener dismissListener, boolean isVideoCall,
321 mIsVideoCall = isVideoCall;
331 boolean isVideoCall, int callInitiationType) {
341 .setIsVideoCall(isVideoCall)
470 * @param isVideoCall {@code true} if the call is a video call, {@code false} otherwise.
474 boolean isVideoCall, int callInitiationType) {
476 isVideoCall, callInitiationTyp
202 show(FragmentManager fragmentManager, ArrayList<PhoneItem> phoneList, int interactionType, boolean isVideoCall, int callInitiationType) argument
314 PhoneNumberInteraction(Context context, int interactionType, DialogInterface.OnDismissListener dismissListener, boolean isVideoCall, int callInitiationType) argument
329 performAction( Context context, String phoneNumber, int interactionType, boolean isVideoCall, int callInitiationType) argument
473 startInteractionForPhoneCall(TransactionSafeActivity activity, Uri uri, boolean isVideoCall, int callInitiationType) argument
[all...]
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
H A DPhoneCallDetailsHelperTest.java429 private void assertIsVideoCall(boolean isVideoCall) { argument
430 assertEquals(isVideoCall, mViews.callTypeIcons.isVideoShown());
/packages/apps/Dialer/src/com/android/dialer/
H A DDialtactsActivity.java1290 public void onPickDataUri(Uri dataUri, boolean isVideoCall, int callInitiationType) { argument
1293 DialtactsActivity.this, dataUri, isVideoCall, callInitiationType);
1297 public void onPickPhoneNumber(String phoneNumber, boolean isVideoCall, int callInitiationType) { argument
1305 .setIsVideoCall(isVideoCall)

Completed in 243 milliseconds