Searched defs:expected_ (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tools/aapt2/test/
H A DCommon.h152 explicit ValueEqImpl(const Value* expected) : expected_(expected) {
156 return expected_->Equals(&x);
160 *os << "is equal to " << *expected_; variable
164 *os << "is not equal to " << *expected_; variable
170 const Value* expected_; member in class:aapt::test::ValueEqImpl
176 ValueEqMatcher(TValue expected) : expected_(std::move(expected)) {
181 return ::testing::Matcher<T>(new ValueEqImpl<T>(&expected_));
185 TValue expected_; member in class:aapt::test::ValueEqMatcher
191 ValueEqPointerMatcher(const TValue* expected) : expected_(expected) {
196 return ::testing::Matcher<T>(new ValueEqImpl<T>(expected_));
200 const TValue* expected_; member in class:aapt::test::ValueEqPointerMatcher
[all...]

Completed in 527 milliseconds