Lines Matching refs:Wrapper

1814 class Wrapper  class
1823 Wrapper() : object_(NULL) { } in Wrapper() function in cl::detail::Wrapper
1825 Wrapper(const cl_type &obj) : object_(obj) { } in Wrapper() function in cl::detail::Wrapper
1827 ~Wrapper() in ~Wrapper()
1832 Wrapper(const Wrapper<cl_type>& rhs) in Wrapper() function in cl::detail::Wrapper
1839 Wrapper(Wrapper<cl_type>&& rhs) CL_HPP_NOEXCEPT in Wrapper() function in cl::detail::Wrapper
1846 Wrapper<cl_type>& operator = (const Wrapper<cl_type>& rhs) in operator =()
1857 Wrapper<cl_type>& operator = (Wrapper<cl_type>&& rhs) in operator =()
1868 Wrapper<cl_type>& operator = (const cl_type &rhs) in operator =()
1895 class Wrapper<cl_device_id> class
1917 Wrapper() : object_(NULL), referenceCountable_(false) in Wrapper() function in cl::detail::Wrapper
1921 Wrapper(const cl_type &obj) : object_(obj), referenceCountable_(false) in Wrapper() function in cl::detail::Wrapper
1926 ~Wrapper() in ~Wrapper()
1931 Wrapper(const Wrapper<cl_type>& rhs) in Wrapper() function in cl::detail::Wrapper
1939 Wrapper(Wrapper<cl_type>&& rhs) CL_HPP_NOEXCEPT in Wrapper() function in cl::detail::Wrapper
1948 Wrapper<cl_type>& operator = (const Wrapper<cl_type>& rhs) in operator =()
1960 Wrapper<cl_type>& operator = (Wrapper<cl_type>&& rhs) in operator =()
1973 Wrapper<cl_type>& operator = (const cl_type &rhs) in operator =()
2051 class Device : public detail::Wrapper<cl_device_id>
2055 Device() : detail::Wrapper<cl_type>() { } in Device()
2061 …__CL_EXPLICIT_CONSTRUCTORS Device(const cl_device_id &device) : detail::Wrapper<cl_type>(device) {… in Device()
2075 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
2082 Device(const Device& dev) : detail::Wrapper<cl_type>(dev) {} in Device()
2089 detail::Wrapper<cl_type>::operator=(dev); in operator =()
2097 Device(Device&& dev) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(dev)) {} in Device()
2104 detail::Wrapper<cl_type>::operator=(std::move(dev)); in operator =()
2204 class Platform : public detail::Wrapper<cl_platform_id>
2208 Platform() : detail::Wrapper<cl_type>() { } in Platform()
2214 …__CL_EXPLICIT_CONSTRUCTORS Platform(const cl_platform_id &platform) : detail::Wrapper<cl_type>(pla… in Platform()
2222 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
2491 : public detail::Wrapper<cl_context>
2651 Context(const Context& ctx) : detail::Wrapper<cl_type>(ctx) {} in Context()
2658 detail::Wrapper<cl_type>::operator=(ctx); in operator =()
2666 Context(Context&& ctx) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(ctx)) {} in Context()
2673 detail::Wrapper<cl_type>::operator=(std::move(ctx)); in operator =()
2731 Context() : detail::Wrapper<cl_type>() { } in Context()
2738 …__CL_EXPLICIT_CONSTRUCTORS Context(const cl_context& context) : detail::Wrapper<cl_type>(context) … in Context()
2747 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
2863 class Event : public detail::Wrapper<cl_event>
2867 Event() : detail::Wrapper<cl_type>() { } in Event()
2874 __CL_EXPLICIT_CONSTRUCTORS Event(const cl_event& event) : detail::Wrapper<cl_type>(event) { } in Event()
2883 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
3042 class Memory : public detail::Wrapper<cl_mem>
3046 Memory() : detail::Wrapper<cl_type>() { } in Memory()
3053 __CL_EXPLICIT_CONSTRUCTORS Memory(const cl_mem& memory) : detail::Wrapper<cl_type>(memory) { } in Memory()
3062 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
3069 Memory(const Memory& mem) : detail::Wrapper<cl_type>(mem) {} in Memory()
3076 detail::Wrapper<cl_type>::operator=(mem); in operator =()
3084 Memory(Memory&& mem) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(mem)) {} in Memory()
3091 detail::Wrapper<cl_type>::operator=(std::move(mem)); in operator =()
4653 class Sampler : public detail::Wrapper<cl_sampler>
4689 …__CL_EXPLICIT_CONSTRUCTORS Sampler(const cl_sampler& sampler) : detail::Wrapper<cl_type>(sampler) … in Sampler()
4698 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
4705 Sampler(const Sampler& sam) : detail::Wrapper<cl_type>(sam) {} in Sampler()
4712 detail::Wrapper<cl_type>::operator=(sam); in operator =()
4720 Sampler(Sampler&& sam) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(sam)) {} in Sampler()
4727 detail::Wrapper<cl_type>::operator=(std::move(sam)); in operator =()
4870 class Kernel : public detail::Wrapper<cl_kernel>
4883 … __CL_EXPLICIT_CONSTRUCTORS Kernel(const cl_kernel& kernel) : detail::Wrapper<cl_type>(kernel) { } in Kernel()
4892 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
4899 Kernel(const Kernel& kernel) : detail::Wrapper<cl_type>(kernel) {} in Kernel()
4906 detail::Wrapper<cl_type>::operator=(kernel); in operator =()
4914 Kernel(Kernel&& kernel) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(kernel)) {} in Kernel()
4921 detail::Wrapper<cl_type>::operator=(std::move(kernel)); in operator =()
5016 class Program : public detail::Wrapper<cl_program>
5223 …__CL_EXPLICIT_CONSTRUCTORS Program(const cl_program& program) : detail::Wrapper<cl_type>(program) … in Program()
5227 detail::Wrapper<cl_type>::operator=(rhs); in operator =()
5234 Program(const Program& program) : detail::Wrapper<cl_type>(program) {} in Program()
5241 detail::Wrapper<cl_type>::operator=(program); in operator =()
5249 Program(Program&& program) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(program)) {} in Program()
5256 detail::Wrapper<cl_type>::operator=(std::move(program)); in operator =()
5503 class CommandQueue : public detail::Wrapper<cl_command_queue>
5591 CommandQueue(const CommandQueue& queue) : detail::Wrapper<cl_type>(queue) {} in CommandQueue()
5598 detail::Wrapper<cl_type>::operator=(queue); in operator =()
5606 … CommandQueue(CommandQueue&& queue) CL_HPP_NOEXCEPT : detail::Wrapper<cl_type>(std::move(queue)) {} in CommandQueue()
5613 detail::Wrapper<cl_type>::operator=(std::move(queue)); in operator =()
5681 …__CL_EXPLICIT_CONSTRUCTORS CommandQueue(const cl_command_queue& commandQueue) : detail::Wrapper<cl… in CommandQueue()
5685 detail::Wrapper<cl_type>::operator=(rhs); in operator =()