Home
last modified time | relevance | path

Searched refs:childIndex (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Calculator/src/com/android/calculator2/
DCalculatorPadViewPager.java59 for (int childIndex = 0; childIndex < viewGroup.getChildCount(); ++childIndex) {
60 recursivelySetEnabled(viewGroup.getChildAt(childIndex), enabled);
70 for (int childIndex = 0; childIndex < getChildCount(); ++childIndex) {
72 recursivelySetEnabled(getChildAt(childIndex), childIndex == position);
DCalculatorPadLayout.java72 for (int childIndex = 0; childIndex < getChildCount(); ++childIndex) { in onLayout()
73 final View childView = getChildAt(childIndex); in onLayout()
/packages/apps/Browser/src/com/android/browser/
DBreadCrumbView.java244 int childIndex = 1; in updateVisible() local
251 getChildAt(childIndex).setVisibility(View.GONE); in updateVisible()
252 childIndex++; in updateVisible()
255 if (getChildAt(childIndex) != null) { in updateVisible()
256 getChildAt(childIndex).setVisibility(View.GONE); in updateVisible()
258 childIndex++; in updateVisible()
265 while (childIndex < childCount) { in updateVisible()
266 getChildAt(childIndex).setVisibility(View.VISIBLE); in updateVisible()
267 childIndex++; in updateVisible()
271 for (int i = childIndex; i < count ; i++) { in updateVisible()
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
Ddictionary_utils.cpp74 for (int childIndex = 0; childIndex < childDicNodes.getSizeAndLock(); ++childIndex) { in processChildDicNodes() local
75 DicNode *const childDicNode = childDicNodes[childIndex]; in processChildDicNodes()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DScrollAdapterView.java970 int childIndex = firstIndex + i;
971 if (childHasFocus(childIndex)) {
1016 int childIndex = lastIndex - 1 - i;
1017 if (childHasFocus(childIndex)) {
1098 int childIndex = firstExpandableIndex();
1099 int last = Math.min(lastExpandableIndex(), childIndex + mItemsOnOffAxis);
1100 for (int i = childIndex; i < last; i++) {
1383 int childIndex = lastExpandableIndex() - 1;
1384 int gridPos = getAdapterIndex(childIndex) % mItemsOnOffAxis;
1385 for (int i = childIndex - gridPos; i < lastExpandableIndex(); i++) {
[all …]
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DContactTileAdapter.java502 private void addTileFromEntry(ContactEntry entry, int childIndex, boolean isLastRow) {
505 if (getChildCount() <= childIndex) {
523 contactTile = (ContactTileView) getChildAt(childIndex);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapEmailSettingsAdapter.java132 int childIndex = childList.indexOf(child); in getChildView()
137 if (i != childIndex) { in getChildView()
/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java778 protected boolean shouldSetTopAlignedPivotForWidget(int childIndex) { in shouldSetTopAlignedPivotForWidget() argument