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

1 23 4 5 6 7 8 91011>>

  /sdk/emulator/opengl/shared/emugl/common/
thread_store.cpp 42 // TlsAlloc() doesn't allow one to provide a destructor function. As
76 // |destroy| is the destructor function for the key.
77 int registerKey(ThreadStore::Destructor* destroy) {
97 // Note: keys are not reusable, but remove the destructor to avoid
147 // NOTE: In theory, a destructor could reset the slot to
151 ThreadStore::Destructor* destroy = mDestructors[n];
154 D("Calling destructor %p for key=%d, with value=%p\n",
186 ThreadStore::Destructor* mDestructors[kMaxTlsSlots];
193 ThreadStore::ThreadStore(Destructor* destroy) {
226 ThreadStore::ThreadStore(Destructor* destroy)
    [all...]
  /external/chromium_org/jingle/notifier/base/
weak_xmpp_client.h 24 // buzz::XmppClient's destructor isn't marked virtual, but it inherits
25 // from talk_base::Task, whose destructor *is* marked virtual, so we
48 // besides the destructor.
  /external/chromium_org/base/threading/
non_thread_safe_unittest.cc 25 // Both the destructor and DoStuff should verify that they were
93 // Verify that the destructor doesn't assert.
101 // Verify that the destructor doesn't assert when called on a different thread
141 // Verify that the destructor asserts in debug builds only
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_observer.h 18 // destructor is run.
  /external/chromium_org/content/common/input/
scoped_web_input_event.h 18 // blink::WebInputEvent does not provide a virtual destructor.
  /external/chromium_org/net/base/
keygen_handler.cc 13 // The constructor and destructor must be defined in a .cc file so that
  /external/chromium_org/third_party/skia/src/ports/
SkTLS_pthread.cpp 16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
  /external/chromium_org/ui/base/
theme_provider.cc 9 // We have the destructor here because GCC puts the vtable in the first file
  /external/clang/test/CXX/special/class.dtor/
p3.cpp 3 // The exception specification of a destructor declaration is matched *before*
  /external/clang/test/CodeGenCXX/
abstract-class-ctors-dtors.cpp 3 // Check that we dont emit the complete constructor/destructor for this class.
  /external/clang/test/SemaCXX/
microsoft-dtor-lookup-cxx11.cpp 9 struct T { // expected-note{{virtual destructor requires an unambiguous, accessible 'operator delete'}}
uninit-variables-conditional.cpp 15 // the destructor in Foo fouls about the minor bit of path-sensitivity in
warn-global-constructors.cpp 45 A a; // expected-warning {{global destructor}}
46 A b[10]; // expected-warning {{global destructor}}
47 A c[10][10]; // expected-warning {{global destructor}}
111 C c; // expected-warning {{global destructor}}
warn-pure-virtual-call-from-ctor-dtor.cpp 4 ~A() { f(); } // expected-warning {{call to pure virtual member function 'f'; overrides of 'f' in subclasses are not available in the destructor of 'A'}}
  /external/compiler-rt/test/msan/
cxa_atexit.cc 9 // This destructor get stale argument shadow left from the call to f().
  /external/skia/src/ports/
SkTLS_pthread.cpp 16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
  /frameworks/base/libs/hwui/
ResourceCache.h 64 * variants of increment/decrementRefcount(), recyle() and destructor()
89 void destructor(SkPath* resource);
90 void destructor(const SkBitmap* resource);
91 void destructor(Res_png_9patch* resource);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cobject.h 48 destructor function. If the second argument is non-null, then it
58 and an optional destructor function. If the third argument is non-null,
74 /* Modify a C object. Fails (==0) if object has a destructor. */
82 void (*destructor)(void *); member in struct:__anon80859
pycapsule.h 31 PyCapsule_Destructor destructor);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cobject.h 48 destructor function. If the second argument is non-null, then it
58 and an optional destructor function. If the third argument is non-null,
74 /* Modify a C object. Fails (==0) if object has a destructor. */
82 void (*destructor)(void *); member in struct:__anon80982
  /external/clang/test/CXX/class.access/
p4.cpp 111 // Implicit destructor calls.
119 A a; // expected-error {{variable of type 'test3::A' has private destructor}}
123 A local; // expected-error {{variable of type 'test3::A' has private destructor}}
128 // expected-error {{base class 'Base<2>' has private destructor}}
129 class Base3 : virtual Base<3> { public: ~Base3(); }; // expected-error {{base class 'Base<3>' has private destructor}}
131 // These don't cause diagnostics because we don't need the destructor.
135 class Derived2 : // expected-error {{inherited virtual base class 'Base<2>' has private destructor}} \
136 // expected-error {{inherited virtual base class 'Base<3>' has private destructor}}
137 Base<0>, // expected-error {{base class 'Base<0>' has private destructor}}
138 virtual Base<1>, // expected-error {{base class 'Base<1>' has private destructor}}
    [all...]
  /external/chromium_org/chrome/common/extensions/api/input_ime/
input_components_handler.h 27 // Define out of line constructor/destructor to please Clang.
46 // Define out of line constructor/destructor to please Clang.
  /external/chromium_org/net/disk_cache/blockfile/
file_lock.h 18 // The lock is acquired on the constructor and released on the destructor.
24 // // At this point the destructor is going to release the lock.
  /external/clang/test/CXX/expr/expr.unary/expr.delete/
p5.cpp 4 // deletion and the complete class has a non-trivial destructor or a
31 delete a; // expected-error{{calling a private destructor of class 'T3_A'}}
  /external/icu/icu4c/source/common/unicode/
errorcode.h 49 * Note: For automatic checking for success in the destructor, a subclass
50 * must implement such logic in its own destructor because the base class
51 * destructor cannot call a subclass function (like handleFailure()).
52 * The ErrorCode base class destructor does nothing.
54 * Note also: While it is possible for a destructor to throw an exception,
55 * it is generally unsafe to do so. This means that in a subclass the destructor
76 * // IcuErrorCode destructor checks for success.
88 /** Destructor, does nothing. See class documentation for details. @stable ICU 4.2 */

Completed in 529 milliseconds

1 23 4 5 6 7 8 91011>>