HomeSort by relevance Sort by last modified time
    Searched refs:Action (Results 26 - 50 of 830) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
VisibleAction.java 19 import com.badlogic.gdx.scenes.scene2d.Action;
24 public class VisibleAction extends Action {
AfterAction.java 19 import com.badlogic.gdx.scenes.scene2d.Action;
23 /** Executes an action only after all other actions on the actor at the time this action's target was set have finished.
26 private Array<Action> waitForActions = new Array(false, 4);
39 Array<Action> currentActions = target.getActions();
42 Action action = waitForActions.get(i); local
43 int index = currentActions.indexOf(action, true);
47 return action.act(delta);
TouchableAction.java 19 import com.badlogic.gdx.scenes.scene2d.Action;
25 public class TouchableAction extends Action {
DelegateAction.java 19 import com.badlogic.gdx.scenes.scene2d.Action;
23 /** Base class for an action that wraps another action.
25 abstract public class DelegateAction extends Action {
26 protected Action action; field in class:DelegateAction
28 /** Sets the wrapped action. */
29 public void setAction (Action action) {
30 this.action = action;
    [all...]
  /external/llvm/include/llvm-c/
Analysis.h 42 /* Verifies that a module is valid, taking the specified action if not.
45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
48 /* Verifies that a single function is valid, taking the specified action. Useful
50 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
MultiSynch.java 29 public interface Action {
43 * @param action Action to be invoked once full synchronization has been obtained.
45 public static void run(Object[] params, Set synchSet, Action action) {
46 run(params, synchSet.toArray(), action, 0);
52 * @param action Action to be invoked once full synchronization has been obtained.
54 public static void run(Object[] params, List synchList, Action action) {
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
ActionService.java 17 package com.android.messaging.datamodel.action;
28 final Action action, final int requestCode, final boolean launchesAnActivity) {
29 return ActionServiceImpl.makeStartActionPendingIntent(context, action, requestCode,
34 * Start an action by posting it over the the ActionService
36 public void startAction(final Action action) {
37 ActionServiceImpl.startAction(action);
41 * Schedule a delayed action by posting it over the the ActionService
43 public void scheduleAction(final Action action, final int code
    [all...]
BackgroundWorker.java 17 package com.android.messaging.datamodel.action;
22 * Interface between action service and its workers
27 * Send list of requests from action service to a worker
29 public void queueBackgroundWork(final List<Action> backgroundActions) {
  /frameworks/support/compat/tests/java/android/support/v4/app/
NotificationCompatActionWearableExtenderTest.java 30 * Tests for {@link android.support.v4.app.NotificationCompat.Action.WearableExtender}.
53 assertExtendersEqual(new Notification.Action.WearableExtender(),
54 new NotificationCompat.Action.WearableExtender());
59 Notification.Action.WearableExtender baseExtender =
60 new Notification.Action.WearableExtender()
65 NotificationCompat.Action.WearableExtender compatExtender =
66 new NotificationCompat.Action.WearableExtender()
88 Notification.Action.Builder baseAction =
89 new Notification.Action.Builder(mIcon, mTitle, mPendingIntent);
90 NotificationCompat.Action.Builder compatAction
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/validators/
FirstApplicableValidator.java 20 import io.appium.droiddriver.actions.Action;
34 public boolean isApplicable(UiElement element, Action action) {
39 public String validate(UiElement element, Action action) {
41 if (validator.isApplicable(element, action)) {
42 return validator.validate(element, action);
  /external/vogar/src/vogar/android/
RunActivityTask.java 19 import vogar.Action;
25 public RunActivityTask(Run run, Action action, boolean useLargeTimeout) {
26 super(run, action, useLargeTimeout);
29 @Override public Command createActionCommand(Action action, String skipPast, int monitorPort) {
36 "-a", "android.intent.action.MAIN",
37 "-n", (InstallApkTask.packageName(action) + "/" + InstallApkTask.ACTIVITY_CLASS));
ActivityMode.java 23 import vogar.Action;
32 * Runs an action in the context of an android.app.Activity on a device
46 @Override public Set<Task> installActionTasks(Action action, File jar) {
47 return Collections.<Task>singleton(new InstallApkTask(run, action, jar));
50 @Override public Task executeActionTask(Action action, boolean useLargeTimeout) {
51 return new RunActivityTask(run, action, useLargeTimeout);
54 @Override public Set<Task> cleanupTasks(Action action) {
    [all...]
DexTask.java 20 import vogar.Action;
30 private final Action action; field in class:DexTask
34 File jar, Action action, File localDex) {
40 this.action = action;
47 if (benchmark && action != null) {
  /external/vogar/src/vogar/tasks/
PrepareUserDirTask.java 20 import vogar.Action;
26 private final Action action; field in class:PrepareUserDirTask
28 public PrepareUserDirTask(Target target, Action action) {
29 super("prepare " + action.getUserDir());
31 this.action = action;
35 File userDir = action.getUserDir();
37 File resourcesDirectory = action.getResourcesDirectory()
    [all...]
  /system/extras/memory_replay/tests/
ActionTest.cpp 21 #include "Action.h"
25 uint8_t memory[Action::MaxActionSize()];
27 Action* action = Action::CreateAction(0x1234, "malloc", line, memory); local
28 ASSERT_TRUE(action != NULL);
29 ASSERT_FALSE(action->DoesFree());
30 ASSERT_FALSE(action->EndThread());
33 action->Execute(&pointers);
42 Action* action = Action::CreateAction(0x1234, "malloc", line, memory) local
49 Action* action = Action::CreateAction(0x1234, "free", line, memory); local
62 Action* action = Action::CreateAction(0x1234, "calloc", line, memory); local
77 Action* action = Action::CreateAction(0, "free", line, memory); local
88 Action* action = Action::CreateAction(0x1234, "calloc", line1, memory); local
99 Action* action = Action::CreateAction(0x1234, "realloc", line, memory); local
125 Action* action = Action::CreateAction(0x1234, "realloc", line1, memory); local
136 Action* action = Action::CreateAction(0x1234, "memalign", line, memory); local
151 Action* action = Action::CreateAction(0x1234, "memalign", line1, memory); local
162 Action* action = Action::CreateAction(0x0, "thread_done", line, memory); local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
FunctionDelegates.cs 35 public delegate void Action();
  /external/droiddriver/src/io/appium/droiddriver/actions/
Action.java 22 * Interface for performing action on a UiElement. An action is a high-level
26 public interface Action {
28 * Performs the action.
30 * @param element the Ui element to perform the action on
31 * @return Whether the action is successful. Some actions throw exceptions in
38 * Gets the timeout to wait for an indicator that the action has been carried
50 * It is recommended that this method return the description of the action,
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionTestHelpers.java 17 package com.android.messaging.datamodel.action;
61 mActions = new ArrayList<Action>();
64 ArrayList<Action> mActions;
65 public ArrayList<Action> getRequestsMade() {
70 public void queueBackgroundWork(final List<Action> actions) {
86 Action action; field in class:ActionTestHelpers.StubChatActionMonitor.StateTransition
89 public StateTransition(final Action action, final int from, final int to) {
90 this.action = action
125 public final Action action; field in class:ActionTestHelpers.StubActionService.StubActionServiceCallLog
    [all...]
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
CarActionExtender.java 23 * Android Auto {@link android.app.Notification.Action} extender.
26 public class CarActionExtender implements NotificationCompat.Action.Extender {
35 public CarActionExtender(NotificationCompat.Action action) {
36 Bundle autoBundle = action.getExtras();
44 public NotificationCompat.Action.Builder extend(NotificationCompat.Action.Builder builder) {
  /system/extras/memory_replay/
Thread.h 24 class Action;
39 Action* CreateAction(uintptr_t key_pointer, const char* type, const char* line);
45 Action* GetAction() { return reinterpret_cast<Action*>(action_memory_); }
58 // Per thread memory for an Action. Only one action can be processed.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
ActionFragment.java 35 public static ActionFragment newInstance(ArrayList<Action> actions) {
39 public static ActionFragment newInstance(ArrayList<Action> actions, String name) {
45 public static ActionFragment newInstance(ArrayList<Action> actions, int index) {
51 public static ActionFragment newInstance(ArrayList<Action> actions, String name, int index) {
81 public void onActionClicked(Action action) {
82 mBase.onActionClicked(action);
86 public void onActionFocused(Action action) {
87 mBase.onActionFocused(action);
    [all...]
  /external/clang/lib/Driver/
Action.cpp 1 //===--- Action.cpp - Abstract compilation steps --------------------------===//
10 #include "clang/Driver/Action.h"
16 Action::~Action() {
23 const char *Action::getClassName(ActionClass AC) {
49 : Action(InputClass, _Type), Input(_Input) {
54 BindArchAction::BindArchAction(std::unique_ptr<Action> Input,
56 : Action(BindArchClass, std::move(Input)), ArchName(_ArchName) {}
60 CudaDeviceAction::CudaDeviceAction(std::unique_ptr<Action> Input,
62 : Action(CudaDeviceClass, std::move(Input)), GpuArchName(ArchName)
    [all...]
  /system/core/fastboot/
engine.cpp 50 typedef struct Action Action;
54 struct Action {
56 Action* next;
67 int (*func)(Action* a, int status, const char* resp);
72 static Action *action_list = 0;
73 static Action *action_last = 0;
91 static int cb_default(Action* a, int status, const char* resp) {
102 static Action *queue_action(unsigned op, const char *fmt, ...)
107 Action* a = reinterpret_cast<Action*>(calloc(1, sizeof(Action)))
    [all...]
  /frameworks/support/compat/api20/android/support/v4/app/
NotificationCompatApi20.java 89 public void addAction(NotificationCompatBase.Action action) {
90 NotificationCompatApi20.addAction(b, action);
112 public static void addAction(Notification.Builder b, NotificationCompatBase.Action action) {
113 Notification.Action.Builder actionBuilder = new Notification.Action.Builder(
114 action.getIcon(), action.getTitle(), action.getActionIntent())
180 Notification.Action action = (Notification.Action) parcelables.get(i); local
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/voicemail/
VoicemailStatusHelperImpl.java 60 public static enum Action {
66 private Action(int messageId) {
77 * string and the corrective action. The states are also assigned a relative priority which is
84 NO_CONNECTION(0, Action.CALL_VOICEMAIL, R.string.voicemail_status_voicemail_not_available,
87 NO_DATA(1, Action.CALL_VOICEMAIL, R.string.voicemail_status_voicemail_not_available,
90 MESSAGE_WAITING(2, Action.CALL_VOICEMAIL, R.string.voicemail_status_messages_waiting,
93 NO_NOTIFICATIONS(3, Action.CALL_VOICEMAIL,
96 INVITE_FOR_CONFIGURATION(4, Action.CONFIGURE_VOICEMAIL,
100 * This is normal mode of operation for certain sources. No action needed.
102 NO_DETAILED_NOTIFICATION(5, Action.NONE, -1)
214 final Action action = overallState.getAction(); local
    [all...]

Completed in 707 milliseconds

12 3 4 5 6 7 8 91011>>