Home | History | Annotate | Download | only in include

Lines Matching refs:val_

203   V8_INLINE Handle() : val_(0) {}
216 : val_(reinterpret_cast<T*>(*that)) {
228 V8_INLINE bool IsEmpty() const { return val_ == 0; }
233 V8_INLINE void Clear() { val_ = 0; }
235 V8_INLINE T* operator->() const { return val_; }
237 V8_INLINE T* operator*() const { return val_; }
246 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
247 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
255 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
256 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
291 return New(isolate, that.val_);
295 return New(isolate, that.val_);
319 V8_INLINE explicit Handle(T* val) : val_(val) {}
323 T* val_;
469 V8_INLINE bool IsEmpty() const { return val_ == 0; }
473 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
474 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
481 internal::Object** a = reinterpret_cast<internal::Object**>(this->val_);
482 internal::Object** b = reinterpret_cast<internal::Object**>(that.val_);
571 explicit V8_INLINE PersistentBase(T* val) : val_(val) {}
576 T* val_;
711 V8_INLINE T* operator*() const { return this->val_; }
751 : PersistentBase<T>(PersistentBase<T>::New(isolate, that.val_)) {
758 : PersistentBase<T>(rvalue.object->val_) {
759 rvalue.object->val_ = 0;
769 this->val_ = rhs.val_;
770 rhs.val_ = 0;
2406 return object.val_->InternalFieldCount();
2425 return object.val_->GetAlignedPointerFromInternalField(index);
5964 return New(isolate, that.val_);
5969 return New(isolate, that.val_);
6022 internal::Object** p = reinterpret_cast<internal::Object**>(that.val_);
6023 this->val_ = reinterpret_cast<T*>(V8::CopyPersistent(p));
6032 return I::GetNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
6042 I::GetNodeState(reinterpret_cast<internal::Object**>(this->val_));
6052 return I::GetNodeState(reinterpret_cast<internal::Object**>(this->val_)) ==
6060 V8::DisposeGlobal(reinterpret_cast<internal::Object**>(this->val_));
6061 val_ = 0;
6071 this->val_ = New(isolate, other.val_);
6082 this->val_ = New(isolate, other.val_);
6093 V8::MakeWeak(reinterpret_cast<internal::Object**>(this->val_),
6112 V8::ClearWeak(reinterpret_cast<internal::Object**>(this->val_)));
6120 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
6130 I::UpdateNodeFlag(reinterpret_cast<internal::Object**>(this->val_),
6139 old = this->val_;
6140 this->val_ = NULL;
6149 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_);
6159 internal::Object** obj = reinterpret_cast<internal::Object**>(this->val_);
6892 SetObjectGroupId(reinterpret_cast<v8::internal::Object**>(object.val_), id);
6901 reinterpret_cast<v8::internal::Object**>(object.val_));
6910 SetReference(reinterpret_cast<v8::internal::Object**>(parent.val_),
6911 reinterpret_cast<v8::internal::Object**>(child.val_));