OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:work_area_
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/ui/gfx/
display.h
64
const Rect& work_area() const { return
work_area_
; }
65
void set_work_area(const Rect& work_area) {
work_area_
= work_area; }
83
const Size& work_area_size() const { return
work_area_
.size(); }
123
Rect
work_area_
;
member in class:gfx::Display
display.cc
74
work_area_
(bounds),
87
return gfx::Insets(
work_area_
.y() - bounds_.y(),
88
work_area_
.x() - bounds_.x(),
89
bounds_.bottom() -
work_area_
.bottom(),
90
bounds_.right() -
work_area_
.right());
96
Insets insets = bounds_.InsetsFrom(
work_area_
);
125
work_area_
= bounds_;
126
work_area_
.Inset(insets);
138
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
295
*total_size =
work_area_
.height();
306
x =
work_area_
.x() + HorizontalEdgeMargin();
307
y =
work_area_
.y() + VerticalEdgeMargin() + offset_to_move_above_panels_;
311
x =
work_area_
.right() - HorizontalEdgeMargin();
312
y =
work_area_
.y() + VerticalEdgeMargin() + offset_to_move_above_panels_;
316
x =
work_area_
.x() + HorizontalEdgeMargin();
317
y =
work_area_
.bottom() - VerticalEdgeMargin() -
321
x =
work_area_
.right() - HorizontalEdgeMargin();
322
y =
work_area_
.bottom() - VerticalEdgeMargin() -
435
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/ui/message_center/views/
message_popup_collection.cc
90
work_area_
= display.work_area();
91
ComputePopupAlignment(
work_area_
, display.bounds());
198
int height_available = top_down ?
work_area_
.bottom() - base : base;
308
return
work_area_
.x() + kToastMarginX;
311
return
work_area_
.x() + kToastMarginX;
312
return
work_area_
.right() - kToastMarginX - toast_bounds.width();
331
if ((top_down ?
work_area_
.bottom() - bounds.bottom() : bounds.y()) >= 0)
413
base =
work_area_
.y();
423
base =
work_area_
.bottom();
582
if (
work_area_
== work_area
[
all
...]
message_popup_collection.h
112
// Updates |
work_area_
| and re-calculates the alignment of notification toasts
189
gfx::Rect
work_area_
;
member in class:message_center::MessagePopupCollection
message_popup_collection_unittest.cc
72
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
150
return tray->popup_collection_->
work_area_
;
Completed in 124 milliseconds