Searched defs:owner (Results 1 - 25 of 107) sorted by relevance

12345

/external/webkit/WebCore/bindings/v8/custom/
H A DV8StyleSheetCustom.cpp46 // Add a hidden reference from stylesheet object to its owner node.
49 v8::Handle<v8::Object> owner = v8::Handle<v8::Object>::Cast(toV8(ownerNode)); local
50 wrapper->SetInternalField(V8StyleSheet::ownerNodeIndex, owner);
H A DV8NamedNodeMapCustom.cpp81 // Add a hidden reference from named node map to its owner node.
84 v8::Handle<v8::Value> owner = toV8(element); local
85 wrapper->SetInternalField(V8NamedNodeMap::ownerNodeIndex, owner);
H A DV8XSLTProcessorCustom.cpp79 Document* owner = V8Document::toNative(v8::Handle<v8::Object>::Cast(args[1])); local
80 RefPtr<DocumentFragment> result = imp->transformToFragment(source, owner);
/external/webkit/WebKit/mac/Misc/
H A DWebNSPasteboardExtras.h62 + (int)_web_setFindPasteboardString:(NSString *)string withOwner:(id)owner; variable
/external/bluetooth/glib/gio/
H A Dglocalfileinfo.h40 int owner; member in struct:__anon468
/external/kernel-headers/original/linux/
H A Dcdev.h7 struct module *owner; member in struct:cdev
H A Dspinlock_types.h27 void *owner; member in struct:__anon3421
43 void *owner; member in struct:__anon3422
70 .owner = SPINLOCK_OWNER_INIT, \
76 .owner = SPINLOCK_OWNER_INIT, \
/external/qemu/distrib/sdl-1.2.12/src/thread/dc/
H A DSDL_sysmutex.c33 Uint32 owner; member in struct:SDL_mutex
47 mutex->owner = 0;
76 if ( mutex->owner == this_thread ) {
84 mutex->owner = this_thread;
104 if ( SDL_ThreadID() != mutex->owner ) {
113 First reset the owner so another thread doesn't lock
117 mutex->owner = 0;
/external/qemu/distrib/sdl-1.2.12/src/thread/generic/
H A DSDL_sysmutex.c32 Uint32 owner; member in struct:SDL_mutex
47 mutex->owner = 0;
83 if ( mutex->owner == this_thread ) {
91 mutex->owner = this_thread;
111 if ( SDL_ThreadID() != mutex->owner ) {
120 First reset the owner so another thread doesn't lock
124 mutex->owner = 0;
/external/webkit/WebCore/svg/graphics/
H A DSVGPaintServerLinearGradient.h38 static PassRefPtr<SVGPaintServerLinearGradient> create(const SVGGradientElement* owner) { return adoptRef(new SVGPaintServerLinearGradient(owner)); } argument
52 SVGPaintServerLinearGradient(const SVGGradientElement* owner);
H A DSVGPaintServerRadialGradient.h38 static PassRefPtr<SVGPaintServerRadialGradient> create(const SVGGradientElement* owner) { return adoptRef(new SVGPaintServerRadialGradient(owner)); } argument
55 SVGPaintServerRadialGradient(const SVGGradientElement* owner);
H A DSVGPaintServerLinearGradient.cpp34 SVGPaintServerLinearGradient::SVGPaintServerLinearGradient(const SVGGradientElement* owner) argument
35 : SVGPaintServerGradient(owner)
H A DSVGPaintServerPattern.h49 static PassRefPtr<SVGPaintServerPattern> create(const SVGPatternElement* owner) { return adoptRef(new SVGPaintServerPattern(owner)); } argument
H A DSVGPaintServerRadialGradient.cpp34 SVGPaintServerRadialGradient::SVGPaintServerRadialGradient(const SVGGradientElement* owner) argument
35 : SVGPaintServerGradient(owner)
/external/kernel-headers/original/linux/mtd/
H A Dpartitions.h62 struct module *owner; member in struct:mtd_part_parser
72 #define put_partition_parser(p) do { module_put((p)->owner); } while(0)
/external/proguard/src/proguard/gui/
H A DKeepSpecificationsPanel.java42 public KeepSpecificationsPanel(JFrame owner, argument
49 super(owner, true);
H A DOptimizationsDialog.java55 public OptimizationsDialog(JFrame owner) argument
57 super(owner, msg("selectOptimizations"), true);
/external/qemu/distrib/sdl-1.2.12/src/thread/pthread/
H A DSDL_sysmutex.c37 pthread_t owner; member in struct:SDL_mutex
92 if ( mutex->owner == this_thread ) {
100 mutex->owner = this_thread;
128 if ( pthread_self() == mutex->owner ) {
133 First reset the owner so another thread doesn't lock
137 mutex->owner = 0;
/external/qemu/distrib/sdl-1.2.12/src/thread/riscos/
H A DSDL_sysmutex.c38 pthread_t owner; member in struct:SDL_mutex
91 if ( mutex->owner == this_thread ) {
99 mutex->owner = this_thread;
127 if ( pthread_self() == mutex->owner ) {
132 First reset the owner so another thread doesn't lock
136 mutex->owner = 0;
/external/speex/include/speex/
H A Dspeex_bits.h54 int owner; /**< Does the struct "own" the "raw" buffer (member "chars") */ member in struct:SpeexBits
/external/webkit/JavaScriptCore/runtime/
H A DUStringImpl.cpp92 UStringImpl* owner = bufferOwnerString(); local
93 if (owner->bufferOwnership() == BufferInternal)
96 return owner->baseSharedBuffer();
/external/webkit/WebCore/css/
H A DStyleSheet.cpp45 StyleSheet::StyleSheet(StyleBase* owner, const String& originalURL, const KURL& finalURL) argument
46 : StyleList(owner)
/external/webkit/WebCore/platform/graphics/
H A DGlyphPageTreeNode.h73 static PassRefPtr<GlyphPage> create(GlyphPageTreeNode* owner) argument
75 return adoptRef(new GlyphPage(owner));
131 GlyphPageTreeNode* owner() const { return m_owner; }
137 GlyphPage(GlyphPageTreeNode* owner)
138 : m_owner(owner)
/external/webkit/WebCore/bindings/v8/
H A DV8NPUtils.cpp46 void convertV8ObjectToNPVariant(v8::Local<v8::Value> object, NPObject* owner, NPVariant* result) argument
75 _NPN_RegisterObject(npobject, owner);
/external/webkit/WebCore/svg/animation/
H A DSMILTimeContainer.h48 static PassRefPtr<SMILTimeContainer> create(SVGSVGElement* owner) { return adoptRef(new SMILTimeContainer(owner)); } argument
68 SMILTimeContainer(SVGSVGElement* owner);

Completed in 190 milliseconds

12345