Searched refs:childIndex (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DBreadCrumbView.java244 int childIndex = 1;
251 getChildAt(childIndex).setVisibility(View.GONE);
252 childIndex++;
255 if (getChildAt(childIndex) != null) {
256 getChildAt(childIndex).setVisibility(View.GONE);
258 childIndex++;
265 while (childIndex < childCount) {
266 getChildAt(childIndex).setVisibility(View.VISIBLE);
267 childIndex++;
271 for (int i = childIndex;
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactTileAdapter.java532 private void addTileFromEntry(ContactEntry entry, int childIndex, boolean isLastRow) { argument
535 if (getChildCount() <= childIndex) {
553 contactTile = (ContactTileView) getChildAt(childIndex);
562 childIndex >= mColumnCount - 1 ? 0 : mPaddingInPixels,
/packages/apps/Dialer/src/com/android/dialer/list/
H A DPhoneFavoritesTileAdapter.java795 private void addTileFromEntry(ContactEntry entry, int childIndex, boolean isLastRow) { argument
798 if (getChildCount() <= childIndex) {
816 contactTile = (PhoneFavoriteTileView) getChildAt(childIndex);
825 childIndex >= mColumnCount - 1 ? 0 : mPaddingInPixels, 0);
826 entryIndex = getFirstContactEntryIndexForPosition(mPosition) + childIndex;
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedView.java763 protected boolean shouldSetTopAlignedPivotForWidget(int childIndex) { argument

Completed in 334 milliseconds