OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getHistoricalAxisValue
(Results
1 - 7
of
7
) sorted by null
/cts/tests/tests/view/src/android/view/cts/
MotionEventUtils.java
229
that.
getHistoricalAxisValue
(MotionEvent.AXIS_X, position), this.x, DELTA);
234
that.
getHistoricalAxisValue
(MotionEvent.AXIS_Y, position), this.y, DELTA);
239
that.
getHistoricalAxisValue
(MotionEvent.AXIS_PRESSURE, position), this.pressure,
245
that.
getHistoricalAxisValue
(MotionEvent.AXIS_SIZE, position), this.size, DELTA);
250
that.
getHistoricalAxisValue
(MotionEvent.AXIS_TOUCH_MAJOR, position),
256
that.
getHistoricalAxisValue
(MotionEvent.AXIS_TOUCH_MINOR, position),
262
that.
getHistoricalAxisValue
(MotionEvent.AXIS_TOOL_MAJOR, position),
268
that.
getHistoricalAxisValue
(MotionEvent.AXIS_TOOL_MINOR, position),
274
that.
getHistoricalAxisValue
(MotionEvent.AXIS_ORIENTATION, position),
282
that.
getHistoricalAxisValue
(MotionEvent.AXIS_X, pointerIndex, position)
[
all
...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
NativeInput.java
494
public float
getHistoricalAxisValue
(int axis, int pointerIndex, int historicalIndex) {
506
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_X, pointerIndex, historicalIndex);
510
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_Y, pointerIndex, historicalIndex);
514
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_PRESSURE, pointerIndex, historicalIndex);
518
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_SIZE, pointerIndex, historicalIndex);
522
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_TOUCH_MAJOR, pointerIndex, historicalIndex);
526
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_TOUCH_MINOR, pointerIndex, historicalIndex);
530
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_TOOL_MAJOR, pointerIndex, historicalIndex);
534
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_TOOL_MINOR, pointerIndex, historicalIndex);
538
return
getHistoricalAxisValue
(AMOTION_EVENT_AXIS_ORIENTATION, pointerIndex, historicalIndex)
[
all
...]
ShadowMotionEvent.java
598
return event.
getHistoricalAxisValue
(axis, pointerIndex, historyPos);
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java
415
event.
getHistoricalAxisValue
(MotionEvent.AXIS_DISTANCE, j, i),
416
event.
getHistoricalAxisValue
(MotionEvent.AXIS_TILT, j, i));
/development/samples/ApiDemos/src/com/example/android/apis/view/
GameControllerInput.java
299
message.append(event.
getHistoricalAxisValue
(axis, historyPos));
GameView.java
276
: event.
getHistoricalAxisValue
(axis, historyPos);
/development/samples/ControllerSample/src/com/example/controllersample/
GameView.java
471
: event.
getHistoricalAxisValue
(axis, historyPos);
[
all
...]
Completed in 150 milliseconds