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.cc231 View* next_focusable = view->next_focusable_view_; in ReorderChildView() local
234 prev_focusable->next_focusable_view_ = next_focusable; in ReorderChildView()
235 if (next_focusable) in ReorderChildView()
236 next_focusable->previous_focusable_view_ = prev_focusable; in ReorderChildView()
1790 View* next_focusable = view->next_focusable_view_; in DoRemoveChildView() local
1793 prev_focusable->next_focusable_view_ = next_focusable; in DoRemoveChildView()
1794 if (next_focusable) in DoRemoveChildView()
1795 next_focusable->previous_focusable_view_ = prev_focusable; in DoRemoveChildView()