Searched refs:viewIndex (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
H A DTvStatusBar.java36 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
40 public void updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, argument
45 public void removeIcon(String slot, int index, int viewIndex) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java85 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon); argument
86 public void updateIcon(String slot, int index, int viewIndex, argument
88 public void removeIcon(String slot, int index, int viewIndex); argument
302 final int viewIndex = mList.getViewIndex(index);
309 mCallbacks.addIcon(mList.getSlot(index), index, viewIndex, icon);
312 mCallbacks.updateIcon(mList.getSlot(index), index, viewIndex,
320 mCallbacks.removeIcon(mList.getSlot(index), index, viewIndex);
H A DBaseStatusBar.java617 int viewIndex = 0;
621 addIcon(iconList.getSlot(i), i, viewIndex, icon);
622 viewIndex++;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarIconController.java164 public void addSystemIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
168 mStatusIcons.addView(view, viewIndex, new LinearLayout.LayoutParams(
172 mStatusIconsKeyguard.addView(view, viewIndex, new LinearLayout.LayoutParams(
177 public void updateSystemIcon(String slot, int index, int viewIndex, argument
179 StatusBarIconView view = (StatusBarIconView) mStatusIcons.getChildAt(viewIndex);
181 view = (StatusBarIconView) mStatusIconsKeyguard.getChildAt(viewIndex);
186 public void removeSystemIcon(String slot, int index, int viewIndex) { argument
187 mStatusIcons.removeViewAt(viewIndex);
188 mStatusIconsKeyguard.removeViewAt(viewIndex);
H A DPhoneStatusBar.java1149 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { argument
1150 mIconController.addSystemIcon(slot, index, viewIndex, icon);
1153 public void updateIcon(String slot, int index, int viewIndex, argument
1155 mIconController.updateSystemIcon(slot, index, viewIndex, old, icon);
1158 public void removeIcon(String slot, int index, int viewIndex) { argument
1159 mIconController.removeSystemIcon(slot, index, viewIndex);
/frameworks/base/core/java/android/widget/
H A DDatePickerCalendarDelegate.java332 private void setCurrentView(final int viewIndex) { argument
333 switch (viewIndex) {
337 if (mCurrentView != viewIndex) {
341 mCurrentView = viewIndex;
349 if (mCurrentView != viewIndex) {
353 mCurrentView = viewIndex;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
H A DDatePickerDialog.java287 private void setCurrentView(final int viewIndex) { argument
290 switch (viewIndex) {
299 if (mCurrentView != viewIndex) {
303 mCurrentView = viewIndex;
319 if (mCurrentView != viewIndex) {
323 mCurrentView = viewIndex;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java190 final int viewIndex = takesComponent ? 1 : 0;
191 TypeMirror viewType = eraseType(processingEnv, parameters.get(viewIndex).asType());
193 TypeMirror parameterType = eraseType(processingEnv, parameters.get(viewIndex + 1).asType());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java1617 int viewIndex = mBaseGridView.indexOfChild(view);
1620 addView(view, viewIndex);

Completed in 231 milliseconds