Home
last modified time | relevance | path

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

/art/libartbase/base/
Dhiddenapi_flags.h159 : dex_flags_(helper::ToUint(val) | domain_apis) {
167 uint32_t value = (dex_flags_ & kValueBitMask); in GetValue()
179 uint32_t GetDomainApis() const { return (dex_flags_ & kDomainApiBitMask); } in GetDomainApis()
181 uint32_t dex_flags_; variable
186 explicit ApiList(uint32_t dex_flags) : dex_flags_(dex_flags) { in ApiList()
187 DCHECK_EQ(dex_flags_, (dex_flags_ & kValueBitMask) | (dex_flags_ & kDomainApiBitMask)); in ApiList()
200 uint32_t GetDexFlags() const { return dex_flags_; } in GetDexFlags()
243 bool operator==(const ApiList& other) const { return dex_flags_ == other.dex_flags_; }
245 bool operator<(const ApiList& other) const { return dex_flags_ < other.dex_flags_; }
300 return helper::MatchesBitMask(helper::ToBit(DomainApi::kTestApi), dex_flags_); in IsTestApi()