HomeSort by relevance Sort by last modified time
    Searched defs:destructor (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p20.cpp 10 void destructor() { function
  /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:__anon62258
  /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:__anon62381
  /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 }
PathEffect.cpp 14 static void destructor(JNIEnv* env, jobject, SkPathEffect* effect) { function in class:SkPathEffectGlue
64 { "nativeDestructor", "(I)V", (void*)SkPathEffectGlue::destructor }
  /external/bison/src/
symtab.h 74 /** Any \c \%destructor declared specifically for this symbol.
77 functions. For example, if <tt>symbol::destructor = NULL</tt>, a
78 default \c \%destructor or a per-type \c \%destructor might be
81 code_props destructor; member in struct:symbol
86 \sa symbol::destructor */
143 /** Set the \c destructor associated with \c sym. */
144 void symbol_destructor_set (symbol *sym, code_props const *destructor);
146 /** Get the computed \c \%destructor for \c sym, which was initialized with
147 \c code_props_none_init if there's no \c \%destructor. *
201 code_props destructor; member in struct:__anon2794
    [all...]
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...]
  /external/chromium_org/base/threading/
thread_local_storage_win.cc 14 // pointers to the destructor for each TLS that we allocate.
27 // instance of ThreadLocalStorage::Slot has been freed (i.e., destructor called,
39 // An array of destructor function pointers for the slots. If a slot has a
40 // destructor, it will be stored in its corresponding entry in this array.
42 // to potentially call the destructor, it does so once, and that value is tested
46 // (i.e., null out the destructor entry) that happens on a separate thread can't
101 // terminates, one of the destructor calls we make may be to shut down an
104 // the allocator and cause it to resurrect itself (with no possibly destructor
120 // destructor call. That user was able to function, and define a slot with
129 base::ThreadLocalStorage::TLSDestructorFunc destructor local
    [all...]
  /frameworks/base/libs/hwui/
ResourceCache.cpp 204 void ResourceCache::destructor(SkPath* resource) { function in class:android::uirenderer::ResourceCache
226 void ResourceCache::destructor(SkBitmap* resource) { function in class:android::uirenderer::ResourceCache
248 void ResourceCache::destructor(SkiaShader* resource) { function in class:android::uirenderer::ResourceCache
267 void ResourceCache::destructor(SkiaColorFilter* resource) { function in class:android::uirenderer::ResourceCache
286 void ResourceCache::destructor(Res_png_9patch* resource) { function in class:android::uirenderer::ResourceCache
346 * by the various destructor() and recycle() methods which call this method).
  /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
80 // a destructor defined can be confusing, given that it has such strong pre-requisites to work correctly.
95 void (*destructor)(void*); member in struct:WTF::ThreadSpecific::Data
110 inline void threadSpecificKeyCreate(ThreadSpecificKey* key, void (*destructor)(void *))
112 int error = pthread_key_create(key, destructor);
196 // Does not invoke destructor functions. They will be called from ThreadSpecificThreadExit when the thread is detached.
212 data->destructor = &ThreadSpecific<T>::destroy;
226 // We want get() to keep working while data destructor works, because it can be called indirectly by the destructor
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_analysis.h 149 ralloc_set_destructor(lvs, (void (*)(void*)) destructor);
156 destructor(loop_variable_state *lvs) function in class:loop_variable_state
ralloc.c 68 void (*destructor)(void *); member in struct:ralloc_header
241 /* Free the block itself. Call the destructor first, if any. */
242 if (info->destructor != NULL)
243 info->destructor(PTR_FROM_HEADER(info));
295 ralloc_set_destructor(const void *ptr, void(*destructor)(void *))
298 info->destructor = destructor;
  /external/mesa3d/src/glsl/
loop_analysis.h 149 ralloc_set_destructor(lvs, (void (*)(void*)) destructor);
156 destructor(loop_variable_state *lvs) function in class:loop_variable_state
ralloc.c 68 void (*destructor)(void *); member in struct:ralloc_header
241 /* Free the block itself. Call the destructor first, if any. */
242 if (info->destructor != NULL)
243 info->destructor(PTR_FROM_HEADER(info));
295 ralloc_set_destructor(const void *ptr, void(*destructor)(void *))
298 info->destructor = destructor;
  /external/chromium_org/third_party/sqlite/src/src/
test_func.c 76 ** result with a destructor. Function 'test_destructor' takes one argument
77 ** and returns the same argument interpreted as TEXT. A destructor is
86 static void destructor(void *p){ function
113 sqlite3_result_text(pCtx, zVal, -1, destructor);
136 sqlite3_result_text16(pCtx, zVal, -1, destructor);
  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 37 // CHECK: private unnamed_addr constant [12 x i8] c"~Destructor\00"
38 // CHECK: private unnamed_addr constant [30 x i8] c"NS::Destructor::~Destructor()\00"
271 class Destructor {
273 ~Destructor() {
480 NS::Destructor destructor; local
  /bionic/libc/kernel/common/linux/
skbuff.h 156 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /development/ndk/platforms/android-3/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
skbuff.h 154 void (*destructor)(struct sk_buff *skb); member in struct:sk_buff

Completed in 976 milliseconds

1 2 3