Lines Matching defs:m3

561   Matcher<IntValue> m3 = Truly(IsPositiveIntValue);
562 Matcher<int> m4 = MatcherCast<int>(m3);
691 Matcher<char> m3 = SafeMatcherCast<char>(TypedEq<int>('a'));
692 EXPECT_TRUE(m3.Matches('a'));
693 EXPECT_FALSE(m3.Matches('b'));
705 Matcher<Base&> m3 = Ref(d);
706 Matcher<Derived&> m4 = SafeMatcherCast<Derived&>(m3);
1024 Matcher<void*> m3 = IsNull();
1026 EXPECT_TRUE(m3.Matches(p3));
1027 EXPECT_FALSE(m3.Matches(reinterpret_cast<void*>(0xbeef)));
1192 Matcher<string> m3 = StrEq(str);
1193 EXPECT_EQ("is equal to \"\\012\\045\\0\\08\\0\\0\"", Describe(m3));
1240 Matcher<const string&> m3 = StrCaseEq(str1);
1241 EXPECT_TRUE(m3.Matches(str2));
1243 EXPECT_FALSE(m3.Matches(str2 + "x"));
1245 EXPECT_FALSE(m3.Matches(str2));
1246 EXPECT_FALSE(m3.Matches(string(str2, 0, 9)));
1360 Matcher<pair<const char*, int> > m3 = Pair("foo", 42);
1558 Matcher<const ::std::wstring&> m3 = StrEq(L"\xD3\x576\x8D3\xC74D");
1559 EXPECT_TRUE(m3.Matches(L"\xD3\x576\x8D3\xC74D"));
1560 EXPECT_FALSE(m3.Matches(L"\xD3\x576\x8D3\xC74E"));
1633 Matcher<const ::std::wstring&> m3 = StrCaseEq(str1);
1634 EXPECT_TRUE(m3.Matches(str2));
1636 EXPECT_FALSE(m3.Matches(str2 + L"x"));
1638 EXPECT_FALSE(m3.Matches(str2));
1639 EXPECT_FALSE(m3.Matches(::std::wstring(str2, 0, 9)));
1749 Matcher<const ::wstring&> m3 = StrEq(L"\xD3\x576\x8D3\xC74D");
1750 EXPECT_TRUE(m3.Matches(L"\xD3\x576\x8D3\xC74D"));
1751 EXPECT_FALSE(m3.Matches(L"\xD3\x576\x8D3\xC74E"));
1824 Matcher<const ::wstring&> m3 = StrCaseEq(str1);
1825 EXPECT_TRUE(m3.Matches(str2));
1827 EXPECT_FALSE(m3.Matches(str2 + L"x"));
1829 EXPECT_FALSE(m3.Matches(str2));
1830 EXPECT_FALSE(m3.Matches(::wstring(str2, 0, 9)));
2042 Matcher<int&> m3 = Not(m);
2193 Matcher<int&> m3 = AllOf(greater_than_5, m2);
2378 Matcher<int&> m3 = AnyOf(greater_than_5, m2);
2746 Matcher<RawType> m3 = matcher_maker(1.0);
2747 EXPECT_TRUE(m3.Matches(close_to_one_));
2748 EXPECT_FALSE(m3.Matches(further_from_one_));
2751 EXPECT_FALSE(m3.Matches(0.0));
2843 Matcher<RawType> m3 = matcher_maker(ParentType::infinity_, 0.0);
2844 EXPECT_TRUE(m3.Matches(ParentType::infinity_));
2845 EXPECT_FALSE(m3.Matches(ParentType::close_to_infinity_));
2846 EXPECT_FALSE(m3.Matches(-ParentType::infinity_));
2935 Matcher<float> m3 = FloatEq(nan1_);
2936 EXPECT_EQ("never matches", Describe(m3));
2937 EXPECT_EQ("is anything", DescribeNegation(m3));
2949 Matcher<float> m3 = NanSensitiveFloatEq(nan1_);
2950 EXPECT_EQ("is NaN", Describe(m3));
2951 EXPECT_EQ("isn't NaN", DescribeNegation(m3));
2977 Matcher<float> m3 = FloatNear(nan1_, 0.0);
2978 EXPECT_EQ("never matches", Describe(m3));
2979 EXPECT_EQ("is anything", DescribeNegation(m3));
2993 Matcher<float> m3 = NanSensitiveFloatNear(nan1_, 0.1f);
2994 EXPECT_EQ("is NaN", Describe(m3));
2995 EXPECT_EQ("isn't NaN", DescribeNegation(m3));
3050 Matcher<double> m3 = DoubleEq(nan1_);
3051 EXPECT_EQ("never matches", Describe(m3));
3052 EXPECT_EQ("is anything", DescribeNegation(m3));
3064 Matcher<double> m3 = NanSensitiveDoubleEq(nan1_);
3065 EXPECT_EQ("is NaN", Describe(m3));
3066 EXPECT_EQ("isn't NaN", DescribeNegation(m3));
3092 Matcher<double> m3 = DoubleNear(nan1_, 0.0);
3093 EXPECT_EQ("never matches", Describe(m3));
3094 EXPECT_EQ("is anything", DescribeNegation(m3));
3121 Matcher<double> m3 = NanSensitiveDoubleNear(nan1_, 0.1);
3122 EXPECT_EQ("is NaN", Describe(m3));
3123 EXPECT_EQ("isn't NaN", DescribeNegation(m3));
4146 Matcher<vector<int> > m3 = SizeIs(AnyOf(0, 3));
4151 EXPECT_EQ("whose size 0 matches", Explain(m3, container));
4158 EXPECT_EQ("whose size 2 doesn't match", Explain(m3, container));
4613 Matcher<vector<int> > m3 = BeginEndDistanceIs(AnyOf(0, 3));
4621 Explain(m3, container));
4633 Explain(m3, container));