Home | History | Annotate | Download | only in focus

Lines Matching refs:sibling

132 // - go to the right sibling and start the search from there (by invoking
134 // - if the view has no right sibling, go up the parents until you find a parent
135 // with a right sibling and start the search from there.
172 // Then try the right sibling.
173 View* sibling = starting_view->GetNextFocusableView();
174 if (sibling) {
175 View* v = FindNextFocusableViewImpl(sibling,
183 // Then go up to the parent sibling.
187 sibling = parent->GetNextFocusableView();
188 if (sibling) {
189 return FindNextFocusableViewImpl(sibling,
206 // - start the search on the left sibling.
207 // - if there are no left sibling, start the search on the parent (without going
250 // Then try the left sibling.
251 View* sibling = starting_view->GetPreviousFocusableView();
252 if (sibling) {
253 return FindPreviousFocusableViewImpl(sibling,