Lines Matching refs:location_
44 V8_INLINE explicit HandleBase(Address* location) : location_(location) {}
51 V8_INLINE bool is_null() const { return location_ == nullptr; }
55 V8_INLINE Address address() const { return bit_cast<Address>(location_); }
61 SLOW_DCHECK(location_ == nullptr || IsDereferenceAllowed());
62 return location_;
76 Address* location_;
157 SLOW_DCHECK(location_ != nullptr && IsDereferenceAllowed());
158 *location_ = new_value.ptr();
176 // Handles of different classes are allowed to access each other's location_.
179 // MaybeHandle is allowed to access location_.