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

1 2 34 5 6 7 8 91011>>

  /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:__anon60553
pycapsule.h 31 PyCapsule_Destructor destructor);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
  /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/clang/test/Analysis/
temp-obj-dtors-cfg-output.cpp 127 // CHECK: 6: ~A() (Temporary object destructor)
185 // CHECK: 6: ~A() (Temporary object destructor)
208 // CHECK: 15: ~B() (Temporary object destructor)
209 // CHECK: 16: ~A() (Temporary object destructor)
226 // CHECK: 33: ~B() (Temporary object destructor)
227 // CHECK: 34: ~A() (Temporary object destructor)
236 // CHECK: 1: ~A() (Temporary object destructor)
241 // CHECK: 1: ~B() (Temporary object destructor)
259 // CHECK: 1: ~A() (Temporary object destructor)
271 // CHECK: 1: ~B() (Temporary object destructor)
    [all...]
dtor.cpp 36 // destructor called here
49 // destructor called here
66 // destructor called here
83 // destructor called here
94 // destructor called here
105 // destructor called here
123 // destructor called here
248 // inlined destructor kept us from finding the return statement,
371 // destructor called here
398 // destructor called her
    [all...]
  /external/chromium/net/disk_cache/
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/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/
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'}}
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pycapsule.h 31 PyCapsule_Destructor destructor);
45 PyAPI_FUNC(int) PyCapsule_SetDestructor(PyObject *capsule, PyCapsule_Destructor destructor);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
p5-cxx0x.cpp 41 PD(), // expected-error {{private destructor}}
42 PD()) pd1; // expected-error {{private destructor}}
48 PD(), // expected-error {{temporary of type 'PD' has private destructor}}
57 decltype(pd_ref) pd_ref2 = pd_ref; // expected-error {{private destructor}}
115 decltype(0, *pd_ptr) *dd_ptr2; // expected-error {{private destructor}}
  /external/llvm/include/llvm/Support/
FileOutputBuffer.h 32 /// not committed, the file will be deleted in the FileOutputBuffer destructor.
68 /// buffer. If commit() is not called before this object's destructor
69 /// is called, the file is deleted in the destructor. The optional parameter
74 /// If this object was previously committed, the destructor just deletes
75 /// this object. If this object was not committed, the destructor
  /external/chromium/base/threading/
thread_local_storage_win.cc 14 // pointers to the destructor for each TLS that we allocate.
29 // An array of destructor function pointers for the slots. If
30 // a slot has a destructor, it will be stored in its corresponding
59 ThreadLocalStorage::Slot::Slot(TLSDestructorFunc destructor)
62 Initialize(destructor);
65 bool ThreadLocalStorage::Slot::Initialize(TLSDestructorFunc destructor) {
76 // Setup our destructor.
77 tls_destructors_[slot_] = destructor;
84 // So all we need to do is wipe the destructor.
131 // Windows doesn't support a per-thread destructor with it
    [all...]
thread_local_storage_unittest.cc 70 // Create a TLS index with a destructor. Create a set of
71 // threads that set the TLS, while the destructor cleans it up.
95 // Verify that the destructor was called and that we reset.
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSpecific.h 34 * @ In pthread implementation, the destructor function will be called
36 * @ In Windows native implementation, the destructor function will be called
81 // a destructor defined can be confusing, given that it has such strong pre-requisites to work correctly.
96 void (*destructor)(void*); member in struct:WTF::ThreadSpecific::Data
111 inline void threadSpecificKeyCreate(ThreadSpecificKey* key, void (*destructor)(void *))
113 int error = pthread_key_create(key, destructor);
197 // Does not invoke destructor functions. They will be called from ThreadSpecificThreadExit when the thread is detached.
213 data->destructor = &ThreadSpecific<T>::destroy;
230 // We want get() to keep working while data destructor works, because it can be called indirectly by the destructor
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 31 /// Try to emit a base destructor as an alias to its primary
32 /// base-class destructor.
37 // If the destructor doesn't have a trivial body, we have to emit it
52 // If any field has a non-trivial destructor, we have to emit the
53 // destructor separately.
59 // Try to find a unique base class with a non-trivial destructor.
64 // We're in the base destructor, so skip virtual bases.
73 // destructor, give up.
78 // If we didn't find any bases with a non-trivial destructor, then
79 // the base destructor is actually effectively trivial, which ca
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
ptw32_callUserDestroyRoutines.c 101 * the assoc destructor in pthread_key_delete can adjust it
114 void (*destructor) (void *);
166 destructor = k->destructor;
170 // Every assoc->key exists and has a destructor
174 * Unlock both locks before the destructor runs.
192 destructor (value);
198 * running the user's destructor.
213 destructor (value);
  /external/chromium_org/ui/base/gtk/
g_object_destructor_filo.cc 43 LOG(DFATAL) << "Unable to disconnect destructor hook for object " << object
49 LOG(DFATAL) << "Destructor list is empty for specified object " << object
78 // Save destructor list for given object into local copy to avoid reentrancy
  /external/bison/tests/
actions.at 404 %destructor
408 %destructor
412 %destructor
416 %destructor
420 %destructor
425 %destructor
763 ## Default tagless %printer and %destructor. ##
766 # Check that the right %printer and %destructor are called, that they're not
769 AT_SETUP([Default tagless %printer and %destructor])
791 %destructor {
    [all...]
  /external/chromium_org/chrome/browser/signin/
fake_auth_status_provider.h 12 // constructor and destructor.
  /external/chromium_org/chrome/browser/usb/
usb_context.h 21 // Destructor must be called on FILE thread.
  /external/chromium_org/ppapi/cpp/
graphics_3d_client.h 30 /// Destructor.
  /external/chromium_org/sync/syncable/
syncable_read_transaction.h 15 // Locks db in constructor, unlocks in destructor.
  /external/chromium_org/third_party/icu/source/i18n/
tolowtrn.cpp 34 * Destructor.
tolowtrn.h 38 * Destructor.

Completed in 1012 milliseconds

1 2 34 5 6 7 8 91011>>