HomeSort by relevance Sort by last modified time
    Searched refs:rect (Results 76 - 100 of 1773) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/common/extensions/
extension_action.cc 17 #include "ui/gfx/rect.h"
106 const gfx::Rect& bounds,
144 SkRect rect; local
145 rect.fBottom = SkIntToScalar(bounds.bottom() - kBottomMargin);
146 rect.fTop = rect.fBottom - SkIntToScalar(kBadgeHeight);
148 rect.fLeft = SkIntToScalar(
152 rect.fRight = rect.fLeft + SkIntToScalar(badge_width);
154 rect.fRight = SkIntToScalar(bounds.right())
    [all...]
  /external/chromium_org/ash/
screenshot_delegate.h 13 class Rect;
30 aura::Window* window, const gfx::Rect& rect) = 0;
  /external/chromium_org/cc/base/
invalidation_region.h 10 #include "ui/gfx/rect.h"
24 void Union(gfx::Rect rect);
invalidation_region.cc 37 void InvalidationRegion::Union(gfx::Rect rect) {
40 region_.Union(rect);
  /external/chromium_org/printing/
image_mac.cc 11 #include "ui/gfx/rect.h"
18 gfx::Rect rect(metafile.GetPageBounds(page_number));
19 if (rect.width() < 1 || rect.height() < 1)
22 size_ = rect.size();
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
FramelessScrollView.cpp 45 void FramelessScrollView::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
48 IntRect dirtyRect = rect;
75 void FramelessScrollView::invalidateRect(const IntRect& rect)
78 h->invalidateContentsAndRootView(rect);
ScrollbarThemeChromium.cpp 94 void ScrollbarThemeChromium::paintTrackBackground(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect)
98 paintTrackPiece(context, scrollbar, rect, ForwardTrackPart);
101 void ScrollbarThemeChromium::paintTickmarks(GraphicsContext* context, ScrollbarThemeClient* scrollbar, const IntRect& rect)
106 if (rect.height() <= 0 || rect.width() <= 0)
123 const int yPos = rect.y() + (rect.height() * percent);
126 FloatRect tickRect(rect.x(), yPos, rect.width(), 3);
130 FloatRect tickStroke(rect.x(), yPos + 1, rect.width(), 1)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderOverflow.h 67 void addContentsVisualOverflow(const LayoutRect& rect) { m_contentsVisualOverflow.unite(rect); }
90 inline void RenderOverflow::addLayoutOverflow(const LayoutRect& rect)
92 LayoutUnit maxX = std::max(rect.maxX(), m_layoutOverflow.maxX());
93 LayoutUnit maxY = std::max(rect.maxY(), m_layoutOverflow.maxY());
94 m_layoutOverflow.setX(std::min(rect.x(), m_layoutOverflow.x()));
95 m_layoutOverflow.setY(std::min(rect.y(), m_layoutOverflow.y()));
100 inline void RenderOverflow::addVisualOverflow(const LayoutRect& rect)
102 LayoutUnit maxX = std::max(rect.maxX(), m_visualOverflow.maxX());
103 LayoutUnit maxY = std::max(rect.maxY(), m_visualOverflow.maxY())
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebScreenInfo.h 54 // "A RECT structure that specifies the display monitor rectangle,
58 WebRect rect; member in struct:WebKit::WebScreenInfo
61 // "A RECT structure that specifies the work area rectangle of the
  /external/chromium_org/third_party/skia/src/animator/
SkDrawClip.h 25 SkDrawRect* rect; member in class:SkDrawClip
  /external/chromium_org/third_party/skia/src/effects/
SkGpuBlurUtils.h 27 * @param rect The destination rectangle.
29 * source rect.
38 const SkRect& rect,
  /external/chromium_org/tools/site_compare/drivers/win32/
windowing.py 99 def ScrapeWindow(hwnd, rect=None):
104 rect: rectangle to scrape in client coords, defaults to the whole thing
114 if not rect: rect = win32gui.GetClientRect(hwnd)
116 upper_left = win32gui.ClientToScreen(hwnd, (rect[0], rect[1]))
117 lower_right = win32gui.ClientToScreen(hwnd, (rect[2], rect[3]))
118 rect = upper_left+lower_right
120 return PIL.ImageGrab.grab(rect)
    [all...]
  /external/chromium_org/ui/gfx/
skia_util.cc 15 #include "ui/gfx/rect.h"
22 SkRect RectToSkRect(const Rect& rect) {
24 r.iset(rect.x(), rect.y(), rect.right(), rect.bottom());
28 SkIRect RectToSkIRect(const Rect& rect) {
29 return SkIRect::MakeXYWH(rect.x(), rect.y(), rect.width(), rect.height())
    [all...]
  /external/chromium_org/ui/native_theme/
common_theme.h 28 const gfx::Rect& rect,
32 const gfx::Rect& rect);
35 const gfx::Rect& rect);
40 const gfx::Rect& rect);
native_theme_base.h 15 class Rect;
31 const gfx::Rect& rect,
41 const gfx::Rect& rect,
51 const gfx::Rect& rect) const;
57 const gfx::Rect& rect) const;
62 const gfx::Rect& rect
    [all...]
native_theme_win.h 98 RECT* rect,
110 const gfx::Rect& rect,
128 const gfx::Rect& rect,
137 const gfx::Rect& rect,
144 RECT* rect,
    [all...]
  /external/qemu/android/protocol/
fb-updates.h 36 uint8_t rect[0]; member in struct:FBUpdateMessage
  /external/skia/src/animator/
SkDrawClip.h 25 SkDrawRect* rect; member in class:SkDrawClip
  /external/skia/src/effects/
SkGpuBlurUtils.h 27 * @param rect The destination rectangle.
29 * source rect.
38 const SkRect& rect,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
RedEyeCandidate.java 30 public RedEyeCandidate(RectF rect, RectF bounds) {
31 mRect.set(rect);
43 public boolean intersect(RectF rect) {
44 return mRect.intersect(rect);
  /pdk/apps/CameraITS/tests/
test_param_edge_mode.py 39 rect = [0,0,1,1]
40 sens, exp, gains, xform, focus = cam.do_3a(rect, rect, rect)
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
RectShapeTest.java 80 RectF rect = rectShape.myRect(); local
81 assertEquals(0.0f, rect.left);
82 assertEquals(0.0f, rect.top);
83 assertEquals(0.0f, rect.right);
84 assertEquals(0.0f, rect.bottom);
87 rect = rectShape.myRect();
88 assertEquals(0.0f, rect.left);
89 assertEquals(0.0f, rect.top);
90 assertEquals((float) TEST_WIDTH, rect.right);
91 assertEquals((float) TEST_HEIGHT, rect.bottom)
    [all...]
  /external/chromium_org/content/browser/aura/
software_output_device_win.cc 44 SkCanvas* SoftwareOutputDeviceWin::BeginPaint(gfx::Rect damage_rect) {
62 gfx::Rect rect = damage_rect_; local
63 rect.Intersect(gfx::Rect(viewport_size_));
64 if (rect.IsEmpty())
70 RECT wr;
91 rect.x(), rect.y(),
92 rect.width(), rect.height()
    [all...]
  /frameworks/base/graphics/java/android/graphics/
BitmapRegionDecoder.java 174 * Decodes a rectangle region in the image specified by rect.
176 * @param rect The rectangle that specified the region to be decode.
182 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) {
185 if (rect.right <= 0 || rect.bottom <= 0 || rect.left >= getWidth()
186 || rect.top >= getHeight())
188 return nativeDecodeRegion(mNativeBitmapRegionDecoder, rect.left, rect.top
    [all...]
  /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 1360 milliseconds

1 2 34 5 6 7 8 91011>>