HomeSort by relevance Sort by last modified time
    Searched refs:scroll_rect (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/ppapi/utility/graphics/
paint_aggregator.cc 46 damaged_rect.set_y(scroll_rect.y());
47 damaged_rect.set_height(scroll_rect.height());
49 damaged_rect.set_x(scroll_rect.x());
52 damaged_rect.set_x(scroll_rect.right() + dx);
57 damaged_rect.set_x(scroll_rect.x());
58 damaged_rect.set_width(scroll_rect.width());
60 damaged_rect.set_y(scroll_rect.y());
63 damaged_rect.set_y(scroll_rect.bottom() + dy);
69 return scroll_rect.Intersect(damaged_rect);
85 return !update_.scroll_rect.IsEmpty() || !update_.paint_rects.empty()
243 Rect scroll_rect = update_.scroll_rect; local
    [all...]
paint_aggregator.h 38 /// and scroll_rect are nonzero (just as a convenience).
53 Rect scroll_rect; member in struct:pp::PaintAggregator::PaintUpdate
134 // Computes the rect damaged by scrolling within |scroll_rect| by
144 Rect scroll_rect; member in class:pp::PaintAggregator::InternalPaintUpdate
paint_manager.cc 151 graphics_.Scroll(update.scroll_rect, update.scroll_delta);
  /external/chromium_org/content/renderer/
paint_aggregator.cc 57 damaged_rect.set_y(scroll_rect.y());
58 damaged_rect.set_height(scroll_rect.height());
60 damaged_rect.set_x(scroll_rect.x());
63 damaged_rect.set_x(scroll_rect.right() + dx);
68 damaged_rect.set_x(scroll_rect.x());
69 damaged_rect.set_width(scroll_rect.width());
71 damaged_rect.set_y(scroll_rect.y());
74 damaged_rect.set_y(scroll_rect.bottom() + dy);
80 return gfx::IntersectRects(scroll_rect, damaged_rect);
91 return !update_.scroll_rect.IsEmpty() || !update_.paint_rects.empty()
252 gfx::Rect scroll_rect = update_.scroll_rect; local
    [all...]
paint_aggregator_unittest.cc 25 EXPECT_TRUE(update.scroll_rect.IsEmpty());
46 EXPECT_TRUE(update.scroll_rect.IsEmpty());
70 EXPECT_TRUE(update.scroll_rect.IsEmpty());
88 EXPECT_FALSE(update.scroll_rect.IsEmpty());
90 EXPECT_EQ(rect, update.scroll_rect);
114 EXPECT_FALSE(update.scroll_rect.IsEmpty());
116 EXPECT_EQ(rect, update.scroll_rect);
155 EXPECT_TRUE(update.scroll_rect.IsEmpty());
164 gfx::Rect scroll_rect(0, 0, 10, 10);
165 greg.ScrollRect(gfx::Vector2d(2, 0), scroll_rect);
    [all...]
paint_aggregator.h 22 // calls. If |scroll_rect| is non-empty, then that rect should be scrolled
24 // then those rects should be repainted. If |scroll_rect| and |paint_rects|
32 // Returns the rect damaged by scrolling within |scroll_rect| by
40 gfx::Rect scroll_rect; member in struct:content::PaintAggregator::PendingUpdate
  /external/chromium_org/ppapi/tests/
test_paint_aggregator.cc 53 ASSERT_TRUE(greg.GetPendingUpdate().scroll_rect.IsEmpty());
73 ASSERT_TRUE(greg.GetPendingUpdate().scroll_rect.IsEmpty());
92 ASSERT_TRUE(greg.GetPendingUpdate().scroll_rect.IsEmpty());
110 ASSERT_FALSE(greg.GetPendingUpdate().scroll_rect.IsEmpty());
112 ASSERT_TRUE(rect == greg.GetPendingUpdate().scroll_rect);
152 ASSERT_TRUE(greg.GetPendingUpdate().scroll_rect.IsEmpty());
162 pp::Rect scroll_rect(0, 0, 10, 10);
163 greg.ScrollRect(scroll_rect, pp::Point(2, 0));
172 ASSERT_FALSE(greg.GetPendingUpdate().scroll_rect.IsEmpty());
175 ASSERT_TRUE(scroll_rect == greg.GetPendingUpdate().scroll_rect)
    [all...]
test_graphics_2d.cc 550 pp::Rect scroll_rect(image_width - dx, image_height - dy);
554 CompareImageRect(test_image, scroll_rect, readback_scroll, scroll_rect));
  /external/chromium_org/cc/debug/
debug_rect_history.cc 228 gfx::RectF scroll_rect = gfx::ScaleRect(iter.rect(), local
234 scroll_rect)));
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_gtk.h 80 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
render_widget_host_view_gtk.cc 739 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
748 invalid_rect_ = invalid_rect_.Union(scroll_rect);
750 Paint(scroll_rect);
754 // Paint(scroll_rect) above.
755 gfx::Rect rect = copy_rects[i].Subtract(scroll_rect);
    [all...]
render_widget_host_view_mac.h 209 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
render_widget_host_view_views.cc 308 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
317 invalid_rect_ = invalid_rect_.Union(scroll_rect);
319 SchedulePaintInRect(scroll_rect);
323 // Paint(scroll_rect) above.
324 gfx::Rect rect = copy_rects[i].Subtract(scroll_rect);
render_widget_host_view_views.h 66 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
render_widget_host_view_win.h 151 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
render_widget_host_view_win.cc 653 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
666 if (!scroll_rect.IsEmpty()) {
667 RECT clip_rect = scroll_rect.ToRECT();
    [all...]
  /external/chromium_org/content/common/browser_plugin/
browser_plugin_messages.h 104 // they are both zero, then it means there is no scrolling and the scroll_rect
109 IPC_STRUCT_MEMBER(gfx::Rect, scroll_rect)
  /external/chromium_org/content/port/browser/
render_widget_host_view_port.h 119 // If the scroll_rect is non-empty, then a portion of the widget's backing
135 const gfx::Rect& scroll_rect,
  /external/chromium_org/ui/views/controls/
scroll_view.cc 96 gfx::Rect scroll_rect(rect);
97 scroll_rect.Offset(-contents->x(), -contents->y());
99 scroll_rect); variable
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_gtk.h 88 const gfx::Rect& scroll_rect,
render_widget_host_view_guest.h 93 const gfx::Rect& scroll_rect,
render_widget_host_view_android.h 107 const gfx::Rect& scroll_rect,
render_widget_host_view_gtk.cc 851 const gfx::Rect& scroll_rect,
    [all...]
render_widget_host_view_mac.h 260 const gfx::Rect& scroll_rect,
  /external/chromium_org/content/test/
test_render_view_host.h 113 const gfx::Rect& scroll_rect,

Completed in 516 milliseconds

1 2