Home
last modified time | relevance | path

Searched refs:parentLayer (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLayerClipper.cpp74 …RenderLayer* parentLayer = clipRectsContext.rootLayer != m_renderer->layer() ? m_renderer->layer()… in updateClipRects() local
75 if (parentLayer) in updateClipRects()
76 parentLayer->clipper().updateClipRects(clipRectsContext); in updateClipRects()
84 …if (parentLayer && parentLayer->clipper().clipRects(clipRectsContext) && clipRects == *parentLayer in updateClipRects()
85 …che->setClipRects(clipRectsType, clipRectsContext.respectOverflowClip, parentLayer->clipper().clip… in updateClipRects()
132 …RenderLayer* parentLayer = clipRectsContext.rootLayer != m_renderer->layer() ? m_renderer->layer()… in calculateClipRects() local
135 if (parentLayer) { in calculateClipRects()
136 if (useCached && parentLayer->clipper().clipRects(clipRectsContext)) { in calculateClipRects()
137 clipRects = *parentLayer->clipper().clipRects(clipRectsContext); in calculateClipRects()
141 parentLayer->clipper().calculateClipRects(parentContext, clipRects); in calculateClipRects()
DRenderLayerRepainter.cpp226 RenderLayer* parentLayer = enclosingFilterRepaintLayer(); in setFilterBackendNeedsRepaintingInRect() local
227 ASSERT(parentLayer); in setFilterBackendNeedsRepaintingInRect()
229 …LayoutRect parentLayerRect = m_renderer->localToContainerQuad(repaintQuad, parentLayer->renderer()… in setFilterBackendNeedsRepaintingInRect()
231 if (parentLayer->hasCompositedLayerMapping()) { in setFilterBackendNeedsRepaintingInRect()
232 parentLayer->repainter().setBackingNeedsRepaintInRect(parentLayerRect); in setFilterBackendNeedsRepaintingInRect()
236 if (parentLayer->paintsWithFilters()) { in setFilterBackendNeedsRepaintingInRect()
237 parentLayer->repainter().setFilterBackendNeedsRepaintingInRect(parentLayerRect); in setFilterBackendNeedsRepaintingInRect()
241 if (parentLayer->isRootLayer()) { in setFilterBackendNeedsRepaintingInRect()
242 RenderView* view = toRenderView(parentLayer->renderer()); in setFilterBackendNeedsRepaintingInRect()
DRenderLayer.cpp231 …for (const RenderLayer* parentLayer = parent(); parentLayer; rootLayer = parentLayer, parentLayer in computeOffsetFromRoot() local
232 hasLayerOffset = parentLayer->canUseConvertToLayerCoords(); in computeOffsetFromRoot()
1518 RenderLayer* parentLayer = renderer()->parent()->enclosingLayer(); in insertOnlyThisLayer() local
1519 ASSERT(parentLayer); in insertOnlyThisLayer()
1520 …ild = !parentLayer->reflectionInfo() || parentLayer->reflectionInfo()->reflectionLayer() != this ?… in insertOnlyThisLayer()
1521 parentLayer->addChild(this, beforeChild); in insertOnlyThisLayer()
1608 RenderLayer* parentLayer; in accumulateOffsetTowardsAncestor() local
1611 parentLayer = layer->parent(); in accumulateOffsetTowardsAncestor()
1613 while (parentLayer) { in accumulateOffsetTowardsAncestor()
1617 if (parentLayer->isPositionedContainer()) in accumulateOffsetTowardsAncestor()
[all …]
DRenderObject.cpp447 static void addLayers(RenderObject* obj, RenderLayer* parentLayer, RenderObject*& newObject, in addLayers() argument
455 beforeChild = newObject->parent()->findNextLayer(parentLayer, newObject); in addLayers()
458 parentLayer->addChild(toRenderLayerModelObject(obj)->layer(), beforeChild); in addLayers()
463 addLayers(curr, parentLayer, newObject, beforeChild); in addLayers()
466 void RenderObject::addLayers(RenderLayer* parentLayer) in addLayers() argument
468 if (!parentLayer) in addLayers()
473 WebCore::addLayers(this, parentLayer, object, beforeChild); in addLayers()
476 void RenderObject::removeLayers(RenderLayer* parentLayer) in removeLayers() argument
478 if (!parentLayer) in removeLayers()
482 parentLayer->removeChild(toRenderLayerModelObject(this)->layer()); in removeLayers()
[all …]
DRenderLayerCompositor.cpp1109 void RenderLayerCompositor::setCompositingParent(RenderLayer* childLayer, RenderLayer* parentLayer) in setCompositingParent() argument
1111 ASSERT(!parentLayer || childLayer->ancestorCompositingLayer() == parentLayer); in setCompositingParent()
1117 if (!parentLayer || !parentLayer->hasCompositedLayerMapping()) in setCompositingParent()
1120 if (parentLayer) { in setCompositingParent()
1121 GraphicsLayer* hostingLayer = parentLayer->compositedLayerMapping()->parentForSublayers(); in setCompositingParent()
DRenderLayerCompositor.h269 void setCompositingParent(RenderLayer* childLayer, RenderLayer* parentLayer);
DRenderObject.h193 void addLayers(RenderLayer* parentLayer);
194 void removeLayers(RenderLayer* parentLayer);
196 …RenderLayer* findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint, bool checkParent = …
/external/chromium-trace/trace-viewer/src/cc/
Dlayer_impl.js30 this.parentLayer = undefined;
51 this.children[i].parentLayer = this;
53 this.maskLayer.parentLayer = this;
61 if (this.parentLayer)
62 return this.parentLayer.layerTreeImpl;