Home
last modified time | relevance | path

Searched refs:DestroyImpl (Results 1 - 25 of 123) sorted by relevance

12345

/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/
H A DDestroyObjectTests.cpp56 EXPECT_CALL(*mTexture.Get(), DestroyImpl).Times(1); in GetTexture()
65 EXPECT_CALL(*mPipelineLayout.Get(), DestroyImpl).Times(1); in GetPipelineLayout()
79 EXPECT_CALL(*mVsModule.Get(), DestroyImpl).Times(1); in GetVertexShaderModule()
92 EXPECT_CALL(*mCsModule.Get(), DestroyImpl).Times(1); in GetComputeShaderModule()
109 EXPECT_CALL(bindGroupMock, DestroyImpl).Times(1); in TEST_F()
120 EXPECT_CALL(*bindGroupMock, DestroyImpl).Times(1); in TEST_F()
134 EXPECT_CALL(bindGroupLayoutMock, DestroyImpl).Times(1); in TEST_F()
145 EXPECT_CALL(*bindGroupLayoutMock, DestroyImpl).Times(1); in TEST_F()
161 EXPECT_CALL(bufferMock, DestroyImpl).Times(1); in TEST_F()
171 EXPECT_CALL(bufferMock, DestroyImpl) in TEST_F()
[all...]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/mocks/
H A DTextureMock.h29 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in TextureMock()
30 this->TextureBase::DestroyImpl(); in TextureMock()
35 MOCK_METHOD(void, DestroyImpl, (), (override));
44 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DRenderPipelineMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in RenderPipelineMock()
29 this->RenderPipelineBase::DestroyImpl(); in RenderPipelineMock()
36 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DExternalTextureMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in ExternalTextureMock()
29 this->ExternalTextureBase::DestroyImpl(); in ExternalTextureMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DPipelineLayoutMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in PipelineLayoutMock()
29 this->PipelineLayoutBase::DestroyImpl(); in PipelineLayoutMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DQuerySetMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in QuerySetMock()
29 this->QuerySetBase::DestroyImpl(); in QuerySetMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DSamplerMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in SamplerMock()
29 this->SamplerBase::DestroyImpl(); in SamplerMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DComputePipelineMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in ComputePipelineMock()
29 this->ComputePipelineBase::DestroyImpl(); in ComputePipelineMock()
36 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DBindGroupLayoutMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BindGroupLayoutMock()
29 this->BindGroupLayoutBase::DestroyImpl(); in BindGroupLayoutMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DCommandBufferMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in CommandBufferMock()
29 this->CommandBufferBase::DestroyImpl(); in CommandBufferMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DBindGroupMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BindGroupMock()
29 this->BindGroupBase::DestroyImpl(); in BindGroupMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DSwapChainMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in SwapChainMock()
29 this->SwapChainBase::DestroyImpl(); in SwapChainMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DBufferMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BufferMock()
29 this->BufferBase::DestroyImpl(); in BufferMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
H A DShaderModuleMock.cpp20 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in ShaderModuleMock()
21 this->ShaderModuleBase::DestroyImpl(); in ShaderModuleMock()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DComputePipelineGL.cpp30 void ComputePipeline::DestroyImpl() { in DestroyImpl() function in dawn_native::opengl::ComputePipeline
31 ComputePipelineBase::DestroyImpl(); in DestroyImpl()
H A DTextureGL.h44 void DestroyImpl() override;
60 void DestroyImpl() override;
H A DBindGroupGL.cpp55 void BindGroup::DestroyImpl() { in DestroyImpl() function in dawn_native::opengl::BindGroup
56 BindGroupBase::DestroyImpl(); in DestroyImpl()
H A DSamplerGL.cpp81 void Sampler::DestroyImpl() { in DestroyImpl() function in dawn_native::opengl::Sampler
82 SamplerBase::DestroyImpl(); in DestroyImpl()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DQuerySetD3D12.cpp65 void QuerySet::DestroyImpl() { in DestroyImpl() function in dawn_native::d3d12::QuerySet
66 QuerySetBase::DestroyImpl(); in DestroyImpl()
H A DComputePipelineD3D12.cpp71 void ComputePipeline::DestroyImpl() { in DestroyImpl() function in dawn_native::d3d12::ComputePipeline
72 ComputePipelineBase::DestroyImpl(); in DestroyImpl()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DPipelineLayoutVk.cpp67 void PipelineLayout::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::PipelineLayout
68 PipelineLayoutBase::DestroyImpl(); in DestroyImpl()
H A DQuerySetVk.cpp104 void QuerySet::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::QuerySet
105 QuerySetBase::DestroyImpl(); in DestroyImpl()
H A DSamplerVk.cpp114 void Sampler::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::Sampler
115 SamplerBase::DestroyImpl(); in DestroyImpl()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DRenderBundleEncoder.cpp105 void RenderBundleEncoder::DestroyImpl() { in DestroyImpl() function in dawn_native::RenderBundleEncoder
106 RenderEncoderBase::DestroyImpl(); in DestroyImpl()
H A DTexture.h101 void DestroyImpl() override;
143 void DestroyImpl() override;

Completed in 9 milliseconds

12345