Lines Matching refs:m3

424   Matcher<IntValue> m3 = Truly(IsPositiveIntValue);  in TEST()  local
425 Matcher<int> m4 = MatcherCast<int>(m3); in TEST()
519 Matcher<int> m3 = in TEST() local
521 EXPECT_TRUE(m3.Matches(42)); in TEST()
522 EXPECT_FALSE(m3.Matches(239)); in TEST()
631 Matcher<char> m3 = SafeMatcherCast<char>(TypedEq<int>('a')); in TEST() local
632 EXPECT_TRUE(m3.Matches('a')); in TEST()
633 EXPECT_FALSE(m3.Matches('b')); in TEST()
645 Matcher<Base&> m3 = Ref(d); in TEST() local
646 Matcher<Derived&> m4 = SafeMatcherCast<Derived&>(m3); in TEST()
1026 Matcher<void*> m3 = IsNull(); in TEST() local
1028 EXPECT_TRUE(m3.Matches(p3)); in TEST()
1029 EXPECT_FALSE(m3.Matches(reinterpret_cast<void*>(0xbeef))); in TEST()
1180 Matcher<const internal::StringView&> m3 = in TEST() local
1182 EXPECT_TRUE(m3.Matches(internal::StringView("Hello"))); in TEST()
1183 EXPECT_FALSE(m3.Matches(internal::StringView("hello"))); in TEST()
1184 EXPECT_FALSE(m3.Matches(internal::StringView())); in TEST()
1203 Matcher<std::string> m3 = StrEq(str); in TEST() local
1204 EXPECT_EQ("is equal to \"\\012\\045\\0\\08\\0\\0\"", Describe(m3)); in TEST()
1218 Matcher<const internal::StringView> m3 = StrNe(internal::StringView("Hello")); in TEST() local
1219 EXPECT_TRUE(m3.Matches(internal::StringView(""))); in TEST()
1220 EXPECT_TRUE(m3.Matches(internal::StringView())); in TEST()
1221 EXPECT_FALSE(m3.Matches(internal::StringView("Hello"))); in TEST()
1242 Matcher<const internal::StringView&> m3 = in TEST() local
1244 EXPECT_TRUE(m3.Matches(internal::StringView("Hello"))); in TEST()
1245 EXPECT_TRUE(m3.Matches(internal::StringView("hello"))); in TEST()
1246 EXPECT_FALSE(m3.Matches(internal::StringView("Hi"))); in TEST()
1247 EXPECT_FALSE(m3.Matches(internal::StringView())); in TEST()
1267 Matcher<const std::string&> m3 = StrCaseEq(str1); in TEST() local
1268 EXPECT_TRUE(m3.Matches(str2)); in TEST()
1270 EXPECT_FALSE(m3.Matches(str2 + "x")); in TEST()
1272 EXPECT_FALSE(m3.Matches(str2)); in TEST()
1273 EXPECT_FALSE(m3.Matches(std::string(str2, 0, 9))); in TEST()
1293 Matcher<const internal::StringView> m3 = in TEST() local
1295 EXPECT_TRUE(m3.Matches(internal::StringView("Hi"))); in TEST()
1296 EXPECT_TRUE(m3.Matches(internal::StringView())); in TEST()
1297 EXPECT_FALSE(m3.Matches(internal::StringView("Hello"))); in TEST()
1298 EXPECT_FALSE(m3.Matches(internal::StringView("hello"))); in TEST()
1354 const Matcher<const internal::StringView&> m3 = HasSubstr(""); in TEST() local
1355 EXPECT_TRUE(m3.Matches(internal::StringView("foo"))); in TEST()
1356 EXPECT_TRUE(m3.Matches(internal::StringView(""))); in TEST()
1357 EXPECT_TRUE(m3.Matches(internal::StringView())); in TEST()
1462 Matcher<pair<const char*, int>> m3 = Pair("foo", 42); in TEST() local
1827 const Matcher<const internal::StringView&> m3 = in TEST() local
1829 EXPECT_FALSE(m3.Matches("invalid base64")); in TEST()
1830 EXPECT_FALSE(m3.Matches("aGVsbG8gd29ybGQ=")); // hello world in TEST()
1831 EXPECT_TRUE(m3.Matches("aGVsbG8gd29ybGQh")); // hello world! in TEST()
1832 EXPECT_TRUE(m3.Matches("+/-_IQ")); // \xfb\xff\xbf! in TEST()
1855 const Matcher<const internal::StringView&> m3 = MatchesRegex("a.*z"); in TEST() local
1856 EXPECT_TRUE(m3.Matches(internal::StringView("az"))); in TEST()
1857 EXPECT_TRUE(m3.Matches(internal::StringView("abcz"))); in TEST()
1858 EXPECT_FALSE(m3.Matches(internal::StringView("1az"))); in TEST()
1859 EXPECT_FALSE(m3.Matches(internal::StringView())); in TEST()
1875 Matcher<const internal::StringView> m3 = MatchesRegex(new RE("0.*")); in TEST() local
1876 EXPECT_EQ("matches regular expression \"0.*\"", Describe(m3)); in TEST()
1894 const Matcher<const internal::StringView&> m3 = ContainsRegex(new RE("a.*z")); in TEST() local
1895 EXPECT_TRUE(m3.Matches(internal::StringView("azbz"))); in TEST()
1896 EXPECT_TRUE(m3.Matches(internal::StringView("az1"))); in TEST()
1897 EXPECT_FALSE(m3.Matches(internal::StringView("1a"))); in TEST()
1898 EXPECT_FALSE(m3.Matches(internal::StringView())); in TEST()
1914 Matcher<const internal::StringView> m3 = ContainsRegex(new RE("0.*")); in TEST() local
1915 EXPECT_EQ("contains regular expression \"0.*\"", Describe(m3)); in TEST()
1931 Matcher<const ::std::wstring&> m3 = StrEq(L"\xD3\x576\x8D3\xC74D"); in TEST() local
1932 EXPECT_TRUE(m3.Matches(L"\xD3\x576\x8D3\xC74D")); in TEST()
1933 EXPECT_FALSE(m3.Matches(L"\xD3\x576\x8D3\xC74E")); in TEST()
2005 Matcher<const ::std::wstring&> m3 = StrCaseEq(str1); in TEST() local
2006 EXPECT_TRUE(m3.Matches(str2)); in TEST()
2008 EXPECT_FALSE(m3.Matches(str2 + L"x")); in TEST()
2010 EXPECT_FALSE(m3.Matches(str2)); in TEST()
2011 EXPECT_FALSE(m3.Matches(::std::wstring(str2, 0, 9))); in TEST()