Searched defs:actionType (Results 1 - 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
H A DLoggingUtils.java26 /* package */ static String getMotionEventActionTypeString(final int actionType) { argument
27 switch (actionType) {
35 default: return "ACTION_" + actionType;
H A DMotionEventReader.java143 int actionType = UNINITIALIZED_ACTION;
163 actionType = MotionEvent.ACTION_UP;
165 actionType = MotionEvent.ACTION_DOWN;
167 actionType = MotionEvent.ACTION_MOVE;
173 if (actionType == UNINITIALIZED_ACTION) {
174 Log.e(TAG, "no actionType assigned in MotionEvent json");
180 readEmbeddedMotionEvent(jsonReader, replayData, actionType);
192 && y != UNINITIALIZED_INT && actionType != UNINITIALIZED_ACTION
209 addMotionEventData(replayData, actionType, time, pointerPropertiesArray,
215 final int actionType) throw
214 readEmbeddedMotionEvent(final JsonReader jsonReader, final ReplayData replayData, final int actionType) argument
245 readPointerData(final JsonReader jsonReader, final ReplayData replayData, final int actionType, final PointerProperties[] pointerPropertiesArray) argument
318 addMotionEventData(final ReplayData replayData, final int actionType, final long time, final PointerProperties[] pointerProperties, final PointerCoords[] pointerCoords) argument
[all...]

Completed in 128 milliseconds