Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhiddenapi_flags.h166 : dex_flags_(helper::ToUint(val) | domain_apis) {
174 uint32_t value = (dex_flags_ & kValueBitMask); in GetValue()
188 uint32_t GetDomainApis() const { return (dex_flags_ & kDomainApiBitMask); } in GetDomainApis()
190 uint32_t dex_flags_; variable
195 explicit ApiList(uint32_t dex_flags) : dex_flags_(dex_flags) { in ApiList()
196 DCHECK_EQ(dex_flags_, (dex_flags_ & kValueBitMask) | (dex_flags_ & kDomainApiBitMask)); in ApiList()
210 uint32_t GetDexFlags() const { return dex_flags_; } in GetDexFlags()
273 bool operator==(const ApiList& other) const { return dex_flags_ == other.dex_flags_; }
275 bool operator<(const ApiList& other) const { return dex_flags_ < other.dex_flags_; }
276 bool operator>(const ApiList& other) const { return dex_flags_ > other.dex_flags_; }
[all …]