Searched defs:fillLayer (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DInlineFlowBox.cpp1019 void InlineFlowBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int _tx, int _ty, int w, int h, CompositeOperator op) argument
1021 if (!fillLayer)
1023 paintFillLayers(paintInfo, c, fillLayer->next(), _tx, _ty, w, h, op);
1024 paintFillLayer(paintInfo, c, fillLayer, _tx, _ty, w, h, op);
1027 void InlineFlowBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int w, int h, CompositeOperator op) argument
1029 StyleImage* img = fillLayer->image();
1032 boxModelObject()->paintFillLayerExtended(paintInfo, c, fillLayer, tx, ty, w, h, this, w, h, op);
1061 boxModelObject()->paintFillLayerExtended(paintInfo, c, fillLayer, stripX, stripY, stripWidth, stripHeight, this, w, h, op);
H A DRenderBox.cpp918 for (const FillLayer* fillLayer = maskLayers->next(); fillLayer; fillLayer = fillLayer->next()) {
919 if (fillLayer->hasImage() && fillLayer->image()->canRender(style()->effectiveZoom())) {
963 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject) argument
965 if (!fillLayer)
968 paintFillLayers(paintInfo, c, fillLayer->next(), tx, ty, width, height, op, backgroundObject);
969 paintFillLayer(paintInfo, c, fillLayer, t
972 paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject) argument
[all...]
H A DRenderBoxModelObject.cpp781 IntSize RenderBoxModelObject::calculateFillTileSize(const FillLayer* fillLayer, IntSize positioningAreaSize) const argument
783 StyleImage* image = fillLayer->image();
786 EFillSizeType type = fillLayer->size().type;
793 Length layerWidth = fillLayer->size().size.width();
794 Length layerHeight = fillLayer->size().size.height();
842 void RenderBoxModelObject::calculateBackgroundImageGeometry(const FillLayer* fillLayer, int tx, int ty, int w, int h, argument
851 bool fixedAttachment = fillLayer->attachment() == FixedBackgroundAttachment;
869 if (fillLayer->origin() != BorderFillBox) {
874 if (fillLayer->origin() == ContentFillBox) {
896 tileSize = calculateFillTileSize(fillLayer, positioningAreaSiz
[all...]

Completed in 74 milliseconds