Searched refs:rootLayer (Results 1 - 15 of 15) sorted by relevance

/external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/
H A Dmain.m65 CALayer *rootLayer;
177 [obj->rootLayer release];
229 obj->mouseDownLayer = [obj->rootLayer hitTest:point];
231 [obj->controllerLayer handleMouseDown:[obj->rootLayer convertPoint:point toLayer:obj->controllerLayer]];
257 [obj->controllerLayer handleMouseUp:[obj->rootLayer convertPoint:point toLayer:obj->controllerLayer]];
269 [obj->controllerLayer handleMouseDragged:[obj->rootLayer convertPoint:point toLayer:obj->controllerLayer]];
354 if (!obj->rootLayer) {
356 obj->rootLayer = [[CALayer layer] retain];
360 [obj->rootLayer addSublayer:obj->movieLayer];
363 [obj->rootLayer addSublaye
[all...]
/external/webkit/WebCore/rendering/
H A DRenderLayer.h205 void beginTransparencyLayers(GraphicsContext*, const RenderLayer* rootLayer, PaintBehavior);
376 // |rootLayer}. It also computes our background and foreground clip rects
378 void calculateRects(const RenderLayer* rootLayer, const IntRect& paintDirtyRect, IntRect& layerBounds,
382 void updateClipRects(const RenderLayer* rootLayer);
385 void calculateClipRects(const RenderLayer* rootLayer, ClipRects&, bool useCached = false) const;
391 bool intersectsDamageRect(const IntRect& layerBounds, const IntRect& damageRect, const RenderLayer* rootLayer) const;
394 IntRect boundingBox(const RenderLayer* rootLayer) const;
485 void paintLayer(RenderLayer* rootLayer, GraphicsContext*, const IntRect& paintDirtyRect,
489 RenderLayer* hitTestLayer(RenderLayer* rootLayer, RenderLayer* containerLayer, const HitTestRequest& request, HitTestResult& result,
493 PassRefPtr<HitTestingTransformState> createLocalTransformState(RenderLayer* rootLayer, RenderLaye
[all...]
H A DRenderLayer.cpp774 static IntRect transparencyClipBox(const RenderLayer* l, const RenderLayer* rootLayer, PaintBehavior paintBehavior);
776 static void expandClipRectForDescendantsAndReflection(IntRect& clipRect, const RenderLayer* l, const RenderLayer* rootLayer, PaintBehavior paintBehavior) argument
785 clipRect.unite(transparencyClipBox(curr, rootLayer, paintBehavior));
796 l->convertToLayerCoords(rootLayer, deltaX, deltaY);
803 static IntRect transparencyClipBox(const RenderLayer* l, const RenderLayer* rootLayer, PaintBehavior paintBehavior) argument
809 if (rootLayer != l && l->paintsWithTransform(paintBehavior)) {
814 l->convertToLayerCoords(rootLayer, x, y);
825 IntRect clipRect = l->boundingBox(rootLayer);
826 expandClipRectForDescendantsAndReflection(clipRect, l, rootLayer, paintBehavior);
830 void RenderLayer::beginTransparencyLayers(GraphicsContext* p, const RenderLayer* rootLayer, PaintBehavio argument
2185 paintLayer(RenderLayer* rootLayer, GraphicsContext* p, const IntRect& paintDirtyRect, PaintBehavior paintBehavior, RenderObject* paintingRoot, RenderObject::OverlapTestRequestMap* overlapTestRequests, PaintLayerFlags paintFlags) argument
2452 createLocalTransformState(RenderLayer* rootLayer, RenderLayer* containerLayer, const IntRect& hitTestRect, const IntPoint& hitTestPoint, const HitTestingTransformState* containerTransformState) const argument
2515 hitTestLayer(RenderLayer* rootLayer, RenderLayer* containerLayer, const HitTestRequest& request, HitTestResult& result, const IntRect& hitTestRect, const IntPoint& hitTestPoint, bool appliedTransform, const HitTestingTransformState* transformState, double* zOffset) argument
2728 updateClipRects(const RenderLayer* rootLayer) argument
2754 calculateClipRects(const RenderLayer* rootLayer, ClipRects& clipRects, bool useCached) const argument
2816 parentClipRects(const RenderLayer* rootLayer, ClipRects& clipRects, bool temporaryClipRects) const argument
2828 backgroundClipRect(const RenderLayer* rootLayer, bool temporaryClipRects) const argument
2845 calculateRects(const RenderLayer* rootLayer, const IntRect& paintDirtyRect, IntRect& layerBounds, IntRect& backgroundRect, IntRect& foregroundRect, IntRect& outlineRect, bool temporaryClipRects) const argument
2897 RenderLayer* rootLayer = renderer()->view()->layer(); local
2906 RenderLayer* rootLayer = renderer()->view()->layer(); local
[all...]
H A DRenderTreeAsText.cpp73 static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const IntRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior behavior = RenderAsTextBehaviorNormal);
506 static void writeLayers(TextStream& ts, const RenderLayer* rootLayer, RenderLayer* l, argument
511 l->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect, true);
517 bool shouldPaint = (behavior & RenderAsTextShowAllLayers) ? true : l->intersectsDamageRect(layerBounds, damageRect, rootLayer);
531 writeLayers(ts, rootLayer, negList->at(i), paintDirtyRect, currIndent, behavior);
545 writeLayers(ts, rootLayer, normalFlowList->at(i), paintDirtyRect, currIndent, behavior);
556 writeLayers(ts, rootLayer, posList->at(i), paintDirtyRect, currIndent, behavior);
H A DRenderLayerBacking.h165 void paintIntoLayer(RenderLayer* rootLayer, GraphicsContext*, const IntRect& paintDirtyRect,
H A DRenderLayerBacking.cpp277 // for a compositing layer, rootLayer is the layer itself.
873 void RenderLayerBacking::paintIntoLayer(RenderLayer* rootLayer, GraphicsContext* context, argument
874 const IntRect& paintDirtyRect, // in the coords of rootLayer
887 m_owningLayer->calculateRects(rootLayer, paintDirtyRect, layerBounds, damageRect, clipRectToApply, outlineRect);
889 int x = layerBounds.x(); // layerBounds is computed relative to rootLayer
957 it[0]->paintLayer(rootLayer, context, paintDirtyRect, paintBehavior, paintingRoot);
993 it[0]->paintLayer(rootLayer, context, paintDirtyRect, paintBehavior, paintingRoot);
1000 it[0]->paintLayer(rootLayer, context, paintDirtyRect, paintBehavior, paintingRoot);
/external/webkit/WebCore/platform/graphics/win/
H A DWKCACFLayerRenderer.h73 WKCACFLayer* rootLayer() const { return m_rootLayer.get(); } function in class:WebCore::WKCACFLayerRenderer
H A DWKCACFLayer.cpp274 CACFContextRef context = CACFLayerGetContext(rootLayer()->layer());
478 WKCACFLayer* WKCACFLayer::rootLayer() const function in class:WebCore::WKCACFLayer
H A DWKCACFLayer.h206 WKCACFLayer* rootLayer() const;
/external/webkit/WebKit/android/nav/
H A DCachedRoot.h89 const WebCore::LayerAndroid* rootLayer() const { return mRootLayer; } function in class:android::CachedRoot
H A DWebView.cpp543 ->layer(m_frameCacheUI->rootLayer());
574 m_frameCacheUI->rootLayer());
1172 LayerAndroid* rootLayer() const function in class:android::WebView
1429 const LayerAndroid* root = GET_NATIVE_VIEW(env, obj)->rootLayer();
1646 LayerAndroid* root = GET_NATIVE_VIEW(env, obj)->rootLayer();
1985 LayerAndroid* rootLayer = view->rootLayer(); local
1986 if (rootLayer) {
1990 rootLayer->setMatrix(canvas.getTotalMatrix());
1992 rootLayer
2001 const LayerAndroid* rootLayer = view->rootLayer(); local
[all...]
H A DCachedFrame.cpp45 return layer(node)->adjustBounds(mRoot->rootLayer(), rect);
703 if (mRoot->rootLayer() && !test->isInLayer()
978 return layer(node)->picture(mRoot->rootLayer());
/external/webkit/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp436 LayerAndroid* rootLayer = new LayerAndroid(true); local
438 rootLayer->addChild(copyLayer);
443 PlatformBridge::setUIRootLayer(m_frame->view(), rootLayer);
/external/webkit/WebCore/page/
H A DFrameView.cpp480 if (GraphicsLayer* rootLayer = contentRenderer->compositor()->rootPlatformLayer())
481 rootLayer->syncCompositingState();
1755 if (GraphicsLayer* rootLayer = contentRenderer->compositor()->rootPlatformLayer())
1756 rootLayer->syncCompositingState();
/external/webkit/WebKit/android/jni/
H A DWebViewCore.cpp2054 GraphicsLayerAndroid* rootLayer = graphicsRootLayer(); local
2055 if (rootLayer)
2056 rootLayer->pauseDisplay(true);
2109 if (rootLayer)
2110 rootLayer->pauseDisplay(false);

Completed in 361 milliseconds