HomeSort by relevance Sort by last modified time
    Searched refs:isVideoCall (Results 1 - 15 of 15) sorted by null

  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
OnPhoneNumberPickerActionListener.java 40 void onCallNumberDirectly(String phoneNumber, boolean isVideoCall);
  /packages/apps/InCallUI/src/com/android/incallui/
InCallVideoCallListener.java 54 boolean isVideoCall = VideoProfile.VideoState.isBidirectional(newVideoState);
60 if (!wasVideoCall && isVideoCall) {
62 } else if (wasVideoCall && !isVideoCall) {
85 boolean isVideoCall =
88 if (modifySucceeded && isVideoCall) {
AnswerPresenter.java 184 if (call.isVideoCall(context)) {
VideoCallPresenter.java 322 mIsVideoCall = mPrimaryCall.isVideoCall(mContext);
366 boolean newVideoState = mPrimaryCall.isVideoCall(mContext);
Call.java 373 public boolean isVideoCall(Context context) {
CallButtonPresenter.java 341 if (call.isVideoCall(context)) {
CallCardPresenter.java 251 getUi().setPhotoVisible(!(mPrimary.isVideoCall(mContext) &&
StatusBarNotifier.java 339 if (call.isVideoCall(mContext)) {
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallTypeHelper.java 61 public CharSequence getCallTypeText(int callType, boolean isVideoCall) {
64 if (isVideoCall) {
71 if (isVideoCall) {
78 if (isVideoCall) {
CallDetailHistoryAdapter.java 126 boolean isVideoCall = (details.features & Calls.FEATURES_VIDEO) == Calls.FEATURES_VIDEO
131 callTypeIconView.setShowVideo(isVideoCall);
132 callTypeTextView.setText(mCallTypeHelper.getCallTypeText(callType, isVideoCall));
  /packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
CallNotificationReceiver.java 73 * @param isVideoCall {@code True} if this is a video call.
75 public static void sendIncomingCallIntent(Context context, Uri handle, boolean isVideoCall) {
83 extras.putBoolean(TestConnectionService.EXTRA_IS_VIDEO_CALL, isVideoCall);
TestConnectionService.java 308 boolean isVideoCall = extras.getBoolean(EXTRA_IS_VIDEO_CALL);
313 Uri.fromParts(PhoneAccount.SCHEME_TEL, getDummyNumber(isVideoCall), null)
315 if (isVideoCall) {
324 int videoState = isVideoCall ?
  /packages/apps/Dialer/tests/src/com/android/dialer/
PhoneCallDetailsHelperTest.java 278 private void assertIsVideoCall(boolean isVideoCall) {
279 assertEquals(isVideoCall, mViews.callTypeIcons.isVideoShown());
  /packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactSelectionActivity.java 496 public void onCallNumberDirectly(String phoneNumber, boolean isVideoCall) {

Completed in 408 milliseconds