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

12 3 4 5 6 7 8 91011>>

  /prebuilts/misc/common/robolectric/3.1.1/
wrapper.sh 49 local action="${1-}"; shift || fatal "missing argument: action"
52 if [ "$action" = 'wrap' ]; then
60 elif [ "$action" = 'eval' ]; then
72 fatal "invalid action: $action"
  /prebuilts/misc/common/robolectric/3.4.2/
wrapper.sh 49 local action="${1-}"; shift || fatal "missing argument: action"
52 if [ "$action" = 'wrap' ]; then
60 elif [ "$action" = 'eval' ]; then
72 fatal "invalid action: $action"
  /prebuilts/misc/common/robolectric/3.5.1/
wrapper.sh 49 local action="${1-}"; shift || fatal "missing argument: action"
52 if [ "$action" = 'wrap' ]; then
60 elif [ "$action" = 'eval' ]; then
72 fatal "invalid action: $action"
  /prebuilts/misc/common/robolectric/3.6.1/
wrapper.sh 49 local action="${1-}"; shift || fatal "missing argument: action"
52 if [ "$action" = 'wrap' ]; then
60 elif [ "$action" = 'eval' ]; then
72 fatal "invalid action: $action"
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
Verifier.h 32 /// @brief An enumeration to specify the action to be taken if errors found.
47 /// action indicated by the \p action argument will be used if errors are
50 VerifierFailureAction action = AbortProcessAction ///< Action to take
56 /// the action taken depends on the \p action parameter.
62 VerifierFailureAction action = AbortProcessAction, ///< Action to take
70 VerifierFailureAction action = AbortProcessAction ///< Action to tak
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Iterator.java 82 * {@link UnsupportedOperationException} and performs no other action.
97 * Performs the given action for each remaining element until all elements
98 * have been processed or the action throws an exception. Actions are
100 * Exceptions thrown by the action are relayed to the caller.
106 * action.accept(next());
109 * @param action The action to be performed for each element
110 * @throws NullPointerException if the specified action is null
113 default void forEachRemaining(Consumer<? super E> action) {
114 Objects.requireNonNull(action);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/events/
Events.java 29 /** Extra describing the entity responsible for the action being performed. */
35 * @param action resource id of event action
38 public static void sendAlarmEvent(@StringRes int action, @StringRes int label) {
39 sendEvent(R.string.category_alarm, action, label);
45 * @param action resource id of event action
48 public static void sendClockEvent(@StringRes int action, @StringRes int label) {
49 sendEvent(R.string.category_clock, action, label);
55 * @param action resource id of event actio
    [all...]
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/
AppLinkActivity.java 57 AppLinkHelper.AppLinkAction action = AppLinkHelper.extractAction(uri); local
58 switch (action.getAction()) {
60 play((AppLinkHelper.PlaybackAction) action);
63 browse((AppLinkHelper.BrowseAction) action);
66 throw new IllegalArgumentException("Invalid Action " + action);
70 private void browse(AppLinkHelper.BrowseAction action) {
72 MockDatabase.findSubscriptionByName(this, action.getSubscriptionName());
74 Log.e(TAG, "Invalid subscription " + action.getSubscriptionName());
77 Toast.makeText(this, action.getSubscriptionName(), Toast.LENGTH_LONG).show()
    [all...]
  /external/vogar/src/vogar/android/
InstallApkTask.java 22 import vogar.Action;
34 private final Action action; field in class:InstallApkTask
38 public InstallApkTask(Run run, Action action, File jar) {
39 super("aapt and push " + action.getName());
40 this.action = action;
54 File dex = createDex(action, jar);
55 File apk = createApk(action, dex)
    [all...]
  /external/autotest/server/
autoserv_parser.py 33 self.parser.add_argument('-m', action='store', type=str,
36 self.parser.add_argument('-M', action='store', type=str,
39 self.parser.add_argument('-c', action='store_true',
42 self.parser.add_argument('-s', action='store_true',
45 self.parser.add_argument('-r', action='store', type=str,
48 self.parser.add_argument('-l', action='store', type=str,
51 self.parser.add_argument('-G', action='store', type=str,
54 self.parser.add_argument('-u', action='store', type=str,
58 self.parser.add_argument('-P', action='store', type=str,
64 self.parser.add_argument('--execution-tag', action='store'
    [all...]
  /frameworks/base/core/java/android/view/
HandlerActionQueue.java 32 public void post(Runnable action) {
33 postDelayed(action, 0);
36 public void postDelayed(Runnable action, long delayMillis) {
37 final HandlerAction handlerAction = new HandlerAction(action, delayMillis);
48 public void removeCallbacks(Runnable action) {
55 if (actions[i].matches(action)) {
56 // Remove this action by overwriting it within
85 handler.postDelayed(handlerAction.action, handlerAction.delay);
101 return mActions[index].action;
112 final Runnable action; field in class:HandlerActionQueue.HandlerAction
    [all...]
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/wizard/
GuidedStepAttributesTestFragment.java 56 public void onGuidedActionClicked(GuidedAction action) {
57 super.onGuidedActionFocused(action);
58 Callback callback = sCallbacks.get(action.getId());
60 callback.onActionClicked(this, action.getId());
62 LAST_CLICKED_ACTION_ID = action.getId();
67 public void onGuidedActionFocused(GuidedAction action) {
68 super.onGuidedActionFocused(action);
69 LAST_SELECTED_ACTION_ID = action.getId();
73 public boolean onSubGuidedActionClicked(GuidedAction action) {
74 super.onSubGuidedActionClicked(action);
    [all...]
  /external/eigen/bench/btl/generic_bench/timers/
STL_perf_analyzer.hh 26 template<class ACTION>
45 ACTION action(size);
51 action.initialize();
58 action.initialize();
59 action.calculate();
66 // cout << size <<" "<<baseline_time<<" "<<calculate_time<<" "<<corrected_time<<" "<<action.nb_op_base() << endl;
68 return action.nb_op_base()/(corrected_time*1000000.0);
69 //return action.nb_op_base()/(calculate_time*1000000.0);
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...]
  /external/vogar/src/vogar/
Mode.java 36 Task executeActionTask(Action action, boolean useLargeTimeout);
39 * Hook method called after action compilation.
41 Set<Task> installActionTasks(Action action, File jar);
45 * the given action.
47 Set<Task> cleanupTasks(Action action);
50 * Returns a VM for action execution.
56 VmCommandBuilder newVmCommandBuilder(Action action, File workingDirectory)
    [all...]
  /external/autotest/cli/
query_results 15 '-C', '--columns', action='store', dest='columns',
19 parser.add_option('-w', '--where', action='store', dest='condition',
24 '--test-attribute-field', action='append', default=[],
31 parser.add_option('--test-label-field', action='append', default=[],
34 parser.add_option('--iteration-result-field', action='append', default=[],
39 parser.add_option('--machine-label-field', action='append', default=[],
42 parser.add_option('--job-keyval-field', action='append', default=[],
45 parser.add_option('--iteration-attribute-field', action='append', default=[],
50 parser.add_option('-s', '--separator', action='store', default = ' | ',
52 parser.add_option('-n', '--nocount', action='store_true', default=False
    [all...]
  /system/core/init/
action_manager.cpp 31 void ActionManager::AddAction(std::unique_ptr<Action> action) {
32 actions_.emplace_back(std::move(action));
48 auto action = std::make_unique<Action>(true, nullptr, "<Builtin Action>", 0, name, local
52 action->AddCommand(func, name_vector, 0);
54 event_queue_.emplace(action.get());
55 actions_.emplace_back(std::move(action));
59 // Loop through the event queue until we have an action to execut
74 auto action = current_executing_actions_.front(); local
    [all...]
  /system/update_engine/common/
action_unittest.cc 17 #include "update_engine/common/action.h"
38 // This is a simple Action class for testing.
39 class ActionTestAction : public Action<ActionTestAction> {
59 ActionTestAction action; local
61 EXPECT_FALSE(action.in_pipe());
62 EXPECT_FALSE(action.out_pipe());
63 EXPECT_FALSE(action.processor());
64 EXPECT_FALSE(action.IsRunning());
67 action_processor.EnqueueAction(&action);
68 EXPECT_EQ(&action_processor, action.processor())
    [all...]
  /art/runtime/
runtime_linux.cc 54 struct sigaction action; local
55 memset(&action, 0, sizeof(action));
56 sigemptyset(&action.sa_mask);
57 action.sa_handler = SIG_DFL;
58 sigaction(signal_number, &action, nullptr);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeVisitor.cs 50 * 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)
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/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeVisitor.cs 52 * Visit every node in tree t and trigger an action for each node
57 * applying post action to this node.
60 public object Visit( object t, ITreeVisitorAction action )
64 if ( action != null && !isNil )
66 t = action.Pre( t ); // if rewritten, walk children of new t
71 Visit( child, action );
73 if ( action != null && !isNil )
74 t = action.Post( t );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeVisitor.java 42 /** 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) {
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/pdfium/fpdfsdk/
fsdk_actionhandler.h 26 bool DoAction_DocOpen(const CPDF_Action& action,
31 bool DoAction_Page(const CPDF_Action& action,
34 bool DoAction_Document(const CPDF_Action& action,
38 const CPDF_Action& action,
41 bool DoAction_Screen(const CPDF_Action& action,
45 bool DoAction_Link(const CPDF_Action& action,
47 bool DoAction_Field(const CPDF_Action& action,
59 bool ExecuteDocumentOpenAction(const CPDF_Action& action,
62 bool ExecuteDocumentPageAction(const CPDF_Action& action,
66 bool ExecuteFieldAction(const CPDF_Action& action,
    [all...]
  /cts/suite/audio_quality/test/
TaskCaseCommon.h 28 * Create TaskCase with setup and action as children
29 * No need to destroy setup and action
31 inline TaskCase* getTaskCase(TaskGeneric*& setup, TaskGeneric*& action)
37 action = factory.createTask(TaskGeneric::ETaskAction);
38 taskCase->addChild(action);
  /external/droiddriver/src/io/appium/droiddriver/validators/
ExemptScrollActionValidator.java 20 import io.appium.droiddriver.actions.Action;
29 public boolean isApplicable(UiElement element, Action action) {
30 return action instanceof ScrollAction;
34 public String validate(UiElement element, Action action) {

Completed in 499 milliseconds

12 3 4 5 6 7 8 91011>>