Home | History | Annotate | Download | only in include

Lines Matching defs:val_

220   V8_INLINE Local() : val_(0) {}
223 : val_(reinterpret_cast<T*>(*that)) {
235 V8_INLINE bool IsEmpty() const { return val_ == 0; }
240 V8_INLINE void Clear() { val_ = 0; }
242 V8_INLINE T* operator->() const { return val_; }
244 V8_INLINE T* operator*() const { return val_; }
254 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
255 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
263 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
264 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
336 explicit V8_INLINE Local(T* that) : val_(that) {}
338 T* val_;
362 V8_INLINE MaybeLocal() : val_(nullptr) {}
365 : val_(reinterpret_cast<T*>(*that)) {
369 V8_INLINE bool IsEmpty() const { return val_ == nullptr; }
373 out->val_ = IsEmpty() ? nullptr : this->val_;
382 return IsEmpty() ? default_value : Local<S>(val_);
386 T* val_;
501 V8_INLINE bool IsEmpty() const { return val_ == NULL; }
502 V8_INLINE void Empty() { val_ = 0; }
510 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
511 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
519 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
520 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
631 explicit V8_INLINE PersistentBase(T* val) : val_(val) {}
636 T* val_;
768 V8_INLINE T* operator*() const { return this->val_; }
803 : PersistentBase<T>(PersistentBase<T>::New(isolate, that.val_)) {
809 V8_INLINE Global(Global&& other) : PersistentBase<T>(other.val_) { // NOLINT
810 other.val_ = nullptr;
821 this->val_ = rhs.val_;
822 rhs.val_ = nullptr;
841 V8_INLINE T* operator*() const { return this->val_; }
2867 return object.val_->InternalFieldCount();
2886 return object.val_->GetAlignedPointerFromInternalField(index);
7660 return New(isolate, that.val_);
7665 return New(isolate, that.val_);
7695 if (V8_UNLIKELY(val_ == nullptr)) V8::ToLocalEmpty();
7696 return Local<T>(val_);
7727 internal::Object** p = reinterpret_cast<internal::Object**>(that.val_);
7728 this->val_ = reinterpret_cast<T*>(V8::CopyPersistent(p));
7737 return I::GetNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
7747 I::GetNodeState(reinterpret_cast<internal::Object**>(this->val_));
7757 return I::GetNodeState(reinterpret_cast<internal::Object**>(this->val_)) ==
7765 V8::DisposeGlobal(reinterpret_cast<internal::Object**>(this->val_));
7766 val_ = 0;
7776 this->val_ = New(isolate, other.val_);
7787 this->val_ = New(isolate, other.val_);
7797 V8::MakeWeak(reinterpret_cast<internal::Object**>(this->val_), parameter,
7803 V8::MakeWeak(reinterpret_cast<internal::Object***>(&this->val_));
7810 V8::ClearWeak(reinterpret_cast<internal::Object**>(this->val_)));
7817 reinterpret_cast<internal::Object**>(this->val_),
7825 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
7835 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
7845 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_), true,
7854 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_);
7864 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_);
8738 SetObjectGroupId(reinterpret_cast<v8::internal::Object**>(object.val_), id);
8747 reinterpret_cast<v8::internal::Object**>(object.val_));
8756 SetReference(reinterpret_cast<v8::internal::Object**>(parent.val_),
8757 reinterpret_cast<v8::internal::Object**>(child.val_));