Home
last modified time | relevance | path

Searched refs:updatedInfo (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Dialer/src/com/android/dialer/calllog/
DCallLogAdapter.java1133 ContactInfo updatedInfo, ContactInfo callLogInfo) { in updateCallLogContactInfoCache() argument
1138 if (!TextUtils.equals(updatedInfo.name, callLogInfo.name)) { in updateCallLogContactInfoCache()
1139 values.put(Calls.CACHED_NAME, updatedInfo.name); in updateCallLogContactInfoCache()
1143 if (updatedInfo.type != callLogInfo.type) { in updateCallLogContactInfoCache()
1144 values.put(Calls.CACHED_NUMBER_TYPE, updatedInfo.type); in updateCallLogContactInfoCache()
1148 if (!TextUtils.equals(updatedInfo.label, callLogInfo.label)) { in updateCallLogContactInfoCache()
1149 values.put(Calls.CACHED_NUMBER_LABEL, updatedInfo.label); in updateCallLogContactInfoCache()
1152 if (!UriUtils.areEqual(updatedInfo.lookupUri, callLogInfo.lookupUri)) { in updateCallLogContactInfoCache()
1153 values.put(Calls.CACHED_LOOKUP_URI, UriUtils.uriToString(updatedInfo.lookupUri)); in updateCallLogContactInfoCache()
1157 if (!TextUtils.isEmpty(updatedInfo.normalizedNumber) && in updateCallLogContactInfoCache()
[all …]
DContactInfoHelper.java93 final ContactInfo updatedInfo; in lookupNumber() local
96 updatedInfo = null; in lookupNumber()
101 updatedInfo = new ContactInfo(); in lookupNumber()
102 updatedInfo.number = number; in lookupNumber()
103 updatedInfo.formattedNumber = formatPhoneNumber(number, null, countryIso); in lookupNumber()
104 updatedInfo.normalizedNumber = PhoneNumberUtils.formatNumberToE164( in lookupNumber()
106 updatedInfo.lookupUri = createTemporaryContactUri(updatedInfo.formattedNumber); in lookupNumber()
108 updatedInfo = info; in lookupNumber()
111 return updatedInfo; in lookupNumber()