Lines Matching refs:OTHER
12 * For other documentation see http://code.google.com/apis/v8/
539 // callback. The Global itself is unusable for anything else. No v8 other api
583 * and create a new one with the contents of other if other is non empty
586 V8_INLINE void Reset(Isolate* isolate, const Local<S>& other);
590 * and create a new one with the contents of other if other is non empty
593 V8_INLINE void Reset(Isolate* isolate, const PersistentBase<S>& other);
713 PersistentBase(const PersistentBase& other) = delete; // NOLINT
907 V8_INLINE Global(Global&& other) : PersistentBase<T>(other.val_) { // NOLINT
908 other.val_ = nullptr;
1645 * CachedData instance is still valid; the tag has no other meaing.
1932 OTHER,
2000 * clone spec. Other V8 embedders may throw some other appropriate exception
3747 * For other types, this will return an empty MaybeLocal<Array> (without
4506 * Since the embedder is on the other side of the API, it cannot unpack the
5185 * daylight savings time, or other date / time configuration
7216 * other isolates. The embedder can create multiple isolates and use them in
7844 * |kStartWait| and after finishing waiting with one of the other
8105 * context was depending on state from other contexts or not.
8173 * copy strings and other parameters it needs to keep around.
8204 * Might be empty on other platforms.
8762 V8_INLINE bool operator==(const Maybe& other) const {
8763 return (IsJust() == other.IsJust()) &&
8764 (!IsJust() || FromJust() == other.FromJust());
8767 V8_INLINE bool operator!=(const Maybe& other) const {
8768 return !operator==(other);
8801 V8_INLINE bool operator==(const Maybe& other) const {
8802 return IsJust() == other.IsJust();
8805 V8_INLINE bool operator!=(const Maybe& other) const {
8806 return !operator==(other);
9265 * constraint is not violated. In addition to any other synchronization
9272 * any time. In other words, the scope of a v8::Locker is a critical section.
9302 * where you want to release the V8 lock for other threads to use.
9555 // other types do not implement the Cast method.
9694 void PersistentBase<T>::Reset(Isolate* isolate, const Local<S>& other) {
9697 if (other.IsEmpty()) return;
9698 this->val_ = New(isolate, other.val_);
9705 const PersistentBase<S>& other) {
9708 if (other.IsEmpty()) return;
9709 this->val_ = New(isolate, other.val_);