Home
last modified time | relevance | path

Searched refs:childLayer (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsLayer.cpp177 void GraphicsLayer::addChildInternal(GraphicsLayer* childLayer) in addChildInternal() argument
179 ASSERT(childLayer != this); in addChildInternal()
181 if (childLayer->parent()) in addChildInternal()
182 childLayer->removeFromParent(); in addChildInternal()
184 childLayer->setParent(this); in addChildInternal()
185 m_children.append(childLayer); in addChildInternal()
191 void GraphicsLayer::addChild(GraphicsLayer* childLayer) in addChild() argument
193 addChildInternal(childLayer); in addChild()
197 void GraphicsLayer::addChildAtIndex(GraphicsLayer* childLayer, int index) in addChildAtIndex() argument
199 ASSERT(childLayer != this); in addChildAtIndex()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
DScrollingCoordinator.cpp431 …for (const RenderLayer* childLayer = curLayer->firstChild(); childLayer; childLayer = childLayer->… in convertLayerRectsToEnclosingCompositedLayerRecursive() local
432 if (layersWithRects.contains(childLayer)) { in convertLayerRectsToEnclosingCompositedLayerRecursive()
433 geometryMap.pushMappingsToAncestor(childLayer, curLayer); in convertLayerRectsToEnclosingCompositedLayerRecursive()
434 …convertLayerRectsToEnclosingCompositedLayerRecursive(childLayer, layerRects, compositorRects, geom… in convertLayerRectsToEnclosingCompositedLayerRecursive()
444 const RenderLayer* childLayer = childFrame->view()->renderView()->layer(); in convertLayerRectsToEnclosingCompositedLayerRecursive() local
445 if (layersWithRects.contains(childLayer)) { in convertLayerRectsToEnclosingCompositedLayerRecursive()
448 geometryMap.pushMappingsToAncestor(childLayer, curLayer); in convertLayerRectsToEnclosingCompositedLayerRecursive()
449 …convertLayerRectsToEnclosingCompositedLayerRecursive(childLayer, layerRects, compositorRects, geom… in convertLayerRectsToEnclosingCompositedLayerRecursive()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLayer.cpp2228 RenderLayer* childLayer = child->layer(); in paintChildren() local
2231 if (childLayer->compositingState() == PaintsIntoGroupedBacking) in paintChildren()
2234 if (!childLayer->isPaginated()) in paintChildren()
2235 childLayer->paintLayer(context, paintingInfo, paintFlags); in paintChildren()
2237 paintPaginatedChildLayer(childLayer, context, paintingInfo, paintFlags); in paintChildren()
2517 void RenderLayer::paintPaginatedChildLayer(RenderLayer* childLayer, GraphicsContext* context, const… in paintPaginatedChildLayer() argument
2522 for (RenderLayer* curr = childLayer->parent(); curr; curr = curr->parent()) { in paintPaginatedChildLayer()
2523 …if (curr->renderer()->hasColumns() && checkContainingBlockChainForPagination(childLayer->renderer(… in paintPaginatedChildLayer()
2535 …paintChildLayerIntoColumns(childLayer, context, paintingInfo, paintFlags, columnLayers, columnLaye… in paintPaginatedChildLayer()
2538 void RenderLayer::paintChildLayerIntoColumns(RenderLayer* childLayer, GraphicsContext* context, con… in paintChildLayerIntoColumns() argument
[all …]
DRenderDeprecatedFlexibleBox.cpp428 RenderLayer* childLayer = child->layer(); in layoutHorizontalBox() local
429 childLayer->setStaticInlinePosition(xPos); // FIXME: Not right for regions. in layoutHorizontalBox()
430 if (childLayer->staticBlockPosition() != yPos) { in layoutHorizontalBox()
431 childLayer->setStaticBlockPosition(yPos); in layoutHorizontalBox()
666 RenderLayer* childLayer = child->layer(); in layoutVerticalBox() local
667childLayer->setStaticInlinePosition(borderStart() + paddingStart()); // FIXME: Not right for regio… in layoutVerticalBox()
668 if (childLayer->staticBlockPosition() != height()) { in layoutVerticalBox()
669 childLayer->setStaticBlockPosition(height()); in layoutVerticalBox()
DRenderLayer.h509 …void paintPaginatedChildLayer(RenderLayer* childLayer, GraphicsContext*, const LayerPaintingInfo&,…
510 …void paintChildLayerIntoColumns(RenderLayer* childLayer, GraphicsContext*, const LayerPaintingInfo…
538 …RenderLayer* hitTestPaginatedChildLayer(RenderLayer* childLayer, RenderLayer* rootLayer, const Hit…
541 …RenderLayer* hitTestChildLayerColumns(RenderLayer* childLayer, RenderLayer* rootLayer, const HitTe…
DRenderLayerCompositor.h269 void setCompositingParent(RenderLayer* childLayer, RenderLayer* parentLayer);
DRenderFlexibleBox.cpp1005 RenderLayer* childLayer = child->layer(); in prepareChildForPositionedLayout() local
1009 childLayer->setStaticInlinePosition(inlinePosition); // FIXME: Not right for regions. in prepareChildForPositionedLayout()
1012 if (childLayer->staticBlockPosition() != staticBlockPosition) { in prepareChildForPositionedLayout()
1013 childLayer->setStaticBlockPosition(staticBlockPosition); in prepareChildForPositionedLayout()
DRenderLayerCompositor.cpp1109 void RenderLayerCompositor::setCompositingParent(RenderLayer* childLayer, RenderLayer* parentLayer) in setCompositingParent() argument
1111 ASSERT(!parentLayer || childLayer->ancestorCompositingLayer() == parentLayer); in setCompositingParent()
1112 ASSERT(childLayer->hasCompositedLayerMapping()); in setCompositingParent()
1122 GraphicsLayer* hostedLayer = childLayer->compositedLayerMapping()->childForSuperlayers(); in setCompositingParent()
1126 childLayer->compositedLayerMapping()->childForSuperlayers()->removeFromParent(); in setCompositingParent()
DRenderBlockFlow.cpp1101 RenderLayer* childLayer = child->layer(); in adjustPositionedBlock() local
1102 if (childLayer->staticBlockPosition() != logicalTop) { in adjustPositionedBlock()
1103 childLayer->setStaticBlockPosition(logicalTop); in adjustPositionedBlock()
DRenderBox.cpp1395 if (RenderLayer* childLayer = childBox->layer()) { in isCandidateForOpaquenessTest() local
1397 if (childLayer->compositingState() != NotComposited) in isCandidateForOpaquenessTest()
1402 if (childLayer->hasTransform() || childLayer->isTransparent() || childLayer->hasFilter()) in isCandidateForOpaquenessTest()