Lines Matching defs:other
219 V8_INLINE TracedReference(TracedReference&& other) noexcept {
221 *this = std::move(other);
229 V8_INLINE TracedReference(TracedReference<S>&& other) noexcept {
231 *this = std::move(other);
238 V8_INLINE TracedReference(const TracedReference& other) {
240 *this = other;
248 V8_INLINE TracedReference(const TracedReference<S>& other) {
250 *this = other;
277 * the contents of other if other is non empty
280 V8_INLINE void Reset(Isolate* isolate, const Local<S>& other);
351 void TracedReference<T>::Reset(Isolate* isolate, const Local<S>& other) {
354 if (other.IsEmpty()) return;
356 this->New(isolate, other.val_, &this->val_,