Home
last modified time | relevance | path

Searched refs:destructors (Results 1 – 25 of 116) sorted by relevance

12345

/external/compiler-rt/test/BlocksRuntime/
Dcopyconstructor.C14 int destructors = 0; variable
52 ++destructors; in ~TestObject()
79 if (constructors != destructors) { in main()
80 printf("%d constructors but only %d destructors\n", constructors, destructors); in main()
Dreference.C18 int destructors = 0; variable
57 ++destructors; in ~TestObject()
/external/boringssl/src/crypto/
Dthread_pthread.c104 thread_local_destructor_t destructors[NUM_OPENSSL_THREAD_LOCALS]; in thread_local_destructor() local
108 OPENSSL_memcpy(destructors, g_destructors, sizeof(destructors)); in thread_local_destructor()
114 if (destructors[i] != NULL) { in thread_local_destructor()
115 destructors[i](pointers[i]); in thread_local_destructor()
Dthread_win.c118 thread_local_destructor_t destructors[NUM_OPENSSL_THREAD_LOCALS]; in thread_local_destructor() local
121 OPENSSL_memcpy(destructors, g_destructors, sizeof(destructors)); in thread_local_destructor()
125 if (destructors[i] != NULL) { in thread_local_destructor()
126 destructors[i](pointers[i]); in thread_local_destructor()
/external/clang/docs/analyzer/
DIPA.txt43 -analyzer-config c++-inlining=[none | methods | constructors | destructors]
46 inlined as well; it doesn't make sense to inline destructors without inlining
49 The default c++-inlining mode is 'destructors', meaning that all member
54 destructors will not be inlined. Additionally, no C++ member functions will be
90 This option controls whether constructors and destructors of "container" types
95 Currently, these constructors and destructors are NOT considered for inlining
134 call. (In the case of calls without origin expressions, such as destructors,
186 implicit destructors, or if the destructors for the given object are not
192 or operator 'delete', nor does it inline the constructors and destructors
353 placement of their destructors in the CFG. We currently won't inline their
[all …]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
Dcoverage.txt5 2 YES ** Difficult to test and assert that date destructors
/external/llvm/test/Transforms/Inline/
Dinvoke-cleanup.ll21 ; this call site (PR17872), otherwise C++ destructors will not be
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/
Dinvoke-cleanup.ll22 ; this call site (PR17872), otherwise C++ destructors will not be
/external/tensorflow/tensorflow/lite/micro/tools/make/targets/apollo3evb/
Dapollo3evb.ld31 /* XXX Currently not doing anything for global destructors. */
/external/catch2/examples/
DCMakeLists.txt151 …target_compile_options( ${name} PRIVATE -Wweak-vtables -Wexit-time-destructors -Wglobal-construct…
/external/llvm/bindings/ocaml/executionengine/
Dllvm_executionengine.mli66 (** [run_static_dtors ee] executes the static destructors of each module in
/external/clang/test/Analysis/
Dtemporaries.cpp114 namespace destructors { namespace
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/executionengine/
Dllvm_executionengine.mli66 (** [run_static_dtors ee] executes the static destructors of each module in
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
Dservice_registry.ipp28 // services are destroyed since the destructors of user-defined handler
/external/libyuv/files/tools/ubsan/
Dvptr_blacklist.txt61 # Accessing data in destructors where the class has virtual inheritances.
/external/mesa3d/docs/relnotes/
D13.0.2.rst107 - anv: Handle null in all destructors
/external/llvm/lib/Target/AArch64/
DAArch64CallingConvention.td274 // Constructors and destructors return 'this' in the iOS 64-bit C++ ABI; since
280 // destructors with 'this' returns, so this RegMask will not be used in that
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
DAArch64CallingConvention.td291 // Constructors and destructors return 'this' in the iOS 64-bit C++ ABI; since
297 // destructors with 'this' returns, so this RegMask will not be used in that
/external/python/cpython2/Doc/library/
Dthread.rst171 :keyword:`finally` clauses or executing object destructors.
/external/clang/docs/
DBlock-ABI-Apple.rst851 copied objects with constructor/destructors. The (1<<26) bit is set and
881 and of course the constructors/destructors for ``const`` copied C++ objects.
885 copied objects with constructor/destructors, and again the (1<<26) bit is set
DThreadSafetyAnalysis.rst652 No checking inside constructors and destructors.
656 destructors. In other words, every constructor and destructor is treated as
661 The same is true of destructors.
/external/swiftshader/third_party/subzero/docs/
DALLOCATION.rst68 destructors. Most of these fields are POD, but in a couple of cases these
/external/clang/lib/StaticAnalyzer/
DREADME.txt123 -cfg-add-implicit-dtors Add C++ implicit destructors to CFGs for all analyses
/external/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt196 llvm. Java would be very similar, except it only uses destructors to unlock
/external/python/cpython3/Doc/library/
D_thread.rst210 destructors.

12345