Lines Matching full:foobar
1045 EXPECT_TRUE(String("foobar").EndsWith("bar"));
1046 EXPECT_TRUE(String("foobar").EndsWith(""));
1049 EXPECT_FALSE(String("foobar").EndsWith("foo"));
1055 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive("BAR"));
1056 EXPECT_TRUE(String("foobaR").EndsWithCaseInsensitive("bar"));
1057 EXPECT_TRUE(String("foobar").EndsWithCaseInsensitive(""));
1060 EXPECT_FALSE(String("Foobar").EndsWithCaseInsensitive("foo"));
1061 EXPECT_FALSE(String("foobar").EndsWithCaseInsensitive("Foo"));
1075 EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(kNull, L"foobar"));
1076 EXPECT_FALSE(String::CaseInsensitiveWideCStringEquals(L"foobar", kNull));
1077 EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"foobar"));
1078 EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"foobar", L"FOOBAR"));
1079 EXPECT_TRUE(String::CaseInsensitiveWideCStringEquals(L"FOOBAR", L"foobar"));