Home
last modified time | relevance | path

Searched refs:carrierPresence (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
DContactInfo.java70 public int carrierPresence; field in ContactInfo
132 if (carrierPresence != other.carrierPresence) { in equals()
176 + carrierPresence in toString()
DContactInfoHelper.java390 contactInfo.carrierPresence = in fillAdditionalContactInfo()
/packages/apps/Dialer/java/com/android/dialer/database/
DDialerDatabaseHelper.java983 final int carrierPresence = cursor.getInt(columnCarrierPresence); in getLooseMatches() local
1005 id, dataID, displayName, phoneNumber, lookupKey, photoId, carrierPresence)); in getLooseMatches()
1247 public final int carrierPresence; field in DialerDatabaseHelper.ContactNumber
1256 int carrierPresence) { in ContactNumber() argument
1263 this.carrierPresence = carrierPresence; in ContactNumber()
1269 id, dataId, displayName, phoneNumber, lookupKey, photoId, carrierPresence); in hashCode()
1285 && Objects.equals(this.carrierPresence, that.carrierPresence); in equals()
/packages/apps/Dialer/java/com/android/dialer/searchfragment/cp2/
DCp2Contact.java47 public abstract int carrierPresence(); in carrierPresence() method in Cp2Contact
123 row[Projections.CARRIER_PRESENCE] = carrierPresence(); in toCursorRow()
DSearchContactViewHolder.java197 int carrierPresence = cursor.getInt(Projections.CARRIER_PRESENCE); in getCallToAction() local
199 if ((carrierPresence & Phone.CARRIER_PRESENCE_VT_CAPABLE) == 1) { in getCallToAction()
/packages/apps/Contacts/src/com/android/contacts/list/
DPhoneNumberListAdapter.java494 int carrierPresence = cursor.getInt(PhoneQuery.CARRIER_PRESENCE); in bindPhoneNumber() local
495 boolean isPresent = (carrierPresence & Phone.CARRIER_PRESENCE_VT_CAPABLE) != 0; in bindPhoneNumber()
/packages/apps/Dialer/java/com/android/dialer/smartdial/
DSmartDialCursorLoader.java105 row[PhoneQuery.CARRIER_PRESENCE] = contact.carrierPresence; in loadInBackground()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DQuickContactActivity.java1564 int carrierPresence = dataItem.getCarrierPresence(); in dataItemToEntry() local
1565 boolean isPresent = (carrierPresence & Phone.CARRIER_PRESENCE_VT_CAPABLE) != 0; in dataItemToEntry()
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DCallLogListItemViewHolder.java864 && (info.carrierPresence & Phone.CARRIER_PRESENCE_VT_CAPABLE) != 0; in canSupportCarrierVideoCall()