Lines Matching refs:IsNotSubstring
133 using testing::IsNotSubstring;
2750 EXPECT_TRUE(IsNotSubstring("", "", "needle", "haystack")); in TEST()
2751 EXPECT_FALSE(IsNotSubstring("", "", "needle", "two needles")); in TEST()
2757 EXPECT_TRUE(IsNotSubstring("", "", L"needle", L"haystack")); in TEST()
2758 EXPECT_FALSE(IsNotSubstring("", "", L"needle", L"two needles")); in TEST()
2768 IsNotSubstring( in TEST()
2776 EXPECT_FALSE(IsNotSubstring("", "", std::string("hello"), "ahellob")); in TEST()
2777 EXPECT_TRUE(IsNotSubstring("", "", "hello", std::string("world"))); in TEST()
2787 IsNotSubstring( in TEST()
2798 IsNotSubstring("", "", ::std::wstring(L"needle"), L"two needles")); in TEST()
2799 EXPECT_TRUE(IsNotSubstring("", "", L"needle", ::std::wstring(L"haystack"))); in TEST()
5662 EXPECT_PRED_FORMAT2(IsNotSubstring, in TestParsingFlags()