Lines Matching defs:move

2103     /*! \brief Move constructor to forward move to the superclass correctly.
2106 Device(Device&& dev) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(dev)) {}
2108 /*! \brief Move assignment to forward move to the superclass correctly.
2113 detail::Wrapper<cl_type>::operator=(std::move(dev));
2668 /*! \brief Move constructor to forward move to the superclass correctly.
2671 Context(Context&& ctx) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(ctx)) {}
2673 /*! \brief Move assignment to forward move to the superclass correctly.
2678 detail::Wrapper<cl_type>::operator=(std::move(ctx));
3086 /*! \brief Move constructor to forward move to the superclass correctly.
3089 Memory(Memory&& mem) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(mem)) {}
3091 /*! \brief Move assignment to forward move to the superclass correctly.
3096 detail::Wrapper<cl_type>::operator=(std::move(mem));
3327 /*! \brief Move constructor to forward move to the superclass correctly.
3330 Buffer(Buffer&& buf) CL_HPP_NOEXCEPT : Memory(std::move(buf)) {}
3332 /*! \brief Move assignment to forward move to the superclass correctly.
3337 Memory::operator=(std::move(buf));
3462 /*! \brief Move constructor to forward move to the superclass correctly.
3465 BufferD3D10(BufferD3D10&& buf) CL_HPP_NOEXCEPT : Buffer(std::move(buf)) {}
3467 /*! \brief Move assignment to forward move to the superclass correctly.
3472 Buffer::operator=(std::move(buf));
3548 /*! \brief Move constructor to forward move to the superclass correctly.
3551 BufferGL(BufferGL&& buf) CL_HPP_NOEXCEPT : Buffer(std::move(buf)) {}
3553 /*! \brief Move assignment to forward move to the superclass correctly.
3558 Buffer::operator=(std::move(buf));
3617 /*! \brief Move constructor to forward move to the superclass correctly.
3620 Image(Image&& img) CL_HPP_NOEXCEPT : Memory(std::move(img)) {}
3622 /*! \brief Move assignment to forward move to the superclass correctly.
3627 Memory::operator=(std::move(img));
3734 /*! \brief Move constructor to forward move to the superclass correctly.
3737 Image1D(Image1D&& img) CL_HPP_NOEXCEPT : Image(std::move(img)) {}
3739 /*! \brief Move assignment to forward move to the superclass correctly.
3744 Image::operator=(std::move(img));
3811 /*! \brief Move constructor to forward move to the superclass correctly.
3814 Image1DBuffer(Image1DBuffer&& img) CL_HPP_NOEXCEPT : Image(std::move(img)) {}
3816 /*! \brief Move assignment to forward move to the superclass correctly.
3821 Image::operator=(std::move(img));
3892 /*! \brief Move constructor to forward move to the superclass correctly.
3895 Image1DArray(Image1DArray&& img) CL_HPP_NOEXCEPT : Image(std::move(img)) {}
3897 /*! \brief Move assignment to forward move to the superclass correctly.
3902 Image::operator=(std::move(img));
4022 /*! \brief Move constructor to forward move to the superclass correctly.
4025 Image2D(Image2D&& img) CL_HPP_NOEXCEPT : Image(std::move(img)) {}
4027 /*! \brief Move assignment to forward move to the superclass correctly.
4032 Image::operator=(std::move(img));
4115 /*! \brief Move constructor to forward move to the superclass correctly.
4118 Image2DGL(Image2DGL&& img) CL_HPP_NOEXCEPT : Image2D(std::move(img)) {}
4120 /*! \brief Move assignment to forward move to the superclass correctly.
4125 Image2D::operator=(std::move(img));
4202 /*! \brief Move constructor to forward move to the superclass correctly.
4205 Image2DArray(Image2DArray&& img) CL_HPP_NOEXCEPT : Image(std::move(img)) {}
4207 /*! \brief Move assignment to forward move to the superclass correctly.
4212 Image::operator=(std::move(img));
4336 /*! \brief Move constructor to forward move to the superclass correctly.
4339 Image3D(Image3D&& img) CL_HPP_NOEXCEPT : Image(std::move(img)) {}
4341 /*! \brief Move assignment to forward move to the superclass correctly.
4346 Image::operator=(std::move(img));
4426 /*! \brief Move constructor to forward move to the superclass correctly.
4429 Image3DGL(Image3DGL&& img) CL_HPP_NOEXCEPT : Image3D(std::move(img)) {}
4431 /*! \brief Move assignment to forward move to the superclass correctly.
4436 Image3D::operator=(std::move(img));
4501 /*! \brief Move constructor to forward move to the superclass correctly.
4504 ImageGL(ImageGL&& img) CL_HPP_NOEXCEPT : Image(std::move(img)) {}
4506 /*! \brief Move assignment to forward move to the superclass correctly.
4511 Image::operator=(std::move(img));
4614 /*! \brief Move constructor to forward move to the superclass correctly.
4618 BufferRenderGL(BufferRenderGL&& buf) CL_HPP_NOEXCEPT : ImageGL(std::move(buf)) {}
4620 BufferRenderGL(BufferRenderGL&& buf) CL_HPP_NOEXCEPT : Image2DGL(std::move(buf)) {}
4624 /*! \brief Move assignment to forward move to the superclass correctly.
4630 ImageGL::operator=(std::move(buf));
4632 Image2DGL::operator=(std::move(buf));
4722 /*! \brief Move constructor to forward move to the superclass correctly.
4725 Sampler(Sampler&& sam) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(sam)) {}
4727 /*! \brief Move assignment to forward move to the superclass correctly.
4732 detail::Wrapper<cl_type>::operator=(std::move(sam));
4916 /*! \brief Move constructor to forward move to the superclass correctly.
4919 Kernel(Kernel&& kernel) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(kernel)) {}
4921 /*! \brief Move assignment to forward move to the superclass correctly.
4926 detail::Wrapper<cl_type>::operator=(std::move(kernel));
5251 /*! \brief Move constructor to forward move to the superclass correctly.
5254 Program(Program&& program) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(program)) {}
5256 /*! \brief Move assignment to forward move to the superclass correctly.
5261 detail::Wrapper<cl_type>::operator=(std::move(program));
5608 /*! \brief Move constructor to forward move to the superclass correctly.
5611 CommandQueue(CommandQueue&& queue) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(queue)) {}
5613 /*! \brief Move assignment to forward move to the superclass correctly.
5618 detail::Wrapper<cl_type>::operator=(std::move(queue));