OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vis_bounds
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/ui/views/controls/menu/
submenu_view.cc
218
gfx::Rect
vis_bounds
= GetVisibleBounds();
local
220
if (
vis_bounds
.height() == height() || !menu_item_count) {
228
while ((i < menu_item_count) && (GetMenuItemAt(i)->y() <
vis_bounds
.y()))
233
(GetMenuItemAt(i)->y() ==
vis_bounds
.y()) ? i : i - 1);
245
if (GetMenuItemAt(first_vis_index)->y() ==
vis_bounds
.y()) {
255
if (GetMenuItemAt(first_vis_index)->y() ==
vis_bounds
.y())
259
vis_bounds
.size()));
260
vis_bounds
= GetVisibleBounds();
446
const gfx::Rect&
vis_bounds
= GetVisibleBounds();
local
448
int x =
vis_bounds
.x()
[
all
...]
/external/chromium_org/ui/views/controls/tree/
tree_view.cc
517
gfx::Rect
vis_bounds
(GetVisibleBounds());
518
if (node_bounds.y() >=
vis_bounds
.y() &&
519
node_bounds.y() <
vis_bounds
.bottom()) {
586
gfx::Rect
vis_bounds
= GetVisibleBounds();
local
587
min_y =
vis_bounds
.y();
588
max_y =
vis_bounds
.bottom();
/external/chromium_org/ui/views/
view.cc
395
gfx::Rect
vis_bounds
(GetLocalBounds());
400
while (view != NULL && !
vis_bounds
.IsEmpty()) {
407
vis_bounds
= view->ConvertRectToParent(
vis_bounds
);
411
vis_bounds
.Intersect(ancestor_bounds);
418
if (
vis_bounds
.IsEmpty())
419
return
vis_bounds
;
421
gfx::RectF views_vis_bounds(
vis_bounds
);
1573
gfx::Rect
vis_bounds
= GetVisibleBounds();
local
[
all
...]
Completed in 661 milliseconds