Searched defs:is_live_ (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dnodes.h1271 is_live_(false) {
1289 void SetDead() { is_live_ = false; }
1290 void SetLive() { is_live_ = true; }
1291 bool IsDead() const { return !is_live_; }
1292 bool IsLive() const { return is_live_; }
1300 bool is_live_; member in class:art::HPhi
/art/runtime/
H A Ddex_file.h808 : name_(NULL), descriptor_(NULL), signature_(NULL), start_address_(0), is_live_(false) {}
814 bool is_live_; // Is the local defined and live. member in struct:art::DexFile::LocalInfo
831 if (local_cb != NULL && local_in_reg[reg].is_live_) {

Completed in 813 milliseconds