Home
last modified time | relevance | path

Searched refs:IsDereferenceAllowed (Results 1 – 3 of 3) sorted by relevance

/third_party/node/deps/v8/src/handles/
Dhandles.h61 SLOW_DCHECK(location_ == nullptr || IsDereferenceAllowed()); in location()
67 bool V8_EXPORT_PRIVATE IsDereferenceAllowed() const;
70 bool V8_EXPORT_PRIVATE IsDereferenceAllowed() const { return true; }
140 SLOW_DCHECK(IsDereferenceAllowed());
157 SLOW_DCHECK(location_ != nullptr && IsDereferenceAllowed()); in PatchValue()
Dhandles-inl.h30 SLOW_DCHECK((this->location_ == nullptr || this->IsDereferenceAllowed()) && in is_identical_to()
31 (that.location_ == nullptr || that.IsDereferenceAllowed())); in is_identical_to()
Dhandles.cc38 bool HandleBase::IsDereferenceAllowed() const { in IsDereferenceAllowed() function in v8::internal::HandleBase