Lines Matching refs:location_
38 V8_INLINE MaybeHandle(Handle<S> handle) : location_(handle.location_) {}
45 : location_(maybe_handle.location_) {}
50 V8_INLINE void Assert() const { DCHECK_NOT_NULL(location_); }
51 V8_INLINE void Check() const { CHECK_NOT_NULL(location_); }
55 return Handle<T>(location_);
61 if (location_ == nullptr) {
65 *out = Handle<T>(location_);
73 return reinterpret_cast<Address>(location_);
76 bool is_null() const { return location_ == nullptr; }
79 Address* location_ = nullptr;
82 // other's location_.