Searched refs:CountryCodeWithOffset (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DSmartDialNameMatcher.java21 import com.android.dialer.dialpad.SmartDialTrie.CountryCodeWithOffset;
468 final CountryCodeWithOffset code = SmartDialTrie.getOffsetWithoutCountryCode(
H A DSmartDialTrie.java54 public static class CountryCodeWithOffset { class in class:SmartDialTrie
55 public static final CountryCodeWithOffset NO_COUNTRY_CODE = new CountryCodeWithOffset(0,
61 public CountryCodeWithOffset(int offset, String countryCode) { method in class:SmartDialTrie.CountryCodeWithOffset
157 final CountryCodeWithOffset code = getOffsetWithoutCountryCode(contact.phoneNumber);
189 public static CountryCodeWithOffset getOffsetWithoutCountryCode(String number) {
197 return new CountryCodeWithOffset(i, countryCode);
202 return CountryCodeWithOffset.NO_COUNTRY_CODE;

Completed in 50 milliseconds