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

/frameworks/base/voip/jni/rtp/
H A DEchoSuppressor.h53 int32_t mLastY; member in class:EchoSuppressor
H A DEchoSuppressor.cpp81 mLastY = 0;
133 mLastY += y;
134 sum += ((mLastY >= 0) ? mLastY : -mLastY) >> 15;
135 mLastY -= (mLastY >> 10) + y;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java62 private float mLastY = 0; field in class:Path_Delegate
449 pathDelegate.mLastY = dy;
572 mPath.moveTo(mLastX = x, mLastY = y);
587 dy += mLastY;
588 mPath.moveTo(mLastX = dx, mLastY = dy);
600 mPath.lineTo(mLastX = x, mLastY = y);
615 mPath.moveTo(mLastX = 0, mLastY = 0);
618 dy += mLastY;
619 mPath.lineTo(mLastX = dx, mLastY = dy);
633 mPath.quadTo(x1, y1, mLastX = x2, mLastY
[all...]
/frameworks/base/tests/TransformTest/src/com/google/android/test/transform/
H A DTransformTestActivity.java73 private float mLastY; field in class:TransformTestActivity.TransformView
121 mLastY = detector.getFocusY();
154 mLastY = event.getY();
161 mPosY += y - mLastY;
163 mLastY = y;
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DRSTestCore.java44 int mLastY; field in class:RSTestCore
192 mLastY = y;
198 int dy = mLastY - y;
207 mLastY = y;
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSceneGraphRS.java71 int mLastY; field in class:SceneGraphRS
90 mLastY = y;
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboardView.java184 private int mLastY; field in class:KeyboardView
741 canvas.drawLine(mStartX, mStartY, mLastX, mLastY, paint);
743 canvas.drawCircle(mLastX, mLastY, 3, paint);
745 canvas.drawCircle((mStartX + mLastX) / 2, (mStartY + mLastY) / 2, 2, paint);
1299 mLastCodeY = mLastY;
1355 mLastY = touchY;
/frameworks/base/core/java/android/widget/
H A DAbsListView.java378 int mLastY; field in class:AbsListView
2807 int incrementalDeltaY = mLastY != Integer.MIN_VALUE ? y - mLastY : deltaY;
2822 if (y != mLastY) {
2897 mLastY = y;
2900 if (y != mLastY) {
2903 int newDirection = y > mLastY ? 1 : -1;
2961 mLastY = y;
3032 mMotionY = mLastY = (int) ev.getY();
3076 mLastY
[all...]

Completed in 135 milliseconds