Lines Matching defs:other
1 // Copyright Joyent, Inc. and other Node contributors.
567 OnScopeLeaveImpl(const OnScopeLeaveImpl& other) = delete;
568 OnScopeLeaveImpl& operator=(const OnScopeLeaveImpl& other) = delete;
569 OnScopeLeaveImpl(OnScopeLeaveImpl&& other)
570 : fn_(std::move(other.fn_)), active_(other.active_) {
571 other.active_ = false;
611 MallocedBuffer(MallocedBuffer&& other) : data(other.data), size(other.size) {
612 other.data = nullptr;
614 MallocedBuffer& operator=(MallocedBuffer&& other) {
616 return *new(this) MallocedBuffer(std::move(other));
832 constexpr bool operator==(const FastStringKey& other) const;