Lines Matching defs:other
44 ConcurrentMap(const ConcurrentMap &other)
46 operator=(std::move(other));
49 ConcurrentMap(std::map<_Key, _Tp> &&other) noexcept
51 operator=(std::move(other));
54 ConcurrentMap &operator=(std::map<_Key, _Tp> &&other) noexcept
56 if (&entries_ == &other) {
60 entries_ = std::move(other);
64 ConcurrentMap &operator=(const ConcurrentMap &other) noexcept
66 if (this == &other) {
69 auto tmp = other.Clone();
75 ConcurrentMap(ConcurrentMap &&other) noexcept
77 operator=(std::move(other));
80 ConcurrentMap &operator=(ConcurrentMap &&other) noexcept
82 if (this == &other) {
85 auto tmp = other.Steal();