Searched defs:rect (Results 1 - 25 of 624) sorted by relevance

1234567891011>>

/external/skia/legacy/src/animator/
H A DSkDrawClip.h25 SkDrawRect* rect; member in class:SkDrawClip
H A DSkDisplayBounds.cpp35 SkIRect& rect = maker.fDisplayList.fInvalBounds; local
37 if (rect.isEmpty())
38 rect = fBounds;
40 rect.join(fBounds);
H A DSkBoundable.cpp25 void SkBoundable::getBounds(SkRect* rect) { argument
26 SkASSERT(rect);
28 INHERITED::getBounds(rect);
31 rect->fLeft = SkIntToScalar(fBounds.fLeft);
32 rect->fTop = SkIntToScalar(fBounds.fTop);
33 rect->fRight = SkIntToScalar(fBounds.fRight);
34 rect->fBottom = SkIntToScalar(fBounds.fBottom);
/external/skia/src/animator/
H A DSkDrawClip.h25 SkDrawRect* rect; member in class:SkDrawClip
H A DSkDisplayBounds.cpp35 SkIRect& rect = maker.fDisplayList.fInvalBounds; local
37 if (rect.isEmpty())
38 rect = fBounds;
40 rect.join(fBounds);
H A DSkBoundable.cpp25 void SkBoundable::getBounds(SkRect* rect) { argument
26 SkASSERT(rect);
28 INHERITED::getBounds(rect);
31 rect->fLeft = SkIntToScalar(fBounds.fLeft);
32 rect->fTop = SkIntToScalar(fBounds.fTop);
33 rect->fRight = SkIntToScalar(fBounds.fRight);
34 rect->fBottom = SkIntToScalar(fBounds.fBottom);
/external/webkit/Source/WebCore/dom/
H A DClientRect.cpp36 ClientRect::ClientRect(const IntRect& rect) argument
37 : m_rect(rect)
41 ClientRect::ClientRect(const FloatRect& rect) argument
42 : m_rect(rect)
/external/webkit/Source/WebKit/mac/WebView/
H A DWebRenderNode.h37 NSRect rect; variable
/external/skia/legacy/src/images/
H A DSkBitmapRegionDecoder.cpp3 bool SkBitmapRegionDecoder::decodeRegion(SkBitmap* bitmap, SkIRect rect, argument
6 return fDecoder->decodeRegion(bitmap, rect, pref);
/external/skia/src/images/
H A DSkBitmapRegionDecoder.cpp3 bool SkBitmapRegionDecoder::decodeRegion(SkBitmap* bitmap, SkIRect rect, argument
6 return fDecoder->decodeRegion(bitmap, rect, pref);
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFloatRectHaiku.cpp37 FloatRect::FloatRect(const BRect& rect) argument
38 : m_location(rect.LeftTop())
39 , m_size(rect.Width() + 1, rect.Height() + 1)
H A DIntRectHaiku.cpp36 IntRect::IntRect(const BRect& rect) argument
37 : m_location(rect.LeftTop())
38 , m_size(rect.IntegerWidth() + 1, rect.IntegerHeight() + 1)
H A DGradientHaiku.cpp67 void Gradient::fill(GraphicsContext* context, const FloatRect& rect) argument
69 context->platformContext()->FillRect(rect, *platformGradient());
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DFloatRectSkia.cpp46 SkRect rect = { x(), y(), maxX(), maxY() }; local
47 return rect;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DIntRectWin.cpp41 RECT rect = { x(), y(), maxX(), maxY() }; local
42 return rect;
/external/webkit/Source/WebKit/android/plugins/
H A DPluginViewBridgeAndroid.cpp32 const IntRect& rect) {}
31 draw(GraphicsContext* gc, const IntRect& rect) argument
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
H A DChunkedUpdateDrawingAreaGtk.cpp50 IntRect rect = updateChunk->rect(); local
51 gc.translate(-rect.x(), -rect.y());
52 m_webPage->drawRect(gc, updateChunk->rect());
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
H A DChunkedUpdateDrawingAreaWin.cpp43 BitmapInfo bmp = BitmapInfo::createBottomUp(updateChunk->rect().size());
52 RECT rect = updateChunk->rect(); local
53 ::FillRect(hdc.get(), &rect, (HBRUSH)::GetStockObject(WHITE_BRUSH));
54 gc.translate(-updateChunk->rect().x(), -updateChunk->rect().y());
56 m_webPage->drawRect(gc, updateChunk->rect());
/external/chromium/webkit/glue/
H A Dwebthemeengine_impl_mac.cc33 const WebRect& rect,
39 trackInfo.bounds = CGRectMake(rect.x, rect.y, rect.width, rect.height);
29 paintScrollbarThumb( WebCanvas* canvas, WebThemeEngine::State state, WebThemeEngine::Size size, const WebRect& rect, const WebThemeEngine::ScrollbarInfo& scrollbarInfo) argument
/external/qemu/android/protocol/
H A Dfb-updates.h36 uint8_t rect[0]; member in struct:FBUpdateMessage
/external/quake/quake/src/QW/client/
H A Dd_fill.c30 void D_FillRect (vrect_t *rect, int color) argument
36 rx = rect->x;
37 ry = rect->y;
38 rwidth = rect->width;
39 rheight = rect->height;
/external/quake/quake/src/WinQuake/
H A Dd_fill.cpp30 void D_FillRect (vrect_t *rect, int color) argument
36 rx = rect->x;
37 ry = rect->y;
38 rwidth = rect->width;
39 rheight = rect->height;
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DIntRectCG.cpp40 IntRect enclosingIntRect(const CGRect& rect) argument
42 int l = static_cast<int>(floorf(rect.origin.x));
43 int t = static_cast<int>(floorf(rect.origin.y));
44 int r = static_cast<int>(ceilf(CGRectGetMaxX(rect)));
45 int b = static_cast<int>(ceilf(CGRectGetMaxY(rect)));
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DIconChromium.cpp48 void Icon::paint(GraphicsContext* context, const IntRect& rect) argument
55 context->drawImage(m_icon.get(), ColorSpaceDeviceRGB, rect);
/external/webkit/Source/WebCore/platform/graphics/efl/
H A DIconEfl.cpp61 void Icon::paint(GraphicsContext* context, const IntRect& rect) argument

Completed in 6088 milliseconds

1234567891011>>