Lines Matching refs:expected_
156 explicit ValueEqImpl(const Value* expected) : expected_(expected) { in ValueEqImpl()
160 return expected_->Equals(&x); in MatchAndExplain()
164 *os << "is equal to " << *expected_; in DescribeTo()
168 *os << "is not equal to " << *expected_; in DescribeNegationTo()
174 const Value* expected_; variable
181 ValueEqMatcher(TValue expected) : expected_(std::move(expected)) { in ValueEqMatcher()
187 return ::testing::Matcher<T>(new ValueEqImpl<T>(&expected_));
191 TValue expected_;
198 ValueEqPointerMatcher(const TValue* expected) : expected_(expected) { in ValueEqPointerMatcher()
204 return ::testing::Matcher<T>(new ValueEqImpl<T>(expected_));
208 const TValue* expected_;