Searched refs:numChildren (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/content/
H A DUriMatcher.java182 int numChildren = children.size();
185 for (j = 0; j < numChildren; j++) {
192 if (j == numChildren) {
/frameworks/base/core/java/android/widget/
H A DGallery.java482 int numChildren = getChildCount();
489 for (int i = 0; i < numChildren; i++) {
490 int n = mIsRtl ? (numChildren - 1 - i) : i;
505 for (int i = numChildren - 1; i >= 0; i--) {
506 int n = mIsRtl ? numChildren - 1 - i : i;
699 int numChildren = getChildCount();
703 View prevIterationView = getChildAt(numChildren - 1);
708 curPosition = mFirstPosition + numChildren;
801 int numChildren = getChildCount();
805 View prevIterationView = getChildAt(numChildren
[all...]
H A DListView.java2377 final int numChildren = getChildCount();
2378 if (mItemsCanFocus && numChildren > 0 && mSelectedPosition != INVALID_POSITION) {
2597 final int numChildren = getChildCount();
2602 measureAndAdjustDown(topView, topViewIndex, numChildren);
2608 measureAndAdjustDown(bottomView, bottomViewIndex, numChildren);
2617 * @param numChildren The number of children in the view group.
2619 private void measureAndAdjustDown(View child, int childIndex, int numChildren) { argument
2628 for (int i = childIndex + 1; i < numChildren; i++) {
2697 int numChildren = getChildCount();
2700 int indexToMakeVisible = numChildren
[all...]
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java765 int numChildren = parent.getChildCount();
767 for (int i = 0; i < numChildren; ++i) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java2322 int numChildren = mPile.getChildCount();
2326 final ArrayList<View> snapshot = new ArrayList<View>(numChildren);
2327 for (int i=0; i<numChildren; i++) {

Completed in 134 milliseconds