Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhiddenapi_flags.h169 : dex_flags_(helper::ToUint(val) | domain_apis) {
177 uint32_t value = (dex_flags_ & kValueBitMask); in GetValue()
191 uint32_t GetDomainApis() const { return (dex_flags_ & kDomainApiBitMask); } in GetDomainApis()
193 uint32_t dex_flags_; variable
198 explicit ApiList(uint32_t dex_flags) : dex_flags_(dex_flags) { in ApiList()
199 DCHECK_EQ(dex_flags_, (dex_flags_ & kValueBitMask) | (dex_flags_ & kDomainApiBitMask)); in ApiList()
214 uint32_t GetDexFlags() const { return dex_flags_; } in GetDexFlags()
261 bool operator==(const ApiList& other) const { return dex_flags_ == other.dex_flags_; }
263 bool operator<(const ApiList& other) const { return dex_flags_ < other.dex_flags_; }
264 bool operator>(const ApiList& other) const { return dex_flags_ > other.dex_flags_; }
[all …]