Home
last modified time | relevance | path

Searched refs:frect (Results 1 – 4 of 4) sorted by relevance

/external/webkit/WebCore/platform/graphics/wx/
DGraphicsContextWx.cpp389 FloatRect GraphicsContext::roundToDevicePixels(const FloatRect& frect) in roundToDevicePixels() argument
393 wxCoord x = (wxCoord)frect.x(); in roundToDevicePixels()
394 wxCoord y = (wxCoord)frect.y(); in roundToDevicePixels()
400 x = (wxCoord)frect.width(); in roundToDevicePixels()
401 y = (wxCoord)frect.height(); in roundToDevicePixels()
/external/webkit/WebCore/platform/graphics/cairo/
DGraphicsContextCairo.cpp630 FloatRect GraphicsContext::roundToDevicePixels(const FloatRect& frect) in roundToDevicePixels() argument
633 double x = frect.x(); in roundToDevicePixels()
634 double y = frect.y(); in roundToDevicePixels()
642 x = frect.width(); in roundToDevicePixels()
643 y = frect.height(); in roundToDevicePixels()
/external/webkit/WebCore/platform/graphics/qt/
DGraphicsContextQt.cpp823 FloatRect GraphicsContext::roundToDevicePixels(const FloatRect& frect) in roundToDevicePixels() argument
825 QRectF rect(frect); in roundToDevicePixels()
/external/webkit/WebCore/platform/graphics/wince/
DGraphicsContextWince.cpp1328 FloatRect GraphicsContext::roundToDevicePixels(const FloatRect& frect) in roundToDevicePixels() argument
1331 return frect; in roundToDevicePixels()