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

  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
ZoomControl.java 43 private int mThumbX, mThumbY;
121 if (mThumbX == 0 && mThumbY == 0) {
127 mThumb.setBounds(mThumbX - halfWidth, mThumbY - halfHeight, mThumbX + halfWidth,
128 mThumbY + halfHeight);
157 mThumbY = (int)((getHeight() / 2) - (mRadius * Math.sin(alpha)));
161 mThumbY = (int)((getHeight() / 2) - (mRadius * Math.sin(alpha)));
165 mThumbY = (int)((getHeight() / 2) + (mRadius * Math.sin(alpha)));
169 mThumbY = (int)((getHeight() / 2) + (mRadius * Math.sin(alpha)));
246 mThumbY = (int)((getHeight() / 2) - (mRadius * Math.sin(alpha)));
250 mThumbY = (int)((getHeight() / 2) + (mRadius * Math.sin(alpha)))
    [all...]
  /frameworks/base/core/java/android/widget/
FastScroller.java 88 int mThumbY;
145 mThumbY = newThumbY;
146 scrollTo((float) mThumbY / (viewHeight - mThumbH));
217 mList.invalidate(viewWidth - mThumbW, mThumbY, viewWidth, mThumbY + mThumbH);
318 final int y = mThumbY;
458 mThumbY = getThumbPositionForListPosition(firstVisibleItem, visibleItemCount,
752 mThumbY = newThumbY;
753 scrollTo((float) mThumbY / (viewHeight - mThumbH));
803 if (Math.abs(mThumbY - newThumbY) < 2)
    [all...]

Completed in 164 milliseconds