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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelHolder.java58 protected int getChildDrawingOrder(int childCount, int i) { argument
62 if (i == childCount - 1) {
/frameworks/native/cmds/installd/
H A Dinstalld.h103 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.java1338 protected int getChildDrawingOrder(int childCount, int i) { argument
1344 if (i == childCount - 1) {
H A DGridView.java501 final int childCount = getChildCount();
502 if (childCount > 0) {
506 for (int i = 0; i < childCount; i += numColumns) {
512 for (int i = childCount - 1; i >= 0; i -= numColumns) {
568 final int childCount = getChildCount();
569 if (childCount > 0) {
570 correctTooHigh(numColumns, verticalSpacing, childCount);
577 final int childCount = getChildCount();
578 if (childCount > 0) {
579 correctTooLow(numColumns, verticalSpacing, childCount);
592 correctTooHigh(int numColumns, int verticalSpacing, int childCount) argument
633 correctTooLow(int numColumns, int verticalSpacing, int childCount) argument
[all...]
H A DListView.java202 final int childCount = getChildCount();
205 if (childCount > 0) {
224 child = getChildAt(childCount - 1);
227 if (mFirstPosition + childCount < mItemCount) {
552 final int childCount = getChildCount();
553 final int bottomOfBottomChild = getChildAt(childCount - 1).getBottom();
554 final int lastVisiblePosition = mFirstPosition + childCount - 1;
584 int childCount = getChildCount();
585 int bottomOfBottomChild = getChildAt(childCount - 1).getBottom();
1303 int childCount
1381 correctTooHigh(int childCount) argument
1430 correctTooLow(int childCount) argument
[all...]
H A DAbsListView.java1200 final int childCount = getChildCount();
1201 if (childCount == 0) return true;
1202 if (childCount != mItemCount) return false;
1205 getChildAt(childCount - 1).getBottom() <= getHeight() - mListPadding.bottom;
1972 final int childCount = getChildCount();
1973 if (firstPosition >= 0 && childCount > 0) {
1987 } else if (firstPosition + childCount == count) {
1990 index = firstPosition + childCount / 2;
1992 return (int) (firstPosition + childCount * (index / (float) count));
2062 final int childCount
6580 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.java641 protected int getChildDrawingOrder(int childCount, int i) { argument
642 final int index = mDrawingOrder == DRAW_ORDER_REVERSE ? childCount - 1 - i : i;
899 final int childCount = getChildCount();
900 for (int i = 0; i < childCount; i++) {
1072 final int childCount = getChildCount();
1073 for (int i = 0; i < childCount; i++) {
1112 final int childCount = getChildCount();
1113 for (int i = 0; i < childCount; i++) {
1677 final int childCount = getChildCount();
1678 for (int i = 0; i < childCount;
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java2493 final int childCount = children.getChildCount();
2494 for (int i = 0; i < childCount; i++) {
2551 final int childCount = mChildrenCount;
2552 for (int i = 0; i < childCount; i++) {
3031 protected int getChildDrawingOrder(int childCount, int i) { argument
6609 final int childCount = parent.getChildCount();
6610 for (int i = 0; i < childCount; i++) {
6616 for (int i = 0; i < childCount; i++) {
6622 for (int i = 0; i < childCount; i++) {

Completed in 265 milliseconds