Home
last modified time | relevance | path

Searched refs:activeIndex (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/core/java/android/widget/
H A DDropDownListView.java186 final int activeIndex = event.findPointerIndex(activePointerId); in onForwardedEvent() local
187 if (activeIndex < 0) { in onForwardedEvent()
192 final int x = (int) event.getX(activeIndex); in onForwardedEvent()
193 final int y = (int) event.getY(activeIndex); in onForwardedEvent()
H A DStackView.java669 int activeIndex; in beginGestureIfNeeded()
671 activeIndex = (swipeGestureType == GESTURE_SLIDE_DOWN) ? 0 : 1; in beginGestureIfNeeded()
673 activeIndex = (swipeGestureType == GESTURE_SLIDE_DOWN) ? 1 : 0; in beginGestureIfNeeded()
686 } else if (mCurrentWindowStartUnbounded + activeIndex == -1 || beginningOfStack) { in beginGestureIfNeeded()
687 activeIndex++; in beginGestureIfNeeded()
689 … } else if (mCurrentWindowStartUnbounded + activeIndex == adapterCount - 1 || endOfStack) { in beginGestureIfNeeded()
697 View v = getViewAtRelativeIndex(activeIndex); in beginGestureIfNeeded()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/verify/domain/
H A DDomainVerificationSettings.java113 for (int activeIndex = 0; activeIndex < activeSize; activeIndex++) { in readSettings()
114 DomainVerificationPkgState pkgState = active.valueAt(activeIndex); in readSettings()