Lines Matching defs:other
68 NonTrivialCopyable& operator=(const NonTrivialCopyable& other)
70 if (this != &other) {
71 this->a_ = other.a_;
86 NonTrivialNonThrowMove& operator=(const NonTrivialNonThrowMove& other)
88 if (this != &other) {
89 a_ = other.a_;
97 NonTrivialNonThrowMove& operator=(NonTrivialNonThrowMove&& other)
99 a_ = other.a_;
172 bool operator==(const Star& other) const
174 return name_ == other.name_ && id_ == other.id_;