Home
last modified time | relevance | path

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

/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;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLayerClipper.cpp285 RenderLayer* parentLayer = !isClippingRoot ? m_renderer.layer()->parent() : 0; in calculateClipRects() local
288 if (parentLayer) { in calculateClipRects()
290 if (context.usesCache() && parentLayer->clipper().cachedClipRects(context)) { in calculateClipRects()
291 clipRects = *parentLayer->clipper().cachedClipRects(context); in calculateClipRects()
293 parentLayer->clipper().calculateClipRects(context, clipRects); in calculateClipRects()
DRenderObject.cpp477 static void addLayers(RenderObject* obj, RenderLayer* parentLayer, RenderObject*& newObject, in addLayers() argument
485 beforeChild = newObject->parent()->findNextLayer(parentLayer, newObject); in addLayers()
488 parentLayer->addChild(toRenderLayerModelObject(obj)->layer(), beforeChild); in addLayers()
493 addLayers(curr, parentLayer, newObject, beforeChild); in addLayers()
496 void RenderObject::addLayers(RenderLayer* parentLayer) in addLayers() argument
498 if (!parentLayer) in addLayers()
503 blink::addLayers(this, parentLayer, object, beforeChild); in addLayers()
506 void RenderObject::removeLayers(RenderLayer* parentLayer) in removeLayers() argument
508 if (!parentLayer) in removeLayers()
512 parentLayer->removeChild(toRenderLayerModelObject(this)->layer()); in removeLayers()
[all …]
DRenderLayer.cpp1322 RenderLayer* parentLayer = renderer()->parent()->enclosingLayer(); in insertOnlyThisLayer() local
1323 ASSERT(parentLayer); in insertOnlyThisLayer()
1324 …ild = !parentLayer->reflectionInfo() || parentLayer->reflectionInfo()->reflectionLayer() != this ?… in insertOnlyThisLayer()
1325 parentLayer->addChild(this, beforeChild); in insertOnlyThisLayer()
1398 RenderLayer* parentLayer; in accumulateOffsetTowardsAncestor() local
1401 parentLayer = layer->parent(); in accumulateOffsetTowardsAncestor()
1403 while (parentLayer) { in accumulateOffsetTowardsAncestor()
1407 if (parentLayer->isPositionedContainer()) in accumulateOffsetTowardsAncestor()
1410 if (parentLayer == ancestorLayer) { in accumulateOffsetTowardsAncestor()
1415 parentLayer = parentLayer->parent(); in accumulateOffsetTowardsAncestor()
[all …]
DRenderObject.h197 void addLayers(RenderLayer* parentLayer);
198 void removeLayers(RenderLayer* parentLayer);
200 …RenderLayer* findNextLayer(RenderLayer* parentLayer, RenderObject* startPoint, bool checkParent = …