Home
last modified time | relevance | path

Searched refs:currLayer (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp1614 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskImage ? &style->maskLayers() : &st… in getPropertyCSSValue() local
1615 for (; currLayer; currLayer = currLayer->next()) { in getPropertyCSSValue()
1616 if (currLayer->image()) in getPropertyCSSValue()
1617 list->append(currLayer->image()->cssValue()); in getPropertyCSSValue()
1627 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskSize ? &style->maskLayers() : &sty… in getPropertyCSSValue() local
1628 for (; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
1629 list->append(valueForFillSize(currLayer->size(), *style)); in getPropertyCSSValue()
1635 …const FillLayer* currLayer = propertyID == CSSPropertyWebkitMaskRepeat ? &style->maskLayers() : &s… in getPropertyCSSValue() local
1636 for (; currLayer; currLayer = currLayer->next()) in getPropertyCSSValue()
1637 list->append(valueForFillRepeat(currLayer->repeatX(), currLayer->repeatY())); in getPropertyCSSValue()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLayer.cpp1371 for (RenderLayer* currLayer = layer->parent(); currLayer; currLayer = currLayer->parent()) { in accumulateOffsetTowardsAncestor() local
1372 if (currLayer == ancestorLayer) in accumulateOffsetTowardsAncestor()
1375 if (isFixedPositionedContainer(currLayer)) { in accumulateOffsetTowardsAncestor()
1376 fixedPositionContainerLayer = currLayer; in accumulateOffsetTowardsAncestor()
1451 const RenderLayer* currLayer = this; in convertToLayerCoords() local
1452 while (currLayer && currLayer != ancestorLayer) in convertToLayerCoords()
1453 currLayer = accumulateOffsetTowardsAncestor(currLayer, ancestorLayer, location); in convertToLayerCoords()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.cpp1010 for (const FillLayer* currLayer = &layer; currLayer; currLayer = currLayer->next()) { in allLayersAreFixed() local
1011 if (!currLayer->image() || currLayer->attachment() != FixedBackgroundAttachment) in allLayersAreFixed()