Home
last modified time | relevance | path

Searched refs:Destroy (Results 1 - 25 of 130) sorted by relevance

123456

/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DDestroyTests.cpp84 // Destroy before submit will result in error, and nothing drawn
89 vertexBuffer.Destroy(); in TEST_P()
95 // Destroy after submit will draw successfully
103 vertexBuffer.Destroy(); in TEST_P()
115 vertexBuffer.Destroy(); in TEST_P()
124 // Destroy texture before submit should fail submit
127 renderPass.color.Destroy(); in TEST_P()
131 // Destroy after submit will draw successfully
139 renderPass.color.Destroy(); in TEST_P()
151 renderPass.color.Destroy(); in TEST_P()
[all...]
H A DMemoryAllocationStressTests.cpp36 buffer.Destroy(); in TEST_P()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/
H A DCommandBufferValidationTests.cpp321 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
330 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
336 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
345 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
356 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
362 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
363 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
369 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
370 dawn_native::FromAPI(encoder.Get())->Destroy(); in TEST_F()
H A DBufferValidationTests.cpp304 buffer.Destroy(); in TEST_F()
309 buffer.Destroy(); in TEST_F()
384 buf.Destroy(); in TEST_F()
396 buf.Destroy(); in TEST_F()
432 .WillOnce(InvokeWithoutArgs([&]() { buf.Destroy(); })); in TEST_F()
441 .WillOnce(InvokeWithoutArgs([&]() { buf.Destroy(); })); in TEST_F()
470 buf.Destroy(); in TEST_F()
473 // Test that it is valid to Destroy an unmapped buffer
477 buf.Destroy(); in TEST_F()
481 buf.Destroy(); in TEST_F()
[all...]
H A DQueryValidationTests.cpp76 querySet.Destroy(); in TEST_F()
77 querySet.Destroy(); in TEST_F()
137 occlusionQuerySet.Destroy(); in TEST_F()
297 timestampQuerySet.Destroy(); in TEST_F()
343 timestampQuerySet.Destroy(); in TEST_F()
424 timestampQuerySet.Destroy(); in TEST_F()
550 querySet.Destroy(); in TEST_F()
620 destination.Destroy(); in TEST_F()
H A DExternalTextureTests.cpp201 externalTexture.Destroy(); in TEST_F()
253 texture.Destroy(); in TEST_F()
300 externalTexture.Destroy(); in TEST_F()
346 texture.Destroy(); in TEST_F()
H A DQueueSubmitValidationTests.cpp258 unusedBuffer.Destroy(); in TEST_F()
284 unusedBuffer.Destroy(); in TEST_F()
328 unusedTexture.Destroy(); in TEST_F()
357 unusedTexture.Destroy(); in TEST_F()
/third_party/protobuf/src/google/protobuf/
H A Darenastring_unittest.cc67 field.Destroy(&default_value, NULL); in TEST()
78 field2.Destroy(&default_value, NULL); in TEST()
93 field.Destroy(&default_value, &arena); in TEST()
104 field2.Destroy(&default_value, &arena); in TEST()
120 field.Destroy(&default_value, &arena); in TEST()
131 field2.Destroy(&default_value, &arena); in TEST()
/third_party/skia/third_party/externals/dawn/src/tests/unittests/native/
H A DDestroyObjectTests.cpp112 bindGroupMock.Destroy(); in TEST_F()
137 bindGroupLayoutMock.Destroy(); in TEST_F()
164 bufferMock.Destroy(); in TEST_F()
176 bufferMock.Destroy(); in TEST_F()
221 commandBufferMock.Destroy(); in TEST_F()
246 computePipelineMock.Destroy(); in TEST_F()
284 externalTextureMock.Destroy(); in TEST_F()
302 pipelineLayoutMock.Destroy(); in TEST_F()
328 querySetMock.Destroy(); in TEST_F()
353 renderPipelineMock.Destroy(); in TEST_F()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_internal.cc36 void CordRep::Destroy(CordRep* rep) { in Destroy() function in absl::cord_internal::CordRep
56 CordRepBtree::Destroy(rep->btree()); in Destroy()
59 CordRepRing::Destroy(rep->ring()); in Destroy()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp319 LLVMMemoryManagerDestroyCallback Destroy; member
353 assert(Functions.Destroy && in SimpleBindingMemoryManager()
354 "No Destroy function provided!"); in SimpleBindingMemoryManager()
358 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager()
396 LLVMMemoryManagerDestroyCallback Destroy) { in LLVMCreateSimpleMCJITMemoryManager()
399 !Destroy) in LLVMCreateSimpleMCJITMemoryManager()
406 functions.Destroy = Destroy; in LLVMCreateSimpleMCJITMemoryManager()
391 LLVMCreateSimpleMCJITMemoryManager( void *Opaque, LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection, LLVMMemoryManagerAllocateDataSectionCallback AllocateDataSection, LLVMMemoryManagerFinalizeMemoryCallback FinalizeMemory, LLVMMemoryManagerDestroyCallback Destroy) LLVMCreateSimpleMCJITMemoryManager() argument
/third_party/node/deps/v8/src/heap/cppgc/
H A Dheap-page.cc48 void BasePage::Destroy(BasePage* page) { in Destroy() function in cppgc::internal::BasePage
57 LargePage::Destroy(LargePage::From(page)); in Destroy()
59 NormalPage::Destroy(NormalPage::From(page)); in Destroy()
153 void NormalPage::Destroy(NormalPage* page) { in Destroy() function in cppgc::internal::NormalPage
239 void LargePage::Destroy(LargePage* page) { in Destroy() function in cppgc::internal::LargePage
244 // Destroy() happens on the mutator but another concurrent sweeper task may in Destroy()
H A Dheap-page.h31 static void Destroy(BasePage*);
151 static void Destroy(NormalPage*);
221 static void Destroy(LargePage*);
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DObjectBase.cpp74 Destroy(); in DeleteThis()
83 void ApiObjectBase::Destroy() { in Destroy() function in dawn_native::ApiObjectBase
H A DEncodingContext.cpp32 Destroy(); in ~EncodingContext()
35 void EncodingContext::Destroy() { in Destroy() function in dawn_native::EncodingContext
43 // to Finish after Destroy will return a meaningful error. in Destroy()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringMap.h200 /// Destroy - Destroy this StringMapEntry, releasing memory back to the
203 void Destroy(AllocatorTy &Allocator) { in Destroy() function in llvm::StringMapEntry
211 /// Destroy this object, releasing memory back to the malloc allocator.
212 void Destroy() { in Destroy() function in llvm::StringMapEntry
214 Destroy(A); in Destroy()
403 static_cast<MapEntryTy*>(Bucket)->Destroy(Allocator); in clear()
421 V.Destroy(Allocator); in erase()
439 static_cast<MapEntryTy*>(Bucket)->Destroy(Allocator); in ~StringMap()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringMap.h220 /// Destroy - Destroy this StringMapEntry, releasing memory back to the
223 void Destroy(AllocatorTy &Allocator) { in Destroy() function in llvm::final
230 /// Destroy this object, releasing memory back to the malloc allocator.
231 void Destroy() { in Destroy() function in llvm::final
233 Destroy(A); in Destroy()
319 static_cast<MapEntryTy*>(Bucket)->Destroy(Allocator); in ~StringMap()
458 static_cast<MapEntryTy*>(Bucket)->Destroy(Allocator); in clear()
476 V.Destroy(Allocator); in erase()
/third_party/zlib/contrib/delphi/
H A DZLib.pas90 destructor Destroy; override; procedure
119 destructor Destroy; override; procedure
418 destructor TCompressionStream.Destroy;
436 inherited Destroy;
491 destructor TDecompressionStream.Destroy;
495 inherited Destroy;
/third_party/lzma/CPP/Windows/Control/
H A DImageList.h43 bool Destroy() // DeleteImageList() in MFC in Destroy() function in NWindows::NControl::CImageList
51 { Destroy(); } in ~CImageList()
H A DDialog.h159 virtual void OnOK() Z7_override { Destroy(); }
160 virtual void OnCancel() Z7_override { Destroy(); }
161 virtual void OnClose() Z7_override { Destroy(); }
/third_party/node/deps/v8/src/compiler/
H A Dzone-stats.h28 ~Scope() { Destroy(); } in ~Scope()
39 void Destroy() { in Destroy() function in v8::internal::compiler::final::final
/third_party/googletest/googletest/include/gtest/
H A Dgtest-matchers.h253 static void Destroy(SharedPayloadBase* shared) { in Destroy() function
328 Destroy(); in operator =()
342 Destroy(); in operator =()
349 ~MatcherBase() override { Destroy(); }
425 void Destroy() { in Destroy() function in testing::internal::MatcherBase
463 static constexpr auto shared_destroy = &Shared::Destroy;
477 static constexpr auto shared_destroy = &Shared::Destroy;
/third_party/node/deps/googletest/include/gtest/
H A Dgtest-matchers.h217 static void Destroy(SharedPayloadBase* shared) { in Destroy() function
292 Destroy(); in operator =()
306 Destroy(); in operator =()
313 ~MatcherBase() override { Destroy(); }
389 void Destroy() { in Destroy() function in testing::internal::MatcherBase
427 static constexpr auto shared_destroy = &Shared::Destroy;
441 static constexpr auto shared_destroy = &Shared::Destroy;
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPUQuerySet.cpp28 query_set_.Destroy(); in destroy()
/third_party/node/deps/v8/src/objects/
H A Dmanaged.cc32 GlobalHandles::Destroy(destructor->global_handle_location_); in ManagedObjectFinalizer()

Completed in 23 milliseconds

123456