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

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/android/
PaintTileOperation.cpp 102 SkIRect *rect = m_tile->page()->expandedTileBounds(); local
  /external/webkit/Source/WebCore/rendering/
PaintInfo.h 56 , rect(newRect)
90 if (rect == infiniteRect())
93 rect = localToAncestorTransform.inverse().mapRect(rect);
101 IntRect rect; member in struct:WebCore::PaintInfo
RenderSelectionInfo.h 74 IntRect rect() const { return m_rect; } function in class:WebCore::RenderSelectionInfo
  /external/webkit/Source/WebKit2/Shared/gtk/
UpdateChunk.cpp 45 UpdateChunk::UpdateChunk(const IntRect& rect)
46 : m_rect(rect)
82 IntRect rect; local
83 if (!decoder->decode(rect))
86 chunk.m_rect = rect;
  /external/webkit/Source/WebKit2/Shared/mac/
UpdateChunk.cpp 47 UpdateChunk::UpdateChunk(const IntRect& rect)
48 : m_rect(rect)
79 IntRect rect; local
80 if (!decoder->decode(rect))
82 chunk.m_rect = rect;
UpdateChunk.h 46 const WebCore::IntRect& rect() const { return m_rect; } function in class:WebKit::UpdateChunk
  /external/webkit/Source/WebKit2/Shared/qt/
UpdateChunk.cpp 49 UpdateChunk::UpdateChunk(const IntRect& rect)
50 : m_rect(rect)
81 IntRect rect; local
82 if (!decoder->decode(rect))
85 chunk.m_rect = rect;
  /external/webkit/Source/WebKit2/UIProcess/win/
ChunkedUpdateDrawingAreaProxyWin.cpp 68 bool ChunkedUpdateDrawingAreaProxy::platformPaint(const IntRect& rect, HDC hdc)
74 ::BitBlt(hdc, rect.x(), rect.y(), rect.width(), rect.height(), m_backingStoreDC.get(), rect.x(), rect.y(), SRCCOPY);
85 BitmapInfo bitmapInfo = BitmapInfo::createBottomUp(updateChunk->rect().size());
97 ::BitBlt(m_backingStoreDC.get(), updateChunk->rect().x(), updateChunk->rect().y(), updateChunk->rect().width(), updateChunk->rect().height(), updateChunkBitmapDC.get(), 0, 0, (…)
103 RECT rect = updateChunk->rect(); local
    [all...]
  /external/webkit/Tools/WebKitAPITest/
HostWindow.cpp 51 RECT HostWindow::clientRect() const
53 RECT rect = {0}; local
54 if (!GetClientRect(m_window, &rect)) {
55 RECT emptyRect = {0};
58 return rect;
  /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...]
  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
ArcShape.java 48 canvas.drawArc(rect(), mStart, mSweep, true, paint); method
RectShape.java 50 protected final RectF rect() { method in class:RectShape
  /sdk/ddms/app/src/com/android/ddms/
DropdownSelectionListener.java 70 Rectangle rect = item.getBounds(); local
71 Point pt = item.getParent().toDisplay(new Point(rect.x, rect.y));
72 mMenu.setLocation(pt.x, pt.y + rect.height);
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionIteratorTest.java 19 import android.graphics.Rect;
42 args = {android.graphics.Rect.class}
47 Rect rect = new Rect(); local
48 rect.set(1, 1, 1, 1);
55 assertTrue(regionIterator.next(rect));
56 assertEquals(1, rect.left);
57 assertEquals(1, rect.top);
58 assertEquals(10, rect.right)
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
DynamicDrawableSpanTest.java 28 import android.graphics.Rect;
88 Rect rect = dynamicDrawableSpan.getDrawable().getBounds(); local
89 assertEquals(rect.right, dynamicDrawableSpan.getSize(null, null, 0, 0, fm));
91 assertEquals(-rect.bottom, fm.ascent);
95 assertEquals(-rect.bottom, fm.top);
97 assertEquals(rect.right, dynamicDrawableSpan.getSize(null, null, 0, 0, null));
  /external/chromium/chrome/browser/ui/views/
keyboard_overlay_delegate.cc 53 gfx::Rect rect = views::Screen::GetMonitorAreaNearestWindow( local
55 const int width = min(kBaseWidth, rect.width() - kHorizontalMargin);
  /external/opencv/cvaux/src/
_cvvectrack.h 98 CvRect rect; local
99 rect.x = r.x * decr;
100 rect.y = r.y * decr;
101 rect.width = r.width * decr;
102 rect.height = r.height * decr;
103 return rect;
  /external/skia/samplecode/
SampleAARects.cpp 68 SkRect rect; local
81 rect = SkRect::MakeLTRB(SkFloatToScalar(0.f),
85 canvas->drawRect(rect, paints[p]);
88 rect = SkRect::MakeLTRB(SkFloatToScalar(0.5f),
92 canvas->drawRect(rect, paints[p]);
95 rect = SkRect::MakeLTRB(SkFloatToScalar(0.5f),
99 canvas->drawRect(rect, paints[p]);
102 rect = SkRect::MakeLTRB(SkFloatToScalar(0.75f),
106 canvas->drawRect(rect, paints[p]);
111 rect = SkRect::MakeLTRB(SkFloatToScalar(0.0f)
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
PlatformScreenGtk.cpp 136 FloatRect rect; local
138 rect = FloatRect(workAreaPos[0], workAreaPos[1], workAreaPos[2], workAreaPos[3]);
139 // rect contains the available space in the whole screen not just in the monitor
141 rect.intersect(screenRect(widget));
143 rect = screenRect(widget);
148 return rect;
  /external/webkit/Source/WebCore/platform/win/
DragImageCGWin.cpp 103 CGRect rect; local
104 rect.origin.x = 0;
105 rect.origin.y = 0;
106 rect.size = dstSize;
107 CGContextDrawImage(targetContext, rect, srcImage);
143 CGRect rect; local
144 rect.size = img->size();
145 rect.origin.x = 0;
146 rect.origin.y = -rect.size.height
    [all...]
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
scrollbar_render.cpp 57 const wxRect& rect, wxOrientation orient, int current, variable
60 const wxCoord x = rect.x;
61 const wxCoord y = rect.y;
62 const wxCoord w = rect.width;
63 const wxCoord h = rect.height;
67 dc.DrawRectangle(rect);
  /external/webkit/Source/WebKit2/UIProcess/
TiledDrawingAreaTile.h 63 const WebCore::IntRect& rect() const { return m_rect; } function in class:WebKit::TiledDrawingAreaTile
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/
WebFullScreenManager.cpp 110 IntRect rect; local
111 m_page->sendSync(Messages::WebFullScreenManagerProxy::GetFullScreenRect(), Messages::WebFullScreenManagerProxy::GetFullScreenRect::Reply(rect));
112 return rect;
  /external/webkit/Tools/DumpRenderTree/gtk/
TextInputController.cpp 116 GdkRectangle rect; local
117 if (!DumpRenderTreeSupportGtk::firstRectForCharacterRange(view, location, length, &rect))
121 arrayValues[0] = JSValueMakeNumber(context, rect.x);
122 arrayValues[1] = JSValueMakeNumber(context, rect.y);
123 arrayValues[2] = JSValueMakeNumber(context, rect.width);
124 arrayValues[3] = JSValueMakeNumber(context, rect.height);
  /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...]

Completed in 2482 milliseconds

12 3 4 5 6 7 8 91011>>