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

/frameworks/compile/mclinker/include/mcld/LD/
H A DResolver.h31 enum Action { Success, Warning, Abort, LastAction }; enum in class:mcld::Resolver
H A DEhFrameReader.h54 /// Action - the transition function of autometa.
58 typedef bool (*Action)(EhFrame& pEhFrame, typedef in class:mcld::EhFrameReader
/frameworks/base/drm/java/android/drm/
H A DDrmStore.java28 * {@link android.drm.DrmStore.Action actions} that can be performed
41 * {@link android.drm.DrmStore.Action action}.
50 * {@link android.drm.DrmStore.Action action}.
58 * an {@link android.drm.DrmStore.Action action} can be performed on
67 * an {@link android.drm.DrmStore.Action action} can not be performed on
163 public static class Action { class in class:DrmStore
218 public Action() {} method in class:DrmStore.Action
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAction.java26 public class Action { class
38 * Constructor for an Action.
40 * @param id The id of the Action.
42 public Action(long id) { method in class:Action
47 * Constructor for an Action.
49 * @param id The id of the Action.
50 * @param label The label to display for the Action.
52 public Action(long id, CharSequence label) { method in class:Action
57 * Constructor for an Action.
59 * @param id The id of the Action
63 public Action(long id, CharSequence label1, CharSequence label2) { method in class:Action
75 public Action(long id, CharSequence label1, CharSequence label2, Drawable icon) { method in class:Action
[all...]
/frameworks/support/v4/donut/android/support/v4/app/
H A DNotificationCompatBase.java29 public static abstract class Action { class in class:NotificationCompatBase
38 Action build(int icon, CharSequence title, PendingIntent actionIntent,
41 public Action[] newArray(int length);
/frameworks/av/include/drm/
H A Ddrm_framework_common.h152 class Action { class in namespace:android
154 Action();
/frameworks/compile/mclinker/tools/mcld/
H A DMain.cpp822 typedef std::unique_ptr<mcld::InputAction> Action; typedef
824 std::vector<Action> actions;
825 Action action;
983 [] (const Action& X, const Action& Y) {
/frameworks/base/services/core/java/com/android/server/policy/
H A DGlobalActions.java85 * Helper to show the global actions dialog. Each item is an {@link Action} that
112 private ArrayList<Action> mItems;
115 private Action mSilentModeAction;
265 mItems = new ArrayList<Action>();
325 final Action action = mAdapter.getItem(position);
438 private Action getSettingsAction() {
461 private Action getAssistAction() {
483 private Action getVoiceAssistAction() {
505 private Action getLockdownAction() {
544 private void addUsersToMenu(ArrayList<Action> item
700 private interface Action { interface in class:GlobalActions
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp62 struct NuPlayer::Action : public RefBase { struct in class:android::NuPlayer
63 Action() {} function in struct:android::NuPlayer::Action
68 DISALLOW_EVIL_CONSTRUCTORS(Action);
71 struct NuPlayer::SeekAction : public Action {
86 struct NuPlayer::ResumeDecoderAction : public Action {
101 struct NuPlayer::SetSurfaceAction : public Action {
116 struct NuPlayer::FlushDecoderAction : public Action {
133 struct NuPlayer::PostMessageAction : public Action {
150 struct NuPlayer::SimpleAction : public Action {
1945 sp<Action> actio
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java172 * Broadcast Action: The TextToSpeech synthesizer has completed processing
344 * Activity Action: Triggers the platform TextToSpeech engine to
357 * Broadcast Action: broadcast to signal the change in the list of available
365 * Activity Action: Starts the activity from the platform TextToSpeech
736 private <R> R runActionNoReconnect(Action<R> action, R errorResult, String method,
741 private <R> R runAction(Action<R> action, R errorResult, String method) {
745 private <R> R runAction(Action<R> action, R errorResult, String method,
850 runActionNoReconnect(new Action<Void>() {
1098 return runAction(new Action<Integer>() {
1171 return runAction(new Action<Intege
2300 private interface Action<R> { interface in class:TextToSpeech
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java108 private ArrayList<Action> mActions;
279 private abstract static class Action implements Parcelable { class in class:RemoteViews
318 public Action initActionAsync(ViewTree root, ViewGroup rootParent, OnClickHandler handler) {
326 * Action class used during async inflation of RemoteViews. Subclasses are not parcelable.
328 private static abstract class RuntimeAction extends Action {
341 private static final Action ACTION_NOOP = new RuntimeAction() {
361 HashMap<String, Action> map = new HashMap<String, Action>();
363 mActions = new ArrayList<Action>();
368 Action
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java999 * or {@link Notification.Builder#addAction(Notification.Action)}
1002 public static class Action implements Parcelable { class in class:Notification
1011 * @deprecated Use {@link Action#getIcon()} instead.
1027 private Action(Parcel in) { method in class:Notification.Action
1044 * @deprecated Use {@link android.app.Notification.Action.Builder}.
1047 public Action(int icon, CharSequence title, PendingIntent intent) { method in class:Notification.Action
1051 private Action(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, method in class:Notification.Action
1076 * Get additional metadata carried around with this Action.
1084 * {@link Action}
1099 * Builder class for {@link Action} object
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java494 public Action getAction(Notification n, int actionIndex);
495 public Action[] getActionsFromParcelableArrayList(ArrayList<Parcelable> parcelables);
496 public ArrayList<Parcelable> getParcelableArrayListForActions(Action[] actions);
546 public Action getAction(Notification n, int actionIndex) {
551 public Action[] getActionsFromParcelableArrayList(
557 public ArrayList<Parcelable> getParcelableArrayListForActions(Action[] actions) {
674 public Action getAction(Notification n, int actionIndex) {
675 return (Action) NotificationCompatJellybean.getAction(n, actionIndex, Action.FACTORY,
680 public Action[] getActionsFromParcelableArrayLis
2337 public static class Action extends NotificationCompatBase.Action { class in class:NotificationCompat
2356 public Action(int icon, CharSequence title, PendingIntent intent) { method in class:NotificationCompat.Action
2360 private Action(int icon, CharSequence title, PendingIntent intent, Bundle extras, method in class:NotificationCompat.Action
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java9961 private final Action mRecyclingAction;
9964 mRecyclingAction = new Action(0, 0);
9971 * {@link #onTargetFound(android.view.View, RecyclerView.State, SmoothScroller.Action)} or
9972 * {@link #onSeekTargetStep(int, int, RecyclerView.State, SmoothScroller.Action)} until
10008 * cancel any existing {@link Action} updated by
10009 * {@link #onTargetFound(android.view.View, RecyclerView.State, SmoothScroller.Action)} or
10010 * {@link #onSeekTargetStep(int, int, RecyclerView.State, SmoothScroller.Action)}.
10114 * @deprecated Use {@link Action#jumpTo(int)}.
10156 * provided {@link Action} to define the next scroll.</p>
10164 abstract protected void onSeekTargetStep(int dx, int dy, State state, Action actio
10180 public static class Action { class in class:RecyclerView.SmoothScroller
10204 public Action(int dx, int dy) { method in class:RecyclerView.SmoothScroller.Action
10213 public Action(int dx, int dy, int duration) { method in class:RecyclerView.SmoothScroller.Action
10224 public Action(int dx, int dy, int duration, Interpolator interpolator) { method in class:RecyclerView.SmoothScroller.Action
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 2044 milliseconds