Lines Matching defs:other
199 CopyCounter(const CopyCounter& other)
200 : fID(other.fID)
201 , fCounter(other.fCounter) {
206 void operator=(const CopyCounter& other) {
207 fID = other.fID;
208 fCounter = other.fCounter;
212 CopyCounter(CopyCounter&& other) { *this = std::move(other); }
213 void operator=(CopyCounter&& other) {
214 fID = other.fID;
215 fCounter = other.fCounter;
219 bool operator==(const CopyCounter& other) const {
220 return fID == other.fID;