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

/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsLayer.cpp118 void GraphicsLayer::addChild(GraphicsLayer* childLayer) argument
120 ASSERT(childLayer != this);
122 if (childLayer->parent())
123 childLayer->removeFromParent();
125 childLayer->setParent(this);
126 m_children.append(childLayer);
129 void GraphicsLayer::addChildAtIndex(GraphicsLayer* childLayer, int index) argument
131 ASSERT(childLayer != this);
133 if (childLayer->parent())
134 childLayer
140 addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
160 addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
[all...]
/external/webkit/Source/WebKit/android/jni/
H A DViewStateSerializer.cpp173 LayerAndroid* childLayer = deserializeLayer(version, stream); local
174 if (childLayer)
175 layer->addChild(childLayer);
532 LayerAndroid *childLayer = deserializeLayer(version, stream); local
533 if (childLayer)
534 layer->addChild(childLayer);
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DGraphicsLayerChromium.cpp141 void GraphicsLayerChromium::addChild(GraphicsLayer* childLayer) argument
143 GraphicsLayer::addChild(childLayer);
147 void GraphicsLayerChromium::addChildAtIndex(GraphicsLayer* childLayer, int index) argument
149 GraphicsLayer::addChildAtIndex(childLayer, index);
153 void GraphicsLayerChromium::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
155 GraphicsLayer::addChildBelow(childLayer, sibling);
159 void GraphicsLayerChromium::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer *sibling) argument
161 GraphicsLayer::addChildAbove(childLayer, sibling);
479 LayerChromium* childLayer = curChild->layerForSuperlayer(); local
480 newSublayers.append(childLayer);
[all...]
/external/webkit/Source/WebCore/platform/graphics/win/
H A DGraphicsLayerCACF.cpp167 void GraphicsLayerCACF::addChild(GraphicsLayer* childLayer) argument
169 GraphicsLayer::addChild(childLayer);
173 void GraphicsLayerCACF::addChildAtIndex(GraphicsLayer* childLayer, int index) argument
175 GraphicsLayer::addChildAtIndex(childLayer, index);
179 void GraphicsLayerCACF::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
181 GraphicsLayer::addChildBelow(childLayer, sibling);
185 void GraphicsLayerCACF::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer *sibling) argument
187 GraphicsLayer::addChildAbove(childLayer, sibling);
493 WKCACFLayer* childLayer = curChild->layerForSuperlayer(); local
494 newSublayers.append(childLayer);
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderFlexibleBox.cpp407 RenderLayer* childLayer = child->layer(); local
408 childLayer->setStaticInlinePosition(xPos);
409 if (childLayer->staticBlockPosition() != yPos) {
410 childLayer->setStaticBlockPosition(yPos);
642 RenderLayer* childLayer = child->layer(); local
643 childLayer->setStaticInlinePosition(borderStart() + paddingStart());
644 if (childLayer->staticBlockPosition() != height()) {
645 childLayer->setStaticBlockPosition(height());
H A DRenderLayerCompositor.cpp916 void RenderLayerCompositor::setCompositingParent(RenderLayer* childLayer, RenderLayer* parentLayer) argument
918 ASSERT(!parentLayer || childLayer->ancestorCompositingLayer() == parentLayer);
919 ASSERT(childLayer->isComposited());
929 GraphicsLayer* hostedLayer = childLayer->backing()->childForSuperlayers();
933 childLayer->backing()->childForSuperlayers()->removeFromParent();
H A DRenderLayer.cpp2782 RenderLayer* childLayer = list->at(i); local
2783 if (!childLayer->isPaginated())
2784 childLayer->paintLayer(rootLayer, p, paintDirtyRect, paintBehavior, paintingRoot, overlapTestRequests, paintFlags);
2786 paintPaginatedChildLayer(childLayer, rootLayer, p, paintDirtyRect, paintBehavior, paintingRoot, overlapTestRequests, paintFlags);
2790 void RenderLayer::paintPaginatedChildLayer(RenderLayer* childLayer, RenderLayer* rootLayer, GraphicsContext* context, argument
2798 for (RenderLayer* curr = childLayer->parent(); curr; curr = curr->parent()) {
2799 if (curr->renderer()->hasColumns() && checkContainingBlockChainForPagination(childLayer->renderer(), curr->renderBox()))
2807 paintChildLayerIntoColumns(childLayer, rootLayer, context, paintDirtyRect, paintBehavior, paintingRoot, overlapTestRequests, paintFlags, columnLayers, columnLayers.size() - 1);
2810 void RenderLayer::paintChildLayerIntoColumns(RenderLayer* childLayer, RenderLayer* rootLayer, GraphicsContext* context, argument
2852 bool oldHasTransform = childLayer
3244 RenderLayer* childLayer = list->at(i); local
3269 hitTestPaginatedChildLayer(RenderLayer* childLayer, RenderLayer* rootLayer, const HitTestRequest& request, HitTestResult& result, const IntRect& hitTestRect, const IntPoint& hitTestPoint, const HitTestingTransformState* transformState, double* zOffset) argument
3286 hitTestChildLayerColumns(RenderLayer* childLayer, RenderLayer* rootLayer, const HitTestRequest& request, HitTestResult& result, const IntRect& hitTestRect, const IntPoint& hitTestPoint, const HitTestingTransformState* transformState, double* zOffset, const Vector<RenderLayer*>& columnLayers, size_t columnIndex) argument
[all...]
H A DRenderBlock.cpp1485 RenderLayer* childLayer = child->layer(); local
1487 childLayer->setStaticInlinePosition(borderAndPaddingStart());
1504 if (childLayer->staticBlockPosition() != logicalTop) {
1505 childLayer->setStaticBlockPosition(logicalTop);
/external/webkit/Source/WebCore/platform/graphics/android/
H A DGraphicsLayerAndroid.cpp156 void GraphicsLayerAndroid::addChild(GraphicsLayer* childLayer) argument
159 const String& name = childLayer->name();
160 ALOGV("(%x) addChild: %x (%s)", this, childLayer, name.ascii().data());
162 GraphicsLayer::addChild(childLayer);
167 void GraphicsLayerAndroid::addChildAtIndex(GraphicsLayer* childLayer, int index) argument
169 ALOGV("(%x) addChild %x AtIndex %d", this, childLayer, index);
170 GraphicsLayer::addChildAtIndex(childLayer, index);
175 void GraphicsLayerAndroid::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
177 ALOGV("(%x) addChild %x Below %x", this, childLayer, sibling);
178 GraphicsLayer::addChildBelow(childLayer, siblin
183 addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.cpp309 void GraphicsLayerCA::addChild(GraphicsLayer* childLayer) argument
311 GraphicsLayer::addChild(childLayer);
315 void GraphicsLayerCA::addChildAtIndex(GraphicsLayer* childLayer, int index) argument
317 GraphicsLayer::addChildAtIndex(childLayer, index);
321 void GraphicsLayerCA::addChildBelow(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
323 GraphicsLayer::addChildBelow(childLayer, sibling);
327 void GraphicsLayerCA::addChildAbove(GraphicsLayer* childLayer, GraphicsLayer* sibling) argument
329 GraphicsLayer::addChildAbove(childLayer, sibling);
933 PlatformCALayer* childLayer = curChild->layerForSuperlayer(); local
934 newSublayers.append(childLayer);
2264 RefPtr<PlatformCALayer> childLayer = curChild->fetchCloneLayers(replicaRoot, replicaState, IntermediateCloneLevel); local
[all...]

Completed in 933 milliseconds