Searched refs:buttonDispatcher (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
D | NavigationBarInflaterView.java | 230 private void initiallyFill(ButtonDispatcher buttonDispatcher) { in initiallyFill() argument 231 addAll(buttonDispatcher, mHorizontal.findViewById(R.id.ends_group)); in initiallyFill() 232 addAll(buttonDispatcher, mHorizontal.findViewById(R.id.center_group)); in initiallyFill() 233 addAll(buttonDispatcher, mVertical.findViewById(R.id.ends_group)); in initiallyFill() 234 addAll(buttonDispatcher, mVertical.findViewById(R.id.center_group)); in initiallyFill() 237 private void addAll(ButtonDispatcher buttonDispatcher, ViewGroup parent) { in addAll() argument 242 if (parent.getChildAt(i).getId() == buttonDispatcher.getId()) { in addAll() 243 buttonDispatcher.addView(parent.getChildAt(i)); in addAll() 246 addAll(buttonDispatcher, (ViewGroup) parent.getChildAt(i)); in addAll()
|
/frameworks/base/core/java/android/inputmethodservice/navigationbar/ |
D | NavigationBarInflaterView.java | 162 ButtonDispatcher buttonDispatcher) { in initiallyFill() argument 163 addAll(buttonDispatcher, mHorizontal.findViewById( in initiallyFill() 165 addAll(buttonDispatcher, mHorizontal.findViewById( in initiallyFill() 169 private void addAll(ButtonDispatcher buttonDispatcher, ViewGroup parent) { in addAll() argument 174 if (parent.getChildAt(i).getId() == buttonDispatcher.getId()) { in addAll() 175 buttonDispatcher.addView(parent.getChildAt(i)); in addAll() 178 addAll(buttonDispatcher, (ViewGroup) parent.getChildAt(i)); in addAll()
|