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,
43 gfx::Rect content_rect,
47 gfx::Rect content_rect; member in class:cc::PictureDrawQuad
  /external/chromium_org/cc/resources/
resource_update.h 24 gfx::Rect content_rect,
29 gfx::Rect content_rect,
39 gfx::Rect content_rect; member in struct:cc::ResourceUpdate
content_layer_updater.h 38 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::ContentLayerUpdater
picture_layer_tiling_set_unittest.cc 35 gfx::Rect content_rect(content_bounds);
37 Region remaining(content_rect);
41 content_rect,
45 EXPECT_TRUE(content_rect.Contains(geometry_rect));
88 gfx::Rect content_rect(content_bounds);
90 Region remaining(content_rect);
94 content_rect,
98 EXPECT_TRUE(content_rect.Contains(geometry_rect));
230 EXPECT_TRUE(tile->content_rect().Intersects(tiling->live_tiles_rect()))
280 if (tiles[i]->content_rect().origin() == gfx::Point()
362 gfx::Rect content_rect = gfx::ScaleToEnclosingRect(iter.rect(), 2.f); local
    [all...]
picture_pile_impl.cc 117 gfx::Rect content_rect(gfx::ToCeiledSize(total_content_size));
122 gfx::Rect deflated_content_rect = content_rect;
129 gfx::Rect inflated_content_rect = content_rect;
149 gfx::Rect content_rect,
155 content_rect, 1.f / contents_scale);
167 // of the rects will have to fit into |content_rect|, so we can start with
199 region = content_rect;
222 gfx::Rect content_rect = total_content_rect; local
223 content_rect.Intersect(canvas_rect);
225 canvas->clipRect(gfx::RectToSkRect(content_rect),
    [all...]
tile.h 106 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::Tile
139 gfx::Rect content_rect,
picture_layer_tiling.cc 105 gfx::Rect content_rect) const {
167 gfx::Rect content_rect = local
169 content_rect.Intersect(live_tiles_rect_);
170 if (content_rect.IsEmpty())
174 &tiling_data_, content_rect, include_borders);
227 gfx::Rect content_rect = local
233 content_rect.Intersect(gfx::Rect(tiling_->tiling_data_.total_size()));
234 if (content_rect.IsEmpty())
237 left_ = tiling_->tiling_data_.TileXIndexFromSrcCoord(content_rect.x());
238 top_ = tiling_->tiling_data_.TileYIndexFromSrcCoord(content_rect.y())
277 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/debug/
rasterize_and_record_benchmark_impl.cc 83 gfx::Rect content_rect = (*it)->content_rect(); local
91 content_rect.width(),
92 content_rect.height());
101 content_rect, contents_scale, &analysis, NULL);
102 picture_pile->RasterToBitmap(&canvas, content_rect, contents_scale, NULL);
110 content_rect.width() * content_rect.height();
  /external/chromium_org/cc/layers/
scrollbar_layer_impl_base.cc 41 gfx::RectF content_rect = gfx::ScaleRect(layer_rect, local
44 return gfx::ToEnclosingRect(content_rect);
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
tiled_layer_impl.cc 154 gfx::Rect content_rect = visible_content_rect(); local
160 tiler_->ContentRectToTileIndices(content_rect, &left, &top, &right, &bottom);
195 tile_rect.Intersect(content_rect);
layer.cc 212 gfx::RectF content_rect = local
216 content_rect.Intersect(gfx::Rect(content_bounds()));
217 return gfx::ToEnclosingRect(content_rect);
    [all...]
layer_impl.cc 321 gfx::Rect content_rect(content_bounds());
324 debug_border_quad->SetNew(shared_quad_state, content_rect, color, width);
480 gfx::RectF content_rect = local
484 content_rect.Intersect(gfx::Rect(content_bounds()));
485 return gfx::ToEnclosingRect(content_rect);
    [all...]
  /external/chromium_org/cc/output/
software_renderer.cc 345 current_canvas_, quad->content_rect, quad->contents_scale, NULL);
457 SkRect content_rect = SkRect::MakeWH(quad->rect.width(), quad->rect.height()); local
460 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 116 milliseconds