Home
last modified time | relevance | path

Searched refs:DestroyImpl (Results 1 – 25 of 130) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/
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).Times(1); in TEST_F()
[all …]
/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/mocks/
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));
DCommandBufferMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in CommandBufferMock()
29 this->CommandBufferBase::DestroyImpl(); in CommandBufferMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DQuerySetMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in QuerySetMock()
29 this->QuerySetBase::DestroyImpl(); in QuerySetMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DSamplerMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in SamplerMock()
29 this->SamplerBase::DestroyImpl(); in SamplerMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DPipelineLayoutMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in PipelineLayoutMock()
29 this->PipelineLayoutBase::DestroyImpl(); in PipelineLayoutMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DBindGroupMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BindGroupMock()
29 this->BindGroupBase::DestroyImpl(); in BindGroupMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DExternalTextureMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in ExternalTextureMock()
29 this->ExternalTextureBase::DestroyImpl(); in ExternalTextureMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DBindGroupLayoutMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BindGroupLayoutMock()
29 this->BindGroupLayoutBase::DestroyImpl(); in BindGroupLayoutMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DComputePipelineMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in ComputePipelineMock()
29 this->ComputePipelineBase::DestroyImpl(); in ComputePipelineMock()
36 MOCK_METHOD(void, DestroyImpl, (), (override));
DRenderPipelineMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in RenderPipelineMock()
29 this->RenderPipelineBase::DestroyImpl(); in RenderPipelineMock()
36 MOCK_METHOD(void, DestroyImpl, (), (override));
DSwapChainMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in SwapChainMock()
29 this->SwapChainBase::DestroyImpl(); in SwapChainMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
DBufferMock.h28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BufferMock()
29 this->BufferBase::DestroyImpl(); in BufferMock()
34 MOCK_METHOD(void, DestroyImpl, (), (override));
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/
DComputePipelineGL.cpp30 void ComputePipeline::DestroyImpl() { in DestroyImpl() function in dawn_native::opengl::ComputePipeline
31 ComputePipelineBase::DestroyImpl(); in DestroyImpl()
DTextureGL.h44 void DestroyImpl() override;
60 void DestroyImpl() override;
DBindGroupGL.cpp55 void BindGroup::DestroyImpl() { in DestroyImpl() function in dawn_native::opengl::BindGroup
56 BindGroupBase::DestroyImpl(); in DestroyImpl()
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/
DQuerySetD3D12.cpp65 void QuerySet::DestroyImpl() { in DestroyImpl() function in dawn_native::d3d12::QuerySet
66 QuerySetBase::DestroyImpl(); in DestroyImpl()
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/
DPipelineLayoutVk.cpp67 void PipelineLayout::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::PipelineLayout
68 PipelineLayoutBase::DestroyImpl(); in DestroyImpl()
DQuerySetVk.cpp104 void QuerySet::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::QuerySet
105 QuerySetBase::DestroyImpl(); in DestroyImpl()
DComputePipelineVk.cpp94 void ComputePipeline::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::ComputePipeline
95 ComputePipelineBase::DestroyImpl(); in DestroyImpl()
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/metal/
DBindGroupMTL.mm27 void BindGroup::DestroyImpl() {
28 BindGroupBase::DestroyImpl();

123456