Home | History | Annotate | Download | only in calllog

Lines Matching refs:countryIso

50      * @param countryIso the country associated with this number
52 public ContactInfo lookupNumber(String number, String countryIso) {
64 sipInfo = queryContactInfoForPhoneNumber(username, countryIso);
70 ContactInfo phoneInfo = queryContactInfoForPhoneNumber(number, countryIso);
89 updatedInfo.formattedNumber = formatPhoneNumber(number, null, countryIso);
169 private ContactInfo queryContactInfoForPhoneNumber(String number, String countryIso) {
171 if (!TextUtils.isEmpty(countryIso)) {
174 String numberE164 = PhoneNumberUtils.formatNumberToE164(number, countryIso);
185 info.formattedNumber = formatPhoneNumber(number, null, countryIso);
195 * @param countryIso the ISO 3166-1 two letters country code, the country's
202 String countryIso) {
210 if (TextUtils.isEmpty(countryIso)) {
211 countryIso = mCurrentCountryIso;
213 return PhoneNumberUtils.formatNumber(number, normalizedNumber, countryIso);