Searched refs:owner (Results 151 - 175 of 409) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWin.cpp48 void PlatformCALayer::setOwner(PlatformCALayerClient* owner) argument
50 m_owner = owner;
88 PassRefPtr<PlatformCALayer> PlatformCALayer::create(LayerType layerType, PlatformCALayerClient* owner) argument
90 return adoptRef(new PlatformCALayer(layerType, 0, owner));
93 PassRefPtr<PlatformCALayer> PlatformCALayer::create(void* platformLayer, PlatformCALayerClient* owner) argument
95 return adoptRef(new PlatformCALayer(LayerTypeCustom, static_cast<PlatformLayer*>(platformLayer), owner));
107 if (layer && layer->owner())
108 layer->owner()->platformCALayerLayoutSublayersOfLayer(layer);
111 PlatformCALayer::PlatformCALayer(LayerType layerType, PlatformLayer* layer, PlatformCALayerClient* owner) argument
112 : m_owner(owner)
[all...]
H A DPlatformCALayerWinInternal.h52 PlatformCALayer* owner() const { return m_owner; } function in class:WebCore::PlatformCALayerWinInternal
/external/quake/quake/src/QW/progs/
H A Dweapons.qc101 missile.owner = self;
364 // T_Damage (other, self, self.owner, 1000 );
365 // T_RadiusDamage (self, self.owner, 1000, other);
371 if (other == self.owner)
372 return; // don't explode on owner
390 T_Damage (other, self, self.owner, damg );
397 T_RadiusDamage (self, self.owner, 120, other, "rocket");
430 newmis.owner = self;
539 T_Damage (self, self, self.owner, 4000 );
600 T_RadiusDamage (self, self.owner, 12
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
H A DPlatformCALayerMac.mm62 - (void)setOwner:(PlatformCALayer*)owner;
85 - (void)setOwner:(PlatformCALayer*)owner
87 m_owner = owner;
108 void PlatformCALayer::setOwner(PlatformCALayerClient* owner)
110 m_owner = owner;
112 // Change the delegate's owner if needed
148 PassRefPtr<PlatformCALayer> PlatformCALayer::create(LayerType layerType, PlatformCALayerClient* owner)
150 return adoptRef(new PlatformCALayer(layerType, 0, owner));
153 PassRefPtr<PlatformCALayer> PlatformCALayer::create(void* platformLayer, PlatformCALayerClient* owner)
155 return adoptRef(new PlatformCALayer(LayerTypeCustom, static_cast<PlatformLayer*>(platformLayer), owner));
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExpressionVisitor.java57 * @param owner The current XPath object that owns the expression.
62 public boolean visitFunction(ExpressionOwner owner, Function func) argument
/external/chromium/chrome/browser/
H A Dblocked_content_container.h22 explicit BlockedContentContainer(TabContents* owner);
/external/chromium/chrome/browser/printing/
H A Dprint_job_worker.h34 explicit PrintJobWorker(PrintJobWorkerOwner* owner);
/external/chromium/chrome/browser/renderer_host/
H A Dgtk_key_bindings_handler.h51 GtkKeyBindingsHandler *owner; member in struct:GtkKeyBindingsHandler::Handler
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dcontent_setting_decoration.h25 LocationBarViewMac* owner,
H A Dpage_action_decoration.h26 PageActionDecoration(LocationBarViewMac* owner,
/external/iproute2/ip/
H A Diptuntap.c275 long flags, owner = -1, group = -1; local
290 read_prop(d->d_name, "owner", &owner);
295 if (owner != -1)
296 printf(" user %ld", owner);
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DDirectionalLight.java55 public void computeLastDistance(Spatial owner) { argument
56 lastDistance = 0; // directional lights are always closest to their owner
H A DLight.java99 * to the owner spatial. Should be reset after the sorting.
199 protected abstract void computeLastDistance(Spatial owner); argument
/external/kernel-headers/original/linux/
H A Dmutex.h24 * - only the owner can unlock the mutex
42 * - owner tracking
53 struct thread_info *owner; member in struct:mutex
/external/libppp/src/
H A Dhdlc.h72 struct lcp *owner; /* parent LCP */ member in struct:hdlc::__anon8048
/external/quake/quake/src/QW/client/
H A Dd_local.h40 struct surfcache_s **owner; // NULL is an empty chunk of memory member in struct:surfcache_s
/external/quake/quake/src/WinQuake/
H A Dd_local.h40 struct surfcache_s **owner; // NULL is an empty chunk of memory member in struct:surfcache_s
/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/Source/JavaScriptCore/API/
H A DJSCallbackObject.h57 void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, JSValue value) argument
61 m_privateProperties->setPrivateProperty(globalData, owner, propertyName, value);
89 void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, JSValue value) argument
92 m_propertyMap.add(propertyName.impl(), empty).first->second.set(globalData, owner, value);
/external/webkit/Source/WebCore/css/
H A DStyleSheet.h71 StyleSheet(StyleBase* owner, const String& href, const KURL& finalURL);
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DCanvasLayer.h44 CanvasLayer(RenderLayer* owner, HTMLCanvasElement* canvas);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerChromium.h64 static PassRefPtr<LayerChromium> create(GraphicsLayerChromium* owner = 0);
148 void setOwner(GraphicsLayerChromium* owner) { m_owner = owner; } argument
192 explicit LayerChromium(GraphicsLayerChromium* owner);
H A DVideoLayerChromium.cpp48 PassRefPtr<VideoLayerChromium> VideoLayerChromium::create(GraphicsLayerChromium* owner, argument
51 return adoptRef(new VideoLayerChromium(owner, provider));
54 VideoLayerChromium::VideoLayerChromium(GraphicsLayerChromium* owner, VideoFrameProvider* provider) argument
55 : LayerChromium(owner)
/external/webkit/Source/WebCore/platform/graphics/win/
H A DWebTiledLayer.cpp64 PassRefPtr<WebTiledLayer> WebTiledLayer::create(const CGSize& tileSize, GraphicsLayer* owner) argument
67 return adoptRef(new WebTiledLayer(tileSize, owner));
70 WebTiledLayer::WebTiledLayer(const CGSize& tileSize, GraphicsLayer* owner) argument
71 : WebLayer(WKCACFLayer::Layer, owner)
/external/webkit/Source/WebCore/rendering/
H A DCounterNode.cpp50 PassRefPtr<CounterNode> CounterNode::create(RenderObject* owner, bool hasResetType, int value) argument
52 return adoptRef(new CounterNode(owner, hasResetType, value));
202 RenderCounter::destroyCounterNode(m_lastChild->owner(), identifier);
314 current->nextSibling(), current->owner());

Completed in 2232 milliseconds

1234567891011>>