Home
last modified time | relevance | path

Searched refs:TelecomUtils (Results 1 – 23 of 23) sorted by relevance

/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/activecall/
DInCallFragment.java42 import com.android.car.telephony.common.TelecomUtils;
84 Pair<String, Uri> displayNameAndAvatarUri = TelecomUtils.getDisplayNameAndAvatarUri( in bindUserProfileView()
89 String phoneNumberLabel = TelecomUtils.getTypeFromNumber(getContext(), number).toString(); in bindUserProfileView()
93 phoneNumberLabel += TelecomUtils.getFormattedNumber(getContext(), number); in bindUserProfileView()
102 LetterTileDrawable letterTile = TelecomUtils.createLetterTile( in bindUserProfileView()
141 TelecomUtils.callStateToUiString(getContext(), in updateCallDescription()
DOnHoldCallUserProfileFragment.java38 import com.android.car.telephony.common.TelecomUtils;
79 Pair<String, Uri> displayNameAndAvatarUri = TelecomUtils.getDisplayNameAndAvatarUri( in updateProfile()
83 TelecomUtils.setContactBitmapAsync(getContext(), mAvatarView, in updateProfile()
/packages/apps/Car/Dialer/src/com/android/car/dialer/notification/
DNotificationService.java28 import com.android.car.telephony.common.TelecomUtils;
71 TelecomUtils.markCallLogAsRead(getApplicationContext(), callId); in onHandleWork()
75 TelecomUtils.markCallLogAsRead(getApplicationContext(), callId); in onHandleWork()
78 TelecomUtils.markCallLogAsRead(getApplicationContext(), callId); in onHandleWork()
DNotificationUtils.java32 import com.android.car.telephony.common.TelecomUtils;
44 Pair<String, Uri> displayNameAndAvatarUri = TelecomUtils.getDisplayNameAndAvatarUri( in getDisplayNameAndRoundedAvatar()
84 LetterTileDrawable letterTileDrawable = TelecomUtils.createLetterTile(context, displayName); in createLetterTile()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/common/
DUiCallLogLiveData.java29 import com.android.car.telephony.common.TelecomUtils;
113 if (TelecomUtils.isVoicemailNumber(mContext, number)) { in convert()
126 title = TelecomUtils.getFormattedNumber(mContext, number); in convert()
DDialerUtils.java27 import com.android.car.telephony.common.TelecomUtils;
101 TelecomUtils.setAsPrimaryPhoneNumber(context, phoneNumber); in promptForPrimaryNumber()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/search/
DContactResultViewHolder.java28 import com.android.car.telephony.common.TelecomUtils;
62 TelecomUtils.setContactBitmapAsync(mContext, mContactPicture, details.photoUri, in bind()
/packages/apps/Car/Dialer/tests/robotests/src/com/android/car/dialer/ui/dialpad/
DDialpadFragmentTest.java38 import com.android.car.telephony.common.TelecomUtils;
230 expectedText = TelecomUtils.getFormattedNumber(mDialpadFragment.getContext(), expectedText); in verifyTitleText()
232 TelecomUtils.getFormattedNumber(mDialpadFragment.getContext(), null); in verifyTitleText()
/packages/apps/Car/Dialer/src/com/android/car/dialer/telecom/
DUiCallManager.java40 import com.android.car.telephony.common.TelecomUtils;
299 Phonenumber.PhoneNumber phoneNumber = TelecomUtils.createI18nPhoneNumber(mContext, in isValidNumber()
317 String voicemailNumber = TelecomUtils.getVoicemailNumber(mContext); in callVoicemail()
/packages/apps/Car/Cluster/src/android/car/cluster/
DPhoneFragment.java32 import com.android.car.telephony.common.TelecomUtils;
63 TelecomUtils.setContactBitmapAsync(getContext(), in onCreateView()
DPhoneFragmentViewModel.java31 import com.android.car.telephony.common.TelecomUtils;
120 mDisplayName = TelecomUtils.getDisplayNameAndAvatarUri(getApplication(), number).first; in ContactInfo()
DSelfRefreshDescriptionLiveData.java26 import com.android.car.telephony.common.TelecomUtils;
93 CharSequence label = TelecomUtils.getTypeFromNumber(context, number); in getCallInfoText()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/contact/
DContactDefaultNumberActionProvider.java29 import com.android.car.telephony.common.TelecomUtils;
77 TelecomUtils.setAsPrimaryPhoneNumber(mContext, in onPerformDefaultAction()
DContactListViewHolder.java33 import com.android.car.telephony.common.TelecomUtils;
62 TelecomUtils.setContactBitmapAsync(mAvatarView.getContext(), mAvatarView, contact, null); in onBind()
DContactDetailsViewHolder.java34 import com.android.car.telephony.common.TelecomUtils;
67 TelecomUtils.setContactBitmapAsync(context, mAvatar, contact, null); in bind()
DContactDetailsFragment.java38 import com.android.car.telephony.common.TelecomUtils;
127 TelecomUtils.setContactBitmapAsync(getContext(), mAvatarView, contact, null); in onContactChanged()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/favorite/
DFavoriteContactViewHolder.java31 import com.android.car.telephony.common.TelecomUtils;
83 TelecomUtils.setContactBitmapAsync(context, mIcon, contact, null); in onBind()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/dialpad/
DInCallDialpadFragment.java36 import com.android.car.telephony.common.TelecomUtils;
72 mCallStateView.setText(TelecomUtils.callStateToUiString( in onCreateView()
DDialpadFragment.java42 import com.android.car.telephony.common.TelecomUtils;
219 TelecomUtils.getFormattedNumber(getContext(), number.toString())); in presentDialedNumber()
/packages/apps/Car/Dialer/src/com/android/car/dialer/ui/calllog/
DCallLogViewHolder.java35 import com.android.car.telephony.common.TelecomUtils;
69 TelecomUtils.setContactBitmapAsync( in onBind()
/packages/apps/Car/libs/car-telephony-common/src/com/android/car/telephony/common/
DI18nPhoneNumberWrapper.java163 Phonenumber.PhoneNumber i18nPhoneNumber = TelecomUtils.createI18nPhoneNumber(context, in create()
DContact.java161 contact.mIsVoiceMail = TelecomUtils.isVoicemailNumber(context, number.getNumber()); in fromCursor()
DTelecomUtils.java56 public class TelecomUtils { class