Searched refs:mCurrentY (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageTinyPlanet.java30 private float mCurrentY = 0; field in class:ImageTinyPlanet
48 if (mCurrentX == mTouchCenterX && mCurrentY == mTouchCenterY) {
54 float dY2 = mCurrentY - mCenterY;
67 mCurrentY = y;
H A DImageGeometry.java46 protected float mCurrentY; field in class:ImageGeometry
93 if (mCurrentX == mTouchCenterX && mCurrentY == mTouchCenterY) {
99 float dY2 = mCurrentY - mCenterY;
337 mCurrentY = y;
343 mCurrentY = y;
H A DImageCrop.java127 dy1 = mCurrentY - crop.bottom;
129 dy1 = mCurrentY - crop.top;
152 dy2 = mCurrentY - newCrop.bottom;
154 dy2 = mCurrentY - newCrop.top;
575 moveEdges(x - mCurrentX, y - mCurrentY);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardRow.java50 private final int mCurrentY; field in class:KeyboardRow
74 mCurrentY = y;
111 return mCurrentY;
H A DKeyboardBuilder.java141 private int mCurrentY = 0; field in class:KeyboardBuilder
376 return new KeyboardRow(mResources, mParams, parser, mCurrentY);
758 mCurrentY += mParams.mTopPadding;
778 mCurrentY += row.mRowHeight;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
H A DSliderController.java29 private float mCurrentY; field in class:SliderController
114 return mCurrentY;
129 mCurrentY = y;
138 mCurrentY = y;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPositionController.java168 // The focused box (Box*) centers at mPlatform's (mCurrentX, mCurrentY)
352 b.mCurrentY = r.centerY() - mViewH / 2;
442 mPlatform.mCurrentY = mPlatform.mToY;
448 b.mCurrentY = b.mToY;
482 float tempY = (tapY - b.mCurrentY) / b.mCurrentScale;
507 mFocusY = (int) ((focusY - b.mCurrentY) / b.mCurrentScale + 0.5f);
528 int y = mFilmMode ? b.mCurrentY : (int) (focusY - s * mFocusY + 0.5f);
586 int y = b.mCurrentY + dy;
647 startAnimation(x, b.mCurrentY, b.mCurrentScale, ANIM_KIND_SCROLL);
654 int y = b.mCurrentY
1440 public int mCurrentY, mFromY, mToY, mDefaultY; field in class:PositionController.Platform
1611 public int mCurrentY, mFromY, mToY; field in class:PositionController.Box
[all...]
H A DCropView.java284 private int mCurrentY; field in class:CropView.AnimationController
300 mCurrentY = mImageHeight / 2;
320 mStartY = mCurrentY;
330 mStartY = mCurrentY = mTargetY;
339 + mCurrentY) / mImageHeight, 0, 1);
346 int y = mCurrentY;
359 mCurrentY = Math.round(mStartY + (mTargetY - mStartY) * progress);
362 if (mCurrentX == mTargetX && mCurrentY == mTargetY
371 return mCurrentY;

Completed in 95 milliseconds