/external/skia/src/animator/ |
SkDrawClip.h | 33 SkDrawRect* rect; member in class:SkDrawClip
|
SkDisplayBounds.cpp | 43 SkIRect& rect = maker.fDisplayList.fInvalBounds; local 45 if (rect.isEmpty()) 46 rect = fBounds; 48 rect.join(fBounds);
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebRenderNode.h | 37 NSRect rect; variable
|
WebDashboardRegion.h | 41 NSRect rect; variable 45 - initWithRect:(NSRect)rect clip:(NSRect)clip type:(WebDashboardRegionType)type;
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
FloatRectSkia.cpp | 46 SkRect rect = { x(), y(), maxX(), maxY() }; local 47 return rect;
|
IntRectSkia.cpp | 40 SkIRect rect = { x(), y(), maxX(), maxY() }; local 41 return rect; 46 SkRect rect; local 47 rect.set(SkIntToScalar(x()), SkIntToScalar(y()), SkIntToScalar(maxX()), SkIntToScalar(maxY())); 48 return rect;
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
IntRectWin.cpp | 34 IntRect::IntRect(const RECT& r) 39 IntRect::operator RECT() const 41 RECT rect = { x(), y(), maxX(), maxY() }; local 42 return rect;
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/ |
ChunkedUpdateDrawingAreaGtk.cpp | 50 IntRect rect = updateChunk->rect(); local 51 gc.translate(-rect.x(), -rect.y()); 52 m_webPage->drawRect(gc, updateChunk->rect());
|
/external/skia/tests/ |
InfRectTest.cpp | 12 SkRect rect; local 13 rect.set(l, t, r, b); 14 REPORTER_ASSERT(reporter, !rect.hasValidCoordinates()); 17 // Tests that hasValidCoordinates() will reject any rect with +/-inf values 28 SkRect rect = SkRect::MakeXYWH(small, small, big, big); local 29 REPORTER_ASSERT(reporter, rect.hasValidCoordinates());
|
RegionTest.cpp | 5 static void rand_rect(SkIRect* rect, SkRandom& rand) { 8 rect->set(rand.nextU() >> shift, rand.nextU() >> shift, 10 rect->sort(); 13 static bool test_rects(const SkIRect rect[], int count) { 17 rgn0.op(rect[i], SkRegion::kUnion_Op); 19 rgn1.setRects(rect, count); 25 rect[i].fLeft, rect[i].fTop, 26 rect[i].fRight, rect[i].fBottom) 54 SkIRect rect[N]; local [all...] |
/external/webkit/Source/WebKit2/Shared/win/ |
UpdateChunk.cpp | 42 UpdateChunk::UpdateChunk(const IntRect& rect) 43 : m_rect(rect) 46 unsigned memorySize = rect.height() * rect.width() * 4; 50 UpdateChunk::UpdateChunk(const IntRect& rect, HANDLE bitmapSharedMemory) 51 : m_rect(rect) 64 IntRect rect; local 65 if (!decoder->decode(rect)) 67 updateChunk.m_rect = rect;
|
UpdateChunk.h | 44 const WebCore::IntRect& rect() const { return m_rect; } function in class:WebKit::UpdateChunk
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/ |
ChunkedUpdateDrawingAreaWin.cpp | 43 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/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/win/ |
WindowGeometryInitializedBeforeSetWindow.cpp | 55 RECT rect; local 56 if (!::GetClientRect(hwnd, &rect)) { 61 if (::IsRectEmpty(&rect)) { 72 // MSDN says that calling ::MapWindowPoints this way will tell it we're passing a RECT rather than two POINTs. 73 if (!::MapWindowPoints(hwnd, parent, reinterpret_cast<POINT*>(&rect), 2)) { 78 if (rect.left != window->x || rect.top != window->y || (rect.right - rect.left) != window->width || (rect.bottom - rect.top) != window->height) [all...] |
/external/qemu/android/protocol/ |
fb-updates.h | 36 uint8_t rect[0]; member in struct:FBUpdateMessage
|
/external/webkit/Source/WebCore/platform/gtk/ |
GtkPluginWidget.cpp | 54 GdkRectangle rect = _rect; 55 gdk_window_invalidate_rect(window, &rect, FALSE); 60 IntRect rect = frameRect(); local 61 IntPoint loc = parent()->contentsToWindow(rect.location()); 62 GtkAllocation allocation = { loc.x(), loc.y(), rect.width(), rect.height() }; 64 gtk_widget_set_size_request(platformWidget(), rect.width(), rect.height()); 69 void GtkPluginWidget::paint(GraphicsContext* context, const IntRect& rect) 83 event->expose.area = static_cast<GdkRectangle>(rect); [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderHTMLCanvas.cpp | 59 IntRect rect = contentBoxRect(); local 60 rect.move(tx, ty); 61 static_cast<HTMLCanvasElement*>(node())->paint(paintInfo.context, rect);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebScreenInfo.h | 50 // "A RECT structure that specifies the display monitor rectangle, 54 WebRect rect; member in struct:WebKit::WebScreenInfo 57 // "A RECT structure that specifies the work area rectangle of the
|
/external/webkit/Source/WebKit2/Shared/gtk/ |
UpdateChunk.h | 49 const WebCore::IntRect& rect() const { return m_rect; } function in class:WebKit::UpdateChunk
|
/external/webkit/Source/WebKit2/Shared/qt/ |
UpdateChunk.h | 47 const WebCore::IntRect& rect() const { return m_rect; } function in class:WebKit::UpdateChunk
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
OvalShape.java | 37 canvas.drawOval(rect(), paint); method
|
/development/samples/BrowserPlugin/jni/form/ |
FormPlugin.h | 32 ANPRectF rect; member in struct:TextInput
|
/external/chromium/chrome/browser/ui/views/ |
theme_helpers.cc | 36 RECT rect = { 0, 0, width, 1 }; local 37 theme.DrawThemeBackground(dc, 0, 0, &rect, NULL);
|
/external/openssl/apps/ |
winrand.c | 120 RECT rect; local 127 GetClientRect(hwnd, &rect); 129 &rect, DT_SINGLELINE | DT_CENTER | DT_VCENTER);
|
/external/webkit/Source/WebCore/platform/graphics/ |
Tile.h | 58 const IntRect& rect() const { return m_rect; } function in class:WebCore::Tile
|