Home
last modified time | relevance | path

Searched refs:next_focusable (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/ui/views/
Ddebug_utils.cc53 const View* next_focusable = view->GetNextFocusableView(); in PrintFocusHierarchyImp() local
54 if (next_focusable) in PrintFocusHierarchyImp()
55 PrintFocusHierarchyImp(next_focusable, indent, out); in PrintFocusHierarchyImp()
Dview.cc278 View* next_focusable = view->next_focusable_view_; in ReorderChildView() local
281 prev_focusable->next_focusable_view_ = next_focusable; in ReorderChildView()
282 if (next_focusable) in ReorderChildView()
283 next_focusable->previous_focusable_view_ = prev_focusable; in ReorderChildView()
1828 View* next_focusable = view->next_focusable_view_; in DoRemoveChildView() local
1831 prev_focusable->next_focusable_view_ = next_focusable; in DoRemoveChildView()
1832 if (next_focusable) in DoRemoveChildView()
1833 next_focusable->previous_focusable_view_ = prev_focusable; in DoRemoveChildView()