Home | History | Annotate | Download | only in include

Lines Matching refs:OTHER

12  * For other documentation see http://code.google.com/apis/v8/
166 bool operator==(const UniqueId& other) const {
167 return data_ == other.data_;
170 bool operator!=(const UniqueId& other) const {
171 return data_ != other.data_;
174 bool operator<(const UniqueId& other) const {
175 return data_ < other.data_;
440 // callback. The Global itself is unusable for anything else. No v8 other api
504 * and create a new one with the contents of other if other is non empty
507 V8_INLINE void Reset(Isolate* isolate, const Local<S>& other);
511 * and create a new one with the contents of other if other is non empty
514 V8_INLINE void Reset(Isolate* isolate, const PersistentBase<S>& other);
605 * handles only depend on other partially dependent handles and these
655 PersistentBase(const PersistentBase& other) = delete; // NOLINT
832 V8_INLINE Global(Global&& other) : PersistentBase<T>(other.val_) { // NOLINT
833 other.val_ = nullptr;
1383 * CachedData instance is still valid; the tag has no other meaing.
1637 enum StateTag { JS, GC, COMPILER, OTHER, EXTERNAL, IDLE };
3933 * daylight savings time, or other date / time configuration
5276 * other isolates. The embedder can create multiple isolates and use them in
5671 * be provided for kGCTypeMarkSweepCompact collections, for all other
5899 * context was depending on state from other contexts or not.
5929 * copy strings and other parameters it needs to keep around.
5960 * Might be empty on other platforms.
6482 V8_INLINE bool operator==(const Maybe& other) const {
6483 return (IsJust() == other.IsJust()) &&
6484 (!IsJust() || FromJust() == other.FromJust());
6487 V8_INLINE bool operator!=(const Maybe& other) const {
6488 return !operator==(other);
6881 * constraint is not violated. In addition to any other synchronization
6888 * any time. In other words, the scope of a v8::Locker is a critical section.
6918 * where you want to release the V8 lock for other threads to use.
7369 void PersistentBase<T>::Reset(Isolate* isolate, const Local<S>& other) {
7372 if (other.IsEmpty()) return;
7373 this->val_ = New(isolate, other.val_);
7380 const PersistentBase<S>& other) {
7383 if (other.IsEmpty()) return;
7384 this->val_ = New(isolate, other.val_);