HomeSort by relevance Sort by last modified time
    Searched defs:content_rect (Results 1 - 18 of 18) sorted by null

  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_win.cc 23 RECT content_rect = {0, 0, 0, 0}; local
24 ::GetWindowRect(window_handle, &content_rect);
25 content_rect.right++; // Match what PrintWindow wants.
26 int width = content_rect.right - content_rect.left;
27 int height = content_rect.bottom - content_rect.top;
  /external/chromium_org/cc/quads/
picture_draw_quad.h 31 gfx::Rect content_rect,
44 gfx::Rect content_rect,
49 gfx::Rect content_rect; member in class:cc::PictureDrawQuad
  /external/chromium_org/cc/resources/
content_layer_updater.h 33 gfx::Rect content_rect,
37 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::ContentLayerUpdater
resource_update.h 24 gfx::Rect content_rect,
29 gfx::Rect content_rect,
39 gfx::Rect content_rect; member in struct:cc::ResourceUpdate
tile.h 28 gfx::Rect content_rect,
100 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::Tile
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...]
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...]
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...]
  /external/chromium_org/ui/snapshot/
snapshot_win.cc 19 RECT content_rect = {0, 0, 0, 0}; local
21 ::GetWindowRect(window_handle, &content_rect);
27 content_rect = monitor_info.rcMonitor;
30 content_rect.right++; // Match what PrintWindow wants.
32 return gfx::Rect(content_rect.right - content_rect.left,
33 content_rect.bottom - content_rect.top);
  /external/chromium_org/cc/layers/
render_surface.h 32 void SetContentRect(gfx::Rect content_rect) { content_rect_ = content_rect; }
33 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::RenderSurface
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
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,
scrollbar_layer_impl.cc 167 gfx::RectF content_rect = gfx::ScaleRect(layer_rect, local
170 return gfx::ToEnclosingRect(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);
layer.cc 183 gfx::RectF content_rect = local
187 content_rect.Intersect(gfx::Rect(content_bounds()));
188 return gfx::ToEnclosingRect(content_rect);
layer_impl.cc 222 gfx::Rect content_rect(content_bounds());
225 debug_border_quad->SetNew(shared_quad_state, content_rect, color, width);
362 gfx::RectF content_rect = local
366 content_rect.Intersect(gfx::Rect(content_bounds()));
367 return gfx::ToEnclosingRect(content_rect);
    [all...]
  /external/chromium_org/cc/output/
software_renderer.cc 326 current_canvas_, quad->content_rect, quad->contents_scale, NULL);
408 SkRect content_rect = SkRect::MakeWH(quad->rect.width(), quad->rect.height()); local
411 content_mat.setRectToRect(content_rect, dest_rect,
  /external/chromium/chrome/browser/
aeropeek_manager.cc 822 RECT content_rect; local
823 GetClientRect(frame_window_, &content_rect);
828 gfx::Rect content_bounds(content_rect);
    [all...]

Completed in 266 milliseconds