Searched defs:action (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/vogar/src/vogar/tasks/
H A DPrepareUserDirTask.java26 private final Action action; field in class:PrepareUserDirTask
28 public PrepareUserDirTask(Target target, Action action) { argument
29 super("prepare " + action.getUserDir());
31 this.action = action;
35 File userDir = action.getUserDir();
37 File resourcesDirectory = action.getResourcesDirectory();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeVisitor.cs50 * Visit every node in tree t and trigger an action for each node
55 * applying post action to this node.
58 public object Visit(object t, ITreeVisitorAction action) argument
62 if (action != null && !isNil)
64 t = action.Pre(t); // if rewritten, walk children of new t
69 Visit(child, action);
71 if (action != null && !isNil)
72 t = action.Post(t);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeVisitor.java42 /** Visit every node in tree t and trigger an action for each node
50 * Return result of applying post action to this node.
52 public Object visit(Object t, TreeVisitorAction action) { argument
55 if ( action!=null && !isNil ) {
56 t = action.pre(t); // if rewritten, walk children of new t
60 Object visitResult = visit(child, action);
66 if ( action!=null && !isNil ) t = action.post(t);
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeWizard.h47 NSInteger action; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeWizard.h47 NSInteger action; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeWizard.h47 NSInteger action; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeWizard.h48 NSInteger action; variable
59 @property NSInteger action; variable
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DBarrier.java51 action(); // perform the requested operation
60 public void action() { method in class:Barrier
/external/droiddriver/src/io/appium/droiddriver/validators/
H A DExemptRootValidator.java27 public boolean isApplicable(UiElement element, Action action) { argument
32 public String validate(UiElement element, Action action) { argument
H A DExemptScrollActionValidator.java29 public boolean isApplicable(UiElement element, Action action) { argument
30 return action instanceof ScrollAction;
34 public String validate(UiElement element, Action action) { argument
H A DExemptedClassesValidator.java35 public boolean isApplicable(UiElement element, Action action) { argument
58 public String validate(UiElement element, Action action) { argument
H A DFirstApplicableValidator.java34 public boolean isApplicable(UiElement element, Action action) { argument
39 public String validate(UiElement element, Action action) { argument
41 if (validator.isApplicable(element, action)) {
42 return validator.validate(element, action);
H A DValidator.java23 * Interface for validating a UiElement, checked when an action is performed.
30 * {@code action}.
32 boolean isApplicable(UiElement element, Action action); argument
35 * Returns {@code null} if {@code element} is valid on this {@code action},
38 String validate(UiElement element, Action action); argument
H A DVisibilityValidator.java27 public boolean isApplicable(UiElement element, Action action) { argument
32 public String validate(UiElement element, Action action) { argument
H A DDefaultAccessibilityValidator.java33 public boolean isApplicable(UiElement element, Action action) { argument
38 public String validate(UiElement element, Action action) { argument
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DSoftTextDialogInputListener.java43 public void onSoftText(int action, String text); argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowKeyEvent.java10 private int action; field in class:ShadowKeyEvent
13 public void __constructor__(int action, int code) { argument
14 this.action = action;
20 return action;
/external/toybox/toys/other/
H A Doneit.c48 int action = RB_AUTOBOOT; local
51 if (signal == SIGUSR1) action = RB_HALT_SYSTEM;
52 if (signal == SIGUSR2) action = RB_POWER_OFF;
57 if (!vfork()) reboot(action);
/external/vogar/src/vogar/android/
H A DRunActivityTask.java25 public RunActivityTask(Run run, Action action, boolean useLargeTimeout) { argument
26 super(run, action, useLargeTimeout);
29 @Override public Command createActionCommand(Action action, String skipPast, int monitorPort) { argument
36 "-a", "android.intent.action.MAIN",
37 "-n", (InstallApkTask.packageName(action) + "/" + InstallApkTask.ACTIVITY_CLASS));
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
H A DMultiSynch.java43 * @param action Action to be invoked once full synchronization has been obtained.
45 public static void run(Object[] params, Set synchSet, Action action) { argument
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) { argument
55 run(params, synchList.toArray(), action, 0);
61 * @param action Action to be invoked once full synchronization has been obtained.
63 public static void run(Object[] params, Object[] synchArr, Action action) { argument
64 run(params, synchArr, action, 0);
71 * @param action
74 run(Object[] params, Object[] synchArr, Action action, int depth) argument
[all...]
/external/bison/lib/
H A Dspawn_int.h19 /* Data structure to contain the action information. */
47 } action; member in struct:__spawn_action
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/
H A Djsmin.c122 /* action -- do something! What you do is determined by the argument:
126 action treats a string as a single character. Wow!
127 action recognizes a regular expression if it is preceded by ( or , or =.
131 action(int d) function
212 action(3);
217 action(1);
219 action(2);
229 action(1);
232 action(3);
236 action(
[all...]
/external/clang/test/CodeGen/
H A D2009-05-04-EnumInreg.c16 // CHECK: i32 inreg %action
17 int kobject_uevent(struct kobject *kobj, enum kobject_action action) {} argument
/external/droiddriver/src/io/appium/droiddriver/
H A DUiDevice.java42 * Executes a global action without the context of a certain UiElement.
44 * @param action The action to execute
45 * @return true if the action is successful
47 boolean perform(Action action); argument
/external/eigen/bench/btl/generic_bench/timers/
H A Dportable_perf_analyzer.hh43 Action action(size);
45 // action.initialize();
46 // time_action = time_calculate(action);
51 action.initialize();
52 m_time_action = time_calculate(action);
69 action.initialize();
70 action.calculate();
71 action.check_result();
73 return action.nb_op_base()/(time_action*1e6);
76 BTL_DONT_INLINE double time_calculate(Action & action) argument
[all...]

Completed in 1125 milliseconds

1234567891011>>