Searched refs:AR_MOBILE (Results 1 – 2 of 2) sorted by relevance
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
D | phonenumberutil_test.js | 64 var AR_MOBILE = new i18n.phonenumbers.PhoneNumber(); variable 65 AR_MOBILE.setCountryCode(54); 66 AR_MOBILE.setNationalNumber(91187654321); 352 assertTrue(phoneUtil.isNumberGeographical(AR_MOBILE)); 411 assertEquals(3, phoneUtil.getLengthOfNationalDestinationCode(AR_MOBILE)); 778 assertEquals('011 15 8765-4321', phoneUtil.format(AR_MOBILE, PNF.NATIONAL)); 780 '+54 9 11 8765 4321', phoneUtil.format(AR_MOBILE, PNF.INTERNATIONAL)); 781 assertEquals('+5491187654321', phoneUtil.format(AR_MOBILE, PNF.E164)); 852 phoneUtil.formatOutOfCountryCallingNumber(AR_MOBILE, RegionCode.US)); 859 var arNumberWithExtn = AR_MOBILE.clone(); [all …]
|
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/ |
D | PhoneNumberUtilTest.java | 54 private static final PhoneNumber AR_MOBILE = field in PhoneNumberUtilTest 279 assertTrue(phoneUtil.isNumberGeographical(AR_MOBILE)); // Argentina, mobile phone number. in testIsNumberGeographical() 302 assertEquals(3, phoneUtil.getLengthOfGeographicalAreaCode(AR_MOBILE)); in testGetLengthOfGeographicalAreaCode() 341 assertEquals(3, phoneUtil.getLengthOfNationalDestinationCode(AR_MOBILE)); in testGetLengthOfNationalDestinationCode() 582 assertEquals("011 15 8765-4321", phoneUtil.format(AR_MOBILE, PhoneNumberFormat.NATIONAL)); in testFormatARNumber() 583 assertEquals("+54 9 11 8765 4321", phoneUtil.format(AR_MOBILE, in testFormatARNumber() 585 assertEquals("+5491187654321", phoneUtil.format(AR_MOBILE, PhoneNumberFormat.E164)); in testFormatARNumber() 639 phoneUtil.formatOutOfCountryCallingNumber(AR_MOBILE, RegionCode.US)); in testFormatOutOfCountryCallingNumber() 643 PhoneNumber arNumberWithExtn = new PhoneNumber().mergeFrom(AR_MOBILE).setExtension("1234"); in testFormatOutOfCountryCallingNumber() 1166 assertEquals(PhoneNumberType.MOBILE, phoneUtil.getNumberType(AR_MOBILE)); in testIsMobile() [all …]
|