Home | History | Annotate | Download | only in include

Lines Matching refs:OTHER

12  * For other documentation see http://code.google.com/apis/v8/
168 bool operator==(const UniqueId& other) const {
169 return data_ == other.data_;
172 bool operator!=(const UniqueId& other) const {
173 return data_ != other.data_;
176 bool operator<(const UniqueId& other) const {
177 return data_ < other.data_;
445 // callback. The Global itself is unusable for anything else. No v8 other api
489 * and create a new one with the contents of other if other is non empty
492 V8_INLINE void Reset(Isolate* isolate, const Local<S>& other);
496 * and create a new one with the contents of other if other is non empty
499 V8_INLINE void Reset(Isolate* isolate, const PersistentBase<S>& other);
580 * handles only depend on other partially dependent handles and these
632 PersistentBase(const PersistentBase& other) = delete; // NOLINT
809 V8_INLINE Global(Global&& other) : PersistentBase<T>(other.val_) { // NOLINT
810 other.val_ = nullptr;
1360 * CachedData instance is still valid; the tag has no other meaing.
1614 enum StateTag { JS, GC, COMPILER, OTHER, EXTERNAL, IDLE };
3991 * daylight savings time, or other date / time configuration
5513 * other isolates. The embedder can create multiple isolates and use them in
5958 * be provided for kGCTypeMarkSweepCompact collections, for all other
6232 * context was depending on state from other contexts or not.
6271 * copy strings and other parameters it needs to keep around.
6302 * Might be empty on other platforms.
6887 V8_INLINE bool operator==(const Maybe& other) const {
6888 return (IsJust() == other.IsJust()) &&
6889 (!IsJust() || FromJust() == other.FromJust());
6892 V8_INLINE bool operator!=(const Maybe& other) const {
6893 return !operator==(other);
7287 * constraint is not violated. In addition to any other synchronization
7294 * any time. In other words, the scope of a v8::Locker is a critical section.
7324 * where you want to release the V8 lock for other threads to use.
7772 void PersistentBase<T>::Reset(Isolate* isolate, const Local<S>& other) {
7775 if (other.IsEmpty()) return;
7776 this->val_ = New(isolate, other.val_);
7783 const PersistentBase<S>& other) {
7786 if (other.IsEmpty()) return;
7787 this->val_ = New(isolate, other.val_);