Home
last modified time | relevance | path

Searched refs:FindNth (Results 1 – 3 of 3) sorted by relevance

/third_party/libphonenumber/cpp/test/phonenumbers/
Dstringutil_test.cc46 EXPECT_EQ(string::npos, FindNth("", 'a', 1)); in TEST()
50 EXPECT_EQ(string::npos, FindNth("hello world", 'o', -1)); in TEST()
54 EXPECT_EQ(string::npos, FindNth("hello world", 'o', 3)); in TEST()
57 TEST(StringUtilTest, FindNth) { in TEST() argument
58 EXPECT_EQ(7U, FindNth("hello world", 'o', 2)); in TEST()
/third_party/libphonenumber/cpp/src/phonenumbers/
Dstringutil.h47 size_t FindNth(const string& s, char c, int n);
Dstringutil.cc56 size_t FindNth(const string& s, char c, int n) { in FindNth() function