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

1 2

  /external/chromium_org/skia/ext/
lazy_pixel_ref.h 22 SkIRect clip_rect; member in struct:skia::LazyPixelRef::PrepareParams
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...]
pixel_ref_utils.cc 58 SkRect clip_rect = SkRect::Make(draw.fRC->getBounds()); variable
59 AddBitmap(bitmap, clip_rect);
analysis_canvas.cc 60 SkRect clip_rect; local
61 clip_rect.set(clip_irect);
62 return device_rect.contains(clip_rect);
  /external/chromium_org/content/common/
webplugin_geometry.h 39 gfx::Rect clip_rect; member in struct:content::WebPluginGeometry
  /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
  /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/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/shared_impl/
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/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/surfaces/
surfaces_pixeltest.cc 32 const gfx::Rect clip_rect = gfx::Rect(size); local
40 clip_rect,
surface_aggregator_test_helpers.cc 31 gfx::Rect clip_rect = gfx::Rect(surface_size); local
40 clip_rect,
  /external/chromium_org/cc/layers/
draw_properties.h 69 // True if the layer needs to be clipped by clip_rect.
89 gfx::Rect clip_rect; member in struct:cc::DrawProperties
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
delegated_renderer_layer_impl.cc 412 output_shared_quad_state->clip_rect =
415 output_shared_quad_state->clip_rect);
417 gfx::Rect clip_rect = drawable_content_rect(); local
419 clip_rect.Intersect(MathUtil::MapEnclosingClippedRect(
421 output_shared_quad_state->clip_rect));
423 output_shared_quad_state->clip_rect = clip_rect;
heads_up_display_layer_impl.cc 620 gfx::Rect clip_rect = debug_layer_rect; local
621 clip_rect.Intersect(gfx::Rect(content_bounds()));
622 SkRect sk_clip_rect = RectToSkRect(clip_rect);
layer.h 239 gfx::Rect clip_rect() const { return draw_properties_.clip_rect; } function in class:cc::Layer
layer_impl.h 318 gfx::Rect clip_rect() const { return draw_properties_.clip_rect; } function in class:cc::LayerImpl
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_renderer_host.cc 237 SkRect clip_rect = { local
241 canvas->clipRect(clip_rect);
  /external/pdfium/core/src/fpdfdoc/
doc_annot.cpp 64 FX_BOOL bWidgetPass, CPDF_RenderOptions* pOptions, FX_RECT* clip_rect)
94 if (clip_rect) {
97 annot_rect.Intersect(*clip_rect);
113 FX_RECT clip_rect; local
115 clip_rect = pDevice->GetClipBox();
118 DisplayAnnots(pPage, pDevice, NULL, bPrinting, pUser2Device, bShowWidget ? 3 : 1, pOptions, &clip_rect);
  /external/chromium_org/cc/output/
renderer_pixeltest.cc 57 const gfx::Rect clip_rect = rect; local
66 clip_rect,
78 const gfx::Rect& clip_rect) {
80 const gfx::Rect visible_content_rect = clip_rect;
89 clip_rect,
    [all...]
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl_win.cc 794 gfx::Rect clip_rect = gfx::win::DIPToScreenRect(clip_rect_in_dip); local
795 if (window_rect_ == window_rect && clip_rect_ == clip_rect)
818 clip_rect_ = clip_rect;
    [all...]
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 600 gfx::Rect clip_rect = gfx::ToEnclosingRect( local
602 min_y = clip_rect.y();
603 max_y = clip_rect.bottom();

Completed in 733 milliseconds

1 2