Lines Matching refs:other
20 Descriptor::Descriptor(const Descriptor& other) {
21 handle_ = other.handle_;
22 uuid_ = other.uuid_;
23 permissions_ = other.permissions_;
26 Descriptor& Descriptor::operator=(const Descriptor& other) {
27 if (*this == other) return *this;
29 handle_ = other.handle_;
30 uuid_ = other.uuid_;
31 permissions_ = other.permissions_;
36 bool Descriptor::Equals(const Descriptor& other) const {
37 return handle_ == other.handle_ && uuid_ == other.uuid_ &&
38 permissions_ == other.permissions_;