HomeSort by relevance Sort by last modified time
    Searched full:content_bounds (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /external/chromium_org/cc/layers/
contents_scaling_layer_unittest.cc 59 EXPECT_EQ(320, test_layer->content_bounds().width());
60 EXPECT_EQ(240, test_layer->content_bounds().height());
63 EXPECT_EQ(640, test_layer->content_bounds().width());
64 EXPECT_EQ(480, test_layer->content_bounds().height());
68 EXPECT_EQ(20, test_layer->content_bounds().width());
69 EXPECT_EQ(40, test_layer->content_bounds().height());
72 EXPECT_EQ(14, test_layer->content_bounds().width());
73 EXPECT_EQ(27, test_layer->content_bounds().height());
picture_image_layer_impl_unittest.cc 80 gfx::Size content_bounds; local
83 &content_bounds);
86 EXPECT_EQ(layer->bounds(), content_bounds);
98 gfx::Size content_bounds; local
101 &content_bounds);
120 gfx::Size content_bounds; local
127 &content_bounds);
140 &content_bounds);
contents_scaling_layer.cc 30 gfx::Size* content_bounds) {
33 *content_bounds = ComputeContentBoundsForScale(
picture_image_layer_impl.cc 37 gfx::Size* content_bounds) {
47 content_bounds);
solid_color_layer_impl.cc 33 int width = content_bounds().width();
34 int height = content_bounds().height();
image_layer.cc 49 InvalidateContentRect(gfx::Rect(content_bounds()));
73 gfx::Size* content_bounds) {
76 *content_bounds = gfx::Size(bitmap_.width(), bitmap_.height());
contents_scaling_layer.h 24 gfx::Size* content_bounds) OVERRIDE;
picture_image_layer_impl.h 30 gfx::Size* content_bounds) OVERRIDE;
painted_scrollbar_layer.cc 77 // If the scaled content_bounds() is bigger than the max texture size of the
78 // device, we need to clamp it by rescaling, since content_bounds() is used
98 gfx::Size* content_bounds) {
106 content_bounds); local
156 // We should never return a rect bigger than the content_bounds().
158 clamped_size.SetToMin(content_bounds());
image_layer.h 33 gfx::Size* content_bounds) OVERRIDE;
picture_layer_impl.cc 123 gfx::Rect content_rect(content_bounds());
396 gfx::Size* content_bounds) {
411 *content_bounds = gfx::ToCeiledSize(gfx::ScaleSize(bounds(),
451 *content_bounds = gfx::ToCeiledSize(
508 gfx::Size content_bounds) const {
512 std::min(max_size, content_bounds.width()),
513 std::min(max_size, content_bounds.height()));
528 content_bounds.width() > max_untiled_content_size.width() ||
529 content_bounds.height() > max_untiled_content_size.height();
532 content_bounds.width() <= default_tile_size.width() |
1041 gfx::Size content_bounds = local
    [all...]
picture_layer_impl.h 52 gfx::Size* content_bounds) OVERRIDE;
60 gfx::Size content_bounds) const OVERRIDE;
  /external/chromium_org/cc/quads/
shared_quad_state.cc 31 gfx::Size content_bounds,
38 this->content_bounds = content_bounds;
51 MathUtil::AsValue(content_bounds).release());
shared_quad_state.h 28 gfx::Size content_bounds,
39 gfx::Size content_bounds; member in class:cc::SharedQuadState
  /external/chromium_org/ui/oak/
oak_window.cc 89 gfx::Rect content_bounds = GetLocalBounds(); local
90 content_bounds.Inset(views::kPanelHorizMargin, views::kPanelVertMargin);
93 (content_bounds.height() / 2) - views::kUnrelatedControlVerticalSpacing;
94 gfx::Rect tree_bounds = content_bounds;
98 separator_rect_ = content_bounds;
103 gfx::Rect details_bounds = content_bounds;
106 details_bounds.set_height(content_bounds.bottom() - details_bounds.y());
  /external/chromium_org/cc/test/
tiled_layer_test_common.cc 123 &draw_properties().content_bounds);
151 gfx::Size content_bounds) {
152 forced_content_bounds_ = content_bounds;
153 draw_properties().content_bounds = forced_content_bounds_;
163 gfx::Size* content_bounds) {
168 *content_bounds = forced_content_bounds_;
fake_picture_layer_tiling_client.cc 44 gfx::Size /* content_bounds */) const {
fake_picture_layer_tiling_client.h 28 gfx::Size content_bounds) const OVERRIDE;
  /external/chromium_org/ash/system/tray/
special_popup_row.cc 113 gfx::Rect content_bounds = GetContentsBounds(); local
114 if (content_bounds.IsEmpty())
122 bounds.set_height(content_bounds.height());
123 gfx::Rect container_bounds = content_bounds;
125 container_bounds.set_x(content_bounds.width() - container_bounds.width());
  /external/chromium_org/ui/views/corewm/
shadow.h 50 const gfx::Rect& content_bounds() const { return content_bounds_; } function in class:views::corewm::Shadow
53 // Moves and resizes |image_grid_| to frame |content_bounds|.
54 void SetContentBounds(const gfx::Rect& content_bounds);
  /external/chromium_org/cc/debug/
picture_record_benchmark.cc 92 gfx::Size content_bounds = layer->content_bounds(); local
105 int y_limit = std::max(1, content_bounds.height() - height);
106 int x_limit = std::max(1, content_bounds.width() - width);
debug_rect_history.cc 73 float width_scale = layer->content_bounds().width() /
75 float height_scale = layer->content_bounds().height() /
116 gfx::RectF(gfx::PointF(), layer->content_bounds()))));
209 gfx::RectF wheel_rect = gfx::RectF(layer->content_bounds());
rasterize_and_record_benchmark.cc 106 gfx::Size content_bounds = layer->content_bounds(); local
  /external/chromium_org/ui/views/controls/
progress_bar.cc 197 gfx::Rect content_bounds = GetContentsBounds();
198 int bar_left = content_bounds.x();
199 int bar_top = content_bounds.y();
200 int bar_width = content_bounds.width();
201 int bar_height = content_bounds.height();
  /external/chromium_org/ash/wm/
resize_shadow.cc 104 void ResizeShadow::Layout(const gfx::Rect& content_bounds) {
105 gfx::Rect local_bounds(content_bounds.size());

Completed in 563 milliseconds

1 2 3 4