Lines Matching defs:move
35 : offset_(offset), message_(std::move(message)) {
55 std::string&& message() && { return std::move(message_); }
77 Result(Result<S>&& other) V8_NOEXCEPT : value_(std::move(other.value_)),
78 error_(std::move(other.error_)) {}
80 explicit Result(WasmError error) : error_(std::move(error)) {}
84 value_ = std::move(other.value_);
85 error_ = std::move(other.error_);
92 WasmError&& error() && { return std::move(error_); }
97 // {std::move(result).value()}.
104 return std::move(value_);
120 // Explicitly allow move-construction. Disallow copy.