Searched refs:childIndex (Results 26 - 45 of 45) sorted by relevance

12

/frameworks/base/core/java/android/widget/
H A DActionMenuPresenter.java264 public boolean shouldIncludeItem(int childIndex, MenuItemImpl item) { argument
487 public boolean filterLeftoverView(ViewGroup parent, int childIndex) { argument
488 if (parent.getChildAt(childIndex) == mOverflowButton) return false;
489 return super.filterLeftoverView(parent, childIndex);
H A DAdapterViewAnimator.java453 * @param childIndex The index of the child to be shown.
457 void showOnly(int childIndex, boolean animate) { argument
477 int newWindowStartUnbounded = childIndex - mActiveOffset;
H A DExpandableListView.java521 void drawDivider(Canvas canvas, Rect bounds, int childIndex) { argument
522 int flatListPosition = childIndex + mFirstPosition;
H A DListView.java1135 final int childIndex = mPosition - mFirstPosition;
1136 final View child = getChildAt(childIndex);
2759 * @param childIndex The view group index of the child.
2762 private void measureAndAdjustDown(View child, int childIndex, int numChildren) { argument
2771 for (int i = childIndex + 1; i < numChildren; i++) {
3520 * @param childIndex The index of child (of the View) above the divider.
3524 void drawDivider(Canvas canvas, Rect bounds, int childIndex) { argument
H A DAbsListView.java5207 final int childIndex = mSelectedPosition - mFirstPosition;
5208 if (childIndex >= 0 && childIndex < getChildCount()) {
5209 positionSelector(mSelectedPosition, getChildAt(childIndex));
5212 final int childIndex = mSelectorPosition - mFirstPosition;
5213 if (childIndex >= 0 && childIndex < getChildCount()) {
5214 positionSelector(INVALID_POSITION, getChildAt(childIndex));
H A DStackView.java424 void showOnly(int childIndex, boolean animate) { argument
425 super.showOnly(childIndex, animate);
H A DRemoteViews.java2411 public void setDisplayedChild(int viewId, int childIndex) { argument
2412 setInt(viewId, "setDisplayedChild", childIndex);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAlertController.java693 final int childIndex = scrollParent.indexOfChild(mScrollView);
694 scrollParent.removeViewAt(childIndex);
695 scrollParent.addView(mListView, childIndex,
/frameworks/native/services/inputflinger/
H A DInputReader.cpp6391 uint32_t childIndex = parentIndex * 2 + 1; local
6392 if (childIndex >= heapSize) {
6396 if (childIndex + 1 < heapSize
6397 && heap[childIndex + 1].distance < heap[childIndex].distance) {
6398 childIndex += 1;
6401 if (heap[parentIndex].distance <= heap[childIndex].distance) {
6405 swap(heap[parentIndex], heap[childIndex]);
6406 parentIndex = childIndex;
6438 uint32_t childIndex local
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DAlertController.java680 final int childIndex = scrollParent.indexOfChild(mScrollView);
681 scrollParent.removeViewAt(childIndex);
682 scrollParent.addView(mListView, childIndex,
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java1421 for (int childIndex = 0; childIndex < childCount; childIndex++) {
1422 final View child = viewGroup.getChildAt(childIndex);
/frameworks/base/libs/hwui/
H A DDisplayListCanvas.cpp563 int childIndex = mDisplayList->addChild(op); local
567 chunk.endChildIndex = childIndex + 1;
H A DRecordingCanvas.cpp589 int childIndex = mDisplayList->addChild(op); local
593 chunk.endChildIndex = childIndex + 1;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableNotificationRow.java367 * @param childIndex the index to add it at, if -1 it will be added at the end
369 public void addChildNotification(ExpandableNotificationRow row, int childIndex) { argument
373 mChildrenContainer.addNotification(row, childIndex);
/frameworks/base/core/java/com/android/internal/widget/
H A DViewPager.java618 final int result = ((LayoutParams) mDrawingOrderedChildren.get(index).getLayoutParams()).childIndex;
1052 lp.childIndex = i;
2801 int childIndex; field in class:ViewPager.LayoutParams
/frameworks/support/core-ui/java/android/support/v4/view/
H A DViewPager.java832 ((LayoutParams) mDrawingOrderedChildren.get(index).getLayoutParams()).childIndex;
1280 lp.childIndex = i;
3162 int childIndex; field in class:ViewPager.LayoutParams
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java1888 for (int childIndex = 0; orderedChildren != null && childIndex < orderedChildren.size();
1889 childIndex++) {
1890 ExpandableNotificationRow childView = orderedChildren.get(childIndex);
1893 parent.addChildNotification(childView, childIndex);
/frameworks/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java398 final int childIndex = useCustomOrder ? getChildDrawingOrder(childCount, i) : i;
399 final View child = getChildAt(childIndex);
/frameworks/base/core/java/android/view/
H A DView.java7032 final int childIndex = parentGroup.indexOfChild(viewAtDrawingLevel);
7034 final int childDrawIndex = ((childIndex >= 0) && customOrder) ? parentGroup
7035 .getChildDrawingOrder(childCount, childIndex) : childIndex;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 2178 milliseconds

12