Home
last modified time | relevance | path

Searched refs:expected_ (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/aapt2/test/
DCommon.h156 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_));
[all …]
/frameworks/av/media/codec2/core/include/
DC2BufferBase.h85 inline explicit C2MemoryUsage(uint64_t expected_) in C2MemoryUsage()
86 : expected(expected_) { } in C2MemoryUsage()