Lines Matching full:foobar
1179 EXPECT_TRUE(String("foobar").EndsWith("bar"));
1180 EXPECT_TRUE(String("foobar").EndsWith(""));
1183 EXPECT_FALSE(String("foobar").EndsWith("foo"));
1189 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("BAR"));
1190 EXPECT_TRUE(String("foobaR").EndsWithCaseInsensitive("bar"));
1191 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive(""));
1194 EXPECT_FALSE(String("Foobar").EndsWithCaseInsensitive("foo"));
1195 EXPECT_FALSE(String("foobar").EndsWithCaseInsensitive("Foo"));
1209 EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(kNull, L"foobar"));
1210 EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(L"foobar", kNull));
1211 EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"foobar"));
1212 EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"FOOBAR"));
1213 EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"FOOBAR", L"foobar"));