HomeSort by relevance Sort by last modified time
    Searched refs:activeIndex (Results 1 - 5 of 5) sorted by null

  /test/vti/dashboard/src/main/java/com/android/vts/servlet/
BaseServlet.java 139 int activeIndex;
142 activeIndex = 3;
145 activeIndex = 2;
148 activeIndex = 1;
151 activeIndex = 0;
166 request.setAttribute("activeIndex", activeIndex);
  /frameworks/base/core/java/android/widget/
DropDownListView.java 186 final int activeIndex = event.findPointerIndex(activePointerId);
187 if (activeIndex < 0) {
192 final int x = (int) event.getX(activeIndex);
193 final int y = (int) event.getY(activeIndex);
StackView.java 665 int activeIndex;
667 activeIndex = (swipeGestureType == GESTURE_SLIDE_DOWN) ? 0 : 1;
669 activeIndex = (swipeGestureType == GESTURE_SLIDE_DOWN) ? 1 : 0;
682 } else if (mCurrentWindowStartUnbounded + activeIndex == -1 || beginningOfStack) {
683 activeIndex++;
685 } else if (mCurrentWindowStartUnbounded + activeIndex == adapterCount - 1 || endOfStack) {
693 View v = getViewAtRelativeIndex(activeIndex);
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
DropDownListView.java 494 final int activeIndex = event.findPointerIndex(activePointerId);
495 if (activeIndex < 0) {
500 final int x = (int) event.getX(activeIndex);
501 final int y = (int) event.getY(activeIndex);
  /test/vti/test_serving/gae/webapp/static/bootstrap/js/
bootstrap.js 317 var activeIndex = this.getActiveIndex()
328 if (activeIndex == pos) {
332 return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))
    [all...]

Completed in 199 milliseconds