Lines Matching defs:other
12 // in the documentation and/or other materials provided with the
160 // as it is useful information to the reader; on the other hand, an
285 MatcherBase(const MatcherBase& other)
286 : vtable_(other.vtable_), buffer_(other.buffer_) {
290 MatcherBase& operator=(const MatcherBase& other) {
291 if (this == &other) return *this;
293 vtable_ = other.vtable_;
294 buffer_ = other.buffer_;
299 MatcherBase(MatcherBase&& other)
300 : vtable_(other.vtable_), buffer_(other.buffer_) {
301 other.vtable_ = nullptr;
304 MatcherBase& operator=(MatcherBase&& other) {
305 if (this == &other) return *this;
307 vtable_ = other.vtable_;
308 buffer_ = other.buffer_;
309 other.vtable_ = nullptr;
880 // We could define similar monomorphic matchers for other comparison