Lines Matching defs:retainObject

1658     Wrapper(const cl_type &obj, bool retainObject) : object_(obj) 
1660 if (retainObject) {
1776 Wrapper(const cl_type &obj, bool retainObject) :
1782 if (retainObject) {
2013 explicit Device(const cl_device_id &device, bool retainObject = false) :
2014 detail::Wrapper<cl_type>(device, retainObject) { }
2280 * \param retainObject will cause the constructor to retain its cl object.
2285 explicit Platform(const cl_platform_id &platform, bool retainObject = false) :
2286 detail::Wrapper<cl_type>(platform, retainObject) { }
2863 explicit Context(const cl_context& context, bool retainObject = false) :
2864 detail::Wrapper<cl_type>(context, retainObject) { }
2999 * \param retainObject will cause the constructor to retain its cl object.
3005 explicit Event(const cl_event& event, bool retainObject = false) :
3006 detail::Wrapper<cl_type>(event, retainObject) { }
3185 * \param retainObject will cause the constructor to retain its cl object.
3191 explicit Memory(const cl_mem& memory, bool retainObject) :
3192 detail::Wrapper<cl_type>(memory, retainObject) { }
3791 * \param retainObject will cause the constructor to retain its cl object.
3796 explicit Buffer(const cl_mem& buffer, bool retainObject = false) :
3797 Memory(buffer, retainObject) { }
3927 * \param retainObject will cause the constructor to retain its cl object.
3932 explicit BufferD3D10(const cl_mem& buffer, bool retainObject = false) :
3933 Buffer(buffer, retainObject) { }
4016 * \param retainObject will cause the constructor to retain its cl object.
4021 explicit BufferGL(const cl_mem& buffer, bool retainObject = false) :
4022 Buffer(buffer, retainObject) { }
4113 * \param retainObject will cause the constructor to retain its cl object.
4118 explicit BufferRenderGL(const cl_mem& buffer, bool retainObject = false) :
4119 Buffer(buffer, retainObject) { }
4184 * \param retainObject will cause the constructor to retain its cl object.
4189 explicit Image(const cl_mem& image, bool retainObject = false) :
4190 Memory(image, retainObject) { }
4304 * \param retainObject will cause the constructor to retain its cl object.
4309 explicit Image1D(const cl_mem& image1D, bool retainObject = false) :
4310 Image(image1D, retainObject) { }
4392 * \param retainObject will cause the constructor to retain its cl object.
4397 explicit Image1DBuffer(const cl_mem& image1D, bool retainObject = false) :
4398 Image(image1D, retainObject) { }
4480 * \param retainObject will cause the constructor to retain its cl object.
4485 explicit Image1DArray(const cl_mem& imageArray, bool retainObject = false) :
4486 Image(imageArray, retainObject) { }
4719 * \param retainObject will cause the constructor to retain its cl object.
4724 explicit Image2D(const cl_mem& image2D, bool retainObject = false) :
4725 Image(image2D, retainObject) { }
4815 * \param retainObject will cause the constructor to retain its cl object.
4820 explicit Image2DGL(const cl_mem& image, bool retainObject = false) :
4821 Image2D(image, retainObject) { }
4913 * \param retainObject will cause the constructor to retain its cl object.
4918 explicit Image2DArray(const cl_mem& imageArray, bool retainObject = false) : Image(imageArray, retainObject) { }
5044 * \param retainObject will cause the constructor to retain its cl object.
5049 explicit Image3D(const cl_mem& image3D, bool retainObject = false) :
5050 Image(image3D, retainObject) { }
5136 * \param retainObject will cause the constructor to retain its cl object.
5141 explicit Image3DGL(const cl_mem& image, bool retainObject = false) :
5142 Image3D(image, retainObject) { }
5221 * \param retainObject will cause the constructor to retain its cl object.
5226 explicit ImageGL(const cl_mem& image, bool retainObject = false) :
5227 Image(image, retainObject) { }
5335 * \param retainObject will cause the constructor to retain its cl object.
5340 explicit Pipe(const cl_mem& pipe, bool retainObject = false) :
5341 Memory(pipe, retainObject) { }
5466 * \param retainObject will cause the constructor to retain its cl object.
5472 explicit Sampler(const cl_sampler& sampler, bool retainObject = false) :
5473 detail::Wrapper<cl_type>(sampler, retainObject) { }
5691 * \param retainObject will cause the constructor to retain its cl object.
5697 explicit Kernel(const cl_kernel& kernel, bool retainObject = false) :
5698 detail::Wrapper<cl_type>(kernel, retainObject) { }
6263 * \param retainObject will cause the constructor to retain its cl object.
6267 explicit Program(const cl_program& program, bool retainObject = false) :
6268 detail::Wrapper<cl_type>(program, retainObject) { }
7087 * \param retainObject will cause the constructor to retain its cl object.
7091 explicit CommandQueue(const cl_command_queue& commandQueue, bool retainObject = false) :
7092 detail::Wrapper<cl_type>(commandQueue, retainObject) { }
8346 * \param retainObject will cause the constructor to retain its cl object.
8350 explicit DeviceCommandQueue(const cl_command_queue& commandQueue, bool retainObject = false) :
8351 detail::Wrapper<cl_type>(commandQueue, retainObject) { }