Lines Matching refs:location_
21 : location_(HandleScope::GetHandle(isolate, object)) {}
24 : location_(LocalHandleScope::GetHandle(isolate->heap(), object)) {}
27 : location_(LocalHandleScope::GetHandle(local_heap, object)) {}
30 SLOW_DCHECK((this->location_ == nullptr || this->IsDereferenceAllowed()) &&
31 (that.location_ == nullptr || that.IsDereferenceAllowed()));
32 if (this->location_ == that.location_) return true;
33 if (this->location_ == nullptr || that.location_ == nullptr) return false;
34 return Object(*this->location_) == Object(*that.location_);
47 return Handle<T>(that.location_);