Home
last modified time | relevance | path

Searched refs:stillTwoZeros (Results 1 – 2 of 2) sorted by relevance

/third_party/libphonenumber/javascript/i18n/phonenumbers/
Dphonenumberutil_test.js3771 var stillTwoZeros = new i18n.phonenumbers.PhoneNumber();
3772 stillTwoZeros.setCountryCode(61);
3773 stillTwoZeros.setNationalNumber(0);
3774 stillTwoZeros.setItalianLeadingZero(true);
3775 stillTwoZeros.setNumberOfLeadingZeros(2);
3776 assertTrue(stillTwoZeros.equals(phoneUtil.parse('000', RegionCode.AU)));
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/
DPhoneNumberUtilTest.java2882 PhoneNumber stillTwoZeros = new PhoneNumber(); in testParseItalianLeadingZeros() local
2883 stillTwoZeros.setCountryCode(61).setNationalNumber(0L).setItalianLeadingZero(true) in testParseItalianLeadingZeros()
2885 assertEquals(stillTwoZeros, phoneUtil.parse("000", RegionCode.AU)); in testParseItalianLeadingZeros()