Home
last modified time | relevance | path

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

123456789

/external/llvm-project/compiler-rt/test/BlocksRuntime/
Dcopyconstructor.C13 int destructors = 0; variable
51 ++destructors; in ~TestObject()
78 if (constructors != destructors) { in main()
79 printf("%d constructors but only %d destructors\n", constructors, destructors); in main()
Dreference.C17 int destructors = 0; variable
56 ++destructors; in ~TestObject()
/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/rust/crates/quiche/deps/boringssl/src/crypto/
Dthread_pthread.c108 thread_local_destructor_t destructors[NUM_OPENSSL_THREAD_LOCALS]; in thread_local_destructor() local
112 OPENSSL_memcpy(destructors, g_destructors, sizeof(destructors)); in thread_local_destructor()
118 if (destructors[i] != NULL) { in thread_local_destructor()
119 destructors[i](pointers[i]); in thread_local_destructor()
Dthread_win.c122 thread_local_destructor_t destructors[NUM_OPENSSL_THREAD_LOCALS]; in thread_local_destructor() local
125 OPENSSL_memcpy(destructors, g_destructors, sizeof(destructors)); in thread_local_destructor()
129 if (destructors[i] != NULL) { in thread_local_destructor()
130 destructors[i](pointers[i]); in thread_local_destructor()
/external/boringssl/src/crypto/
Dthread_pthread.c108 thread_local_destructor_t destructors[NUM_OPENSSL_THREAD_LOCALS]; in thread_local_destructor() local
112 OPENSSL_memcpy(destructors, g_destructors, sizeof(destructors)); in thread_local_destructor()
118 if (destructors[i] != NULL) { in thread_local_destructor()
119 destructors[i](pointers[i]); in thread_local_destructor()
Dthread_win.c122 thread_local_destructor_t destructors[NUM_OPENSSL_THREAD_LOCALS]; in thread_local_destructor() local
125 OPENSSL_memcpy(destructors, g_destructors, sizeof(destructors)); in thread_local_destructor()
129 if (destructors[i] != NULL) { in thread_local_destructor()
130 destructors[i](pointers[i]); in thread_local_destructor()
/external/llvm-project/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
Ddestroy.pass.cpp90 int destructors = 0; in test() local
94 std::allocator_traits<Alloc>::construct(alloc, pool, &destructors); in test()
95 assert(destructors == 0); in test()
98 assert(destructors == 1); in test()
/external/openscreen/third_party/googletest/
DBUILD.gn49 "-Wno-exit-time-destructors",
64 cflags_cc += [ "-Wno-exit-time-destructors" ]
/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/llvm-project/clang/docs/analyzer/developer-docs/
DIPA.rst44 ``-analyzer-config c++-inlining=[none | methods | constructors | destructors]``
47 inlined as well; it doesn't make sense to inline destructors without inlining
50 The default c++-inlining mode is 'destructors', meaning that all member
55 destructors will not be inlined. Additionally, no C++ member functions will be
94 This option controls whether constructors and destructors of "container" types
99 Currently, these constructors and destructors are NOT considered for inlining
141 call. (In the case of calls without origin expressions, such as destructors,
193 implicit destructors, or if the destructors for the given object are not
199 or operator 'delete', nor does it inline the constructors and destructors
363 placement of their destructors in the CFG. We currently won't inline their
[all …]
/external/llvm-project/llvm/test/ExecutionEngine/OrcLazy/
Dglobal-ctors-and-dtors.ll1 ; Test that global constructors and destructors are run:
6 ; Test that this is true for global constructors and destructors in other
/external/openscreen/build/config/
DBUILD.gn147 # Generate warning if code generates exit-time destructors, since such
149 cflags_cc += [ "-Wexit-time-destructors" ]
150 cflags_objcc += [ "-Wexit-time-destructors" ]
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
Dcoverage.txt5 2 YES ** Difficult to test and assert that date destructors
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/
DAnalyzerOptions.def86 "Whether or not implicit destructors for C++ objects "
91 "Whether or not the destructors for C++ temporary "
142 "Whether C++ temporary destructors should be inlined "
143 "during analysis. If temporary destructors are disabled "
145 "temporary destructors would not be inlined anyway.",
416 "Value: \"constructors\", \"destructors\", \"methods\".",
417 "destructors")
/external/openscreen/third_party/libfuzzer/
DBUILD.gn11 "-Wno-exit-time-destructors",
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dbugprone-unused-raii.rst25 - Ignore types with trivial destructors. They are very unlikely to be RAII
Dmisc-no-recursion.rst20 * The check does not handle C++ destructors
/external/llvm/test/Transforms/Inline/
Dinvoke-cleanup.ll21 ; this call site (PR17872), otherwise C++ destructors will not be
/external/libtextclassifier/abseil-cpp/absl/copts/
DGENERATED_copts.bzl26 "-Wno-exit-time-destructors",
127 "-Wno-exit-time-destructors",
/external/webrtc/third_party/abseil-cpp/absl/copts/
DGENERATED_copts.bzl26 "-Wno-exit-time-destructors",
125 "-Wno-exit-time-destructors",
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/copts/
DGENERATED_copts.bzl26 "-Wno-exit-time-destructors",
127 "-Wno-exit-time-destructors",
/external/abseil-cpp/absl/copts/
DGENERATED_copts.bzl26 "-Wno-exit-time-destructors",
125 "-Wno-exit-time-destructors",
/external/llvm-project/llvm/test/Transforms/Inline/
Dinvoke-cleanup.ll22 ; this call site (PR17872), otherwise C++ destructors will not be

123456789