Lines Matching defs:move
895 : Deleter( std::move( static_cast<Deleter &>( other ) ) )
913 *static_cast<Deleter *>( this ) = std::move( static_cast<Deleter &>( other ) );
6611 ResultValue( Result r, T && v ) VULKAN_HPP_NOEXCEPT( VULKAN_HPP_NOEXCEPT( T( std::move( v ) ) ) )
6615 : result( r ), value( std::move( v ) )
6638 , value( std::move( v ) )
6643 "asTuple() on an l-value is deprecated, as it implicitly moves the UniqueHandle out of the ResultValue. Use asTuple() on an r-value instead, requiring to explicitly move the UniqueHandle." )
6647 return std::make_tuple( result, std::move( value ) );
6652 return std::make_tuple( result, std::move( value ) );
6668 , value( std::move( v ) )
6673 "asTuple() on an l-value is deprecated, as it implicitly moves the UniqueHandle out of the ResultValue. Use asTuple() on an r-value instead, requiring to explicitly move the UniqueHandle." )
6677 return std::make_tuple( result, std::move( value ) );
6682 return std::make_tuple( result, std::move( value ) );
6734 return ResultValue<T>( result, std::move( data ) );
6737 return std::move( data );