HomeSort by relevance Sort by last modified time
    Searched refs:content_rect (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/chromium_org/cc/resources/
picture_pile_impl.cc 111 gfx::Rect content_rect(gfx::ToCeiledSize(total_content_size));
112 gfx::Rect deflated_content_rect = content_rect;
113 content_rect.Intersect(canvas_rect);
124 gfx::Rect inflated_content_rect = content_rect;
151 gfx::Rect content_rect = total_content_rect; local
152 content_rect.Intersect(canvas_rect);
156 content_rect, 1.f / contents_scale);
158 canvas->clipRect(gfx::RectToSkRect(content_rect),
160 Region unclipped(content_rect);
260 // We should always paint some part of |content_rect|
    [all...]
layer_updater.h 51 virtual void PrepareToUpdate(gfx::Rect content_rect,
bitmap_skpicture_content_layer_updater.cc 74 // Translate the origin of content_rect to that of source_rect.
75 canvas->translate(content_rect().x() - source_rect.x(),
76 content_rect().y() - source_rect.y());
picture_pile_impl.h 82 void AnalyzeInRect(gfx::Rect content_rect,
88 PixelRefIterator(gfx::Rect content_rect,
picture_layer_tiling_set_unittest.cc 34 gfx::Rect content_rect(content_bounds);
36 Region remaining(content_rect);
40 content_rect,
44 EXPECT_TRUE(content_rect.Contains(geometry_rect));
93 gfx::Rect content_rect(content_bounds);
95 Region remaining(content_rect);
99 content_rect,
103 EXPECT_TRUE(content_rect.Contains(geometry_rect));
235 EXPECT_TRUE(tile->content_rect().Intersects(tiling->live_tiles_rect()))
285 if (tiles[i]->content_rect().origin() == gfx::Point()
367 gfx::Rect content_rect = gfx::ScaleToEnclosingRect(iter.rect(), 2.f); local
    [all...]
prioritized_tile_set.cc 39 gfx::Rect a_rect = a->content_rect();
40 gfx::Rect b_rect = b->content_rect();
tile.h 28 gfx::Rect content_rect,
100 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::Tile
bitmap_content_layer_updater.h 19 // This class rasterizes the content_rect into a skia bitmap canvas. It then
48 virtual void PrepareToUpdate(gfx::Rect content_rect,
picture_pile_base.h 42 bool CanRaster(float contents_scale, gfx::Rect content_rect);
picture_layer_tiling.cc 105 gfx::Rect content_rect) const {
164 gfx::Rect content_rect = local
166 content_rect.Intersect(live_tiles_rect_);
167 if (content_rect.IsEmpty())
169 for (TilingData::Iterator iter(&tiling_data_, content_rect); iter; ++iter) {
220 gfx::Rect content_rect = local
226 content_rect.Intersect(gfx::Rect(tiling_->tiling_data_.total_size()));
227 if (content_rect.IsEmpty())
230 left_ = tiling_->tiling_data_.TileXIndexFromSrcCoord(content_rect.x());
231 top_ = tiling_->tiling_data_.TileYIndexFromSrcCoord(content_rect.y())
270 gfx::Rect content_rect = tiling_->tiling_data_.TileBounds(tile_i_, tile_j_); local
    [all...]
picture_layer_tiling.h 27 // Create a tile at the given content_rect (in the contents scale of the
31 gfx::Rect content_rect) = 0;
81 // Iterate over all tiles to fill content_rect. Even if tiles are invalid
84 // exactly equal content_rect and no two geometry_rects should intersect.
93 // Visible rect (no borders), always in the space of content_rect,
101 // of content_rect, regardless of the contents scale of the tiling.
127 Region OpaqueRegionInContentRect(gfx::Rect content_rect) const;
picture_layer_tiling_set.h 82 gfx::Rect content_rect,
  /external/chromium_org/cc/layers/
nine_patch_layer.cc 65 gfx::Rect content_rect(0, 0, bitmap_.width(), bitmap_.height());
68 content_rect,
69 content_rect,
render_surface_impl.h 120 void SetContentRect(gfx::Rect content_rect);
121 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::RenderSurfaceImpl
content_layer.h 25 gfx::Rect content_rect,
scrollbar_layer.cc 171 gfx::Rect content_rect,
173 scrollbar_->PaintPart(canvas, part_, content_rect);
322 gfx::Rect content_rect = ScrollbarLayerRectToContentRect( local
324 updated |= UpdatePart(track_updater_.get(), track_.get(), content_rect,
tiled_layer_impl.cc 167 gfx::Rect content_rect = visible_content_rect(); local
173 tiler_->ContentRectToTileIndices(content_rect, &left, &top, &right, &bottom);
208 tile_rect.Intersect(content_rect);
236 gfx::IntersectRects(tile->opaque_rect(), content_rect);
  /external/chromium_org/cc/trees/
occlusion_tracker.h 54 gfx::Rect content_rect,
61 // Gives an unoccluded sub-rect of |content_rect| in the content space of a
68 gfx::Rect content_rect,
75 // Gives an unoccluded sub-rect of |content_rect| in the content space of the
81 gfx::Rect content_rect,
layer_tree_host_unittest_damage.cc 147 root_damage.Intersect(root_surface->content_rect());
209 root_damage.Intersect(root_surface->content_rect());
215 EXPECT_EQ(gfx::RectF(root_surface->content_rect()).ToString(),
229 EXPECT_EQ(gfx::RectF(root_surface->content_rect()).ToString(),
259 EXPECT_EQ(gfx::RectF(root_surface->content_rect()).ToString(),
314 gfx::RectF content_rect(content_layer->position(),
318 EXPECT_FALSE(content_rect.Intersects(scrollbar_rect));
331 root_damage.Intersect(root_surface->content_rect());
  /external/chromium_org/webkit/renderer/compositor_bindings/
scrollbar_impl.cc 62 SkCanvas* canvas, cc::ScrollbarPart part, gfx::Rect content_rect) {
64 painter_.paintThumb(canvas, content_rect);
69 painter_.paintScrollbarBackground(canvas, content_rect);
scrollbar_impl.h 37 gfx::Rect content_rect) OVERRIDE;
  /external/chromium_org/cc/test/
fake_scrollbar.cc 49 gfx::Rect content_rect) {
tiled_layer_test_common.cc 37 void FakeLayerUpdater::PrepareToUpdate(gfx::Rect content_rect,
43 last_update_rect_ = content_rect;
  /external/chromium_org/printing/
printed_page.h 41 gfx::Rect* content_rect) const;
  /external/chromium_org/ui/app_list/views/
search_result_view.cc 177 gfx::Rect content_rect(rect);
178 content_rect.set_height(rect.height() - kBorderSize);
183 canvas->FillRect(content_rect, kSelectedColor);
185 canvas->FillRect(content_rect, kHighlightedColor);
187 canvas->FillRect(content_rect, kContentsBackgroundColor);
189 gfx::Rect border_bottom = gfx::SubtractRects(rect, content_rect);

Completed in 322 milliseconds

12 3 4