Home
last modified time | relevance | path

Searched refs:destructor (Results 1 – 25 of 491) sorted by relevance

12345678910>>...20

/third_party/boost/boost/dll/detail/
Dctor_dtor.hpp77 struct destructor { struct
108 destructor() = delete;
111 destructor(const destructor &) = default;
114 explicit destructor(const standard_t &standard, const deleting_t &deleting = nullptr) in destructor() argument
130 destructor<Class> load_dtor(Lib & lib, const mangled_storage_impl::dtor_sym & dt) { in load_dtor()
131 typedef typename destructor<Class>::standard_t standard_t; in load_dtor()
137 return destructor<Class>(dtor); in load_dtor()
169 destructor<Class> load_dtor(Lib & lib, const mangled_storage_impl::dtor_sym & dt) { in load_dtor()
170 typedef typename destructor<Class>::standard_t stand; in load_dtor()
171 typedef typename destructor<Class>::deleting_t delet; in load_dtor()
[all …]
/third_party/python/Objects/
Dcapsule.c11 PyCapsule_Destructor destructor; member
44 PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor) in PyCapsule_New() argument
61 capsule->destructor = destructor; in PyCapsule_New()
117 return capsule->destructor; in PyCapsule_GetDestructor()
167 PyCapsule_SetDestructor(PyObject *o, PyCapsule_Destructor destructor) in PyCapsule_SetDestructor() argument
175 capsule->destructor = destructor; in PyCapsule_SetDestructor()
260 if (capsule->destructor) { in capsule_dealloc()
261 capsule->destructor(o); in capsule_dealloc()
/third_party/boringssl/src/crypto/
Dthread_pthread.c145 static void thread_key_destructor(void) __attribute__((destructor, unused));
173 thread_local_destructor_t destructor) { in CRYPTO_set_thread_local() argument
176 destructor(value); in CRYPTO_set_thread_local()
184 destructor(value); in CRYPTO_set_thread_local()
190 destructor(value); in CRYPTO_set_thread_local()
196 destructor(value); in CRYPTO_set_thread_local()
199 g_destructors[index] = destructor; in CRYPTO_set_thread_local()
Dthread_win.c226 thread_local_destructor_t destructor) { in CRYPTO_set_thread_local() argument
229 destructor(value); in CRYPTO_set_thread_local()
237 destructor(value); in CRYPTO_set_thread_local()
243 destructor(value); in CRYPTO_set_thread_local()
249 g_destructors[index] = destructor; in CRYPTO_set_thread_local()
/third_party/boost/libs/contract/test/
DJamfile.v262 test-suite destructor :
63 [ boost_contract_build.subdir-run-cxx11 destructor : smoke ]
67 [ boost_contract_build.subdir-run-cxx11 destructor : decl_post_all ]
68 [ boost_contract_build.subdir-run-cxx11 destructor : decl_post_ends ]
69 [ boost_contract_build.subdir-run-cxx11 destructor : decl_post_mid ]
70 [ boost_contract_build.subdir-run-cxx11 destructor : decl_post_none ]
72 [ boost_contract_build.subdir-run-cxx11 destructor :
74 [ boost_contract_build.subdir-run-cxx11 destructor :
76 [ boost_contract_build.subdir-run-cxx11 destructor :
78 [ boost_contract_build.subdir-run-cxx11 destructor :
[all …]
/third_party/boost/libs/exception/src/
Dclone_current_exception_non_intrusive.cpp89 destructor_ptr destructor; member
125 int destructor; member
147 if( et_.destructor ) in operator ()()
149 cpp_destructor destructor; in operator ()() local
150 destructor.address = reinterpret_cast<void *>(et_.destructor + image_base_); in operator ()()
151 (dummy_exception_ptr->*(destructor.destructor))(); in operator ()()
/third_party/boost/boost/contract/detail/operation/
Ddestructor.hpp32 class destructor : public cond_inv</* VR = */ none, C> { class
34 explicit destructor(C* obj) : cond_inv</* VR = */ none, C>( in destructor() function in boost::contract::detail::destructor
65 ~destructor() BOOST_NOEXCEPT_IF(false) { in BOOST_NOEXCEPT_IF()
/third_party/gettext/gettext-tools/src/
Dcldr-plural.y140 %destructor { free ($$); } <sval>
141 %destructor { cldr_plural_condition_free ($$); } <cval>
142 %destructor { cldr_plural_relation_free ($$); } <lval>
143 %destructor { free ($$); } <eval>
144 %destructor { cldr_plural_range_free ($$); } <gval>
145 %destructor { free ($$); } <oval>
146 %destructor { cldr_plural_range_list_free ($$); } <rval>
147 %destructor { } <ival>
/third_party/boost/libs/type_traits/doc/
Dhas_trivial_destructor.qbk12 __inherit If T is a (possibly cv-qualified) type with a trivial destructor
15 If a type has a trivial destructor then the destructor has no effect:
16 calls to the destructor can be safely omitted. Note that using meta-programming
23 trivial destructor; this is always safe, if possibly sub-optimal.
/third_party/python/Doc/includes/
Dtypestruct.h8 destructor tp_dealloc;
73 destructor tp_del;
78 destructor tp_finalize;
/third_party/boost/boost/spirit/home/classic/core/non_terminal/impl/
Dstatic.hpp47 struct destructor struct
49 ~destructor() in ~destructor() argument
60 static destructor d; in construct()
/third_party/curl/docs/
DBUFREF.md4 buffer is associated with its destructor function that is implicitly called
35 Destroys the previously referenced buffer using its destructor and
42 void (*destructor)(void *));
46 the structure, associated with its `destructor` function. The later can be
60 associated with destructor `curl_free()`.
/third_party/abseil-cpp/absl/synchronization/internal/
Dmutex_nonprod.inc98 // True if the underlying mutex is locked. If the destructor is entered
111 // get(). T's destructor is never called if the LinkerInitialized
136 // [basic.life] says the lifetime of an object with non-trivial destructor
137 // ends when the call to the destructor begins.
150 // non-trivial destructor, and so its lifetime ends at some point during
170 // c) the destructor being a NOP for LinkerInitialized objects
172 // subsequent calls to get() functioning as if the destructor were not
174 // destructor runs.
200 // the case of non-trivial destructor. However, std::mutex is not specified
201 // to have a trivial destructor.
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DImage_unittest.cpp78 EXPECT_CALL(*textureImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
90 EXPECT_CALL(*imageImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
95 EXPECT_CALL(*renderbufferImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
150 EXPECT_CALL(*textureImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
156 EXPECT_CALL(*imageImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
DSurface_unittest.cpp29 virtual ~MockSurfaceImpl() { destructor(); } in ~MockSurfaceImpl()
53 MOCK_METHOD0(destructor, void());
70 EXPECT_CALL(*impl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DImage_unittest.cpp78 EXPECT_CALL(*textureImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
90 EXPECT_CALL(*imageImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
95 EXPECT_CALL(*renderbufferImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
152 EXPECT_CALL(*textureImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
158 EXPECT_CALL(*imageImpl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
DSurface_unittest.cpp29 virtual ~MockSurfaceImpl() { destructor(); } in ~MockSurfaceImpl()
55 MOCK_METHOD0(destructor, void());
72 EXPECT_CALL(*impl, destructor()).Times(1).RetiresOnSaturation(); in TEST()
/third_party/python/Doc/c-api/
Dcapsule.rst27 The type of a destructor callback for a capsule. Defined as::
41 …unction:: PyObject* PyCapsule_New(void *pointer, const char *name, PyCapsule_Destructor destructor)
50 free it inside the *destructor*.)
52 If the *destructor* argument is not ``NULL``, it will be called with the
73 Return the current destructor stored in the capsule. On failure, set an
76 It is legal for a capsule to have a ``NULL`` destructor. This makes a ``NULL``
137 .. c:function:: int PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor)
139 Set the destructor inside *capsule* to *destructor*.
/third_party/boost/boost/contract/
Ddestructor.hpp93 specify_old_postcondition_except<> destructor(Class* obj) { in destructor() function
99 new boost::contract::detail::destructor<Class>(obj)); in destructor()
/third_party/glib/glib/
Dgthread-win32.c318 GPrivateDestructor *destructor; in g_private_get_impl() local
327 destructor = malloc (sizeof (GPrivateDestructor)); in g_private_get_impl()
328 if G_UNLIKELY (destructor == NULL) in g_private_get_impl()
330 destructor->index = impl; in g_private_get_impl()
331 destructor->notify = key->notify; in g_private_get_impl()
332 destructor->next = g_atomic_pointer_get (&g_private_destructors); in g_private_get_impl()
341 destructor->next, in g_private_get_impl()
342 destructor)) in g_private_get_impl()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
DImageImpl_mock.h22 virtual ~MockImageImpl() { destructor(); } in ~MockImageImpl()
25 MOCK_METHOD0(destructor, void());
DFramebufferImpl_mock.h24 virtual ~MockFramebufferImpl() { destructor(); } in ~MockFramebufferImpl()
55 MOCK_METHOD0(destructor, void());
66 EXPECT_CALL(*framebufferImpl, destructor()).Times(1).RetiresOnSaturation(); in MakeFramebufferMock()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DImageImpl_mock.h22 virtual ~MockImageImpl() { destructor(); } in ~MockImageImpl()
25 MOCK_METHOD0(destructor, void());
DFramebufferImpl_mock.h24 virtual ~MockFramebufferImpl() { destructor(); } in ~MockFramebufferImpl()
63 MOCK_METHOD0(destructor, void());
75 EXPECT_CALL(*framebufferImpl, destructor()).Times(1).RetiresOnSaturation(); in MakeFramebufferMock()
/third_party/skia/third_party/externals/microhttpd/src/testspdy/
Dcommon.c31 #define FUNC_DESTRUCTOR(f) static void __attribute__ ((destructor)) f
42 FUNC_DESTRUCTOR (destructor)() in FUNC_DESTRUCTOR() argument

12345678910>>...20