Home
last modified time | relevance | path

Searched refs:touchPoints (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/accessibilityservice/
DGestureDescription.java124 private int getPointsForTime(long time, TouchPoint[] touchPoints) { in getPointsForTime() argument
129 touchPoints[numPointsFound].mPathIndex = i; in getPointsForTime()
130 touchPoints[numPointsFound].mIsStartOfPath = (time == strokeDescription.mStartTime); in getPointsForTime()
131 touchPoints[numPointsFound].mIsEndOfPath = (time == strokeDescription.mEndTime); in getPointsForTime()
133 touchPoints[numPointsFound].mX = Math.round(mTempPos[0]); in getPointsForTime()
134 touchPoints[numPointsFound].mY = Math.round(mTempPos[1]); in getPointsForTime()
490 TouchPoint[] touchPoints, int touchPointsSize) { in obtainMotionEvent() argument
494 pointerProperties[i].id = touchPoints[i].mPathIndex; in obtainMotionEvent()
499 pointerCoords[i].x = touchPoints[i].mX; in obtainMotionEvent()
500 pointerCoords[i].y = touchPoints[i].mY; in obtainMotionEvent()
[all …]
/frameworks/base/docs/html/guide/topics/renderscript/
Dadvanced.jd363 ScriptField_Point touchPoints = new ScriptField_Point(myRenderScript, 2,
410 Point_t *touchPoints;
592 …<code>intPointer</code>, and a pointer to a struct, <code>touchPoints</code>. It also binds the me…
604 ScriptField_Point touchPoints = new ScriptField_Point(myRenderScript, 2);
613 mScript.bind_touchPoints(touchPoints);