OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCountryIso
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/location/java/android/location/
Country.java
54
private final String
mCountryIso
;
86
mCountryIso
= countryIso.toUpperCase(Locale.US);
96
mCountryIso
= countryIso.toUpperCase(Locale.US);
102
mCountryIso
= country.
mCountryIso
;
111
return
mCountryIso
;
151
parcel.writeString(
mCountryIso
);
169
return
mCountryIso
.equals(c.getCountryIso()) && mSource == c.getSource();
179
hash = hash * 13 +
mCountryIso
.hashCode();
195
return country != null &&
mCountryIso
.equals(country.getCountryIso())
[
all
...]
/frameworks/base/telephony/java/android/telephony/
SubscriptionInfo.java
110
private String
mCountryIso
;
130
this.
mCountryIso
= countryIso;
284
return this.
mCountryIso
;
327
dest.writeString(
mCountryIso
);
/packages/apps/Dialer/src/com/android/dialer/filterednumber/
BlockNumberDialogFragment.java
83
private String
mCountryIso
;
138
mCountryIso
= getArguments().getString(ARG_COUNTRY_ISO);
195
if (!FilteredNumbersUtil.canBlockNumber(getActivity(), mNumber,
mCountryIso
)) {
278
mCountryIso
);
/packages/apps/Dialer/src/com/android/dialer/list/
DialerPhoneNumberListAdapter.java
32
private String
mCountryIso
;
52
mCountryIso
= GeoUtil.getCurrentCountryIso(context);
217
PhoneNumberUtils.normalizeNumber(queryString),
mCountryIso
);
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PhoneNumberListAdapter.java
159
private final String
mCountryIso
;
174
mCountryIso
= GeoUtil.getCurrentCountryIso(context);
490
view.setPhoneNumber(text,
mCountryIso
);
Completed in 4968 milliseconds