Searched refs:parentLayer (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderLayerClipper.cpp | 74 …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()
|
D | RenderLayerRepainter.cpp | 226 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()
|
D | RenderLayer.cpp | 231 …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 …]
|
D | RenderObject.cpp | 447 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 …]
|
D | RenderLayerCompositor.cpp | 1109 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()
|
D | RenderLayerCompositor.h | 269 void setCompositingParent(RenderLayer* childLayer, RenderLayer* parentLayer);
|
D | RenderObject.h | 193 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/ |
D | layer_impl.js | 30 this.parentLayer = undefined; 51 this.children[i].parentLayer = this; 53 this.maskLayer.parentLayer = this; 61 if (this.parentLayer) 62 return this.parentLayer.layerTreeImpl;
|