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

1 2 3 45 6 7 8 91011>>

  /external/vogar/src/vogar/tasks/
BuildActionTask.java 31 import vogar.Action;
45 * Compiles classes for the given action and makes them ready for execution.
50 private final Action action; field in class:BuildActionTask
55 public BuildActionTask(Run run, Action action, Driver driver, File outputFile) {
56 super("build " + action.getName());
58 this.action = action;
65 compile(action, outputFile)
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/core/instrumentation/
MetricsFeatureProvider.java 63 * Logs a user action. Includes the elapsed time since the containing
66 public void action(VisibilityLoggerMixin visibilityLogger, int category, int value) { method in class:MetricsFeatureProvider
68 writer.action(category, value,
74 * Logs a user action. Includes the elapsed time since the containing
77 public void action(VisibilityLoggerMixin visibilityLogger, int category, boolean value) { method in class:MetricsFeatureProvider
79 writer.action(category, value,
84 public void action(Context context, int category, Pair<Integer, Object>... taggedData) { method in class:MetricsFeatureProvider
86 writer.action(context, category, taggedData);
90 /** @deprecated use {@link #action(VisibilityLoggerMixin, int, int)} */
92 public void action(Context context, int category, int value) method in class:MetricsFeatureProvider
100 public void action(Context context, int category, boolean value) { method in class:MetricsFeatureProvider
106 public void action(Context context, int category, String pkg, method in class:MetricsFeatureProvider
139 final String action = intent.getAction(); local
144 action(context, MetricsEvent.ACTION_SETTINGS_TILE_CLICK, action, method
152 action(context, MetricsEvent.ACTION_SETTINGS_TILE_CLICK, cn.flattenToString(), method
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
BackgroundWorkerService.java 17 package com.android.messaging.datamodel.action;
56 * Queue a list of requests from action service to this worker
58 public static void queueBackgroundWork(final List<Action> actions) {
59 for (final Action action : actions) {
60 startServiceWithAction(action, 0);
72 protected static final String EXTRA_ACTION = "action";
77 * Queue action intent to the BackgroundWorkerService after acquiring wake lock
79 private static void startServiceWithAction(final Action action,
121 final Action action = intent.getParcelableExtra(EXTRA_ACTION); local
    [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) {
  /external/python/cpython3/Lib/
argparse.py 43 - Action -- The base class for parser actions. Typically actions are
45 the action= argument of add_argument(). However, for greater
46 customization of ArgumentParser actions, subclasses of Action may
47 be defined and passed as the action= argument.
76 'Action',
256 def add_argument(self, action):
257 if action.help is not SUPPRESS:
261 invocations = [get_invocation(action)]
262 for subaction in self._iter_indented_subactions(action):
272 self._add_item(self._format_action, [action])
    [all...]
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsBackgroundService.java 37 String action = intent.getStringExtra(KEY_ACTION); local
39 Log.i(TAG, "Starting " + action + " from background service as request " + requestCode);
42 BatteryStatsBgVsFgActions.checkAppState(this, true, action, requestCode);
44 doAction(this, action, requestCode);
  /cts/suite/audio_quality/test/
TaskProcessTest.cpp 29 TaskGeneric* action = NULL; local
30 mTestCase = getTaskCase(setup, action);
33 ASSERT_TRUE(action != NULL);
41 ASSERT_TRUE(action->addChild(mSequential));
  /external/curl/lib/
sigpipe.h 48 struct sigaction action; local
52 action = ig->old_pipe_act;
54 action.sa_handler = SIG_IGN;
55 sigaction(SIGPIPE, &action, NULL);
  /frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/annotations/
ProvidesInterface.java 22 * current version and optionally their action to implement the plugin.
28 String action() default "";
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardDismissHandler.java 27 * Executes an action that requres the screen to be unlocked, showing the keyguard if
30 void executeWhenUnlocked(OnDismissAction action);
  /frameworks/layoutlib/bridge/src/android/view/
HandlerActionQueue_Delegate.java 32 /*package*/ static void postDelayed(HandlerActionQueue thisQueue, Runnable action, long
  /frameworks/support/core/ktx/src/main/java/androidx/core/content/
SharedPreferences.kt 41 action: SharedPreferences.Editor.() -> Unit
44 action(editor)
  /libcore/ojluni/src/main/java/sun/security/action/
GetBooleanAction.java 26 package sun.security.action;
30 * as a privileged action.
36 * property named <code>"prop"</code> as a privileged action: <p>
  /packages/apps/DeskClock/src/com/android/deskclock/events/
EventTracker.java 26 * @param action indicates how the entity was altered; e.g. create, delete, fire, etc.
27 * @param label indicates where the action originated; e.g. DeskClock (UI), Intent,
30 void sendEvent(@StringRes int category, @StringRes int action, @StringRes int label);
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkReceiver.java 29 String action = intent.getAction(); local
30 if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
37 } else if (Intent.ACTION_SHUTDOWN.equals(action)) {
41 Log.e(TAG, "Received unknown intent: " + action);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
LxxActionTestsBase.java 17 package com.android.inputmethod.keyboard.action;
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestConnectionServiceReceiver.java 43 String action = intent.getAction(); local
44 Log.v(TAG, "onReceive: " + action);
52 if (INTENT_SWITCH_PHONE_ACCOUNT.equals(action)) {
54 } else if (INTENT_SWITCH_PHONE_ACCOUNT_WRONG.equals(action)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
IClientAction.java 21 import org.eclipse.jface.action.Action;
24 Action getAction();
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/action/
BackgroundAction.java 17 package com.android.hierarchyviewer.ui.action;
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/scenario/
Scenario.py 53 :param actionGathererFileName: conf file which allows to reduce action repetition
66 # Simplify the way to get an action behaviour
89 :param actionGathererFileName: conf file which allows to reduce action repetition
100 # Parsing the action Gatherer file which allows defining new
107 for action in scenarioActions:
108 actionDefinedType = self.__getActionType(action)
113 actionValue = action.pop(actionDefinedType)
134 action[self.__getActionType(actionGatherer)] = actionValue
138 def __getActionType(self, action):
140 Return the type of an action (the key
    [all...]
  /external/toolchain-utils/cwp/performance/
experiment_gen.py 39 action='store',
44 action='store',
49 action='store',
53 action='store',
57 action='store',
61 action='append',
65 action='append',
69 action='store',
74 action='store',
79 action='store_true'
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
argparse.py 43 - Action -- The base class for parser actions. Typically actions are
45 the action= argument of add_argument(). However, for greater
46 customization of ArgumentParser actions, subclasses of Action may
47 be defined and passed as the action= argument.
75 'Action',
255 def add_argument(self, action):
256 if action.help is not SUPPRESS:
260 invocations = [get_invocation(action)]
261 for subaction in self._iter_indented_subactions(action):
271 self._add_item(self._format_action, [action])
    [all...]
  /external/python/cpython2/Lib/
argparse.py 43 - Action -- The base class for parser actions. Typically actions are
45 the action= argument of add_argument(). However, for greater
46 customization of ArgumentParser actions, subclasses of Action may
47 be defined and passed as the action= argument.
75 'Action',
255 def add_argument(self, action):
256 if action.help is not SUPPRESS:
260 invocations = [get_invocation(action)]
261 for subaction in self._iter_indented_subactions(action):
271 self._add_item(self._format_action, [action])
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
argparse.py 43 - Action -- The base class for parser actions. Typically actions are
45 the action= argument of add_argument(). However, for greater
46 customization of ArgumentParser actions, subclasses of Action may
47 be defined and passed as the action= argument.
75 'Action',
253 def add_argument(self, action):
254 if action.help is not SUPPRESS:
258 invocations = [get_invocation(action)]
259 for subaction in self._iter_indented_subactions(action):
269 self._add_item(self._format_action, [action])
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
argparse.py 43 - Action -- The base class for parser actions. Typically actions are
45 the action= argument of add_argument(). However, for greater
46 customization of ArgumentParser actions, subclasses of Action may
47 be defined and passed as the action= argument.
75 'Action',
253 def add_argument(self, action):
254 if action.help is not SUPPRESS:
258 invocations = [get_invocation(action)]
259 for subaction in self._iter_indented_subactions(action):
269 self._add_item(self._format_action, [action])
    [all...]

Completed in 1707 milliseconds

1 2 3 45 6 7 8 91011>>