HomeSort by relevance Sort by last modified time
    Searched refs:hRule (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/
Image.cpp 90 static inline FloatSize calculatePatternScale(const FloatRect& dstRect, const FloatRect& srcRect, Image::TileRule hRule, Image::TileRule vRule)
94 if (hRule == Image::StretchTile)
99 if (hRule == Image::RepeatTile)
148 void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, TileRule hRule, TileRule vRule, ColorSpace styleColorSpace, CompositeOperator op)
156 if (hRule == RoundTile)
157 hRule = RepeatTile;
161 FloatSize scale = calculatePatternScale(dstRect, srcRect, hRule, vRule);
168 if (hRule == Image::RepeatTile)
Image.h 172 void drawTiled(GraphicsContext*, const FloatRect& dstRect, const FloatRect& srcRect, TileRule hRule, TileRule vRule, ColorSpace styleColorSpace, CompositeOperator);
GraphicsContext.cpp 487 void GraphicsContext::drawTiledImage(Image* image, ColorSpace styleColorSpace, const IntRect& dest, const IntRect& srcRect, Image::TileRule hRule, Image::TileRule vRule, CompositeOperator op, bool useLowQualityScale)
492 if (hRule == Image::StretchTile && vRule == Image::StretchTile) {
501 image->drawTiled(this, dest, srcRect, hRule, vRule, styleColorSpace, op);
504 image->drawTiled(this, dest, srcRect, hRule, vRule, styleColorSpace, op);
GraphicsContext.h 354 Image::TileRule hRule = Image::StretchTile, Image::TileRule vRule = Image::StretchTile,
  /external/webkit/Source/WebCore/rendering/
RenderBoxModelObject.cpp     [all...]

Completed in 706 milliseconds