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

  /external/chromium_org/cc/quads/
shared_quad_state.h 27 gfx::Size content_bounds,
37 gfx::Size content_bounds; member in class:cc::SharedQuadState
  /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/ash/system/tray/
special_popup_row.cc 112 gfx::Rect content_bounds = GetContentsBounds(); local
113 if (content_bounds.IsEmpty())
121 bounds.set_height(content_bounds.height());
122 gfx::Rect container_bounds = content_bounds;
124 container_bounds.set_x(content_bounds.width() - container_bounds.width());
  /external/chromium_org/cc/layers/
draw_properties.h 86 gfx::Size content_bounds; member in struct:cc::DrawProperties
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);
scrollbar_layer.cc 71 // If the scaled content_bounds() is bigger than the max texture size of the
72 // device, we need to clamp it by rescaling, since content_bounds() is used
91 gfx::Size* content_bounds) {
99 content_bounds); local
265 // We should never return a rect bigger than the content_bounds().
267 clamped_size.SetToMin(content_bounds());
277 if (content_bounds().IsEmpty())
279 DCHECK_LE(content_bounds().width(), MaxTextureSize());
280 DCHECK_LE(content_bounds().height(), MaxTextureSize());
286 track_->texture()->SetDimensions(content_bounds(), texture_format_)
    [all...]
picture_layer_impl.cc 117 gfx::Rect content_rect(content_bounds());
396 gfx::Size* content_bounds) {
409 *content_bounds = gfx::ToCeiledSize(gfx::ScaleSize(bounds(),
449 *content_bounds = gfx::ToCeiledSize(
495 gfx::Size content_bounds) const {
499 std::min(max_size, content_bounds.width()),
500 std::min(max_size, content_bounds.height()));
515 content_bounds.width() > max_untiled_content_size.width() ||
516 content_bounds.height() > max_untiled_content_size.height();
519 content_bounds.width() <= default_tile_size.width() |
907 gfx::Size content_bounds = local
    [all...]
tiled_layer_unittest.cc 1496 gfx::Rect content_bounds = gfx::Rect(0, 0, 100, 200); local
1619 gfx::Rect content_bounds = gfx::Rect(0, 0, 100, 300); local
    [all...]
layer.h 309 gfx::Size content_bounds() const { return draw_properties_.content_bounds; } function in class:cc::Layer
317 gfx::Size* content_bounds);
layer_impl.h 295 void SetContentBounds(gfx::Size content_bounds);
296 gfx::Size content_bounds() const { return draw_properties_.content_bounds; } function in class:cc::LayerImpl
308 gfx::Size* content_bounds);
  /external/chromium_org/ui/oak/
oak_window.cc 88 gfx::Rect content_bounds = GetLocalBounds(); local
89 content_bounds.Inset(views::kPanelHorizMargin, views::kPanelVertMargin);
92 (content_bounds.height() / 2) - views::kUnrelatedControlVerticalSpacing;
93 gfx::Rect tree_bounds = content_bounds;
97 separator_rect_ = content_bounds;
102 gfx::Rect details_bounds = content_bounds;
105 details_bounds.set_height(content_bounds.bottom() - details_bounds.y());
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint.cc 198 const gfx::Rect& content_bounds,
273 const gfx::Rect& content_bounds,
286 content_bounds_(content_bounds),
460 const gfx::Rect& content_bounds,
471 new FingerprintDataLoader(obfuscated_gaia_id, window_bounds, content_bounds,
489 gfx::Rect content_bounds; local
490 web_contents.GetView()->GetContainerBounds(&content_bounds);
499 obfuscated_gaia_id, window_bounds, content_bounds, screen_info, version,
  /external/chromium_org/cc/resources/
picture_layer_tiling.cc 38 gfx::Size content_bounds = local
40 gfx::Size tile_size = client_->CalculateTileSize(content_bounds);
48 tiling_data_.SetTotalSize(content_bounds);
137 gfx::Size content_bounds = local
140 gfx::Size tile_size = client_->CalculateTileSize(content_bounds);
142 tiling_data_.SetTotalSize(content_bounds);
150 bounded_live_tiles_rect.Intersect(gfx::Rect(content_bounds));
152 tiling_data_.SetTotalSize(content_bounds);
686 state->Set("content_bounds",
  /external/chromium_org/chrome/browser/ui/gtk/apps/
native_app_window_gtk.cc 288 gfx::Rect content_bounds = bounds; local
289 content_bounds.Inset(GetFrameInsets());
290 gtk_window_move(window_, content_bounds.x(), content_bounds.y());
293 gtk_window_util::BoundsMatchMonitorSize(window_, content_bounds)) {
294 content_bounds.set_height(content_bounds.height() - 1);
299 content_bounds.width(), content_bounds.height());
  /external/chromium_org/ui/message_center/views/
notification_view.cc 264 gfx::Rect content_bounds = GetContentsBounds(); local
268 background_path.addRoundRect(gfx::RectToSkRect(content_bounds),
279 static_cast<int>(content_bounds.width() * GetNormalizedValue() + 0.5);
283 gfx::Rect slice_bounds = content_bounds;
  /external/chromium_org/cc/output/
renderer_pixeltest.cc 48 const gfx::Size content_bounds = rect.size(); local
55 content_bounds,
67 const gfx::Size content_bounds = rect.size(); local
73 content_bounds,
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_controller.cc 1347 gfx::Rect content_bounds; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.cc 1909 gfx::Rect content_bounds; local
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_impl_unittest.cc 5621 gfx::Size content_bounds = local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/autofill/
autofill_dialog_views.cc 1533 gfx::Rect content_bounds = GetContentsBounds(); local
    [all...]

Completed in 665 milliseconds