HomeSort by relevance Sort by last modified time
    Searched full:dtor (Results 51 - 75 of 662) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/compiler-rt/test/msan/
dtor-member.cc 1 // RUN: %clangxx_msan %s -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
4 // RUN: %clangxx_msan %s -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
7 // RUN: %clangxx_msan %s -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
13 // RUN: %clangxx_msan -fsanitize=memory -fsanitize-memory-use-after-dtor %s -o %t && MSAN_OPTIONS=poison_in_dtor=0 %run %t >%t.out 2>&1
dtor-trivial-class-members.cc 1 // RUN: %clangxx_msan %s -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
3 // RUN: %clangxx_msan %s -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
5 // RUN: %clangxx_msan %s -O2 -fsanitize=memory -fsanitize-memory-use-after-dtor -o %t && MSAN_OPTIONS=poison_in_dtor=1 %run %t >%t.out 2>&1
  /external/webrtc/webrtc/p2p/
p2p.gyp 20 '-Wnon-virtual-dtor',
88 '-Wnon-virtual-dtor',
111 '-Wnon-virtual-dtor',
125 '-Wnon-virtual-dtor',
  /external/clang/test/CodeGenCXX/
sanitize-dtor-fn-attribute.cpp 1 // Test -fsanitize-memory-use-after-dtor
2 // RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s
sanitize-dtor-bit-field.cpp 1 // Test -fsanitize-memory-use-after-dtor
2 // RUN: %clang_cc1 -O0 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s
3 // RUN: %clang_cc1 -O1 -fsanitize=memory -fsanitize-memory-use-after-dtor -disable-llvm-optzns -std=c++11 -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s
sanitize-no-dtor-callback.cpp 1 // Test without the flag -fsanitize-memory-use-after-dtor, to ensure that
union-dtor.cpp 35 // The ctor and dtor of Foo<> and Bar should not be mentioned in the resulting
  /external/compiler-rt/test/asan/TestCases/Posix/
tsd_dtor_leak.cc 20 void Dtor(void *tsd) {
27 assert(0 == pthread_key_create(&tsd_key, Dtor));
  /external/libcxxabi/src/
cxa_thread_atexit.cpp 18 int __cxa_thread_atexit(void (*dtor)(void *), void *obj,
21 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol);
  /external/libcxxabi/test/
cxa_thread_atexit_test.pass.cpp 17 extern "C" int __cxa_thread_atexit_impl(void (*dtor)(void *), void *obj,
19 assert(dtor == reinterpret_cast<void (*)(void *)>(1));
  /external/llvm/test/CodeGen/ARM/
gv-stubs-crash.ll 21 call void @__cxa_throw(i8* %exn, i8* bitcast ({ i8*, i8* }* @Exn to i8*), i8* bitcast (void (i32*)* @dtor to i8*)) noreturn
34 declare void @dtor(i32*) optsize
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_thread_atexit.cpp 18 int __cxa_thread_atexit(void (*dtor)(void *), void *obj,
21 return __cxa_thread_atexit_impl(dtor, obj, dso_symbol);
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
cxa_thread_atexit_test.pass.cpp 17 extern "C" int __cxa_thread_atexit_impl(void (*dtor)(void *), void *obj,
19 assert(dtor == reinterpret_cast<void (*)(void *)>(1));
  /ndk/tests/device/test-stlport_shared-exception/jni/
cleanup2.cpp 28 {printf ("in dtor X %s\n", __PRETTY_FUNCTION__); bad = true;}
40 {printf ("in dtor Y%s\n", __PRETTY_FUNCTION__); bad = true;}
  /ndk/tests/device/test-stlport_static-exception/jni/
cleanup2.cpp 28 {printf ("in dtor X %s\n", __PRETTY_FUNCTION__); bad = true;}
40 {printf ("in dtor Y%s\n", __PRETTY_FUNCTION__); bad = true;}
  /external/clang/test/SemaCXX/
microsoft-dtor-lookup.cpp 36 // requires a dtor for B, but we can't implicitly define it because ~A is
37 // private. bar should be able to call A's private dtor without error, even
55 // D has a non-trivial implicit dtor that destroys C.
87 // Don't try to access the dtor of an incomplete on a function declaration.
94 // Do the operator delete access control check from the context of the dtor.
deprecated.cpp 83 struct Dtor {
84 ~Dtor();
85 // expected-warning@-1 {{definition of implicit copy constructor for 'Dtor' is deprecated because it has a user-declared destructor}}
86 // expected-warning@-2 {{definition of implicit copy assignment operator for 'Dtor' is deprecated because it has a user-declared destructor}}
88 Dtor c1, c2(c1); // expected-note {{implicit copy constructor for 'Dtor' first required here}}
89 void g() { c1 = c2; } // expected-note {{implicit copy assignment operator for 'Dtor' first required here}}
  /external/llvm/test/CodeGen/X86/
seh-finally.ll 34 ; X64-NEXT: .long "?dtor$2@?0?main@4HA"@IMGREL
38 ; X64-LABEL: "?dtor$2@?0?main@4HA":
45 ; X86-LABEL: "?dtor$2@?0?main@4HA":
cleanuppad-large-codemodel.ll 24 ; CHECK: "?dtor$2@?0?foo@4HA":
  /external/compiler-rt/test/asan/TestCases/
use-after-scope-dtor-order.cc 11 // CHECK: #0 0x{{.*}} in IntHolder::~IntHolder{{.*}}use-after-scope-dtor-order.cc:[[@LINE-2]]
  /external/pdfium/core/
pdfiumfdrm.mk 11 LOCAL_CFLAGS += -Wno-non-virtual-dtor -Wall -DOPJ_STATIC \
pdfiumfpdftext.mk 11 LOCAL_CFLAGS += -Wno-non-virtual-dtor -Wall -DOPJ_STATIC \
  /external/pdfium/fpdfsdk/
pdfiumfxedit.mk 11 LOCAL_CFLAGS += -Wno-non-virtual-dtor -Wall -DOPJ_STATIC \
pdfiumjavascript.mk 11 LOCAL_CFLAGS += -Wno-non-virtual-dtor -Wall -DOPJ_STATIC \
  /external/pdfium/third_party/
pdfiumagg23.mk 11 LOCAL_CFLAGS += -Wno-non-virtual-dtor -Wall

Completed in 1323 milliseconds

1 23 4 5 6 7 8 91011>>