/system/core/include/sysutils/ |
NetlinkEvent.h | 25 enum class Action { 42 Action mAction; 54 Action getAction() { return mAction; }
|
/external/eigen/bench/btl/generic_bench/static/ |
intel_bench_fixed_size.hh | 26 template <class Action> 30 Action action(size); 32 double time_baseline=time_init(nb_init,action); 39 time_baseline=time_init(nb_init,action); 44 double time_action=time_calculate(nb_calc,action); 49 time_action=time_calculate(nb_calc,action); 58 action.check_result(); 62 return action.nb_op_base()/(time_action*1000000.0);
|
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/ |
AddListenerAction.java | 19 import com.badlogic.gdx.scenes.scene2d.Action; 25 public class AddListenerAction extends Action {
|
LayoutAction.java | 19 import com.badlogic.gdx.scenes.scene2d.Action;
27 public class LayoutAction extends Action {
|
RemoveListenerAction.java | 19 import com.badlogic.gdx.scenes.scene2d.Action; 25 public class RemoveListenerAction extends Action {
|
RunnableAction.java | 19 import com.badlogic.gdx.scenes.scene2d.Action;
22 /** An action that runs a {@link Runnable}. Alternatively, the {@link #run()} method can be overridden instead of setting a
25 public class RunnableAction extends Action {
40 setPool(null); // Ensure this action can't be returned to the pool inside the runnable.
|
Actions.java | 21 import com.badlogic.gdx.scenes.scene2d.Action;
31 /** Returns a new or pooled action of the specified type. */
32 static public <T extends Action> T action (Class<T> type) {
method in class:Actions 34 T action = pool.obtain();
local 35 action.setPool(pool);
36 return action;
39 static public AddAction addAction (Action action) {
40 AddAction addAction = action(AddAction.class); 75 MoveToAction action = action(MoveToAction.class); local 91 MoveToAction action = action(MoveToAction.class); local 108 MoveByAction action = action(MoveByAction.class); local 125 SizeToAction action = action(SizeToAction.class); local 142 SizeByAction action = action(SizeByAction.class); local 159 ScaleToAction action = action(ScaleToAction.class); local 176 ScaleByAction action = action(ScaleByAction.class); local 193 RotateToAction action = action(RotateToAction.class); local 210 RotateByAction action = action(RotateByAction.class); local 229 ColorAction action = action(ColorAction.class); local 248 AlphaAction action = action(AlphaAction.class); local 262 AlphaAction action = action(AlphaAction.class); local 276 AlphaAction action = action(AlphaAction.class); local 292 VisibleAction action = action(VisibleAction.class); local 298 TouchableAction action = action(TouchableAction.class); local 308 RemoveActorAction action = action(RemoveActorAction.class); local 314 DelayAction action = action(DelayAction.class); local 320 DelayAction action = action(DelayAction.class); local 327 TimeScaleAction action = action(TimeScaleAction.class); local 334 SequenceAction action = action(SequenceAction.class); local 340 SequenceAction action = action(SequenceAction.class); local 347 SequenceAction action = action(SequenceAction.class); local 355 SequenceAction action = action(SequenceAction.class); local 364 SequenceAction action = action(SequenceAction.class); local 374 SequenceAction action = action(SequenceAction.class); local 385 ParallelAction action = action(ParallelAction.class); local 391 ParallelAction action = action(ParallelAction.class); local 398 ParallelAction action = action(ParallelAction.class); local 406 ParallelAction action = action(ParallelAction.class); local 415 ParallelAction action = action(ParallelAction.class); local 425 ParallelAction action = action(ParallelAction.class); local 436 RepeatAction action = action(RepeatAction.class); local 443 RepeatAction action = action(RepeatAction.class); local 450 RunnableAction action = action(RunnableAction.class); local 456 LayoutAction action = action(LayoutAction.class); local [all...] |
/external/vogar/src/vogar/ |
ActionFinder.java | 28 private final Map<String, Action> actions; 31 public ActionFinder(Log log, Map<String, Action> actions, Map<String, Outcome> outcomes) { 59 Action action = fileToAction(file); local 60 actions.put(action.getName(), action); local 62 String actionName = Action.nameForJavaFile(file); 63 Action action = new Action(actionName, null, null, null, file) local [all...] |
JavaVm.java | 43 @Override public VmCommandBuilder newVmCommandBuilder(Action action, File workingDirectory) { 62 @Override public Task executeActionTask(Action action, boolean useLargeTimeout) { 63 return new RunActionTask(run, action, useLargeTimeout); 66 @Override public Set<Task> installActionTasks(Action action, File jar) { 70 @Override public Classpath getRuntimeClasspath(Action action) { 73 result.addAll(run.hostJar(action)); [all...] |
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
Action.java | 26 * Abstract definition of an action that could be performed, along with 29 public interface Action extends Collapser.Collapsible<Action> { 35 /** Returns an icon that can be clicked for the alternate action. */ 38 /** Returns the content description of the icon for the alternate action. */ 41 /** Build an {@link Intent} that will perform this action. */ 44 /** Build an {@link Intent} that will perform the alternate action. */ 47 /** Checks if the contact data for this action is primary. */ 50 /** Checks if the contact data for this action is super primary. */ 69 * Returns the number of times this action has been used [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
CommonAction.java | 20 import org.eclipse.jface.action.Action; 24 * Basic action extending the jFace Action class in order to implement 27 public class CommonAction extends Action implements ICommonAction {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/ |
FitToCanvasAction.java | 22 import org.eclipse.jface.action.Action; 24 public class FitToCanvasAction extends Action {
|
/system/core/init/ |
action.cpp | 17 #include "action.h" 65 Action::Action(bool oneshot) : oneshot_(oneshot) { 68 const KeywordMap<BuiltinFunction>* Action::function_map_ = nullptr; 70 bool Action::AddCommand(const std::vector<std::string>& args, 91 void Action::AddCommand(BuiltinFunction f, 97 void Action::CombineAction(const Action& action) { 98 for (const auto& c : action.commands_) 337 auto action = std::make_unique<Action>(true); local 365 auto action = current_executing_actions_.front(); local 409 auto action = std::make_unique<Action>(false); local [all...] |
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/ |
Action.java | 32 * An action within an {@link ActionAdapter}. 34 public class Action implements Parcelable { 36 private static final String TAG = "Action"; 62 * Builds a Action object. 79 public Action build() { 80 return new Action( 162 protected Action(String key, String title, String description, String resourcePackageName, 181 * Returns a list of {@link Action} with the specified keys and titles 186 public static ArrayList<Action> createActionsFromArrays(String[] keys, String[] titles) { 191 * Returns a list of {@link Action} with the specified keys and title 216 Action action = builder.build(); local [all...] |
BaseActionFragment.java | 77 * Creates a new action fragment with the given list of actions and a given name. 79 public static Bundle buildArgs(ArrayList<Action> actions, String name) { 84 * Creates a new action fragment with the given list of actions and starting index. 86 public static Bundle buildArgs(ArrayList<Action> actions, int index) { 91 * Creates a new action fragment with the given list of actions, given name and starting index. 93 public static Bundle buildArgs(ArrayList<Action> actions, String name, int index) { 105 ArrayList<Action> actions = savedInstanceState.getParcelableArrayList(EXTRA_ACTIONS); 108 for (Action action : actions) { 109 mAdapter.addAction(action); [all...] |
/external/gmock/test/ |
gmock-generated-actions_test.cc | 54 using testing::Action; 171 Action<int(int, int(*)())> a = InvokeArgument<1>(); // NOLINT 177 Action<int(UnaryFunctor)> a = InvokeArgument<0>(true); // NOLINT 183 Action<int(int(*)(int, int, int, int, int))> a = // NOLINT 190 Action<int(SumOf5Functor)> a = // NOLINT 197 Action<int(int(*)(int, int, int, int, int, int))> a = // NOLINT 204 Action<int(SumOf6Functor)> a = // NOLINT 211 Action<string(string(*)(const char*, const char*, const char*, 220 Action<string(string(*)(const char*, const char*, const char*, 229 Action<string(string(*)(const char*, const char*, const char* 458 Action<int(int*, int*, char*, char*)> action = \/\/ NOLINT local 475 Action<int(int*, int*, char*, char*, char*)> action = \/\/ NOLINT local 494 Action<int(int*, int*, char*, char*, char*, char*)> action = \/\/ NOLINT local 516 char*)> action = local 540 char*, char*)> action = local 567 char*, char*, char*)> action = local [all...] |
/external/google-breakpad/src/testing/test/ |
gmock-generated-actions_test.cc | 54 using testing::Action; 171 Action<int(int, int(*)())> a = InvokeArgument<1>(); // NOLINT 177 Action<int(UnaryFunctor)> a = InvokeArgument<0>(true); // NOLINT 183 Action<int(int(*)(int, int, int, int, int))> a = // NOLINT 190 Action<int(SumOf5Functor)> a = // NOLINT 197 Action<int(int(*)(int, int, int, int, int, int))> a = // NOLINT 204 Action<int(SumOf6Functor)> a = // NOLINT 211 Action<string(string(*)(const char*, const char*, const char*, 220 Action<string(string(*)(const char*, const char*, const char*, 229 Action<string(string(*)(const char*, const char*, const char* 458 Action<int(int*, int*, char*, char*)> action = \/\/ NOLINT local 475 Action<int(int*, int*, char*, char*, char*)> action = \/\/ NOLINT local 494 Action<int(int*, int*, char*, char*, char*, char*)> action = \/\/ NOLINT local 516 char*)> action = local 540 char*, char*)> action = local 567 char*, char*, char*)> action = local [all...] |
/external/eigen/bench/btl/generic_bench/timers/ |
portable_perf_analyzer.hh | 27 template <class Action> 43 Action action(size); 45 // action.initialize(); 46 // time_action = time_calculate(action); 51 action.initialize(); 52 m_time_action = time_calculate(action); 58 Action _action(size); 69 action.initialize(); 70 action.calculate() [all...] |
portable_perf_analyzer_old.hh | 26 template <class Action> 45 Action action(size); 47 // double time_baseline = time_init(action); 51 // time_baseline = time_init(action); 56 // time_baseline = std::min(time_baseline, time_init(action)); 60 double time_action = time_calculate(action); 64 time_action = time_calculate(action); 69 time_action = std::min(time_action, time_calculate(action)); 77 action.check_result() [all...] |
/system/netd/server/ |
NetlinkHandler.cpp | 62 NetlinkEvent::Action action = evt->getAction(); local 65 if (action == NetlinkEvent::Action::kAdd) { 67 } else if (action == NetlinkEvent::Action::kRemove) { 69 } else if (action == NetlinkEvent::Action::kChange) { 72 } else if (action == NetlinkEvent::Action::kLinkUp) [all...] |
/external/vogar/src/vogar/android/ |
InstallApkTask.java | 22 import vogar.Action; 33 private final Action action; field in class:InstallApkTask 37 public InstallApkTask(Run run, Action action, File jar) { 38 super("aapt and push " + action.getName()); 39 this.action = action; 53 File dex = createDex(action, jar); 54 File apk = createApk(action, dex) [all...] |
/external/webrtc/webrtc/test/ |
rtp_rtcp_observer.h | 33 enum Action { 42 virtual Action OnSendRtp(const uint8_t* packet, size_t length) { 46 virtual Action OnSendRtcp(const uint8_t* packet, size_t length) { 50 virtual Action OnReceiveRtp(const uint8_t* packet, size_t length) { 54 virtual Action OnReceiveRtcp(const uint8_t* packet, size_t length) { 95 RtpRtcpObserver::Action action; variable 98 action = observer_->OnSendRtp(packet, length); 100 action = observer_->OnReceiveRtp(packet, length); 103 switch (action) { 115 RtpRtcpObserver::Action action; variable [all...] |
/platform_testing/utils/permissions/src/com/android/permissionutils/ |
PermissionInstrumentation.java | 42 private static enum Action {DUMP, GRANTALL}; 52 runCommand(Action.DUMP); 54 runCommand(Action.GRANTALL); 62 private void runCommand(Action action) { 85 if (action == Action.DUMP) { 87 } else if (action == Action.GRANTALL) { 92 if (action == Action.DUMP && !permissions.isEmpty()) [all...] |
/art/runtime/ |
fault_handler.h | 84 virtual bool Action(int sig, siginfo_t* siginfo, void* context) = 0; 97 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE; 107 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE; 117 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE; 127 bool Action(int sig, siginfo_t* siginfo, void* context) OVERRIDE NO_THREAD_SAFETY_ANALYSIS;
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
Action.java | 23 * An action contains one or two lines of text, an optional image and an optional id. It may also 26 public class Action { 38 * Constructor for an Action. 40 * @param id The id of the Action. 42 public Action(long id) { 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) { 57 * Constructor for an Action [all...] |