Lines Matching refs:Ref
111 using testing::Ref;
577 Matcher<Base&> m3 = Ref(d); in TEST()
586 Matcher<const int&> m1 = Ref(n); in TEST()
941 Matcher<int&> m = Ref(a); in TEST()
949 Matcher<int&> m = Ref(n); in TEST()
960 Matcher<const int&> m = Ref(a); in TEST()
972 Matcher<const Base&> m1 = Ref(base); in TEST()
977 m1 = Ref(derived); in TEST()
985 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), n), in TEST()
989 EXPECT_THAT(Explain(Matcher<const int&>(Ref(n)), m), in TEST()
2286 EXPECT_TRUE(Matches(AllOf(Ref(n), Eq(0)))(n)); in TEST()
2287 EXPECT_FALSE(Matches(Ref(m))(n)); in TEST()
2312 const Matcher<const int&> ref_n = Ref(n); in TEST()
2422 EXPECT_THAT(n, AllOf(Le(7), Ref(n))); in TEST()
2423 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, ::testing::Not(::testing::Ref(n))), in TEST()
2427 EXPECT_FATAL_FAILURE(ASSERT_THAT(n, ::testing::Not(::testing::Ref(n))), in TEST()
3074 Matcher<const AClass&> m = Property(&AClass::x, Ref(x)); in TEST()
3077 m = Property(&AClass::x, Not(Ref(x))); in TEST()
3285 Matcher<double&> matcher = ResultOf(&DoubleFunction, Ref(x)); in TEST()
3294 ResultOf(&RefUncopyableFunction, Ref(obj)); in TEST()
3307 Matcher<const string&> matcher = ResultOf(&StringFunction, Ref(s)); in TEST()