HomeSort by relevance Sort by last modified time
    Searched refs:rect (Results 26 - 50 of 597) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/WebKitTools/WinLauncher/
PrintWebUIDelegate.cpp 68 HRESULT PrintWebUIDelegate::webViewPrintingMarginRect(IWebView* view, RECT* rect)
70 if (!view || !rect)
83 privateFrame->frameBounds(rect);
85 rect->left += MARGIN;
86 rect->top += MARGIN;
88 rect->right = (::GetDeviceCaps(dc, LOGPIXELSX) * 6.5) - MARGIN;
89 rect->bottom = (::GetDeviceCaps(dc, LOGPIXELSY) * 11) - MARGIN;
132 /* [in] */ RECT *rect,
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
FloatRectSkia.cpp 46 SkRect rect = { x(), y(), right(), bottom() }; local
47 return rect;
  /external/webkit/WebCore/platform/graphics/win/
IntRectWin.cpp 34 IntRect::IntRect(const RECT& r)
39 IntRect::operator RECT() const
41 RECT rect = { x(), y(), right(), bottom() }; local
42 return rect;
  /external/skia/src/animator/
SkBoundable.cpp 33 void SkBoundable::getBounds(SkRect* rect) {
34 SkASSERT(rect);
36 INHERITED::getBounds(rect);
39 rect->fLeft = SkIntToScalar(fBounds.fLeft);
40 rect->fTop = SkIntToScalar(fBounds.fTop);
41 rect->fRight = SkIntToScalar(fBounds.fRight);
42 rect->fBottom = SkIntToScalar(fBounds.fBottom);
SkDrawClip.h 33 SkDrawRect* rect; member in class:SkDrawClip
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisible.java 23 import android.graphics.Rect;
43 final Rect rect = new Rect(); local
61 rect.set(0, 0, childToMakeVisible.getLeft(), childToMakeVisible.getHeight());
62 childToMakeVisible.requestRectangleOnScreen(rect, true);
69 rect.set(0, 0, topBlob.getWidth(), topBlob.getHeight());
70 topBlob.requestRectangleOnScreen(rect, true);
77 rect.set(0, 0, childToMakeVisible.getLeft(), childToMakeVisible.getHeight());
78 childToMakeVisible.requestRectangleOnScreen(rect, true)
    [all...]
  /external/webkit/WebCore/platform/gtk/
gtk2drawing.c 755 moz_gtk_button_paint(GdkDrawable* drawable, GdkRectangle* rect,
763 gint x = rect->x, y=rect->y, width=rect->width, height=rect->height;
932 moz_gtk_toggle_paint(GdkDrawable* drawable, GdkRectangle* rect,
    [all...]
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 123 public boolean compressToJpeg(Rect rectangle, int quality, OutputStream stream) {
124 Rect wholeImage = new Rect(0, 0, mWidth, mHeight);
214 private void adjustRectangle(Rect rect) {
215 int width = rect.width();
216 int height = rect.height();
221 rect.left &= ~1;
222 rect.top &= ~1;
223 rect.right = rect.left + width
    [all...]
  /external/webkit/WebCore/rendering/
RenderThemeChromiumSkia.cpp 90 static void drawBox(SkCanvas* canvas, const IntRect& rect, const SkPaint& paint)
92 const int right = rect.x() + rect.width() - 1;
93 const int bottom = rect.y() + rect.height() - 1;
94 drawHorizLine(canvas, rect.x(), right, rect.y(), paint);
95 drawVertLine(canvas, right, rect.y(), bottom, paint);
96 drawHorizLine(canvas, rect.x(), right, bottom, paint);
97 drawVertLine(canvas, rect.x(), rect.y(), bottom, paint)
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
IconQt.cpp 58 void Icon::paint(GraphicsContext* ctx, const IntRect& rect)
60 QPixmap px = m_icon.pixmap(rect.size());
63 p->drawPixmap(rect.x(), rect.y(), px);
  /external/webkit/WebCore/platform/graphics/wx/
IconWx.cpp 41 void Icon::paint(GraphicsContext* ctx, const IntRect& rect)
  /external/webkit/WebCore/plugins/mac/
PluginWidgetMac.mm 35 void PluginWidget::invalidateRect(const IntRect& rect)
37 [platformWidget() setNeedsDisplayInRect:rect];
  /external/webkit/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/WebCore/page/mac/
WebDashboardRegion.h 41 NSRect rect; variable
45 - initWithRect:(NSRect)rect clip:(NSRect)clip type:(WebDashboardRegionType)type;
WebDashboardRegion.m 38 rect = r;
58 return rect;
83 return [NSString stringWithFormat:@"rect:%@ clip:%@ type:%s", NSStringFromRect(rect), NSStringFromRect(clip), typeName(type)];
89 return NSEqualRects(rect, [other dashboardRegionRect]) && NSEqualRects(clip, [other dashboardRegionClip]) && type == [other dashboardRegionType];
  /external/webkit/WebKit/chromium/src/gtk/
WebScreenInfoFactory.cpp 51 results.rect = WebRect(
57 results.availableRect = results.rect;
  /external/webkit/WebKit/chromium/src/x11/
WebScreenInfoFactory.cpp 51 results.rect = WebRect(0, 0, displayWidth, displayHeight);
56 results.availableRect = results.rect;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemRequestRectAboveThinFirstItemTest.java 19 import android.graphics.Rect;
51 // having the second item call requestRectangleOnScreen with a rect above
60 final Rect rect = new Rect(); local
61 second.getDrawingRect(rect);
62 rect.offset(0, -2 * second.getBottom());
64 getActivity().requestRectangleOnScreen(1, rect);
85 final Rect rect = new Rect() local
    [all...]
  /external/webkit/WebCore/platform/android/
WidgetAndroid.cpp 95 void Widget::setFrameRect(const IntRect& rect)
97 m_frame = rect;
101 platformWidget()->setLocation(rect.x(), rect.y());
102 platformWidget()->setSize(rect.width(), rect.height());
  /external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 96 void GraphicsContext::drawRect(const IntRect& rect)
101 m_data->drawRect(rect);
115 void GraphicsContext::drawEllipse(const IntRect& rect)
120 m_data->drawEllipse(rect);
123 void GraphicsContext::strokeArc(const IntRect& rect, int startAngle, int angleSpan)
128 m_data->drawArc(rect, startAngle, angleSpan, VG_STROKE_PATH);
157 void GraphicsContext::fillRect(const FloatRect& rect)
162 m_data->drawRect(rect, VG_FILL_PATH);
165 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
172 m_data->drawRect(rect, VG_FILL_PATH)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_QWin.cc 131 const QRect& rect )
137 startx = rect.left() >> 1;
138 starty = rect.top() >> 1;
139 width = ((rect.right() - rect.left()) >> 1) + 2;
140 height = ((rect.bottom() - rect.top()) >> 1) + 2;
188 const QRect& rect ) {
193 startx = rect.left() >> 1;
194 starty = rect.top() >> 1
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 28 import android.graphics.Rect;
100 Rect rect = new Rect(BITMAP_WIDTH, BITMAP_HEIGHT, 0, 0); local
105 rect.left = Math.min(rect.left, x);
106 rect.right = Math.max(rect.right, x);
107 rect.top = Math.min(rect.top, y)
    [all...]
  /external/chromium/base/gfx/
rect.h 21 typedef struct tagRECT RECT;
28 class Rect {
30 Rect();
31 Rect(int width, int height);
32 Rect(int x, int y, int width, int height);
34 explicit Rect(const RECT& r);
36 explicit Rect(const CGRect& r);
38 explicit Rect(const GdkRectangle& r);
40 Rect(const gfx::Point& origin, const gfx::Size& size)
    [all...]
  /external/quake/quake/src/QW/client/
d_fill.c 30 void D_FillRect (vrect_t *rect, int color)
36 rx = rect->x;
37 ry = rect->y;
38 rwidth = rect->width;
39 rheight = rect->height;
  /external/quake/quake/src/WinQuake/
d_fill.cpp 30 void D_FillRect (vrect_t *rect, int color)
36 rx = rect->x;
37 ry = rect->y;
38 rwidth = rect->width;
39 rheight = rect->height;

Completed in 1503 milliseconds

12 3 4 5 6 7 8 91011>>