Lines Matching refs:expected_
152 explicit ValueEqImpl(const Value* expected) : expected_(expected) { in ValueEqImpl()
156 return expected_->Equals(&x); in MatchAndExplain()
160 *os << "is equal to " << *expected_; in DescribeTo()
164 *os << "is not equal to " << *expected_; in DescribeNegationTo()
170 const Value* expected_; variable
177 ValueEqMatcher(TValue expected) : expected_(std::move(expected)) { in ValueEqMatcher()
183 return ::testing::Matcher<T>(new ValueEqImpl<T>(&expected_));
187 TValue expected_;
194 ValueEqPointerMatcher(const TValue* expected) : expected_(expected) { in ValueEqPointerMatcher()
200 return ::testing::Matcher<T>(new ValueEqImpl<T>(expected_));
204 const TValue* expected_;