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

1 2 3

  /external/chromium_org/mojo/services/native_viewport/
platform_viewport_headless.cc 17 bounds_ = bounds;
31 return bounds_.size();
35 bounds_ = bounds;
36 delegate_->OnBoundsChanged(bounds_);
platform_viewport_headless.h 30 gfx::Rect bounds_; member in class:mojo::PlatformViewportHeadless
platform_viewport_android.cc 76 bounds_ = gfx::Rect(width, height);
77 delegate_->OnBoundsChanged(bounds_);
124 return bounds_.size();
  /external/chromium_org/chrome/browser/devtools/
devtools_contents_resizing_strategy.h 24 const gfx::Rect& bounds() const { return bounds_; }
29 gfx::Rect bounds_; member in class:DevToolsContentsResizingStrategy
devtools_contents_resizing_strategy.cc 15 : bounds_(bounds),
16 hide_inspected_contents_(bounds_.IsEmpty() && !bounds_.x() &&
17 !bounds_.y()) {
23 bounds_ = strategy.bounds();
29 return bounds_ == strategy.bounds() &&
  /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(),
81 compositor_->SetScaleAndSize(1.0f, bounds_.size());
test_compositor_host_ozone.cc 32 gfx::Rect bounds_; member in class:ui::TestCompositorHostOzone
44 : bounds_(bounds),
60 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/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/ui/aura/
window_tree_host_win.cc 125 gfx::Rect old_bounds = bounds_;
126 bounds_ = new_bounds;
127 if (bounds_.origin() != old_bounds.origin())
128 OnHostMoved(bounds_.origin());
129 if (bounds_.size() != old_bounds.size())
130 OnHostResized(bounds_.size());
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
image_transform.js 277 this.bounds_ = {};
278 this.bounds_[DraggableRect.LEFT] = rect.left;
279 this.bounds_[DraggableRect.RIGHT] = rect.left + rect.width;
280 this.bounds_[DraggableRect.TOP] = rect.top;
281 this.bounds_[DraggableRect.BOTTOM] = rect.top + rect.height;
345 return this.bounds_[DraggableRect.LEFT];
353 return this.bounds_[DraggableRect.RIGHT];
361 return this.bounds_[DraggableRect.TOP];
369 return this.bounds_[DraggableRect.BOTTOM];
377 return new Rect(this.bounds_);
    [all...]
  /external/chromium_org/v8/src/compiler/
node.h 34 Bounds bounds() { return bounds_; }
38 Bounds bounds_; member in class:v8::internal::compiler::NodeData
39 explicit NodeData(Zone* zone) : bounds_(Bounds(Type::None(zone))) {}
42 void set_bounds(Bounds b) { bounds_ = b; }
  /external/chromium_org/ui/ozone/platform/test/
test_window.cc 20 : delegate_(delegate), manager_(manager), bounds_(bounds) {
39 return bounds_;
43 bounds_ = bounds;
  /external/chromium_org/mojo/aura/
window_tree_host_mojo.cc 67 bounds_(view->bounds()),
116 return bounds_;
166 bounds_ = new_bounds;
168 OnHostMoved(bounds_.origin());
170 OnHostResized(bounds_.size());
window_tree_host_mojo.h 33 const gfx::Rect& bounds() const { return bounds_; }
70 gfx::Rect bounds_; member in class:mojo::WindowTreeHostMojo
  /external/chromium_org/chrome/browser/apps/
app_window_browsertest.cc 31 bounds_(bounds),
39 // from the initial |bounds_|.
56 if (bounds_.x() != bounds.x() &&
57 bounds_.y() != bounds.y() &&
58 bounds_.width() != bounds.width() &&
59 bounds_.height() != bounds.height()) {
72 gfx::Rect bounds_; member in class:GeometryCacheChangeHelper
  /external/chromium_org/ash/wm/overview/
window_selector_item.h 87 const gfx::Rect& bounds() const { return bounds_; }
106 void set_bounds(const gfx::Rect& bounds) { bounds_ = bounds; }
138 gfx::Rect bounds_; member in class:ash::WindowSelectorItem
  /external/chromium_org/ui/ozone/platform/dri/
dri_window.cc 27 bounds_(bounds),
47 dri_window_delegate_->OnBoundsChanged(bounds_);
59 bounds_ = bounds;
71 return bounds_;
dri_window_delegate_proxy.h 42 gfx::Rect bounds_; member in class:ui::DriWindowDelegateProxy