Searched defs:scroll_rect (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/content/renderer/
H A Dpaint_aggregator.h22 // 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
H A Dpaint_aggregator.cc57 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
252 gfx::Rect scroll_rect = update_.scroll_rect; local
[all...]
/external/chromium_org/ppapi/utility/graphics/
H A Dpaint_aggregator.h38 /// 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
H A Dpaint_aggregator.cc46 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
243 Rect scroll_rect = update_.scroll_rect; local
[all...]
/external/chromium_org/cc/debug/
H A Ddebug_rect_history.cc228 gfx::RectF scroll_rect = gfx::ScaleRect(iter.rect(), local
234 scroll_rect)));
/external/chromium_org/ui/views/controls/
H A Dscroll_view.cc96 gfx::Rect scroll_rect(rect);
97 scroll_rect.Offset(-contents->x(), -contents->y());
99 scroll_rect); variable
/external/chromium/chrome/browser/renderer_host/
H A Drender_widget_host_view_gtk.cc739 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);
738 DidUpdateBackingStore( const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy, const std::vector<gfx::Rect>& copy_rects) argument
H A Drender_widget_host_view_views.cc308 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);
307 DidUpdateBackingStore( const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy, const std::vector<gfx::Rect>& copy_rects) argument
H A Drender_widget_host_view_win.cc653 const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy,
666 if (!scroll_rect.IsEmpty()) {
667 RECT clip_rect = scroll_rect.ToRECT();
652 DidUpdateBackingStore( const gfx::Rect& scroll_rect, int scroll_dx, int scroll_dy, const std::vector<gfx::Rect>& copy_rects) argument
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_android.cc513 const gfx::Rect& scroll_rect,
512 DidUpdateBackingStore( const gfx::Rect& scroll_rect, const gfx::Vector2d& scroll_delta, const std::vector<gfx::Rect>& copy_rects, const ui::LatencyInfo& latency_info) argument
H A Drender_widget_host_view_gtk.cc851 const gfx::Rect& scroll_rect,
865 invalid_rect_.Union(scroll_rect);
867 Paint(scroll_rect);
871 // Paint(scroll_rect) above.
872 gfx::Rect rect = gfx::SubtractRects(copy_rects[i], scroll_rect);
850 DidUpdateBackingStore( const gfx::Rect& scroll_rect, const gfx::Vector2d& scroll_delta, const std::vector<gfx::Rect>& copy_rects, const ui::LatencyInfo& latency_info) argument
H A Drender_widget_host_view_guest.cc340 const gfx::Rect& scroll_rect,
339 DidUpdateBackingStore( const gfx::Rect& scroll_rect, const gfx::Vector2d& scroll_delta, const std::vector<gfx::Rect>& copy_rects, const ui::LatencyInfo& latency_info) argument
H A Drender_widget_host_view_aura.cc948 const gfx::Rect& scroll_rect,
973 if (!scroll_rect.IsEmpty())
974 SchedulePaintIfNotInClip(scroll_rect, clip_rect);
980 gfx::Rect rect = gfx::SubtractRects(copy_rects[i], scroll_rect);
947 DidUpdateBackingStore( const gfx::Rect& scroll_rect, const gfx::Vector2d& scroll_delta, const std::vector<gfx::Rect>& copy_rects, const ui::LatencyInfo& latency_info) argument
H A Drender_widget_host_view_win.cc760 const gfx::Rect& scroll_rect,
782 if (!scroll_rect.IsEmpty()) {
784 gfx::Rect pixel_rect = gfx::win::DIPToScreenRect(scroll_rect);
759 DidUpdateBackingStore( const gfx::Rect& scroll_rect, const gfx::Vector2d& scroll_delta, const std::vector<gfx::Rect>& copy_rects, const ui::LatencyInfo& latency_info) argument

Completed in 378 milliseconds