Lines Matching refs:val_
218 V8_INLINE Local() : val_(0) {}
221 : val_(reinterpret_cast<T*>(*that)) {
233 V8_INLINE bool IsEmpty() const { return val_ == 0; }
238 V8_INLINE void Clear() { val_ = 0; }
240 V8_INLINE T* operator->() const { return val_; }
242 V8_INLINE T* operator*() const { return val_; }
252 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
253 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
261 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
262 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
334 : val_(that) {}
336 T* val_;
360 V8_INLINE MaybeLocal() : val_(nullptr) {}
363 : val_(reinterpret_cast<T*>(*that)) {
367 V8_INLINE bool IsEmpty() const { return val_ == nullptr; }
371 out->val_ = IsEmpty() ? nullptr : this->val_;
380 return IsEmpty() ? default_value : Local<S>(val_);
384 T* val_;
516 V8_INLINE bool IsEmpty() const { return val_ == NULL; }
517 V8_INLINE void Empty() { val_ = 0; }
525 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
526 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
534 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
535 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
654 explicit V8_INLINE PersistentBase(T* val) : val_(val) {}
659 T* val_;
791 V8_INLINE T* operator*() const { return this->val_; }
826 : PersistentBase<T>(PersistentBase<T>::New(isolate, that.val_)) {
832 V8_INLINE Global(Global&& other) : PersistentBase<T>(other.val_) { // NOLINT
833 other.val_ = nullptr;
844 this->val_ = rhs.val_;
845 rhs.val_ = nullptr;
864 V8_INLINE T* operator*() const { return this->val_; }
2827 return object.val_->InternalFieldCount();
2846 return object.val_->GetAlignedPointerFromInternalField(index);
7257 return New(isolate, that.val_);
7262 return New(isolate, that.val_);
7292 if (V8_UNLIKELY(val_ == nullptr)) V8::ToLocalEmpty();
7293 return Local<T>(val_);
7324 internal::Object** p = reinterpret_cast<internal::Object**>(that.val_);
7325 this->val_ = reinterpret_cast<T*>(V8::CopyPersistent(p));
7334 return I::GetNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
7344 I::GetNodeState(reinterpret_cast<internal::Object**>(this->val_));
7354 return I::GetNodeState(reinterpret_cast<internal::Object**>(this->val_)) ==
7362 V8::DisposeGlobal(reinterpret_cast<internal::Object**>(this->val_));
7363 val_ = 0;
7373 this->val_ = New(isolate, other.val_);
7384 this->val_ = New(isolate, other.val_);
7395 V8::MakeWeak(reinterpret_cast<internal::Object**>(this->val_), parameter,
7415 V8::MakeWeak(reinterpret_cast<internal::Object**>(this->val_), parameter,
7427 V8::MakeWeak(reinterpret_cast<internal::Object**>(this->val_), parameter,
7436 V8::ClearWeak(reinterpret_cast<internal::Object**>(this->val_)));
7444 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
7454 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
7464 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_), true,
7473 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_);
7483 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_);
8345 SetObjectGroupId(reinterpret_cast<v8::internal::Object**>(object.val_), id);
8354 reinterpret_cast<v8::internal::Object**>(object.val_));
8363 SetReference(reinterpret_cast<v8::internal::Object**>(parent.val_),
8364 reinterpret_cast<v8::internal::Object**>(child.val_));