HomeSort by relevance Sort by last modified time
    Searched defs:countryDetector (Results 1 - 3 of 3) sorted by null

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CountryMonitor.java 21 import android.location.CountryDetector;
48 final CountryDetector countryDetector =
49 (CountryDetector) mContext.getSystemService(Context.COUNTRY_DETECTOR);
51 if (countryDetector != null) country = countryDetector.detectCountry();
54 // Fallback to Locale if there are issues with CountryDetector
59 countryDetector.addCountryListener(new CountryListener() {
  /packages/services/Telecomm/src/com/android/server/telecom/
CallLogManager.java 23 import android.location.CountryDetector;
487 // Fallback to Locale if there are issues with CountryDetector
504 final CountryDetector countryDetector =
505 (CountryDetector) mContext.getSystemService(Context.COUNTRY_DETECTOR);
507 if (countryDetector != null) {
508 country = countryDetector.detectCountry();
510 countryDetector.addCountryListener((newCountry) -> {
  /frameworks/base/services/java/com/android/server/
SystemServer.java     [all...]

Completed in 192 milliseconds