Searched refs:EXACT_MATCH (Results 1 - 7 of 7) sorted by relevance
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | phonenumberutil_test.js | 3890 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3893 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3896 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3899 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3902 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3905 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3908 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3911 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3915 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, 3919 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH, [all...] |
H A D | phonenumberutil.js | 1102 EXACT_MATCH: 4 4559 * <p>Returns EXACT_MATCH if the country_code, NSN, presence of a leading zero 4576 * SHORT_NSN_MATCH, NSN_MATCH or EXACT_MATCH depending on the level of 4599 // The first number has no country calling code. EXACT_MATCH is no longer 4601 // second number, and if EXACT_MATCH is returned, we replace this with 4617 i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH) { 4667 return i18n.phonenumbers.PhoneNumberUtil.MatchType.EXACT_MATCH;
|
/third_party/libphonenumber/cpp/test/phonenumbers/ |
H A D | phonenumberutil_test.cc | 3256 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3259 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3262 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3265 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3268 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3271 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3274 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3278 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3282 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() 3285 EXPECT_EQ(PhoneNumberUtil::EXACT_MATCH, in TEST_F() [all...] |
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberUtilTest.java | 2985 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 2987 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 2989 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 2991 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 2993 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 2995 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 2997 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 3000 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 3003 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() 3005 assertEquals(PhoneNumberUtil.MatchType.EXACT_MATCH, in testIsNumberMatchMatches() [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | phonenumberutil.h | 135 EXACT_MATCH, enumerator 138 static const MatchType kMaxMatchType = EXACT_MATCH; 710 // Returns EXACT_MATCH if the country calling code, NSN, presence of a leading
|
H A D | phonenumberutil.cc | 3105 return EXACT_MATCH; in IsNumberMatch() 3176 // The second number has no country calling code. EXACT_MATCH is no longer in IsNumberMatchWithOneString() 3178 // first number, and if EXACT_MATCH is returned, we replace this with in IsNumberMatchWithOneString() 3189 if (match == EXACT_MATCH) { in IsNumberMatchWithOneString()
|
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberUtil.java | 511 EXACT_MATCH, enum constant 3476 * <p>Returns EXACT_MATCH if the country_code, NSN, presence of a leading zero for Italian numbers 3490 * @return NO_MATCH, SHORT_NSN_MATCH, NSN_MATCH or EXACT_MATCH depending on the level of equality 3508 return MatchType.EXACT_MATCH; in isNumberMatch() 3550 * @return NOT_A_NUMBER, NO_MATCH, SHORT_NSN_MATCH, NSN_MATCH, EXACT_MATCH. See 3588 * @return NOT_A_NUMBER, NO_MATCH, SHORT_NSN_MATCH, NSN_MATCH, EXACT_MATCH. See 3599 // The second number has no country calling code. EXACT_MATCH is no longer possible. in isNumberMatch() 3601 // EXACT_MATCH is returned, we replace this with NSN_MATCH. in isNumberMatch() 3607 if (match == MatchType.EXACT_MATCH) { in isNumberMatch()
|
Completed in 30 milliseconds