HomeSort by relevance Sort by last modified time
    Searched full:rect (Results 151 - 175 of 5422) sorted by null

1 2 3 4 5 67 8 91011>>

  /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...]
  /libcore/dom/src/test/resources/
staff2.dtd 10 <!ELEMENT svg (rect, script, employee+)>
14 <!ELEMENT rect EMPTY>
15 <!ATTLIST rect
  /external/chromium/chrome/browser/ui/
window_sizer_mac.mm 23 virtual gfx::Rect GetPrimaryMonitorWorkArea() const {
31 gfx::Rect rect = gfx::Rect(NSRectToCGRect(visible_frame));
32 rect.set_y(frame.size.height -
34 return rect;
37 virtual gfx::Rect GetPrimaryMonitorBounds() const {
41 return gfx::Rect(NSRectToCGRect([primary frame]));
44 virtual gfx::Rect GetMonitorWorkAreaMatching(
45 const gfx::Rect& match_rect) const
    [all...]
window_sizer_linux.cc 26 virtual gfx::Rect GetPrimaryMonitorWorkArea() const {
27 gfx::Rect rect; local
28 if (GetScreenWorkArea(&rect))
29 return rect.Intersect(GetPrimaryMonitorBounds());
35 virtual gfx::Rect GetPrimaryMonitorBounds() const {
37 GdkRectangle rect; local
38 gdk_screen_get_monitor_geometry(screen, 0, &rect);
39 return gfx::Rect(rect);
    [all...]
  /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/cc/output/
renderer_pixeltest.cc 26 gfx::Rect rect) {
28 const gfx::Rect output_rect = rect;
29 const gfx::RectF damage_rect = rect;
37 gfx::Rect rect,
40 const gfx::Rect output_rect = rect;
41 const gfx::RectF damage_rect = rect;
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintFlagsDrawFilterTest.java 25 import android.graphics.Rect;
91 Rect rect = new Rect(BITMAP_WIDTH, BITMAP_HEIGHT, 0, 0); local
96 rect.left = Math.min(rect.left, x);
97 rect.right = Math.max(rect.right, x);
98 rect.top = Math.min(rect.top, y)
    [all...]
  /external/chromium_org/remoting/codec/
video_encoder_verbatim.cc 36 const webrtc::DesktopRect& rect = iter.rect(); local
38 EncodeRect(frame, rect, iter.IsAtEnd());
45 const webrtc::DesktopRect& rect,
50 const int row_size = bytes_per_pixel * rect.width();
53 PrepareUpdateStart(frame, rect, packet.get());
55 rect.top() * stride + rect.left() * bytes_per_pixel;
61 while (row_y < rect.height()) {
69 if (row_y < rect.height())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_pipe_clear.c 45 SVGA3dRect rect = { 0, 0, 0, 0 }; local
66 rect.w = fb->cbufs[0]->width;
67 rect.h = fb->cbufs[0]->height;
78 rect.w = MAX2(rect.w, fb->zsbuf->width);
79 rect.h = MAX2(rect.h, fb->zsbuf->height);
82 if (memcmp(&rect, &svga->state.hw_clear.viewport, sizeof(rect)) != 0) {
84 ret = SVGA3D_SetViewport(svga->swc, &rect);
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_clear.c 45 SVGA3dRect rect = { 0, 0, 0, 0 }; local
66 rect.w = fb->cbufs[0]->width;
67 rect.h = fb->cbufs[0]->height;
78 rect.w = MAX2(rect.w, fb->zsbuf->width);
79 rect.h = MAX2(rect.h, fb->zsbuf->height);
82 if (memcmp(&rect, &svga->state.hw_clear.viewport, sizeof(rect)) != 0) {
84 ret = SVGA3D_SetViewport(svga->swc, &rect);
    [all...]
  /external/chromium_org/ppapi/utility/graphics/
paint_aggregator.cc 14 // We attempt to maintain a scroll rect in the presence of invalidations that
15 // are contained within the scroll rect. If an invalidation crosses a scroll
16 // rect, then we just treat the scroll rect as an invalidation rect.
19 // scroll rect, we offset the invalidation rects to account for the fact that
36 Rect PaintAggregator::InternalPaintUpdate::GetScrollDamage() const {
40 Rect damaged_rect;
68 // In case the scroll offset exceeds the width/height of the scroll rect
72 Rect PaintAggregator::InternalPaintUpdate::GetPaintBounds() const
    [all...]
  /external/chromium_org/cc/trees/
occlusion_tracker_unittest.cc 41 void SetOpaqueContentsRect(gfx::Rect opaque_contents_rect) {
50 gfx::Rect opaque_contents_rect_;
65 void SetOpaqueContentsRect(gfx::Rect opaque_contents_rect) {
72 gfx::Rect opaque_contents_rect_;
86 TestOcclusionTrackerWithClip(gfx::Rect viewport_rect,
91 explicit TestOcclusionTrackerWithClip(gfx::Rect viewport_rect)
95 bool OccludedLayer(const LayerType* layer, gfx::Rect content_rect) {
101 gfx::Rect content_rect,
111 // Gives an unoccluded sub-rect of |content_rect| in the content space of the
113 gfx::Rect UnoccludedLayerContentRect(const LayerType* layer
    [all...]
  /external/chromium/chrome/browser/ui/views/
window.cc 7 #include "ui/gfx/rect.h"
17 const gfx::Rect& bounds,
21 gfx::Rect(),
25 return views::Window::CreateChromeWindow(parent, gfx::Rect(), delegate);
  /external/chromium_org/cc/resources/
picture.h 24 #include "ui/gfx/rect.h"
46 static scoped_refptr<Picture> Create(gfx::Rect layer_rect);
49 gfx::Rect LayerRect() const { return layer_rect_; }
50 gfx::Rect OpaqueRect() const { return opaque_rect_; }
72 // Apply this contents scale and raster the content rect into the canvas.
75 gfx::Rect content_rect,
87 PixelRefIterator(gfx::Rect layer_rect, const Picture* picture);
120 explicit Picture(gfx::Rect layer_rect);
124 gfx::Rect layer_rect,
125 gfx::Rect opaque_rect
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
display_settings_provider_win.cc 32 gfx::Rect primary_work_area = GetPrimaryWorkArea();
33 RECT rect = primary_work_area.ToRECT(); local
34 monitor_ = ::MonitorFromRect(&rect, MONITOR_DEFAULTTOPRIMARY);
72 gfx::Rect DisplaySettingsProviderWin::GetBounds(
76 return gfx::Rect();
78 RECT rect;
79 if (!::GetWindowRect(taskbar_window, &rect))
80 return gfx::Rect();
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/animation/
animateTransform-parser.svg 30 <rect fill="none" stroke="black" stroke-width="3" x="0" y="0" width="200" height="200" />
45 <rect fill="none" stroke="black" stroke-width="3" x="0" y="0" width="200" height="200" />
46 <rect fill="red" x="0" y="0" width="40" height="100">
48 </rect>
49 <rect fill="green" x="0" y="0" width="30" height="100">
51 </rect>
52 <rect fill="blue" x="0" y="0" width="20" height="100">
54 </rect>
55 <rect fill="yellow" x="0" y="0" width="10" height="100">
57 </rect>
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayBounds.cpp 35 SkIRect& rect = maker.fDisplayList.fInvalBounds; local
37 if (rect.isEmpty())
38 rect = fBounds;
40 rect.join(fBounds);
  /external/chromium_org/ui/views/layout/
fill_layout.cc 25 gfx::Rect rect(host->child_at(0)->GetPreferredSize());
26 rect.Inset(-host->GetInsets());
27 return rect.size();
  /external/chromium_org/ui/views/widget/
monitor_win.h 13 class Rect;
20 VIEWS_EXPORT gfx::Rect GetMonitorBoundsForRect(const gfx::Rect& rect);
  /external/skia/src/animator/
SkDisplayBounds.cpp 35 SkIRect& rect = maker.fDisplayList.fInvalBounds; local
37 if (rect.isEmpty())
38 rect = fBounds;
40 rect.join(fBounds);
  /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/ash/wm/
property_util.cc 15 #include "ui/gfx/rect.h"
19 void SetRestoreBoundsInScreen(aura::Window* window, const gfx::Rect& bounds) {
20 window->SetProperty(aura::client::kRestoreBoundsKey, new gfx::Rect(bounds));
23 void SetRestoreBoundsInParent(aura::Window* window, const gfx::Rect& bounds) {
28 const gfx::Rect* GetRestoreBoundsInScreen(aura::Window* window) {
32 gfx::Rect GetRestoreBoundsInParent(aura::Window* window) {
33 const gfx::Rect* rect = GetRestoreBoundsInScreen(window); local
34 if (!rect)
35 return gfx::Rect();
    [all...]
  /external/chromium_org/cc/quads/
yuv_video_draw_quad.cc 25 gfx::Rect rect,
26 gfx::Rect opaque_rect,
32 gfx::Rect visible_rect = rect;
34 DrawQuad::SetAll(shared_quad_state, DrawQuad::YUV_VIDEO_CONTENT, rect,
44 gfx::Rect rect,
45 gfx::Rect opaque_rect,
46 gfx::Rect visible_rect
    [all...]
  /external/chromium_org/chrome/browser/automation/
testing_automation_provider_mac.mm 29 gfx::Rect* bounds) {
53 NSRect rect = [tab convertRect:[tab bounds] toView:nil];
56 rect.origin.y += rect.size.height;
59 rect.origin = [window convertBaseToScreen:rect.origin];
66 rect.origin.y = coord_sys_height - rect.origin.y;
67 *bounds = gfx::Rect(NSRectToCGRect(rect));
    [all...]
  /external/chromium_org/content/browser/aura/
software_output_device_x11.cc 75 gfx::Rect rect = damage_rect_; local
76 rect.Intersect(gfx::Rect(viewport_size_));
77 if (rect.IsEmpty())
82 rect.x(), rect.y(),
83 rect.x(), rect.y(),
84 rect.width(), rect.height())
    [all...]

Completed in 1776 milliseconds

1 2 3 4 5 67 8 91011>>