Home
last modified time | relevance | path

Searched refs:actionType (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
DMotionEventReader.java143 int actionType = UNINITIALIZED_ACTION; in readLogStatement() local
163 actionType = MotionEvent.ACTION_UP; in readLogStatement()
165 actionType = MotionEvent.ACTION_DOWN; in readLogStatement()
167 actionType = MotionEvent.ACTION_MOVE; in readLogStatement()
173 if (actionType == UNINITIALIZED_ACTION) { in readLogStatement()
180 readEmbeddedMotionEvent(jsonReader, replayData, actionType); in readLogStatement()
192 && y != UNINITIALIZED_INT && actionType != UNINITIALIZED_ACTION in readLogStatement()
209 addMotionEventData(replayData, actionType, time, pointerPropertiesArray, in readLogStatement()
215 final int actionType) throws IOException { in readEmbeddedMotionEvent() argument
223 readPointerData(jsonReader, replayData, actionType, pointerPropertiesArray); in readEmbeddedMotionEvent()
[all …]
DLoggingUtils.java26 /* package */ static String getMotionEventActionTypeString(final int actionType) { in getMotionEventActionTypeString() argument
27 switch (actionType) { in getMotionEventActionTypeString()
35 default: return "ACTION_" + actionType; in getMotionEventActionTypeString()
/packages/apps/DeskClock/src/com/android/deskclock/timer/
DTimerReceiver.java50 String actionType = intent.getAction(); in onReceive() local
64 Log.d(TAG, " got intent without Timer data: "+actionType); in onReceive()
66 } else if (Timers.NOTIF_IN_USE_SHOW.equals(actionType)){ in onReceive()
69 } else if (Timers.NOTIF_IN_USE_CANCEL.equals(actionType)) { in onReceive()
81 if (Timers.TIMER_STOP.equals(actionType)) { in onReceive()
104 if (Timers.TIMES_UP.equals(actionType)) { in onReceive()
132 } else if (Timers.TIMER_RESET.equals(actionType) in onReceive()
133 || Timers.DELETE_TIMER.equals(actionType) in onReceive()
134 || Timers.TIMER_DONE.equals(actionType)) { in onReceive()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchService.java65 String actionType = intent.getAction(); in onStartCommand() local
69 if (actionType.equals(Stopwatches.START_STOPWATCH)) { in onStartCommand()
77 } else if (actionType.equals(Stopwatches.LAP_STOPWATCH)) { in onStartCommand()
86 } else if (actionType.equals(Stopwatches.STOP_STOPWATCH)) { in onStartCommand()
94 } else if (actionType.equals(Stopwatches.RESET_STOPWATCH)) { in onStartCommand()
99 } else if (actionType.equals(Stopwatches.RESET_AND_LAUNCH_STOPWATCH)) { in onStartCommand()
105 } else if (actionType.equals(Stopwatches.SHARE_STOPWATCH)) { in onStartCommand()
116 } else if (actionType.equals(Stopwatches.SHOW_NOTIF)) { in onStartCommand()
122 } else if (actionType.equals(Stopwatches.KILL_NOTIF)) { in onStartCommand()