Searched refs:FindNth (Results 1 – 3 of 3) sorted by relevance
/third_party/libphonenumber/cpp/test/phonenumbers/ |
D | stringutil_test.cc | 46 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/ |
D | stringutil.h | 47 size_t FindNth(const string& s, char c, int n);
|
D | stringutil.cc | 56 size_t FindNth(const string& s, char c, int n) { in FindNth() function
|