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

  /external/chromium_org/ui/gfx/
display.h 53 const Rect& work_area() const { return work_area_; }
54 void set_work_area(const Rect& work_area) { work_area_ = work_area; }
69 const Size& work_area_size() const { return work_area_.size(); }
109 Rect work_area_; member in class:gfx::Display
display.cc 70 work_area_(bounds),
82 return gfx::Insets(work_area_.y() - bounds_.y(),
83 work_area_.x() - bounds_.x(),
84 bounds_.bottom() - work_area_.bottom(),
85 bounds_.right() - work_area_.right());
91 Insets insets = bounds_.InsetsFrom(work_area_);
120 work_area_ = bounds_;
121 work_area_.Inset(insets);
133 work_area_.ToString().c_str(),
  /external/chromium/chrome/browser/notifications/
balloon_collection_impl.cc 242 *total_size = work_area_.height();
251 x = work_area_.x() + HorizontalEdgeMargin();
252 y = work_area_.y() + VerticalEdgeMargin();
255 x = work_area_.right() - HorizontalEdgeMargin();
256 y = work_area_.y() + VerticalEdgeMargin();
259 x = work_area_.x() + HorizontalEdgeMargin();
260 y = work_area_.bottom() - VerticalEdgeMargin();
263 x = work_area_.right() - HorizontalEdgeMargin();
264 y = work_area_.bottom() - VerticalEdgeMargin();
317 x = work_area_.x() + HorizontalEdgeMargin()
    [all...]
balloon_collection_impl.h 141 gfx::Rect work_area_; member in class:BalloonCollectionImpl::Layout
  /external/chromium_org/chrome/browser/notifications/
balloon_collection_impl.cc 296 *total_size = work_area_.height();
307 x = work_area_.x() + HorizontalEdgeMargin();
308 y = work_area_.y() + VerticalEdgeMargin() + offset_to_move_above_panels_;
312 x = work_area_.right() - HorizontalEdgeMargin();
313 y = work_area_.y() + VerticalEdgeMargin() + offset_to_move_above_panels_;
317 x = work_area_.x() + HorizontalEdgeMargin();
318 y = work_area_.bottom() - VerticalEdgeMargin() -
322 x = work_area_.right() - HorizontalEdgeMargin();
323 y = work_area_.bottom() - VerticalEdgeMargin() -
436 if ((*iter)->GetBounds().x() >= work_area_.x() + max_balloon_width()
    [all...]
balloon_collection_impl.h 172 gfx::Rect work_area_; member in class:BalloonCollectionImpl::Layout
  /external/chromium_org/ash/wm/workspace/
workspace_layout_manager.cc 80 work_area_(ScreenAsh::GetDisplayWorkAreaBoundsInParent(
131 child_bounds.set_width(std::min(work_area_.width(), child_bounds.width()));
133 std::min(work_area_.height(), child_bounds.height()));
142 if (work_area != work_area_) {
206 work_area_ = ScreenAsh::GetDisplayWorkAreaBoundsInParent(window_->parent());
238 bounds.AdjustToFit(work_area_);
241 ash::wm::AdjustBoundsToEnsureMinimumWindowVisibility(work_area_, &bounds);
301 work_area_, &bounds_in_parent);
307 work_area_, &bounds_in_parent);
workspace_layout_manager.h 85 gfx::Rect work_area_; member in class:ash::internal::WorkspaceLayoutManager
  /external/chromium_org/ui/message_center/views/
message_popup_collection.cc 87 work_area_ = display.work_area();
88 ComputePopupAlignment(work_area_, display.bounds());
139 int height_available = top_down ? work_area_.bottom() - base : base;
216 return work_area_.x() + kToastMarginX;
219 return work_area_.x() + kToastMarginX;
220 return work_area_.right() - kToastMarginX - toast_bounds.width();
239 if ((top_down ? work_area_.bottom() - bounds.bottom() : bounds.y()) >= 0)
321 base = work_area_.y();
331 base = work_area_.bottom();
476 if (work_area_ == work_area
    [all...]
message_popup_collection.h 92 // Updates |work_area_| and re-calculates the alignment of notification toasts
165 gfx::Rect work_area_; member in class:message_center::MessagePopupCollection
message_popup_collection_unittest.cc 71 return collection_->work_area_;
  /external/chromium_org/chrome/browser/ui/panels/
docked_panel_collection.cc 72 work_area_ =
74 work_area_.set_x(work_area_.x() + kPanelCollectionLeftMargin);
75 work_area_.set_width(work_area_.width() -
83 (*iter)->LimitSizeToWorkArea(work_area_);
128 panels_.back()->GetBounds().x() < work_area_.x()) {
133 if ((*iter)->GetBounds().x() >= work_area_.x()) {
139 DCHECK(x > work_area_.x());
142 work_area_.x())
    [all...]
docked_panel_collection.h 104 gfx::Rect work_area() const { return work_area_; }
172 gfx::Rect work_area_; member in class:DockedPanelCollection
  /external/chromium_org/ash/system/web_notification/
web_notification_tray_unittest.cc 144 return tray->popup_collection_->work_area_;

Completed in 1414 milliseconds