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

1 2 3 4 5

  /external/chromium_org/skia/ext/
bitmap_platform_device_mac_unittest.cc 41 SkRect clip_rect = gfx::CGRectToSkRect(CGContextGetClipBoundingBox(context)); local
42 transform.mapRect(&clip_rect);
43 EXPECT_EQ(0, clip_rect.fLeft);
44 EXPECT_EQ(0, clip_rect.fTop);
45 EXPECT_EQ(kWidth, clip_rect.width());
46 EXPECT_EQ(kHeight, clip_rect.height());
61 SkRect clip_rect = gfx::CGRectToSkRect(CGContextGetClipBoundingBox(context)); local
62 transform.mapRect(&clip_rect);
63 EXPECT_EQ(0, clip_rect.fLeft);
64 EXPECT_EQ(0, clip_rect.fTop)
    [all...]
lazy_pixel_ref.h 22 SkIRect clip_rect; member in struct:skia::LazyPixelRef::PrepareParams
  /external/chromium_org/content/common/
webplugin_geometry.cc 21 clip_rect == rhs.clip_rect &&
webplugin_geometry.h 39 gfx::Rect clip_rect; member in struct:content::WebPluginGeometry
  /external/chromium_org/ppapi/shared_impl/
ppb_view_shared.cc 34 clip_rect.point.x == other.clip_rect.point.x &&
35 clip_rect.point.y == other.clip_rect.point.y &&
36 clip_rect.size.width == other.clip_rect.size.width &&
37 clip_rect.size.height == other.clip_rect.size.height &&
66 return PP_FromBool(data_.is_page_visible && IsRectNonempty(data_.clip_rect));
76 *clip = data_.clip_rect;
    [all...]
ppb_view_shared.h 27 PP_Rect clip_rect; member in struct:ppapi::ViewData
compositor_layer_data.h 47 clip_rect(PP_MakeRectFromXYWH(0, 0, 0, 0)),
54 PP_Rect clip_rect; member in struct:ppapi::CompositorLayerData::LayerCommon
  /external/chromium_org/cc/quads/
shared_quad_state.h 35 const gfx::Rect& clip_rect,
49 gfx::Rect clip_rect; member in class:cc::SharedQuadState
shared_quad_state.cc 33 const gfx::Rect& clip_rect,
41 this->clip_rect = clip_rect;
57 value->Set("clip_rect", MathUtil::AsValue(clip_rect).release());
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_android.cc 54 const gfx::Rect& clip_rect) {
63 const gfx::Rect& clip_rect) {
webplugin_delegate_impl_aura.cc 41 const gfx::Rect& clip_rect) {
50 const gfx::Rect& clip_rect) {
webplugin_delegate_impl.cc 129 const gfx::Rect& clip_rect) {
142 WindowlessUpdateGeometry(window_rect, clip_rect);
144 WindowedUpdateGeometry(window_rect, clip_rect);
252 const gfx::Rect& clip_rect) {
253 if (WindowedReposition(window_rect, clip_rect) ||
  /external/chromium_org/chrome/browser/thumbnails/
simple_thumbnail_crop_unittest.cc 204 gfx::Rect clip_rect = SimpleThumbnailCrop::GetClippingRect( local
207 EXPECT_EQ(gfx::Point(0, 0).ToString(), clip_rect.origin().ToString());
208 EXPECT_EQ(desired_size.ToString(), clip_rect.size().ToString());
211 clip_rect = SimpleThumbnailCrop::GetClippingRect(
214 EXPECT_EQ(gfx::Point(0, 0).ToString(), clip_rect.origin().ToString());
215 EXPECT_EQ(500, clip_rect.width());
216 EXPECT_GE(1200, clip_rect.height());
218 clip_rect = SimpleThumbnailCrop::GetClippingRect(
222 EXPECT_EQ(0, clip_rect.y());
223 EXPECT_LT(0, clip_rect.x())
    [all...]
  /external/chromium_org/remoting/codec/
video_decoder_verbatim.cc 85 webrtc::DesktopRect clip_rect = webrtc::DesktopRect::MakeSize(screen_size_); local
86 clip_rect.IntersectWith(clip_area);
87 if (clip_rect.is_empty())
95 rect.IntersectWith(clip_rect);
100 clip_rect,
  /external/chromium_org/cc/layers/
render_surface.h 90 gfx::Rect clip_rect() const { return clip_rect_; } function in class:cc::RenderSurface
91 void SetClipRect(const gfx::Rect& clip_rect) { clip_rect_ = clip_rect; }
render_surface_impl.h 104 void SetClipRect(const gfx::Rect& clip_rect);
105 gfx::Rect clip_rect() const { return clip_rect_; } function in class:cc::RenderSurfaceImpl
  /external/chromium_org/content/renderer/
render_view_impl_android.cc 72 blink::WebRect clip_rect; local
73 webview()->extractSmartClipData(rect, clip_text, clip_html, clip_rect);
75 routing_id_, clip_text, clip_html, clip_rect));
  /external/chromium_org/ppapi/proxy/
graphics_2d_resource.cc 75 void Graphics2DResource::Scroll(const PP_Rect* clip_rect,
80 !!clip_rect, clip_rect ? *clip_rect : dummy, *amount));
graphics_2d_resource.h 38 virtual void Scroll(const PP_Rect* clip_rect,
  /external/chromium_org/ppapi/thunk/
ppb_graphics_2d_api.h 31 virtual void Scroll(const PP_Rect* clip_rect,
  /external/chromium_org/ppapi/c/
ppb_graphics_2d.h 154 const struct PP_Rect* clip_rect,
296 const struct PP_Rect* clip_rect,
  /external/chromium_org/cc/output/
software_output_device.h 57 // write clipped to |clip_rect|.
58 virtual void Scroll(const gfx::Vector2d& delta, const gfx::Rect& clip_rect);
  /external/chromium_org/ppapi/utility/graphics/
paint_aggregator.h 115 /// @param[in] clip_rect The rect to scroll.
117 void ScrollRect(const Rect& clip_rect, const Point& amount);
paint_aggregator.cc 152 void PaintAggregator::ScrollRect(const Rect& clip_rect, const Point& amount) {
155 InvalidateRect(clip_rect);
160 if (!update_.scroll_rect.IsEmpty() && update_.scroll_rect != clip_rect) {
161 InvalidateRect(clip_rect);
169 InvalidateRect(clip_rect);
175 update_.scroll_rect = clip_rect;
  /external/chromium_org/pdf/
paint_aggregator.cc 126 void PaintAggregator::ScrollRect(const pp::Rect& clip_rect,
130 InvalidateRect(clip_rect);
135 if (!update_.scroll_rect.IsEmpty() && update_.scroll_rect != clip_rect) {
136 InvalidateRect(clip_rect);
144 InvalidateRect(clip_rect);
150 update_.scroll_rect = clip_rect;

Completed in 838 milliseconds

1 2 3 4 5