Lines Matching defs:m2

220   Matcher<const std::string&> m2 = "hi";  in TEST()  local
232 Matcher<const std::string&> m2 = std::string("hi"); in TEST() local
245 Matcher<const internal::StringView&> m2 = "cats"; in TEST() local
257 Matcher<const internal::StringView&> m2 = std::string("cats"); in TEST() local
269 Matcher<const internal::StringView&> m2 = internal::StringView("cats"); in TEST() local
284 Matcher<const std::string&> m2 = Eq(std::ref(value)); in TEST() local
331 Matcher<double> m2 = ReferencesBarOrIsZero(); in TEST() local
375 const Matcher<char> m2 = PolymorphicIsEven(); in TEST() local
420 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
436 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
444 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
452 Matcher<const int&> m2 = MatcherCast<const int&>(m1); in TEST() local
460 Matcher<int&> m2 = MatcherCast<int&>(m1); in TEST() local
470 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
513 Matcher<NonImplicitlyConstructibleTypeWithOperatorEq> m2 = in TEST() local
612 Matcher<char> m2; in TEST_P() local
627 Matcher<float> m2 = SafeMatcherCast<float>(m1); in TEST() local
641 Matcher<Derived*> m2 = SafeMatcherCast<Derived*>(m1); in TEST() local
655 Matcher<int&> m2 = SafeMatcherCast<int&>(m1); in TEST() local
664 Matcher<const std::unique_ptr<int>&> m2 = in TEST() local
673 Matcher<int&> m2 = SafeMatcherCast<int&>(m1); in TEST() local
683 Matcher<int> m2 = SafeMatcherCast<int>(m1); in TEST() local
739 Matcher<int&> m2 = A<int&>(); in TEST() local
766 Matcher<int&> m2 = An<int&>(); in TEST() local
785 Matcher<const bool&> m2 = _; in TEST() local
833 Matcher<char> m2 = Eq(1); in TEST() local
844 Matcher<int> m2 = TypedEq<int>(6); in TEST() local
1021 Matcher<const char*> m2 = IsNull(); in TEST() local
1054 Matcher<const char*> m2 = NotNull(); in TEST() local
1175 Matcher<const std::string&> m2 = StrEq("Hello"); in TEST() local
1200 Matcher<std::string> m2 = StrEq(str); in TEST() local
1213 Matcher<std::string> m2 = StrNe(std::string("Hello")); in TEST() local
1237 Matcher<const std::string&> m2 = StrCaseEq("Hello"); in TEST() local
1263 Matcher<const std::string&> m2 = StrCaseEq(str1); in TEST() local
1288 Matcher<std::string> m2 = StrCaseNe(std::string("Hello")); in TEST() local
1313 const Matcher<const std::string&> m2 = HasSubstr("foo"); in TEST() local
1329 const Matcher<const char*> m2 = HasSubstr("foo"); in TEST() local
1349 const Matcher<const internal::StringView&> m2 = HasSubstr("foo"); in TEST() local
1461 Matcher<const pair<const char*, int>> m2 = Pair("foo", 42); in TEST() local
1479 Matcher<const pair<int, int>&> m2 = Not(Pair(Not(13), 42)); in TEST() local
1751 const Matcher<const std::string&> m2 = StartsWith("Hi"); in TEST() local
1789 const Matcher<const std::string&> m2 = EndsWith(std::string("Hi")); in TEST() local
1820 const Matcher<const std::string&> m2 = WhenBase64Unescaped(EndsWith("!")); in TEST() local
1849 const Matcher<const std::string&> m2 = MatchesRegex(new RE("a.*z")); in TEST() local
1871 Matcher<const char*> m2 = MatchesRegex(new RE("a.*")); in TEST() local
1888 const Matcher<const std::string&> m2 = ContainsRegex(new RE("a.*z")); in TEST() local
1910 Matcher<const char*> m2 = ContainsRegex(new RE("a.*")); in TEST() local
1927 Matcher<const ::std::wstring&> m2 = StrEq(L"Hello"); in TEST() local
1949 Matcher<::std::wstring> m2 = StrEq(L"\xD3\x576\x8D3\xC74D"); in TEST() local
1967 Matcher<::std::wstring> m2 = StrNe(::std::wstring(L"Hello")); in TEST() local
1984 Matcher<const ::std::wstring&> m2 = StrCaseEq(L"Hello"); in TEST() local
2001 Matcher<const ::std::wstring&> m2 = StrCaseEq(str1); in TEST() local
2026 Matcher<::std::wstring> m2 = StrCaseNe(::std::wstring(L"Hello")); in TEST() local
2042 const Matcher<const ::std::wstring&> m2 = HasSubstr(L"foo"); in TEST() local
2054 const Matcher<const wchar_t*> m2 = HasSubstr(L"foo"); in TEST() local
2074 const Matcher<const ::std::wstring&> m2 = StartsWith(L"Hi"); in TEST() local
2095 const Matcher<const ::std::wstring&> m2 = EndsWith(::std::wstring(L"Hi")); in TEST() local
2142 ConstructNoArgMatcher m2; in TEST() local