Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhiddenapi_flags.h162 : dex_flags_(helper::ToUint(val) | domain_apis) {
170 uint32_t value = (dex_flags_ & kValueBitMask); in GetValue()
182 uint32_t GetDomainApis() const { return (dex_flags_ & kDomainApiBitMask); } in GetDomainApis()
184 uint32_t dex_flags_; variable
189 explicit ApiList(uint32_t dex_flags) : dex_flags_(dex_flags) { in ApiList()
190 DCHECK_EQ(dex_flags_, (dex_flags_ & kValueBitMask) | (dex_flags_ & kDomainApiBitMask)); in ApiList()
204 uint32_t GetDexFlags() const { return dex_flags_; } in GetDexFlags()
247 bool operator==(const ApiList& other) const { return dex_flags_ == other.dex_flags_; }
249 bool operator<(const ApiList& other) const { return dex_flags_ < other.dex_flags_; }
304 return helper::MatchesBitMask(helper::ToBit(DomainApi::kTestApi), dex_flags_); in IsTestApi()