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

  /external/chromium_org/cc/test/
fake_picture_pile_impl.h 18 const gfx::Size& layer_bounds);
21 const gfx::Size& layer_bounds);
24 const gfx::Size& layer_bounds);
fake_picture_pile_impl.cc 21 const gfx::Size& layer_bounds) {
23 pile->tiling().SetTilingRect(gfx::Rect(layer_bounds));
26 pile->recorded_viewport_ = gfx::Rect(layer_bounds);
37 const gfx::Size& layer_bounds) {
39 pile->tiling().SetTilingRect(gfx::Rect(layer_bounds));
50 const gfx::Size& layer_bounds) {
52 pile->tiling().SetTilingRect(gfx::Rect(layer_bounds));
fake_picture_layer_impl.h 31 const gfx::Size& layer_bounds) {
33 new FakePictureLayerImpl(tree_impl, id, pile, layer_bounds));
106 const gfx::Size& layer_bounds);
fake_picture_layer_impl.cc 28 const gfx::Size& layer_bounds)
31 SetBounds(layer_bounds);
32 SetContentBounds(layer_bounds);
  /external/chromium_org/cc/layers/
picture_layer_impl_unittest.cc 76 void SetupDefaultTrees(const gfx::Size& layer_bounds) {
80 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
82 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
97 void SetupDefaultTreesWithFixedTileSize(const gfx::Size& layer_bounds,
99 SetupDefaultTrees(layer_bounds);
289 gfx::Size layer_bounds(400, 400);
292 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
294 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
314 gfx::Size layer_bounds(400, 400);
317 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
    [all...]
picture_layer_impl_perftest.cc 42 void SetupPendingTree(const gfx::Size& layer_bounds,
45 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
tiled_layer_impl_unittest.cc 333 gfx::Size layer_bounds(1000, 1000);
339 tiled_layer->SetBounds(layer_bounds);
340 tiled_layer->SetContentBounds(layer_bounds);
346 tiler->SetTilingRect(gfx::Rect(layer_bounds));
363 gfx::Rect(layer_bounds));
384 gfx::Rect(layer_bounds),
texture_layer_unittest.cc 192 const gfx::Size layer_bounds(100, 100);
193 const gfx::Rect layer_rect(layer_bounds);
197 layer->SetBounds(layer_bounds);
    [all...]
tiled_layer_unittest.cc     [all...]
  /external/chromium_org/cc/resources/
picture_layer_tiling_set.h 18 const gfx::Size& layer_bounds);
36 gfx::Size layer_bounds() const { return layer_bounds_; } function in class:cc::PictureLayerTilingSet
picture_pile_impl_unittest.cc 21 gfx::Size layer_bounds(400, 400);
24 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
79 gfx::Size layer_bounds(400, 400);
82 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
137 gfx::Size layer_bounds(400, 400);
140 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
152 gfx::Size layer_bounds(256, 256);
156 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
210 gfx::Size layer_bounds(256, 256);
213 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
    [all...]
tile_manager_perftest.cc 121 void SetupDefaultTrees(const gfx::Size& layer_bounds) {
125 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
127 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
140 void SetupDefaultTreesWithFixedTileSize(const gfx::Size& layer_bounds,
142 SetupDefaultTrees(layer_bounds);
222 gfx::Size layer_bounds(width, height);
225 SetupDefaultTreesWithFixedTileSize(layer_bounds,
242 layer->SetBounds(layer_bounds);
picture_layer_tiling_unittest.cc 57 const gfx::Size& layer_bounds,
61 layer_bounds,
69 const gfx::Size& layer_bounds,
71 : PictureLayerTiling(contents_scale, layer_bounds, client) { }
81 const gfx::Size& layer_bounds) {
84 layer_bounds,
313 gfx::Size layer_bounds(200, 200);
316 tiling = TestablePictureLayerTiling::Create(1.0f, layer_bounds, &client);
378 gfx::Size layer_bounds(200, 200);
381 tiling = TestablePictureLayerTiling::Create(1.0f, layer_bounds, &client)
    [all...]
picture_layer_tiling.h 127 const gfx::Size& layer_bounds,
129 gfx::Size layer_bounds() const { return layer_bounds_; } function in class:cc::PictureLayerTiling
130 void SetLayerBounds(const gfx::Size& layer_bounds);
272 const gfx::Size& layer_bounds,
picture_layer_tiling_set_unittest.cc 25 gfx::Size layer_bounds(1000, 800);
26 PictureLayerTilingSet set(&client, layer_bounds);
35 gfx::ToCeiledSize(gfx::ScaleSize(layer_bounds, contents_scale)));
76 gfx::Size layer_bounds(1000, 800);
77 PictureLayerTilingSet set(&client, layer_bounds);
89 gfx::ToCeiledSize(gfx::ScaleSize(layer_bounds, max_contents_scale)));
188 EXPECT_EQ(target_->layer_bounds().ToString(), new_bounds.ToString());
194 EXPECT_EQ(target_tiling->layer_bounds().ToString(),
263 EXPECT_EQ(target_->layer_bounds().ToString(), new_bounds.ToString());
picture_layer_tiling.cc 52 const gfx::Size& layer_bounds,
55 layer_bounds,
60 const gfx::Size& layer_bounds,
63 layer_bounds_(layer_bounds),
71 gfx::ToCeiledSize(gfx::ScaleSize(layer_bounds, contents_scale));
75 gfx::ScaleSize(layer_bounds, contents_scale)).IsEmpty()) <<
77 " Layer bounds: " << layer_bounds.ToString() <<
141 void PictureLayerTiling::SetLayerBounds(const gfx::Size& layer_bounds) {
142 if (layer_bounds_ == layer_bounds)
145 DCHECK(!layer_bounds.IsEmpty())
    [all...]
picture_layer_tiling_set.cc 25 const gfx::Size& layer_bounds)
27 layer_bounds_(layer_bounds) {
tile_manager_unittest.cc 467 void SetupDefaultTrees(const gfx::Size& layer_bounds) {
471 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
473 FakePicturePileImpl::CreateFilledPile(tile_size, layer_bounds);
486 void SetupDefaultTreesWithFixedTileSize(const gfx::Size& layer_bounds,
488 SetupDefaultTrees(layer_bounds);
    [all...]
  /external/chromium_org/ash/wm/
drag_window_controller.cc 112 gfx::Rect layer_bounds = layer_owner_->root()->bounds(); local
113 layer_bounds.set_origin(gfx::Point(0, 0));
114 layer_owner_->root()->SetBounds(layer_bounds);
  /external/chromium_org/chrome/browser/chromeos/ui/
focus_ring_layer.cc 57 gfx::Rect layer_bounds = focus_ring_; local
58 layer_bounds.set_origin(origin);
60 layer_bounds.Inset(inset, inset, inset, inset);
61 layer_->SetBounds(layer_bounds);
  /external/chromium_org/ui/compositor/
layer_owner.cc 38 const gfx::Rect layer_bounds(old_layer->bounds());
43 new_layer->SetBounds(layer_bounds);
  /external/chromium_org/ash/wm/overview/
scoped_window_copy.cc 62 gfx::Rect layer_bounds = recreated_layer->bounds(); local
63 layer_bounds.set_origin(gfx::Point(0, 0));
64 recreated_layer->SetBounds(layer_bounds);
  /external/chromium_org/ui/aura/
window.cc     [all...]
  /external/chromium_org/ui/gfx/
canvas.h 188 // |layer_bounds| are the bounds of the layer relative to the current
191 void SaveLayerAlpha(uint8 alpha, const Rect& layer_bounds);
canvas.cc 187 void Canvas::SaveLayerAlpha(uint8 alpha, const Rect& layer_bounds) {
188 SkRect bounds(RectToSkRect(layer_bounds));

Completed in 288 milliseconds