Lines Matching defs:retainObject

1758     Wrapper(const cl_type &obj, bool retainObject) : object_(obj) 
1760 if (retainObject) {
1873 Wrapper(const cl_type &obj, bool retainObject) :
1879 if (retainObject) {
2110 explicit Device(const cl_device_id &device, bool retainObject = false) :
2111 detail::Wrapper<cl_type>(device, retainObject) { }
2424 * \param retainObject will cause the constructor to retain its cl object.
2429 explicit Platform(const cl_platform_id &platform, bool retainObject = false) :
2430 detail::Wrapper<cl_type>(platform, retainObject) { }
3007 explicit Context(const cl_context& context, bool retainObject = false) :
3008 detail::Wrapper<cl_type>(context, retainObject) { }
3143 * \param retainObject will cause the constructor to retain its cl object.
3149 explicit Event(const cl_event& event, bool retainObject = false) :
3150 detail::Wrapper<cl_type>(event, retainObject) { }
3329 * \param retainObject will cause the constructor to retain its cl object.
3335 explicit Memory(const cl_mem& memory, bool retainObject) :
3336 detail::Wrapper<cl_type>(memory, retainObject) { }
3935 * \param retainObject will cause the constructor to retain its cl object.
3940 explicit Buffer(const cl_mem& buffer, bool retainObject = false) :
3941 Memory(buffer, retainObject) { }
4071 * \param retainObject will cause the constructor to retain its cl object.
4076 explicit BufferD3D10(const cl_mem& buffer, bool retainObject = false) :
4077 Buffer(buffer, retainObject) { }
4160 * \param retainObject will cause the constructor to retain its cl object.
4165 explicit BufferGL(const cl_mem& buffer, bool retainObject = false) :
4166 Buffer(buffer, retainObject) { }
4257 * \param retainObject will cause the constructor to retain its cl object.
4262 explicit BufferRenderGL(const cl_mem& buffer, bool retainObject = false) :
4263 Buffer(buffer, retainObject) { }
4328 * \param retainObject will cause the constructor to retain its cl object.
4333 explicit Image(const cl_mem& image, bool retainObject = false) :
4334 Memory(image, retainObject) { }
4448 * \param retainObject will cause the constructor to retain its cl object.
4453 explicit Image1D(const cl_mem& image1D, bool retainObject = false) :
4454 Image(image1D, retainObject) { }
4536 * \param retainObject will cause the constructor to retain its cl object.
4541 explicit Image1DBuffer(const cl_mem& image1D, bool retainObject = false) :
4542 Image(image1D, retainObject) { }
4624 * \param retainObject will cause the constructor to retain its cl object.
4629 explicit Image1DArray(const cl_mem& imageArray, bool retainObject = false) :
4630 Image(imageArray, retainObject) { }
4863 * \param retainObject will cause the constructor to retain its cl object.
4868 explicit Image2D(const cl_mem& image2D, bool retainObject = false) :
4869 Image(image2D, retainObject) { }
4959 * \param retainObject will cause the constructor to retain its cl object.
4964 explicit Image2DGL(const cl_mem& image, bool retainObject = false) :
4965 Image2D(image, retainObject) { }
5057 * \param retainObject will cause the constructor to retain its cl object.
5062 explicit Image2DArray(const cl_mem& imageArray, bool retainObject = false) : Image(imageArray, retainObject) { }
5188 * \param retainObject will cause the constructor to retain its cl object.
5193 explicit Image3D(const cl_mem& image3D, bool retainObject = false) :
5194 Image(image3D, retainObject) { }
5280 * \param retainObject will cause the constructor to retain its cl object.
5285 explicit Image3DGL(const cl_mem& image, bool retainObject = false) :
5286 Image3D(image, retainObject) { }
5365 * \param retainObject will cause the constructor to retain its cl object.
5370 explicit ImageGL(const cl_mem& image, bool retainObject = false) :
5371 Image(image, retainObject) { }
5479 * \param retainObject will cause the constructor to retain its cl object.
5484 explicit Pipe(const cl_mem& pipe, bool retainObject = false) :
5485 Memory(pipe, retainObject) { }
5610 * \param retainObject will cause the constructor to retain its cl object.
5616 explicit Sampler(const cl_sampler& sampler, bool retainObject = false) :
5617 detail::Wrapper<cl_type>(sampler, retainObject) { }
5835 * \param retainObject will cause the constructor to retain its cl object.
5841 explicit Kernel(const cl_kernel& kernel, bool retainObject = false) :
5842 detail::Wrapper<cl_type>(kernel, retainObject) { }
6541 * \param retainObject will cause the constructor to retain its cl object.
6545 explicit Program(const cl_program& program, bool retainObject = false) :
6546 detail::Wrapper<cl_type>(program, retainObject) { }
7437 * \param retainObject will cause the constructor to retain its cl object.
7441 explicit CommandQueue(const cl_command_queue& commandQueue, bool retainObject = false) :
7442 detail::Wrapper<cl_type>(commandQueue, retainObject) { }
8817 * \param retainObject will cause the constructor to retain its cl object.
8821 explicit DeviceCommandQueue(const cl_command_queue& commandQueue, bool retainObject = false) :
8822 detail::Wrapper<cl_type>(commandQueue, retainObject) { }