Home
last modified time | relevance | path

Searched refs:phone_number_compare_strict (Results 1 – 4 of 4) sorted by relevance

/external/sqlite/android/
DPhoneNumberUtilsTest.cpp37 EXPECT_TRUE(phone_number_compare_strict(NULL, NULL)); in TEST()
38 EXPECT_TRUE(phone_number_compare_strict("", NULL)); in TEST()
39 EXPECT_TRUE(phone_number_compare_strict(NULL, "")); in TEST()
40 EXPECT_TRUE(phone_number_compare_strict("", "")); in TEST()
44 EXPECT_TRUE(phone_number_compare_strict("999", "999")); in TEST()
45 EXPECT_TRUE(phone_number_compare_strict("119", "119")); in TEST()
49 EXPECT_FALSE(phone_number_compare_strict("123456789", "923456789")); in TEST()
50 EXPECT_FALSE(phone_number_compare_strict("123456789", "123456781")); in TEST()
51 EXPECT_FALSE(phone_number_compare_strict("123456789", "1234567890")); in TEST()
52 EXPECT_FALSE(phone_number_compare_strict("123456789", "0123456789")); in TEST()
[all …]
DPhoneNumberUtils.h25 bool phone_number_compare_strict(const char* a, const char* b);
DPhoneNumberUtils.cpp444 bool phone_number_compare_strict(const char* a, const char* b) in phone_number_compare_strict() function
Dsqlite3_android.cpp105 (use_strict ? android::phone_number_compare_strict(num1, num2) in phone_numbers_equal()