Home | History | Annotate | Download | only in test

Lines Matching defs:matcher2

3293   Matcher<Uncopyable&> matcher2 =
3296 EXPECT_TRUE(matcher2.Matches(obj));
3297 EXPECT_FALSE(matcher2.Matches(obj2));
3385 Matcher<const int&> matcher2 = ResultOf(ReferencingFunction, Eq(&n));
3386 EXPECT_TRUE(matcher2.Matches(n));
3387 EXPECT_FALSE(matcher2.Matches(n2));