Searched defs:getAction (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/view/
H A DDragEvent.java30 * View objects that receive a DragEvent call {@link #getAction()}, which returns
43 * following table. Each possible {@link #getAction()} value is listed in the first column. The
44 * other columns indicate which method or methods return valid data for that getAction() value:
48 * <th scope="col">getAction() Value</th>
112 * The {@link android.view.DragEvent#getAction()},
144 * Action constant returned by {@link #getAction()}: Signals the start of a
163 * Action constant returned by {@link #getAction()}: Sent to a View after
184 * Action constant returned by {@link #getAction()}: Signals to a View that the user
204 * Action constant returned by {@link #getAction()}: Signals to a View that the drag and drop
222 * Action constant returned by {@link #getAction()}
312 public int getAction() { method in class:DragEvent
[all...]
H A DMotionEvent.java232 * unmasked action returned by {@link #getAction}.
243 * unmasked action returned by {@link #getAction}.
1721 public final int getAction() { method in class:MotionEvent
3015 msg.append("MotionEvent { action=").append(actionToString(getAction()));
3047 * @see #getAction()
H A DKeyEvent.java816 * {@link #getAction} value: the key has been pressed down.
820 * {@link #getAction} value: the key has been released.
824 * {@link #getAction} value: multiple duplicate key events have
1662 * {@link #getAction()}.
2294 public final int getAction() { method in class:KeyEvent
2708 if (event.getAction() != ACTION_DOWN) {
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipWakeupTimer.java57 IntentFilter filter = new IntentFilter(getAction());
215 Intent intent = new Intent(getAction());
227 String action = intent.getAction();
228 if (getAction().equals(action)
275 private String getAction() { method in class:SipWakeupTimer
/frameworks/support/v4/api20/android/support/v4/app/
H A DNotificationCompatApi20.java115 public static NotificationCompatBase.Action getAction(Notification notif, method in class:NotificationCompatApi20
/frameworks/support/v4/kitkat/android/support/v4/app/
H A DNotificationCompatKitKat.java126 public static NotificationCompatBase.Action getAction(Notification notif, method in class:NotificationCompatKitKat
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java252 * <li>{@link #getAction()} - Gets traversal action which specifies the direction.</li>
969 public int getAction() { method in class:AccessibilityEvent
/frameworks/base/media/java/android/media/session/
H A DPlaybackState.java638 public String getAction() { method in class:PlaybackState.CustomAction
/frameworks/support/v4/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java468 public String getAction() { method in class:PlaybackStateCompat.CustomAction
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java274 public static NotificationCompatBase.Action getAction(Notification notif, int actionIndex, method in class:NotificationCompatJellybean
/frameworks/base/core/java/android/content/
H A DIntentFilter.java477 public final String getAction(int index) { method in class:IntentFilter
1258 return match(intent.getAction(), type, intent.getScheme(),
1268 * @param action The intent action to match against (Intent.getAction).
1284 * @see Intent#getAction
H A DIntent.java4691 public String getAction() { method in class:Intent
5455 * <p>If {@link #getAction} is non-NULL, the activity must handle this
5584 * @see #getAction
7765 String action = getAction();
7805 final String action = getAction();
/frameworks/native/include/input/
H A DInput.h291 inline int32_t getAction() const { return mAction; } function in class:android::KeyEvent
345 inline int32_t getAction() const { return mAction; } function in class:android::MotionEvent
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java448 public Action getAction(Notification n, int actionIndex); method in interface:NotificationCompat.NotificationCompatImpl
486 public Action getAction(Notification n, int actionIndex) { method in class:NotificationCompat.NotificationCompatImplBase
599 public Action getAction(Notification n, int actionIndex) { method in class:NotificationCompat.NotificationCompatImplJellybean
600 return (Action) NotificationCompatJellybean.getAction(n, actionIndex, Action.FACTORY,
663 public Action getAction(Notification n, int actionIndex) { method in class:NotificationCompat.NotificationCompatImplKitKat
664 return (Action) NotificationCompatKitKat.getAction(n, actionIndex, Action.FACTORY,
704 public Action getAction(Notification n, int actionIndex) { method in class:NotificationCompat.NotificationCompatImplApi20
705 return (Action) NotificationCompatApi20.getAction(n, actionIndex, Action.FACTORY,
3270 public static Action getAction(Notification notif, int actionIndex) { method in class:NotificationCompat
3271 return IMPL.getAction(noti
[all...]
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java220 if (event.getAction() == MotionEvent.ACTION_UP) {
2858 getAction(newMode).addParams(params);
2875 private EditModeActionBase getAction(int mode) { method in class:EditStyledText.EditModeActions
2890 EditModeActionBase action = getAction(mode);

Completed in 3388 milliseconds