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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/cc/quads/
tile_draw_quad.h 18 gfx::Rect rect,
19 gfx::Rect opaque_rect,
26 gfx::Rect rect,
27 gfx::Rect opaque_rect,
28 gfx::Rect visible_rect,
checkerboard_draw_quad.h 20 gfx::Rect rect,
24 gfx::Rect rect,
25 gfx::Rect opaque_rect,
26 gfx::Rect visible_rect,
debug_border_draw_quad.h 20 gfx::Rect rect,
25 gfx::Rect rect,
26 gfx::Rect opaque_rect,
27 gfx::Rect visible_rect,
solid_color_draw_quad.h 20 gfx::Rect rect,
25 gfx::Rect rect,
26 gfx::Rect opaque_rect,
27 gfx::Rect visible_rect,
tile_draw_quad.cc 25 gfx::Rect rect,
26 gfx::Rect opaque_rect,
31 ContentDrawQuadBase::SetNew(shared_quad_state, DrawQuad::TILED_CONTENT, rect,
38 gfx::Rect rect,
39 gfx::Rect opaque_rect,
40 gfx::Rect visible_rect,
46 ContentDrawQuadBase::SetAll(shared_quad_state, DrawQuad::TILED_CONTENT, rect,
  /external/chromium_org/cc/resources/
resource_update.h 11 #include "ui/gfx/rect.h"
24 gfx::Rect content_rect,
25 gfx::Rect source_rect,
29 gfx::Rect content_rect,
30 gfx::Rect source_rect,
39 gfx::Rect content_rect;
40 gfx::Rect source_rect;
  /external/chromium_org/ui/views/win/
hwnd_util_win.cc 28 gfx::Rect GetWindowBoundsForClientBounds(View* view,
29 const gfx::Rect& client_bounds) {
32 RECT rect = client_bounds.ToRECT(); local
35 AdjustWindowRectEx(&rect, style, FALSE, ex_style);
36 return gfx::Rect(rect);
  /frameworks/native/libs/ui/
Rect.cpp 18 #include <ui/Rect.h>
30 void Rect::makeInvalid() {
37 bool Rect::operator <(const Rect& rhs) const {
56 Rect& Rect::offsetTo(int32_t x, int32_t y) {
64 Rect& Rect::offsetBy(int32_t x, int32_t y) {
72 const Rect Rect::operator +(const Point& rhs) const
    [all...]
  /external/chromium_org/ui/gfx/
rect_base_impl.h 11 // used to instantiate the base class for Rect and RectF classes.
139 Contains(const Class& rect) const {
140 return (rect.x() >= x() && rect.right() <= right() &&
141 rect.y() >= y() && rect.bottom() <= bottom());
151 Intersects(const Class& rect) const {
152 return !(IsEmpty() || rect.IsEmpty() ||
153 rect.x() >= right() || rect.right() <= x() |
    [all...]
rect_unittest.cc 7 #include "ui/gfx/rect.h"
38 Rect rect(value.rect_x, value.rect_y, value.rect_width, value.rect_height);
39 EXPECT_EQ(value.contained, rect.Contains(value.point_x, value.point_y));
45 int x1; // rect 1
49 int x2; // rect 2
67 Rect r1(tests[i].x1, tests[i].y1, tests[i].w1, tests[i].h1);
68 Rect r2(tests[i].x2, tests[i].y2, tests[i].w2, tests[i].h2);
76 int x1; // rect 1
80 int x2; // rect
582 Rect rect; local
    [all...]
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_ash_unittest.cc 40 virtual gfx::Rect GetBounds() const OVERRIDE;
69 gfx::Rect TestBrowserWindowAura::GetBounds() const {
86 gfx::Rect window_bounds;
87 GetWindowBounds(p1024x768, p1024x768, gfx::Rect(), gfx::Rect(),
88 gfx::Rect(), DEFAULT, NULL, gfx::Rect(), &window_bounds);
89 EXPECT_EQ(gfx::Rect(WindowSizer::kDesktopBorderSize,
97 gfx::Rect window_bounds;
98 GetWindowBounds(p1024x768, taskbar_bottom_work_area, gfx::Rect(),
    [all...]
  /external/chromium_org/content/renderer/
paint_aggregator.h 12 #include "ui/gfx/rect.h"
22 // calls. If |scroll_rect| is non-empty, then that rect should be scrolled
32 // Returns the rect damaged by scrolling within |scroll_rect| by
33 // |scroll_delta|. This rect must be repainted.
34 gfx::Rect GetScrollDamage() const;
36 // Returns the smallest rect containing all paint rects.
37 gfx::Rect GetPaintBounds() const;
40 gfx::Rect scroll_rect;
41 std::vector<gfx::Rect> paint_rects;
52 // The given rect should be repainted
    [all...]
paint_aggregator_unittest.cc 18 gfx::Rect rect(2, 4, 10, 16);
19 greg.InvalidateRect(rect);
28 EXPECT_EQ(rect, update.paint_rects[0]);
34 gfx::Rect r1(2, 4, 2, 40);
35 gfx::Rect r2(4, 2, 40, 2);
40 gfx::Rect expected_bounds = gfx::UnionRects(r1, r2);
58 gfx::Rect r1(2, 4, 2, 1000);
59 gfx::Rect r2(5, 2, 2, 1000);
64 gfx::Rect expected_bounds = gfx::UnionRects(r1, r2)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
image_utils_unittest.mm 33 - (id)initWithFrame:(NSRect)rect {
34 self = [super initWithFrame:rect];
36 rect = NSInsetRect(rect, 5.0, 5.0);
37 rect.origin = NSZeroPoint;
38 const NSSize imageSize = NSInsetRect(rect, 5.0, 5.0).size;
42 [path moveToPoint:NSMakePoint(NSMinX(rect), NSMinY(rect))];
43 [path lineToPoint:NSMakePoint(NSMinX(rect), NSMaxY(rect))];
    [all...]
  /external/chromium_org/ui/native_theme/
native_theme_aura.cc 13 #include "ui/gfx/rect.h"
56 SkRect rect = SkRect::MakeWH(SkIntToScalar(size.width()), local
61 path.addRoundRect(rect, radii);
72 const gfx::Rect& rect,
74 CommonThemePaintMenuItemBackground(canvas, state, rect);
82 const gfx::Rect& rect) const {
86 int center_height = rect.height();
88 if (rect.y() == extra_params.track_y)
    [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/chromium_org/ppapi/utility/graphics/
paint_aggregator.h 12 #include "ppapi/cpp/rect.h"
53 Rect scroll_rect;
59 std::vector<Rect> paint_rects;
62 Rect paint_bounds;
68 /// Setter function setting the max ratio of paint rect area to scroll rect
72 /// rect grows too large, then we might as well just treat
73 /// the scroll rect as a paint rect.
75 /// @param[in] area The max ratio of paint rect area to scroll rect area tha
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
BinPacker.java 19 import com.android.ide.common.api.Rect;
53 private final List<Rect> mSpace = new ArrayList<Rect>();
59 * initial available space rectangles with {@link #addSpace(Rect)}, and then
61 * {@link Rect} from {@link #occupy(int, int)} gives the coordinates of the
72 mAllocated = new ArrayList<Rect>();
79 void addSpace(Rect rect) {
80 if (rect.w >= mMinWidth && rect.h >= mMinHeight)
110 Rect rect = mSpace.get(i); local
137 Rect rect = mSpace.get(i); local
196 Rect rect = mSpace.get(index); local
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/animation/
animateTransform-repeat-once.svg 2 <rect fill='blue' width='100' height='100'>
4 </rect>
6 The rect should from 0,0 to 100,0 over 2 seconds, twice.
  /external/chromium_org/ui/compositor/test/
test_utils.h 9 class Rect;
17 void CheckApproximatelyEqual(const gfx::Rect& lhs, const gfx::Rect& rhs);
  /packages/apps/Gallery2/jni/filters/
redEyeMath.c 34 short *rect) {
35 int recX = rect[0], recY = rect[1], recW = rect[2], recH = rect[3];
55 short *rect) {
56 int recX = rect[0], recY = rect[1], recW = rect[2], recH = rect[3]
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/find_bar/
find_bar_view.mm 23 - (void)drawRect:(NSRect)rect {
28 rect = NSInsetRect([self bounds], halfLineWidth, halfLineWidth);
29 rect = NSOffsetRect(rect, 0, lineWidth);
31 NSPoint topLeft = NSMakePoint(NSMinX(rect), NSMaxY(rect));
32 NSPoint topRight = NSMakePoint(NSMaxX(rect), NSMaxY(rect));
34 NSMakePoint(NSMinX(rect) + kCurveSize, NSMaxY(rect) - kCurveSize)
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/find_bar/
find_bar_view.mm 25 - (void)drawRect:(NSRect)rect {
30 rect = NSInsetRect([self bounds], halfLineWidth, halfLineWidth);
31 rect = NSOffsetRect(rect, 0, lineWidth);
33 NSPoint topLeft = NSMakePoint(NSMinX(rect), NSMaxY(rect));
34 NSPoint topRight = NSMakePoint(NSMaxX(rect), NSMaxY(rect));
36 NSMakePoint(NSMinX(rect) + kCurveSize, NSMaxY(rect) - kCurveSize)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebScrollbarThemePainter.cpp 46 void WebScrollbarThemePainter::paintScrollbarBackground(WebCanvas* canvas, const WebRect& rect)
48 SkRect clip = SkRect::MakeXYWH(rect.x, rect.y, rect.width, rect.height);
56 void WebScrollbarThemePainter::paintTrackBackground(WebCanvas* canvas, const WebRect& rect)
60 m_theme->paintTrackBackground(&context, m_scrollbar, IntRect(rect));
63 void WebScrollbarThemePainter::paintBackTrackPart(WebCanvas* canvas, const WebRect& rect)
67 m_theme->paintTrackPiece(&context, m_scrollbar, IntRect(rect), WebCore::BackTrackPart);
70 void WebScrollbarThemePainter::paintForwardTrackPart(WebCanvas* canvas, const WebRect& rect)
    [all...]
  /frameworks/native/libs/ui/tests/
Region_test.cpp 21 #include <ui/Rect.h>
28 void checkVertTJunction(const Rect* lhs, const Rect* rhs) {
34 for (const Rect* current = r.begin(); current < r.end(); current++) {
35 for (const Rect* other = current - 1; other >= r.begin(); other--) {
40 for (const Rect* other = current + 1; other < r.end(); other++) {
63 r.orSelf(Rect(1, 0, 2, 1));
64 r.orSelf(Rect(0, 1, 3, 2));
71 r.orSelf(Rect(1, 0, 2, 1));
72 r.orSelf(Rect(0, 2, 3, 3))
    [all...]

Completed in 341 milliseconds

1 23 4 5 6 7 8 91011>>