/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/ |
D | DestroyObjectTests.cpp | 56 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/ |
D | TextureMock.h | 29 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));
|
D | CommandBufferMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in CommandBufferMock() 29 this->CommandBufferBase::DestroyImpl(); in CommandBufferMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | QuerySetMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in QuerySetMock() 29 this->QuerySetBase::DestroyImpl(); in QuerySetMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | SamplerMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in SamplerMock() 29 this->SamplerBase::DestroyImpl(); in SamplerMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | PipelineLayoutMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in PipelineLayoutMock() 29 this->PipelineLayoutBase::DestroyImpl(); in PipelineLayoutMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | BindGroupMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BindGroupMock() 29 this->BindGroupBase::DestroyImpl(); in BindGroupMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | ExternalTextureMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in ExternalTextureMock() 29 this->ExternalTextureBase::DestroyImpl(); in ExternalTextureMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | BindGroupLayoutMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BindGroupLayoutMock() 29 this->BindGroupLayoutBase::DestroyImpl(); in BindGroupLayoutMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | ComputePipelineMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in ComputePipelineMock() 29 this->ComputePipelineBase::DestroyImpl(); in ComputePipelineMock() 36 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | RenderPipelineMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in RenderPipelineMock() 29 this->RenderPipelineBase::DestroyImpl(); in RenderPipelineMock() 36 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | SwapChainMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in SwapChainMock() 29 this->SwapChainBase::DestroyImpl(); in SwapChainMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | BufferMock.h | 28 ON_CALL(*this, DestroyImpl).WillByDefault([this]() { in BufferMock() 29 this->BufferBase::DestroyImpl(); in BufferMock() 34 MOCK_METHOD(void, DestroyImpl, (), (override));
|
D | ShaderModuleMock.cpp | 20 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/ |
D | ComputePipelineGL.cpp | 30 void ComputePipeline::DestroyImpl() { in DestroyImpl() function in dawn_native::opengl::ComputePipeline 31 ComputePipelineBase::DestroyImpl(); in DestroyImpl()
|
D | TextureGL.h | 44 void DestroyImpl() override; 60 void DestroyImpl() override;
|
D | BindGroupGL.cpp | 55 void BindGroup::DestroyImpl() { in DestroyImpl() function in dawn_native::opengl::BindGroup 56 BindGroupBase::DestroyImpl(); in DestroyImpl()
|
D | SamplerGL.cpp | 81 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/ |
D | QuerySetD3D12.cpp | 65 void QuerySet::DestroyImpl() { in DestroyImpl() function in dawn_native::d3d12::QuerySet 66 QuerySetBase::DestroyImpl(); in DestroyImpl()
|
D | ComputePipelineD3D12.cpp | 71 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/ |
D | PipelineLayoutVk.cpp | 67 void PipelineLayout::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::PipelineLayout 68 PipelineLayoutBase::DestroyImpl(); in DestroyImpl()
|
D | QuerySetVk.cpp | 104 void QuerySet::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::QuerySet 105 QuerySetBase::DestroyImpl(); in DestroyImpl()
|
D | ComputePipelineVk.cpp | 94 void ComputePipeline::DestroyImpl() { in DestroyImpl() function in dawn_native::vulkan::ComputePipeline 95 ComputePipelineBase::DestroyImpl(); in DestroyImpl()
|
D | SamplerVk.cpp | 114 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/ |
D | BindGroupMTL.mm | 27 void BindGroup::DestroyImpl() { 28 BindGroupBase::DestroyImpl();
|