HomeSort by relevance Sort by last modified time
    Searched refs:getCountryIso (Results 1 - 25 of 37) sorted by null

1 2

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CountryMonitor.java 30 * {@link #getCountryIso()} is used to get the ISO 3166-1 two letters country
46 public synchronized String getCountryIso() {
58 mCurrentCountryIso = country.getCountryIso();
61 mCurrentCountryIso = country.getCountryIso();
DefaultCallLogInsertionHelper.java 91 return mCountryMonitor.getCountryIso();
  /libcore/luni/src/test/java/libcore/libcore/util/
CountryZonesFinderTest.java 54 assertEqualsAndImmutable(list(GB_ZONES.getCountryIso(), FR_ZONES.getCountryIso()), isoList);
83 assertSame(GB_ZONES, countryZonesFinder.lookupCountryTimeZones(GB_ZONES.getCountryIso()));
84 assertSame(IM_ZONES, countryZonesFinder.lookupCountryTimeZones(IM_ZONES.getCountryIso()));
  /libcore/luni/src/main/java/libcore/util/
CountryZonesFinder.java 47 isoCodes.add(countryTimeZones.getCountryIso());
76 if (countryTimeZones.getCountryIso().equals(normalizedCountryIso)) {
  /frameworks/base/location/java/android/location/
Country.java 110 public final String getCountryIso() {
169 return mCountryIso.equals(c.getCountryIso()) && mSource == c.getSource();
195 return country != null && mCountryIso.equals(country.getCountryIso());
  /packages/apps/Dialer/java/com/android/dialer/phonenumberproto/
DialerPhoneNumberUtil.java 132 if (!firstNumberIn.getCountryIso().equals(secondNumberIn.getCountryIso())) {
139 phoneNumberUtil.parse(firstNumberIn.getNormalizedNumber(), firstNumberIn.getCountryIso());
148 secondNumberIn.getNormalizedNumber(), secondNumberIn.getCountryIso());
  /packages/apps/Settings/src/com/android/settings/datetime/timezone/model/
FilteredCountryTimeZones.java 57 return TimeZoneData.normalizeRegionId(mCountryTimeZones.getCountryIso());
  /packages/services/Telephony/src/com/android/services/telephony/
ConferenceParticipantConnection.java 73 String countryIso = getCountryIso(parentConnection.getCall().getPhone());
274 private String getCountryIso(Phone phone) {
290 return subInfo.getCountryIso().toUpperCase();
  /packages/apps/Dialer/java/com/android/dialer/telecom/
TelecomCallUtil.java 124 if (subscriptionInfo.isPresent() && subscriptionInfo.get().getCountryIso() != null) {
125 return Optional.of(subscriptionInfo.get().getCountryIso().toUpperCase(Locale.US));
  /packages/apps/Settings/tests/robotests/src/com/android/settings/datetime/timezone/model/
TimeZoneDataTest.java 74 when(US.getCountryIso()).thenReturn("us");
80 when(GB.getCountryIso()).thenReturn("gb");
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SubscriptionInfoTest.java 50 assertEquals("156", mSubscriptionInfoUT.getCountryIso());
  /packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/
Utils.java 43 return country.getCountryIso();
  /packages/apps/Dialer/java/com/android/dialer/blockreportspam/
ShowBlockReportSpamDialogReceiver.java 108 dialogInfo.getCountryIso(),
153 dialogInfo.getCountryIso(),
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/menu/
Modules.java 71 .setCountryIso(voicemailEntry.number().getCountryIso())
  /packages/apps/Dialer/java/com/android/incallui/spam/
SpamNotificationActivity.java 280 getCountryIso(),
287 filteredNumberAsyncQueryHandler.blockNumber(null, number, getCountryIso());
300 getCountryIso(),
315 private String getCountryIso() {
  /frameworks/base/services/tests/servicestests/src/com/android/server/location/
ComprehensiveCountryDetectorTest.java 296 country1.getCountryIso().equalsIgnoreCase(country2.getCountryIso()) &&
LocationBasedCountryDetectorTest.java 161 mCountryCode = country.getCountryIso();
  /packages/apps/Dialer/java/com/android/contacts/common/widget/
SelectPhoneAccountDialogFragment.java 330 getCountryIso(getContext(), accountHandle)));
349 private static String getCountryIso(
356 return info.get().getCountryIso().toUpperCase();
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 220 getCountryIso());
492 return country.getCountryIso();
500 public String getCountryIso() {
  /packages/apps/Dialer/java/com/android/incallui/call/
CallList.java 153 call.getCountryIso(),
211 call.getCountryIso());
273 call.getCountryIso(),
285 call.getCountryIso(),
297 call.getCountryIso(),
  /packages/apps/Contacts/src/com/android/contacts/model/
SimCard.java 243 info.getCountryIso());
  /packages/apps/Dialer/java/com/android/dialer/calllog/ui/menu/
Modules.java 90 .setCountryIso(row.number().getCountryIso())
  /frameworks/base/services/core/java/com/android/server/location/
ComprehensiveCountryDetector.java 321 + ", countryISO: " + detectedCountry.getCountryIso() + ")")
  /frameworks/base/telephony/java/android/telephony/
SubscriptionInfo.java 334 public String getCountryIso() {
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
CallLogManagerTest.java 705 String resultIso = mCallLogManager.getCountryIso();
    [all...]

Completed in 483 milliseconds

1 2