OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTouchDown
(Results
1 - 2
of
2
) sorted by null
/packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java
41
private boolean
mTouchDown
;
238
if(
mTouchDown
){
239
mTouchDown
= false;
240
mScript.set_touchDown(
mTouchDown
);
248
if(!
mTouchDown
){
249
mTouchDown
= true;
250
mScript.set_touchDown(
mTouchDown
);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageShow.java
87
private Point
mTouchDown
= new Point();
523
if (Math.abs(mTouch.y -
mTouchDown
.y) > Math.abs(mTouch.x -
mTouchDown
.x)) {
546
if (
mTouchDown
.x - mTouch.x > 0) {
551
if (
mTouchDown
.y - mTouch.y > 0) {
632
mTouchDown
.x = ex;
633
mTouchDown
.y = ey;
645
float translateX = (mTouch.x -
mTouchDown
.x) / scaleFactor;
646
float translateY = (mTouch.y -
mTouchDown
.y) / scaleFactor;
666
mTouchDown
.x = 0
[
all
...]
Completed in 42 milliseconds