OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PhoneNumberFormat
(Results
1 - 3
of
3
) sorted by null
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberUtilTest.java
19
import com.android.i18n.phonenumbers.PhoneNumberUtil.
PhoneNumberFormat
;
344
assertEquals("650 253 0000", phoneUtil.format(US_NUMBER,
PhoneNumberFormat
.NATIONAL));
345
assertEquals("+1 650 253 0000", phoneUtil.format(US_NUMBER,
PhoneNumberFormat
.INTERNATIONAL));
347
assertEquals("800 253 0000", phoneUtil.format(US_TOLLFREE,
PhoneNumberFormat
.NATIONAL));
348
assertEquals("+1 800 253 0000", phoneUtil.format(US_TOLLFREE,
PhoneNumberFormat
.INTERNATIONAL));
350
assertEquals("900 253 0000", phoneUtil.format(US_PREMIUM,
PhoneNumberFormat
.NATIONAL));
351
assertEquals("+1 900 253 0000", phoneUtil.format(US_PREMIUM,
PhoneNumberFormat
.INTERNATIONAL));
352
assertEquals("+1-900-253-0000", phoneUtil.format(US_PREMIUM,
PhoneNumberFormat
.RFC3966));
356
phoneUtil.format(US_SPOOF_WITH_RAW_INPUT,
PhoneNumberFormat
.NATIONAL));
357
assertEquals("0", phoneUtil.format(US_SPOOF,
PhoneNumberFormat
.NATIONAL))
[
all
...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java
340
public enum
PhoneNumberFormat
{
543
String rfc3966Format = util.format(number,
PhoneNumberFormat
.RFC3966);
[
all
...]
/frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java
21
import com.android.i18n.phonenumbers.PhoneNumberUtil.
PhoneNumberFormat
;
[
all
...]
Completed in 5132 milliseconds