OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mTouchPoints
(Results
1 - 3
of
3
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
InputTouchScreen.java
6
private InputXY
mTouchPoints
[];
9
mTouchPoints
= new InputXY[MAX_TOUCH_POINTS];
11
mTouchPoints
[x] = new InputXY();
18
mTouchPoints
[x].reset();
25
mTouchPoints
[index].press(currentTime, x, y);
31
mTouchPoints
[index].release();
37
mTouchPoints
[x].reset();
44
triggered =
mTouchPoints
[index].getTriggered(time);
52
pressed =
mTouchPoints
[index].getPressed();
59
mTouchPoints
[index].setVector(vector)
[
all
...]
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
EventSenderImpl.java
143
private List<TouchPoint>
mTouchPoints
;
345
mTouchPoints
= null;
447
if (
mTouchPoints
== null) {
448
mTouchPoints
= new LinkedList<TouchPoint>();
451
return
mTouchPoints
;
491
MotionEvent event = MotionEvent.obtain(
mTouchPoints
.get(0).getDownTime(),
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
WebViewEventSender.java
35
mTouchPoints
= new Vector<TouchPoint>();
174
final int numPoints =
mTouchPoints
.size();
184
pointerIds[i] =
mTouchPoints
.get(i).getId();
186
pointerCoords[i].x =
mTouchPoints
.get(i).getX();
187
pointerCoords[i].y =
mTouchPoints
.get(i).getY();
188
mTouchPoints
.get(i).setDownTime(downTime);
199
final int numPoints =
mTouchPoints
.size();
208
TouchPoint tp =
mTouchPoints
.get(i);
210
pointerIds[numMovedPoints] =
mTouchPoints
.get(i).getId();
212
pointerCoords[numMovedPoints].x =
mTouchPoints
.get(i).getX()
[
all
...]
Completed in 478 milliseconds