Lines Matching defs:obj
21 VULKAN_HPP_CONSTEXPR_14 VULKAN_HPP_INLINE T exchange( T & obj, U && newValue )24 return std::exchange<T>( obj, std::forward<U>( newValue ) );26 T oldValue = std::move( obj );27 obj = std::forward<U>( newValue );