OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:starting_view
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/ui/views/focus/
focus_search.cc
18
View* FocusSearch::FindNextFocusableView(View*
starting_view
,
33
View* initial_starting_view =
starting_view
;
35
if (
starting_view
)
36
starting_view_group =
starting_view
->GetGroup();
38
if (!
starting_view
) {
40
starting_view
= reverse ? root_->child_at(root_->child_count() - 1) :
47
DCHECK(Contains(root_,
starting_view
));
52
v = FindNextFocusableViewImpl(
starting_view
, check_starting_view,
61
bool can_go_down = (direction == DOWN) && !IsFocusable(
starting_view
);
62
v = FindPreviousFocusableViewImpl(
starting_view
, check_starting_view
[
all
...]
focus_search.h
51
// - |
starting_view
| is the view that should be used as the starting point
58
// - |check_starting_view| is true if
starting_view
may obtain the next focus.
64
virtual View* FindNextFocusableView(View*
starting_view
,
98
// (NULL if none was found), starting at the
starting_view
.
102
View* FindNextFocusableViewImpl(View*
starting_view
,
111
View* FindPreviousFocusableViewImpl(View*
starting_view
,
focus_manager.cc
231
View*
starting_view
= NULL;
local
240
starting_view
= original_starting_view;
256
starting_view
= original_starting_view;
263
starting_view
= original_starting_view;
272
View* v = FindFocusableView(focus_traversable,
starting_view
, reverse);
279
starting_view
= focus_traversable->GetFocusTraversableParentView();
286
starting_view
, reverse, FocusSearch::UP,
299
starting_view
= focus_traversable->GetFocusTraversableParentView();
444
View*
starting_view
,
449
starting_view
,
[
all
...]
focus_manager.h
311
// Returns the next focusable view. Traversal starts at |
starting_view
|. If
312
// |
starting_view
| is NULL |starting_widget| is consuled to determine which
315
// |
starting_view
| and |starting_widget| are NULL, traversal starts at
317
View* GetNextFocusableView(View*
starting_view
,
328
View*
starting_view
,
/external/chromium_org/ash/shelf/
shelf_view.cc
217
View*
starting_view
,
223
int index = view_model_->GetIndexOfView(
starting_view
);
[
all
...]
Completed in 528 milliseconds