Searched defs:childLayer (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/
H A DScrollingCoordinator.cpp454 for (const RenderLayer* childLayer = curLayer->firstChild(); childLayer; childLayer = childLayer->nextSibling()) {
455 if (layersWithRects.contains(childLayer)) {
456 geometryMap.pushMappingsToAncestor(childLayer, curLayer);
457 projectRectsToGraphicsLayerSpaceRecursive(childLayer, layerRects, graphicsRects, geometryMap, layersWithRects, layerChildFrameMap);
467 const RenderLayer* childLayer = childFrame->view()->renderView()->layer(); local
468 if (layersWithRects.contains(childLayer)) {
471 geometryMap.pushMappingsToAncestor(childLayer, curLaye
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderDeprecatedFlexibleBox.cpp412 RenderLayer* childLayer = child->layer(); local
413 childLayer->setStaticInlinePosition(xPos);
414 if (childLayer->staticBlockPosition() != yPos) {
415 childLayer->setStaticBlockPosition(yPos);
650 RenderLayer* childLayer = child->layer(); local
651 childLayer->setStaticInlinePosition(borderStart() + paddingStart());
652 if (childLayer->staticBlockPosition() != height()) {
653 childLayer->setStaticBlockPosition(height());
H A DRenderFlexibleBox.cpp998 RenderLayer* childLayer = child.layer(); local
1002 childLayer->setStaticInlinePosition(inlinePosition);
1005 if (childLayer->staticBlockPosition() != staticBlockPosition) {
1006 childLayer->setStaticBlockPosition(staticBlockPosition);
H A DRenderBlockFlow.cpp1348 RenderLayer* childLayer = child->layer(); local
1349 if (childLayer->staticBlockPosition() != logicalTop) {
1350 childLayer->setStaticBlockPosition(logicalTop);
H A DRenderLayer.cpp1973 RenderLayer* childLayer = child->layer(); local
1976 if (!childLayer->shouldPaintLayerInSoftwareMode(paintingInfo, paintFlags))
1979 if (!childLayer->isPaginated())
1980 childLayer->paintLayer(context, paintingInfo, paintFlags);
1982 paintPaginatedChildLayer(childLayer, context, paintingInfo, paintFlags);
2274 void RenderLayer::paintPaginatedChildLayer(RenderLayer* childLayer, GraphicsContext* context, const LayerPaintingInfo& paintingInfo, PaintLayerFlags paintFlags) argument
2279 for (RenderLayer* curr = childLayer->parent(); curr; curr = curr->parent()) {
2280 if (curr->renderer()->hasColumns() && checkContainingBlockChainForPagination(childLayer->renderer(), curr->renderBox()))
2293 paintChildLayerIntoColumns(childLayer, context, paintingInfo, paintFlags, columnLayers, columnLayers.size() - 1);
2296 void RenderLayer::paintChildLayerIntoColumns(RenderLayer* childLayer, GraphicsContex argument
2819 RenderLayer* childLayer = child->layer(); local
2844 hitTestPaginatedChildLayer(RenderLayer* childLayer, RenderLayer* rootLayer, const HitTestRequest& request, HitTestResult& result, const LayoutRect& hitTestRect, const HitTestLocation& hitTestLocation, const HitTestingTransformState* transformState, double* zOffset) argument
2861 hitTestChildLayerColumns(RenderLayer* childLayer, RenderLayer* rootLayer, const HitTestRequest& request, HitTestResult& result, const LayoutRect& hitTestRect, const HitTestLocation& hitTestLocation, const HitTestingTransformState* transformState, double* zOffset, const Vector<RenderLayer*>& columnLayers, size_t columnIndex) argument
3371 const RenderLayer* childLayer = child->layer(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsLayer.cpp183 void GraphicsLayer::addChildInternal(GraphicsLayer* childLayer) argument
185 ASSERT(childLayer != this);
187 if (childLayer->parent())
188 childLayer->removeFromParent();
190 childLayer->setParent(this);
191 m_children.append(childLayer);
197 void GraphicsLayer::addChild(GraphicsLayer* childLayer) argument
199 addChildInternal(childLayer);
203 void GraphicsLayer::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
205 ASSERT(childLayer !
[all...]

Completed in 318 milliseconds