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

123456

/external/skia/include/core/
H A DSkLazyPtr.h20 * These macros take an optional T* (*Create)() and void (*Destroy)(T*) at the end.
23 * Create comes first, so you may use a custom Create with a default Destroy, but not vice versa.
72 template <typename P, void (*Destroy)(P)>
82 Destroy(ptr);
117 template <typename T, T* (*Create)() = sk_new<T>, void (*Destroy)(T*) = sk_delete<T> >
124 return ptr ? ptr : try_cas<T*, Destroy>(&fPtr, Create());
134 template <typename T, int N, T* (*Create)(int) = sk_new_arg<T>, void (*Destroy)(T*) = sk_delete<T> >
142 return ptr ? ptr : try_cas<T*, Destroy>(&fArray[i], Create(i));
157 template <typename T, void (*Destroy)(T*) = Private::sk_delete<T> >
161 ~SkLazyPtr() { if (fPtr) { Destroy((
[all...]
/external/pdfium/core/src/fxge/android/
H A Dfpf_skiamodule.h17 virtual void Destroy();
H A Dfx_android_imp.cpp26 ((IFPF_DeviceModule*)m_pPlatformData)->Destroy();
H A Dfpf_skiamodule.cpp25 void CFPF_SkiaDeviceModule::Destroy() function in class:CFPF_SkiaDeviceModule
/external/lldb/test/api/multithreaded/
H A Ddriver.cpp36 SBDebugger::Destroy(dbg);
/external/compiler-rt/lib/msan/
H A Dmsan_thread.cc53 t->Destroy();
56 void MsanThread::Destroy() { function in class:__msan::MsanThread
H A Dmsan_thread.h26 void Destroy();
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_mutex.cc37 t.Destroy(m);
55 t.Destroy(m);
92 t.Destroy(m);
108 t2.Destroy(m);
124 t2.Destroy(m);
149 t2.Destroy(m);
163 MainThread().Destroy(m);
H A Dtsan_test_util.h41 void Destroy();
97 void Destroy(const Mutex &m);
H A Dtsan_bench.cc104 ScopedThread().Destroy(m);
/external/webrtc/src/modules/audio_processing/
H A Dprocessing_component.h27 virtual int Destroy();
H A Dprocessing_component.cc29 int ProcessingComponent::Destroy() { function in class:webrtc::ProcessingComponent
/external/clang/lib/Sema/
H A DDelayedDiagnostic.cpp58 void DelayedDiagnostic::Destroy() { function in class:DelayedDiagnostic
/external/compiler-rt/lib/asan/tests/
H A Dasan_fake_stack_test.cc67 fake_stack->Destroy(0);
103 fs->Destroy(0);
132 fs->Destroy(0);
149 fs->Destroy(0);
/external/lldb/test/python_api/default-constructor/
H A Dsb_process.py31 obj.Destroy()
/external/pdfium/core/include/fxge/
H A Dfpf.h17 virtual void Destroy() = 0;
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge.cpp45 void CFX_GEModule::Destroy() function in class:CFX_GEModule
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp347 LLVMMemoryManagerDestroyCallback Destroy; member in struct:__anon10517::SimpleBindingMMFunctions
381 assert(Functions.Destroy &&
382 "No Destroy function provided!");
386 Functions.Destroy(Opaque);
424 LLVMMemoryManagerDestroyCallback Destroy) {
427 !Destroy)
434 functions.Destroy = Destroy;
419 LLVMCreateSimpleMCJITMemoryManager( void *Opaque, LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection, LLVMMemoryManagerAllocateDataSectionCallback AllocateDataSection, LLVMMemoryManagerFinalizeMemoryCallback FinalizeMemory, LLVMMemoryManagerDestroyCallback Destroy) argument
/external/llvm/include/llvm/ADT/
H A DStringMap.h189 /// Destroy - Destroy this StringMapEntry, releasing memory back to the
192 void Destroy(AllocatorTy &Allocator) { function in class:llvm::StringMapEntry
200 /// Destroy this object, releasing memory back to the malloc allocator.
201 void Destroy() { function in class:llvm::StringMapEntry
203 Destroy(A);
344 static_cast<MapEntryTy*>(Bucket)->Destroy(Allocator);
362 V.Destroy(Allocator);
380 static_cast<MapEntryTy*>(Bucket)->Destroy(Allocator);
/external/compiler-rt/lib/asan/
H A Dasan_thread.h61 void Destroy();
92 t->Destroy(tid);
/external/clang/lib/Rewrite/
H A DDeltaTree.cpp115 void Destroy();
126 Children[i]->Destroy();
155 /// Destroy - A 'virtual' destructor.
156 void DeltaTreeNode::Destroy() {
398 getRoot(Root)->Destroy();
/external/lldb/include/lldb/Target/
H A DThreadList.h65 Destroy();
/external/llvm/include/llvm/Support/
H A DStringPool.h107 S->Destroy();
/external/llvm/lib/IR/
H A DValueSymbolTable.cpp50 V->getValueName()->Destroy();
/external/opencv/otherlibs/highgui/
H A Dimage.cpp60 void CvvImage::Destroy() function in class:CvvImage
67 Destroy();
85 Destroy();

Completed in 1706 milliseconds

123456