OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:countryIso
(Results
1 - 11
of
11
) sorted by null
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
SmsUsageMonitorShortCodeTest.java
34
final String
countryIso
;
38
ShortCodeTest(String
countryIso
, String destAddress, int category) {
39
this.
countryIso
=
countryIso
;
462
assertEquals("country: " + test.
countryIso
+ " number: " + test.address,
463
test.category, monitor.checkDestination(test.address, test.
countryIso
));
/packages/apps/Dialer/src/com/android/dialer/
PhoneCallDetails.java
32
public final String
countryIso
;
63
String
countryIso
, String geocode, int[] callTypes, long date, long duration) {
64
this(number, formattedNumber,
countryIso
, geocode, callTypes, date, duration, "", 0, "",
70
String
countryIso
, String geocode, int[] callTypes, long date, long duration,
75
this.
countryIso
=
countryIso
;
CallDetailActivity.java
605
String
countryIso
= callCursor.getString(COUNTRY_ISO_COLUMN_INDEX);
608
if (TextUtils.isEmpty(
countryIso
)) {
609
countryIso
= mDefaultCountryIso;
624
? mContactInfoHelper.lookupNumber(number,
countryIso
)
641
return new PhoneCallDetails(number, formattedNumber,
countryIso
, geocode,
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DefaultCallLogInsertionHelper.java
60
String
countryIso
= getCurrentCountryIso();
61
values.put(Calls.COUNTRY_ISO,
countryIso
);
64
getGeocodedLocationFor(values.getAsString(Calls.NUMBER),
countryIso
));
78
private PhoneNumber parsePhoneNumber(String number, String
countryIso
) {
80
return getPhoneNumberUtil().parse(number,
countryIso
);
94
public String getGeocodedLocationFor(String number, String
countryIso
) {
95
PhoneNumber structuredPhoneNumber = parsePhoneNumber(number,
countryIso
);
/packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogAdapterTest.java
58
public ContactInfo lookupNumber(String number, String
countryIso
) {
96
assertEquals(TEST_COUNTRY_ISO, request.
countryIso
);
198
public final String
countryIso
;
202
public Request(String number, String
countryIso
, ContactInfo callLogInfo,
205
this.
countryIso
=
countryIso
;
219
void enqueueRequest(String number, String
countryIso
, ContactInfo callLogInfo,
221
requests.add(new Request(number,
countryIso
, callLogInfo, immediate));
/frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java
223
String
countryIso
= null;
225
countryIso
= mTelephonyManager.getNetworkCountryIso();
226
if (!TextUtils.isEmpty(
countryIso
)) {
227
return new Country(
countryIso
, Country.COUNTRY_SOURCE_NETWORK);
244
String
countryIso
= null;
245
countryIso
= mTelephonyManager.getSimCountryIso();
246
if (!TextUtils.isEmpty(
countryIso
)) {
247
return new Country(
countryIso
, Country.COUNTRY_SOURCE_SIM);
322
+ ",
countryISO
: " + detectedCountry.getCountryIso() + ")")
/frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java
543
String
countryIso
= getCurrentCountryIso(context, locale);
547
+ "' for
countryIso
'" +
countryIso
+ "'...");
548
pn = util.parse(number,
countryIso
);
568
String
countryIso
;
572
countryIso
= detector.detectCountry().getCountryIso();
574
countryIso
= locale.getCountry();
575
Rlog.w(TAG, "No CountryDetector; falling back to
countryIso
based on locale: "
576
+
countryIso
);
578
return
countryIso
;
[
all
...]
/packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java
64
public final String
countryIso
;
66
public NumberWithCountryIso(String number, String
countryIso
) {
68
this.
countryIso
=
countryIso
;
77
&& TextUtils.equals(
countryIso
, other.
countryIso
);
83
^ (
countryIso
== null ? 0 :
countryIso
.hashCode());
115
public final String
countryIso
;
119
public ContactInfoRequest(String number, String
countryIso
, ContactInfo callLogInfo)
[
all
...]
CallLogFragment.java
483
String
countryIso
= cursor.getString(CallLogQuery.COUNTRY_ISO);
484
number = mAdapter.getBetterNumberFromContacts(number,
countryIso
);
/frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/model/
ContactLoader.java
[
all
...]
Completed in 1116 milliseconds