Lines Matching refs:other
51 Sender(const Sender &other)
52 : channel_(other.channel_)
55 Sender(Sender &&other)
56 : channel_(other.channel_)
58 other.channel_ = nullptr;
61 Sender& operator=(const Sender &other)
63 channel_ = other.channel_;
67 Sender& operator=(Sender &&other)
69 channel_ = other.channel_;
70 other.channel_ = nullptr;
97 Receiver(const Receiver &other)
98 : channel_(other.channel_)
101 Receiver(Receiver &&other)
102 : channel_(other.channel_)
104 other.channel_ = nullptr;
107 Receiver& operator=(const Receiver &other)
109 channel_ = other.channel_;
113 Receiver& operator=(Receiver &&other)
115 channel_ = other.channel_;
116 other.channel_ = nullptr;