HomeSort by relevance Sort by last modified time
    Searched full:destructor (Results 76 - 100 of 2255) sorted by null

1 2 34 5 6 7 8 91011>>

  /ndk/tests/standalone/init-fini-arrays/
README 7 - The address of functions with __attribute__((destructor)) are placed in
  /external/bison/src/
symtab.c 49 | Default %destructor's and %printer's. |
78 code_props_none_init (&res->destructor);
108 code_props_none_init (&res->destructor);
134 SYMBOL_CODE_PRINT (destructor);
190 | Set the DESTRUCTOR associated with SYM. |
194 symbol_destructor_set (symbol *sym, code_props const *destructor)
196 if (sym->destructor.code)
197 symbol_redeclaration (sym, "%destructor", sym->destructor.location,
198 destructor->location)
231 code_props const *destructor = local
    [all...]
  /device/generic/goldfish/camera/
EmulatedCameraCommon.h 29 * in its destructor. Use LOGRE() macro (declared bellow) to create instances
40 /* Destructor that prints a "leave" trace message. */
  /external/clang/test/SemaTemplate/
virtual-member-functions.cpp 67 class Inner : public A { }; // expected-error{{base class 'PR7114::A' has private destructor}}
75 (void)typeid(bfi); // expected-note{{implicit default destructor}}
  /external/libselinux/src/
selinux_internal.h 114 #define __selinux_key_create(KEY, DESTRUCTOR) \
117 pthread_key_create(KEY, DESTRUCTOR); \
  /external/llvm/test/Feature/
memorymarkers.ll 31 ;; Destructor is run here.
33 ;; Destructor is done here.
  /frameworks/base/core/jni/android/graphics/
MaskFilter.cpp 16 static void destructor(JNIEnv* env, jobject, SkMaskFilter* filter) { function in class:SkMaskFilterGlue
59 { "nativeDestructor", "(I)V", (void*)SkMaskFilterGlue::destructor }
  /hardware/samsung_slsi/exynos5/libexynosutils/
ExynosMutex.h 52 //! Destructor
96 //! Unlock on destructor
  /external/skia/include/core/
SkRefCnt.h 23 call, its (virtual) destructor is called. It is an error for the
24 destructor to be called explicitly (or via the object going out of scope on
87 * so they can reset fRefCnt before the destructor is called. Should only
89 * or before calling the destructor.
158 * Utility class that simply unref's its argument in the destructor.
181 * so unref() will not be called in our destructor. A subsequent call to
  /external/clang/test/CXX/special/class.ctor/
p5-0x.cpp 119 // a destructor that is deleted or inaccessible from the defaulted default
121 struct Deleted7a : DeletedDtor {}; // expected-note {{because base class 'DeletedDtor' has a deleted destructor}}
123 struct Deleted7b : virtual DeletedDtor {}; // expected-note {{because base class 'DeletedDtor' has a deleted destructor}}
125 struct Deleted7c { DeletedDtor a; }; // expected-note {{because field 'a' has a deleted destructor}}
127 struct Deleted7d { DeletedDtor a = {}; }; // expected-note {{because field 'a' has a deleted destructor}}
129 struct Deleted7e : PrivateDtor {}; // expected-note {{base class 'PrivateDtor' has an inaccessible destructor}}
131 struct Deleted7f : virtual PrivateDtor {}; // expected-note {{base class 'PrivateDtor' has an inaccessible destructor}}
133 struct Deleted7g { PrivateDtor a; }; // expected-note {{field 'a' has an inaccessible destructor}}
135 struct Deleted7h { PrivateDtor a = {}; }; // expected-note {{field 'a' has an inaccessible destructor}}
  /external/chromium/testing/gtest/test/
gtest_catch_exceptions_test_.cc 120 ADD_FAILURE() << "CxxExceptionInConstructorTest destructor "
178 "CxxExceptionInSetUpTestCaseTest destructor "
221 "CxxExceptionInSetUpTest destructor "
250 "CxxExceptionInTearDownTest destructor "
272 "CxxExceptionInTestBodyTest destructor "
gtest_catch_exceptions_test.py 81 'in the test fixture\'s destructor'
123 'in the test fixture\'s destructor'
139 self.assert_('CxxExceptionInSetUpTestCaseTest destructor '
164 self.assert_('CxxExceptionInSetUpTest destructor '
182 self.assert_('CxxExceptionInTearDownTest destructor '
193 self.assert_('CxxExceptionInTestBodyTest destructor '
  /external/gtest/test/
gtest_catch_exceptions_test_.cc 120 ADD_FAILURE() << "CxxExceptionInConstructorTest destructor "
178 "CxxExceptionInSetUpTestCaseTest destructor "
221 "CxxExceptionInSetUpTest destructor "
250 "CxxExceptionInTearDownTest destructor "
272 "CxxExceptionInTestBodyTest destructor "
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_catch_exceptions_test_.cc 120 ADD_FAILURE() << "CxxExceptionInConstructorTest destructor "
178 "CxxExceptionInSetUpTestCaseTest destructor "
221 "CxxExceptionInSetUpTest destructor "
250 "CxxExceptionInTearDownTest destructor "
272 "CxxExceptionInTestBodyTest destructor "
  /external/skia/legacy/include/core/
SkRefCnt.h 21 destructor is called. It is an error for the destructor to be called
59 fRefCnt = 1; // so our destructor won't complain
105 * Utility class that simply unref's its argument in the destructor.
122 * so unref() will not be called in our destructor. A subsequent call to
SkTemplates.h 24 parameters, the object, and a function that is to be called in the destructor.
26 reference is null when the destructor is called, we do not call the
41 parameters, the object, and a function that is to be called in the destructor.
43 reference is null when the destructor is called, we do not call the
85 /** Allocate an array of T elements, and free the array in the destructor
  /bionic/libc/arch-arm/bionic/
eabi.c 38 * variable from the shared object that contains the constructor/destructor
44 __aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle)
46 return __cxa_atexit(destructor, object, dso_handle);
  /external/chromium/base/
openssl_util.h 17 template <typename T, void (*destructor)(T*)>
29 if (ptr_) (*destructor)(ptr_);
102 // the constructor call as it's not possible to trace a destructor's callsite.
lazy_instance.h 12 // destructor will be called on program exit.
59 // Explicitly call the destructor.
93 // Declaring a destructor (even if it's empty) will cause MSVC to register a
94 // static initializer to register the empty destructor with atexit().
123 // Declaring a destructor (even if it's empty) will cause MSVC to register a
124 // static initializer to register the empty destructor with atexit().
  /external/chromium/base/threading/
thread_checker_unittest.cc 15 // Both the destructor and DoStuff should verify that they were
80 // Verify that the destructor doesn't assert.
88 // Verify that the destructor doesn't assert
  /external/chromium/crypto/
openssl_util.h 16 template <typename T, void (*destructor)(T*)>
28 if (ptr_) (*destructor)(ptr_);
96 // the constructor call as it's not possible to trace a destructor's callsite.
  /external/webkit/Source/JavaScriptCore/API/
JSWeakObjectMapRefPrivate.h 52 @param destructor A function to call when the weak map is destroyed.
53 @result A JSWeakObjectMapRef bound to the given context, data and destructor.
57 JS_EXPORT JSWeakObjectMapRef JSWeakObjectMapCreate(JSContextRef ctx, void* data, JSWeakMapDestroyedCallback destructor);
  /system/extras/tests/bionic/libc/common/
test_executable_destructor.c 35 /* A very simple program used to test constructor and destructor functions
51 static void __attribute__((destructor))
96 fprintf(stderr, "Destructor not called!!\n");
  /bionic/libc/bionic/
pthread_key.cpp 55 * and its destructor, and will also clear the key data in the TLS area of
133 // from this thread's TLS area. This must call the destructor of all keys
134 // that have a non-NULL data value and a non-NULL destructor.
149 // destructor (or a later one) from seeing the old value if
153 // destructor function might be responsible for manually
157 // because the destructor is free to call pthread_key_create
  /external/clang/test/CXX/class/class.union/
p1.cpp 35 ~Dtor() { abort(); } // expected-note 2 {{because type 'Dtor' has a user-provided destructor}} expected-note 2{{here}}
46 Dtor dtor; // expected-error {{union member 'dtor' has a non-trivial destructor}}
70 Dtor dtor; // expected-note {{because field of type 'Dtor' has a user-provided destructor}}
71 } m6; // expected-error {{union member 'm6' has a non-trivial destructor}}
90 struct s6 : Dtor { // expected-note {{because base class of type 'Dtor' has a user-provided destructor}}
91 } m6; // expected-error {{union member 'm6' has a non-trivial destructor}}

Completed in 661 milliseconds

1 2 34 5 6 7 8 91011>>