Home | History | Annotate | Download | only in src

Lines Matching defs:code_range_

924   bool exists() { return this != NULL && code_range_ != NULL; }
926 if (this == NULL || code_range_ == NULL) return NULL;
927 return static_cast<Address>(code_range_->address());
930 if (this == NULL || code_range_ == NULL) return false;
931 Address start = static_cast<Address>(code_range_->address());
932 return start <= address && address < start + code_range_->size();
949 VirtualMemory* code_range_;