Lines Matching defs:m2
221 Matcher<const std::string&> m2 = "hi"; in TEST() local
233 Matcher<const std::string&> m2 = std::string("hi"); in TEST() local
246 Matcher<const internal::StringView&> m2 = "cats"; in TEST() local
258 Matcher<const internal::StringView&> m2 = std::string("cats"); in TEST() local
270 Matcher<const internal::StringView&> m2 = internal::StringView("cats"); in TEST() local
285 Matcher<const std::string&> m2 = Eq(std::ref(value)); in TEST() local
332 Matcher<double> m2 = ReferencesBarOrIsZero(); in TEST() local
376 const Matcher<char> m2 = PolymorphicIsEven(); in TEST() local
421 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
437 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
445 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
453 Matcher<const int&> m2 = MatcherCast<const int&>(m1); in TEST() local
461 Matcher<int&> m2 = MatcherCast<int&>(m1); in TEST() local
471 Matcher<int> m2 = MatcherCast<int>(m1); in TEST() local
514 Matcher<NonImplicitlyConstructibleTypeWithOperatorEq> m2 = in TEST() local
613 Matcher<char> m2; in TEST_P() local
628 Matcher<float> m2 = SafeMatcherCast<float>(m1); in TEST() local
642 Matcher<Derived*> m2 = SafeMatcherCast<Derived*>(m1); in TEST() local
656 Matcher<int&> m2 = SafeMatcherCast<int&>(m1); in TEST() local
665 Matcher<const std::unique_ptr<int>&> m2 = in TEST() local
674 Matcher<int&> m2 = SafeMatcherCast<int&>(m1); in TEST() local
684 Matcher<int> m2 = SafeMatcherCast<int>(m1); in TEST() local
740 Matcher<int&> m2 = A<int&>(); in TEST() local
767 Matcher<int&> m2 = An<int&>(); in TEST() local
786 Matcher<const bool&> m2 = _; in TEST() local
834 Matcher<char> m2 = Eq(1); in TEST() local
845 Matcher<int> m2 = TypedEq<int>(6); in TEST() local
1022 Matcher<const char*> m2 = IsNull(); in TEST() local
1055 Matcher<const char*> m2 = NotNull(); in TEST() local
1176 Matcher<const std::string&> m2 = StrEq("Hello"); in TEST() local
1201 Matcher<std::string> m2 = StrEq(str); in TEST() local
1214 Matcher<std::string> m2 = StrNe(std::string("Hello")); in TEST() local
1238 Matcher<const std::string&> m2 = StrCaseEq("Hello"); in TEST() local
1264 Matcher<const std::string&> m2 = StrCaseEq(str1); in TEST() local
1289 Matcher<std::string> m2 = StrCaseNe(std::string("Hello")); in TEST() local
1314 const Matcher<const std::string&> m2 = HasSubstr("foo"); in TEST() local
1330 const Matcher<const char*> m2 = HasSubstr("foo"); in TEST() local
1350 const Matcher<const internal::StringView&> m2 = HasSubstr("foo"); in TEST() local
1462 Matcher<const pair<const char*, int>> m2 = Pair("foo", 42); in TEST() local
1480 Matcher<const pair<int, int>&> m2 = Not(Pair(Not(13), 42)); in TEST() local
1752 const Matcher<const std::string&> m2 = StartsWith("Hi"); in TEST() local
1790 const Matcher<const std::string&> m2 = EndsWith(std::string("Hi")); in TEST() local
1821 const Matcher<const std::string&> m2 = WhenBase64Unescaped(EndsWith("!")); in TEST() local
1850 const Matcher<const std::string&> m2 = MatchesRegex(new RE("a.*z")); in TEST() local
1872 Matcher<const char*> m2 = MatchesRegex(new RE("a.*")); in TEST() local
1889 const Matcher<const std::string&> m2 = ContainsRegex(new RE("a.*z")); in TEST() local
1911 Matcher<const char*> m2 = ContainsRegex(new RE("a.*")); in TEST() local
1928 Matcher<const ::std::wstring&> m2 = StrEq(L"Hello"); in TEST() local
1950 Matcher<::std::wstring> m2 = StrEq(L"\xD3\x576\x8D3\xC74D"); in TEST() local
1968 Matcher<::std::wstring> m2 = StrNe(::std::wstring(L"Hello")); in TEST() local
1985 Matcher<const ::std::wstring&> m2 = StrCaseEq(L"Hello"); in TEST() local
2002 Matcher<const ::std::wstring&> m2 = StrCaseEq(str1); in TEST() local
2027 Matcher<::std::wstring> m2 = StrCaseNe(::std::wstring(L"Hello")); in TEST() local
2043 const Matcher<const ::std::wstring&> m2 = HasSubstr(L"foo"); in TEST() local
2055 const Matcher<const wchar_t*> m2 = HasSubstr(L"foo"); in TEST() local
2075 const Matcher<const ::std::wstring&> m2 = StartsWith(L"Hi"); in TEST() local
2096 const Matcher<const ::std::wstring&> m2 = EndsWith(::std::wstring(L"Hi")); in TEST() local
2143 ConstructNoArgMatcher m2; in TEST() local