Lines Matching refs:StringEndsWith
237 VerifyOrQuit(StringEndsWith("FooBar", 'r')); in TestStringEndsWith()
238 VerifyOrQuit(!StringEndsWith("FooBar", 'a')); in TestStringEndsWith()
239 VerifyOrQuit(!StringEndsWith("FooBar", '\0')); in TestStringEndsWith()
240 VerifyOrQuit(StringEndsWith("a", 'a')); in TestStringEndsWith()
241 VerifyOrQuit(!StringEndsWith("a", 'b')); in TestStringEndsWith()
243 VerifyOrQuit(StringEndsWith("FooBar", "Bar")); in TestStringEndsWith()
244 VerifyOrQuit(!StringEndsWith("FooBar", "Ba")); in TestStringEndsWith()
245 VerifyOrQuit(StringEndsWith("FooBar", "FooBar")); in TestStringEndsWith()
246 VerifyOrQuit(!StringEndsWith("FooBar", "FooBarr")); in TestStringEndsWith()
248 VerifyOrQuit(!StringEndsWith("", 'a')); in TestStringEndsWith()
249 VerifyOrQuit(!StringEndsWith("", "foo")); in TestStringEndsWith()
251 VerifyOrQuit(StringEndsWith("FooBar", "baR", kStringCaseInsensitiveMatch)); in TestStringEndsWith()
252 VerifyOrQuit(!StringEndsWith("FooBar", "bA", kStringCaseInsensitiveMatch)); in TestStringEndsWith()
253 VerifyOrQuit(StringEndsWith("FooBar", "fOOBar", kStringCaseInsensitiveMatch)); in TestStringEndsWith()
254 VerifyOrQuit(!StringEndsWith("FooBar", "Foobarr", kStringCaseInsensitiveMatch)); in TestStringEndsWith()
255 VerifyOrQuit(!StringEndsWith("", "Foo", kStringCaseInsensitiveMatch)); in TestStringEndsWith()