Searched refs:isBusiness (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Dialer/InCallUI/src/com/android/incallui/service/
H A DPhoneNumberService.java64 public boolean isBusiness(); method in interface:PhoneNumberService.PhoneNumberInfo
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DQuickContactImageView.java57 public void setIsBusiness(boolean isBusiness) { argument
58 mIsBusiness = isBusiness;
/packages/apps/Dialer/src/com/android/dialer/service/
H A DCachedNumberLookupService.java46 public boolean isBusiness(int sourceType); method in interface:CachedNumberLookupService
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
H A DInCallContactInteractions.java62 public InCallContactInteractions(Context context, boolean isBusiness) { argument
66 switchContactType(isBusiness);
74 * Switches the "isBusiness" value, if applicable. Recreates the list adapter with the resource
75 * corresponding to the new isBusiness value if the "isBusiness" value is switched.
77 * @param isBusiness Whether or not the contact is a business.
81 public boolean switchContactType(boolean isBusiness) { argument
82 if (mIsBusiness != isBusiness || mListAdapter == null) {
83 mIsBusiness = isBusiness;
H A DCallCardPresenter.java646 // TODO: This is hardcoded to "isBusiness" because functionality to differentiate
648 if (setInCallContactInteractionsType(true /* isBusiness */)) {
667 * @param isBusiness {@code true} if the interaction is a business interaction, {@code false} if
673 private boolean setInCallContactInteractionsType(boolean isBusiness) { argument
676 new InCallContactInteractions(mContext, isBusiness);
680 return mInCallContactInteractions.switchContactType(isBusiness);
H A DContactInfoCache.java306 if (info.getImageUrl() == null && info.isBusiness()) {
/packages/apps/Dialer/src/com/android/dialer/contactinfo/
H A DContactPhotoLoader.java105 if (helper.isBusiness(mContactInfo.sourceType)) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/
H A DCallSubjectDialog.java216 false /* isBusiness */,
231 * @param isBusiness {@code true} if a business is being called (used for contact photo).
238 String nameOrNumber, boolean isBusiness, String number, String displayNumber,
245 arguments.putBoolean(ARG_IS_BUSINESS, isBusiness);
388 * @param isBusiness
391 boolean isBusiness) {
398 if (isBusiness) {
237 start(Activity activity, long photoId, Uri photoUri, Uri contactUri, String nameOrNumber, boolean isBusiness, String number, String displayNumber, String numberLabel, PhoneAccountHandle phoneAccountHandle) argument
390 setPhoto(long photoId, Uri photoUri, Uri contactUri, String displayName, boolean isBusiness) argument
/packages/apps/Dialer/src/com/android/dialer/filterednumber/
H A DNumbersAdapter.java100 final int contactType = mContactInfoHelper.isBusiness(info.sourceType)
/packages/apps/Dialer/src/com/android/dialer/
H A DCallDetailActivity.java459 final boolean isBusiness = mContactInfoHelper.isBusiness(mDetails.sourceType);
463 } else if (isBusiness) {
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DContactInfoHelper.java462 public boolean isBusiness(int sourceType) { method in class:ContactInfoHelper
464 && mCachedNumberLookupService.isBusiness(sourceType);
H A DCallLogListItemViewHolder.java193 public boolean isBusiness; field in class:CallLogListItemViewHolder
644 } else if (isBusiness) {
683 isBusiness,
H A DCallLogAdapter.java562 views.isBusiness = mContactInfoHelper.isBusiness(info.sourceType);

Completed in 525 milliseconds