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

1 2 3

  /external/chromium_org/ui/compositor/test/
test_compositor_host_x11.cc 35 gfx::Rect bounds_; member in class:ui::TestCompositorHostX11
49 : bounds_(bounds),
64 bounds_.x(), bounds_.y(), bounds_.width(), bounds_.height(),
79 compositor_->SetScaleAndSize(1.0f, bounds_.size());
test_compositor_host_ozone.cc 32 gfx::Rect bounds_; member in class:ui::TestCompositorHostOzone
44 : bounds_(bounds),
58 compositor_->SetScaleAndSize(1.0f, bounds_.size());
test_layer_animation_delegate.cc 19 : bounds_(other.GetBoundsForAnimation()),
31 bounds_ = bounds;
63 return bounds_;
  /external/chromium_org/ui/aura/
window_tree_host_ozone.cc 17 bounds_(bounds) {
59 gfx::Rect WindowTreeHostOzone::GetBounds() const { return bounds_; }
62 bool origin_changed = bounds_.origin() != bounds.origin();
63 bool size_changed = bounds_.size() != bounds.size();
64 bounds_ = bounds;
66 OnHostResized(bounds_.size());
68 OnHostMoved(bounds_.origin());
72 return bounds_.origin();
window_tree_host_x11.h 73 const gfx::Rect bounds() const { return bounds_; }
100 gfx::Rect bounds_; member in class:aura::WindowTreeHostX11
window_tree_host_x11.cc 245 bounds_(bounds),
419 bool size_changed = bounds_.size() != bounds.size();
420 bool origin_changed = bounds_.origin() != bounds.origin();
421 bounds_ = bounds;
426 OnHostMoved(bounds_.origin());
505 size_hints.x = bounds_.x();
506 size_hints.y = bounds_.y();
531 return bounds_;
540 bool origin_changed = bounds_.origin() != bounds.origin();
541 bool size_changed = bounds_.size() != bounds.size()
    [all...]
  /external/chromium_org/ui/gfx/
display.h 60 const Rect& bounds() const { return bounds_; }
61 void set_bounds(const Rect& bounds) { bounds_ = bounds; }
84 const Size& size() const { return bounds_.size(); }
124 Rect bounds_; member in class:gfx::Display
display.cc 74 bounds_(bounds),
124 return gfx::Insets(work_area_.y() - bounds_.y(),
125 work_area_.x() - bounds_.x(),
126 bounds_.bottom() - work_area_.bottom(),
127 bounds_.right() - work_area_.right());
133 Insets insets = bounds_.InsetsFrom(work_area_);
143 bounds_ = gfx::Rect(
152 gfx::Point origin = bounds_.origin();
162 work_area_ = bounds_;
174 bounds_.ToString().c_str()
    [all...]
  /external/chromium_org/ui/v2/src/
view_private.h 30 void set_bounds(const gfx::Rect& bounds) { view_->bounds_ = bounds; }
  /external/chromium_org/chrome/browser/devtools/
devtools_contents_resizing_strategy.h 28 const gfx::Rect& bounds() const { return bounds_; }
38 gfx::Rect bounds_; member in class:DevToolsContentsResizingStrategy
devtools_contents_resizing_strategy.cc 20 : bounds_(bounds) {
28 bounds_ = strategy.bounds();
34 bounds_ == strategy.bounds();
  /external/chromium_org/ash/wm/overview/
window_selector_item.h 79 const gfx::Rect& bounds() const { return bounds_; }
95 void set_bounds(const gfx::Rect& bounds) { bounds_ = bounds; }
117 gfx::Rect bounds_; member in class:ash::WindowSelectorItem
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
image_transform.js 212 this.bounds_ = {};
213 this.bounds_[DraggableRect.LEFT] = rect.left;
214 this.bounds_[DraggableRect.RIGHT] = rect.left + rect.width;
215 this.bounds_[DraggableRect.TOP] = rect.top;
216 this.bounds_[DraggableRect.BOTTOM] = rect.top + rect.height;
267 return this.bounds_[DraggableRect.LEFT];
275 return this.bounds_[DraggableRect.RIGHT];
283 return this.bounds_[DraggableRect.TOP];
291 return this.bounds_[DraggableRect.BOTTOM];
299 return new Rect(this.bounds_);
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_transform.js 212 this.bounds_ = {};
213 this.bounds_[DraggableRect.LEFT] = rect.left;
214 this.bounds_[DraggableRect.RIGHT] = rect.left + rect.width;
215 this.bounds_[DraggableRect.TOP] = rect.top;
216 this.bounds_[DraggableRect.BOTTOM] = rect.top + rect.height;
267 return this.bounds_[DraggableRect.LEFT];
275 return this.bounds_[DraggableRect.RIGHT];
283 return this.bounds_[DraggableRect.TOP];
291 return this.bounds_[DraggableRect.BOTTOM];
299 return new Rect(this.bounds_);
    [all...]
  /external/chromium_org/mojo/services/native_viewport/
native_viewport_x11.cc 43 bounds_ = bounds;
47 bounds_.x(), bounds_.y(), bounds_.width(), bounds_.height(),
96 return bounds_.size();
147 gfx::Rect bounds_; member in class:mojo::services::NativeViewportX11
native_viewport_android.cc 80 bounds_ = gfx::Rect(width, height);
81 delegate_->OnBoundsChanged(bounds_);
126 return bounds_.size();
  /external/chromium_org/chrome/browser/apps/
app_window_browsertest.cc 29 bounds_(bounds),
37 // from the initial |bounds_|.
54 if (bounds_.x() != bounds.x() &&
55 bounds_.y() != bounds.y() &&
56 bounds_.width() != bounds.width() &&
57 bounds_.height() != bounds.height()) {
70 gfx::Rect bounds_; member in class:GeometryCacheChangeHelper
  /external/chromium_org/mojo/aura/
window_tree_host_mojo.h 34 const gfx::Rect& bounds() const { return bounds_; }
73 gfx::Rect bounds_; member in class:mojo::WindowTreeHostMojo
window_tree_host_mojo.cc 67 bounds_(node->bounds()),
116 return bounds_;
172 bounds_ = new_bounds;
174 OnHostMoved(bounds_.origin());
176 OnHostResized(bounds_.size());
  /external/chromium_org/mojo/services/public/cpp/view_manager/
node.h 41 const gfx::Rect& bounds() { return bounds_; }
99 gfx::Rect bounds_; member in class:mojo::view_manager::Node
  /external/chromium_org/mojo/services/view_manager/
window_tree_host_impl.h 33 gfx::Rect bounds() const { return bounds_; }
67 gfx::Rect bounds_; member in class:mojo::view_manager::service::WindowTreeHostImpl
window_tree_host_impl.cc 36 bounds_(bounds) {
82 return bounds_;
138 bounds_ = bounds.To<gfx::Rect>();
139 OnHostResized(bounds_.size());
  /external/chromium_org/ui/v2/public/
view.h 58 gfx::Rect bounds() const { return bounds_; }
92 gfx::Rect bounds_; member in class:v2::View
  /external/chromium_org/ash/wm/
drag_window_controller.h 76 // |bounds_| is automatically used.
81 // |bounds_| is set to the value passed into Show(). The animation animates
83 gfx::Rect bounds_; member in class:ash::DragWindowController
  /external/chromium_org/ui/message_center/cocoa/
popup_controller.h 51 NSRect bounds_; variable

Completed in 349 milliseconds

1 2 3