HomeSort by relevance Sort by last modified time
    Searched defs:mTouchX (Results 1 - 3 of 3) sorted by null

  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/
CubeWallpaper1.java 55 private float mTouchX = -1;
138 mTouchX = event.getX();
141 mTouchX = -1;
235 if (mTouchX >=0 && mTouchY >= 0) {
236 c.drawCircle(mTouchX, mTouchY, 80, mPaint);
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 39 private int mTouchX = OUT_OF_BOUNDS;
175 final int touchX = mTouchX;
256 mTouchX = OUT_OF_BOUNDS;
271 mTouchX = x;
308 mTouchX = (int) x;
318 mTouchX = OUT_OF_BOUNDS;
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 75 private float mTouchX = -1;
202 mTouchX = event.getX();
205 mTouchX = -1;
289 if (mTouchX >=0 && mTouchY >= 0) {
290 c.drawCircle(mTouchX, mTouchY, 80, mPaint);

Completed in 63 milliseconds