Lines Matching defs:other
86 // In other words, this VerifyCallback is a non-op. It is imperative
220 Builder(Builder&& other) = delete;
221 Builder& operator=(Builder&& other) = delete;
259 ByteSource(ByteSource&& other) noexcept;
262 ByteSource& operator=(ByteSource&& other) noexcept;
561 inline EnginePointer(EnginePointer&& other) noexcept
562 : engine(other.engine),
563 finish_on_exit(other.finish_on_exit) {
564 other.release();
569 inline EnginePointer& operator=(EnginePointer&& other) noexcept {
570 if (this == &other) return *this;
572 return *new (this) EnginePointer(std::move(other));