Searched defs:childCount (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelHolder.java54 protected int getChildDrawingOrder(int childCount, int i) { argument
58 if (i == childCount - 1) {
/frameworks/base/cmds/installd/
H A Dinstalld.h106 int32_t childCount; member in struct:cache_dir_struct
/frameworks/base/core/java/android/widget/
H A DTabWidget.java99 protected int getChildDrawingOrder(int childCount, int i) { argument
105 if (i == childCount - 1) {
182 int childCount = 0;
186 childCount++;
189 if (childCount > 0) {
197 final int delta = extraWidth / childCount;
202 childCount--;
H A DGallery.java1345 protected int getChildDrawingOrder(int childCount, int i) { argument
1351 if (i == childCount - 1) {
H A DGridView.java497 final int childCount = getChildCount();
498 if (childCount > 0) {
502 for (int i = 0; i < childCount; i += numColumns) {
508 for (int i = childCount - 1; i >= 0; i -= numColumns) {
564 final int childCount = getChildCount();
565 if (childCount > 0) {
566 correctTooHigh(numColumns, verticalSpacing, childCount);
573 final int childCount = getChildCount();
574 if (childCount > 0) {
575 correctTooLow(numColumns, verticalSpacing, childCount);
588 correctTooHigh(int numColumns, int verticalSpacing, int childCount) argument
629 correctTooLow(int numColumns, int verticalSpacing, int childCount) argument
[all...]
H A DListView.java199 final int childCount = getChildCount();
202 if (childCount > 0) {
221 child = getChildAt(childCount - 1);
224 if (mFirstPosition + childCount < mItemCount) {
535 final int childCount = getChildCount();
536 final int bottomOfBottomChild = getChildAt(childCount - 1).getBottom();
537 final int lastVisiblePosition = mFirstPosition + childCount - 1;
567 int childCount = getChildCount();
568 int bottomOfBottomChild = getChildAt(childCount - 1).getBottom();
1286 int childCount
1364 correctTooHigh(int childCount) argument
1413 correctTooLow(int childCount) argument
[all...]
H A DAbsListView.java1187 final int childCount = getChildCount();
1188 if (childCount == 0) return true;
1189 if (childCount != mItemCount) return false;
1192 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom;
1875 final int childCount = getChildCount();
1876 if (firstPosition >= 0 && childCount > 0) {
1890 } else if (firstPosition + childCount == count) {
1893 index = firstPosition + childCount / 2;
1895 return (int) (firstPosition + childCount * (index / (float) count));
1965 final int childCount
6243 fillActiveViews(int childCount, int firstActivePosition) argument
[all...]
/frameworks/ex/common/java/com/android/common/widget/
H A DGroupingListAdapter.java54 int childCount; field in class:GroupingListAdapter.PositionMetadata
354 metadata.childCount = size;
399 return mPositionMetadata.childCount;
477 bindGroupView(view, mContext, mCursor, mPositionMetadata.childCount,
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java609 protected int getChildDrawingOrder(int childCount, int i) { argument
610 final int index = mDrawingOrder == DRAW_ORDER_REVERSE ? childCount - 1 - i : i;
865 final int childCount = getChildCount();
866 for (int i = 0; i < childCount; i++) {
1023 final int childCount = getChildCount();
1024 for (int i = 0; i < childCount; i++) {
1612 final int childCount = getChildCount();
1613 for (int i = 0; i < childCount; i++) {
1655 final int childCount = getChildCount();
1656 for (int i = 0; i < childCount;
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2450 final int childCount = children.getChildCount();
2451 for (int i = 0; i < childCount; i++) {
2495 final int childCount = mChildrenCount;
2496 for (int i = 0; i < childCount; i++) {
2864 protected int getChildDrawingOrder(int childCount, int i) { argument
6182 final int childCount = parent.getChildCount();
6183 for (int i = 0; i < childCount; i++) {
6189 for (int i = 0; i < childCount; i++) {
6195 for (int i = 0; i < childCount; i++) {

Completed in 3149 milliseconds