Lines Matching refs:action

2323             String action, int x, int y, int z, Bundle extras, boolean sync) {
2336 wallpaper.mClient.dispatchWallpaperCommand(action,
3160 // No obvious action we need to take, but if our current
3210 //action like disabling/enabling sensors etc.,
5063 int action = ev.getAction();
5065 if (action == MotionEvent.ACTION_UP) {
5069 } else if (action == MotionEvent.ACTION_DOWN) {
5079 if (action != MotionEvent.ACTION_MOVE) {
5080 Slog.w(TAG, "No window to dispatch pointer action " + ev.getAction());
5134 if((action == MotionEvent.ACTION_DOWN)) {
5141 if(action == MotionEvent.ACTION_UP) {
5149 action = MotionEvent.ACTION_CANCEL;
5151 } else if(action == MotionEvent.ACTION_MOVE) {
5159 //an invalid move have to cancel earlier action
5161 action = MotionEvent.ACTION_CANCEL;
5167 } //else if action
5179 if (false && action == MotionEvent.ACTION_DOWN) {
5196 if (action == MotionEvent.ACTION_MOVE) {
5226 if (qev != null && action == MotionEvent.ACTION_MOVE) {
5231 if (action == MotionEvent.ACTION_DOWN) {
5473 * @param ev A motion event describing the keystroke action. (Be sure to use
5482 int action = ev.getAction();
5492 KeyEvent newEvent = new KeyEvent(downTime, eventTime, action, code, repeatCount, metaState,
5516 * @param ev A motion event describing the pointer (touch) action. (As noted in
5544 * @param ev A motion event describing the trackball action. (As noted in
5941 int action = nextMotion.getAction();
5953 if (action == MotionEvent.ACTION_DOWN) {
6436 + ke.getKeyCode() + ", action=" + ke.getAction());
6871 public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
6878 action, x, y, z, extras, sync);