Lines Matching refs:m_empty
1185 Matcher<const internal::StringView&> m_empty = StrEq("");
1186 EXPECT_TRUE(m_empty.Matches(internal::StringView("")));
1187 EXPECT_TRUE(m_empty.Matches(internal::StringView()));
1188 EXPECT_FALSE(m_empty.Matches(internal::StringView("hello")));
1316 const Matcher<std::string> m_empty = HasSubstr("");
1317 EXPECT_TRUE(m_empty.Matches(std::string()));
1318 EXPECT_TRUE(m_empty.Matches(std::string("not empty")));
1333 const Matcher<const char*> m_empty = HasSubstr("");
1334 EXPECT_TRUE(m_empty.Matches("not empty"));
1335 EXPECT_TRUE(m_empty.Matches(""));
1336 EXPECT_FALSE(m_empty.Matches(nullptr));
1758 const Matcher<internal::StringView> m_empty =
1760 EXPECT_TRUE(m_empty.Matches(internal::StringView()));
1761 EXPECT_TRUE(m_empty.Matches(internal::StringView("")));
1762 EXPECT_TRUE(m_empty.Matches(internal::StringView("not empty")));