OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:available_bounds
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/views/bubble/
bubble_frame_view.cc
28
// Get the |vertical| or horizontal amount that |
available_bounds
| overflows
30
int GetOffScreenLength(const gfx::Rect&
available_bounds
,
33
if (
available_bounds
.IsEmpty() ||
available_bounds
.Contains(window_bounds))
40
// | left |
available_bounds
| right |
45
return std::max(0,
available_bounds
.y() - window_bounds.y()) +
46
std::max(0, window_bounds.bottom() -
available_bounds
.bottom());
47
return std::max(0,
available_bounds
.x() - window_bounds.x()) +
48
std::max(0, window_bounds.right() -
available_bounds
.right());
281
gfx::Rect
available_bounds
(GetAvailableScreenBounds(anchor_rect))
[
all
...]
/external/chromium_org/ash/shelf/
shelf_layout_manager.cc
731
const gfx::Rect
available_bounds
(GetAvailableBounds());
737
shelf_width =
available_bounds
.width();
739
shelf_height =
available_bounds
.height();
759
gfx::Rect(
available_bounds
.x(),
available_bounds
.bottom() - shelf_height,
760
available_bounds
.width(), shelf_height),
761
gfx::Rect(
available_bounds
.x(),
available_bounds
.y(),
762
shelf_width,
available_bounds
.height()),
763
gfx::Rect(
available_bounds
.right() - shelf_width, available_bounds.y()
[
all
...]
/external/chromium_org/chrome/browser/ui/views/autofill/
info_bubble.cc
43
void set_available_bounds(const gfx::Rect&
available_bounds
) {
44
available_bounds_ =
available_bounds
;
/external/chromium/chrome/browser/chromeos/frame/
browser_view.cc
188
gfx::Rect
available_bounds
= vertical_layout_rect();
local
189
available_bounds
.Inset(tabstrip_w, 0, 0, 0);
190
set_vertical_layout_rect(
available_bounds
);
Completed in 44 milliseconds