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.java28 public class Action { class
37 * Constructor for an Action.
39 * @param id The id of the Action.
41 public Action(long id) { method in class:Action
46 * Constructor for an Action.
48 * @param id The id of the Action.
49 * @param label The label to display for the Action.
51 public Action(long id, CharSequence label) { method in class:Action
56 * Constructor for an Action.
58 * @param id The id of the Action
62 public Action(long id, CharSequence label1, CharSequence label2) { method in class:Action
74 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.java27 public static abstract class Action { class in class:NotificationCompatBase
35 Action build(int icon, CharSequence title, PendingIntent actionIntent,
37 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.cpp808 typedef std::unique_ptr<mcld::InputAction> Action; typedef
810 std::vector<Action> actions;
811 Action action;
969 [] (const Action& X, const Action& Y) {
/frameworks/base/services/core/java/com/android/server/policy/
H A DGlobalActions.java83 * Helper to show the global actions dialog. Each item is an {@link Action} that
110 private ArrayList<Action> mItems;
113 private Action mSilentModeAction;
263 mItems = new ArrayList<Action>();
323 final Action action = mAdapter.getItem(position);
370 private Action getBugReportAction() {
425 private Action getSettingsAction() {
448 private Action getAssistAction() {
470 private Action getVoiceAssistAction() {
492 private Action getLockdownActio
687 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 {
1848 sp<Action> actio
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java162 * Broadcast Action: The TextToSpeech synthesizer has completed processing
334 * Activity Action: Triggers the platform TextToSpeech engine to
347 * Broadcast Action: broadcast to signal the change in the list of available
355 * Activity Action: Starts the activity from the platform TextToSpeech
726 private <R> R runActionNoReconnect(Action<R> action, R errorResult, String method,
731 private <R> R runAction(Action<R> action, R errorResult, String method) {
735 private <R> R runAction(Action<R> action, R errorResult, String method,
840 runActionNoReconnect(new Action<Void>() {
1088 return runAction(new Action<Integer>() {
1161 return runAction(new Action<Intege
2273 private interface Action<R> { interface in class:TextToSpeech
[all...]
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java98 private ArrayList<Action> mActions;
239 private abstract static class Action implements Parcelable { class in class:RemoteViews
291 HashMap<String, Action> map = new HashMap<String, Action>();
293 mActions = new ArrayList<Action>();
298 Action a = mActions.get(i);
302 ArrayList<Action> newActions = copy.mActions;
306 Action a = newActions.get(i);
309 if (map.containsKey(key) && mergeBehavior == Action.MERGE_REPLACE) {
315 if (mergeBehavior == Action
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java450 public Action getAction(Notification n, int actionIndex);
451 public Action[] getActionsFromParcelableArrayList(ArrayList<Parcelable> parcelables);
452 public ArrayList<Parcelable> getParcelableArrayListForActions(Action[] actions);
499 public Action getAction(Notification n, int actionIndex) {
504 public Action[] getActionsFromParcelableArrayList(
510 public ArrayList<Parcelable> getParcelableArrayListForActions(Action[] actions) {
614 public Action getAction(Notification n, int actionIndex) {
615 return (Action) NotificationCompatJellybean.getAction(n, actionIndex, Action.FACTORY,
620 public Action[] getActionsFromParcelableArrayLis
1808 public static class Action extends NotificationCompatBase.Action { class in class:NotificationCompat
1826 public Action(int icon, CharSequence title, PendingIntent intent) { method in class:NotificationCompat.Action
1830 private Action(int icon, CharSequence title, PendingIntent intent, Bundle extras, method in class:NotificationCompat.Action
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java903 * or {@link Notification.Builder#addAction(Notification.Action)}
906 public static class Action implements Parcelable { class in class:Notification
914 * @deprecated Use {@link Action#getIcon()} instead.
930 private Action(Parcel in) { method in class:Notification.Action
946 * @deprecated Use {@link android.app.Notification.Action.Builder}.
949 public Action(int icon, CharSequence title, PendingIntent intent) { method in class:Notification.Action
953 private Action(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, method in class:Notification.Action
974 * Get additional metadata carried around with this Action.
989 * Builder class for {@link Action} objects.
999 * Construct a new builder for {@link Action} objec
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java8873 private final Action mRecyclingAction;
8876 mRecyclingAction = new Action(0, 0);
8883 * {@link #onTargetFound(android.view.View, RecyclerView.State, SmoothScroller.Action)} or
8884 * {@link #onSeekTargetStep(int, int, RecyclerView.State, SmoothScroller.Action)} until
8920 * cancel any existing {@link Action} updated by
8921 * {@link #onTargetFound(android.view.View, RecyclerView.State, SmoothScroller.Action)} or
8922 * {@link #onSeekTargetStep(int, int, RecyclerView.State, SmoothScroller.Action)}.
9026 * @deprecated Use {@link Action#jumpTo(int)}.
9068 * provided {@link Action} to define the next scroll.</p>
9076 abstract protected void onSeekTargetStep(int dx, int dy, State state, Action actio
9092 public static class Action { class in class:RecyclerView.SmoothScroller
9116 public Action(int dx, int dy) { method in class:RecyclerView.SmoothScroller.Action
9125 public Action(int dx, int dy, int duration) { method in class:RecyclerView.SmoothScroller.Action
9136 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 1462 milliseconds