HomeSort by relevance Sort by last modified time
    Searched defs:action (Results 276 - 300 of 3010) sorted by null

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeVisEffectsAllPreferenceController.java 73 mMetricsFeatureProvider.action(mContext,
ZenModeVisEffectsCustomPreferenceController.java 81 mMetricsFeatureProvider.action(mContext,
ZenModeVisEffectsNonePreferenceController.java 72 mMetricsFeatureProvider.action(mContext,
  /packages/apps/Settings/tests/anomaly-tester/src/com/android/settings/anomaly/tester/service/
AnomalyService.java 27 * Service to run the anomaly action
38 final String action = intent.getStringExtra(AnomalyActions.KEY_ACTION); local
43 AnomalyActions.doAction(this, action, durationMs);
  /packages/apps/Settings/tests/unit/src/com/android/settings/fuelgauge/anomaly/action/
LocationCheckActionTest.java 16 package com.android.settings.fuelgauge.anomaly.action;
  /packages/apps/TV/common/src/com/android/tv/common/actions/
InputSetupActionUtils.java 24 /** Constants and static utilities for the Input Setup Action. */
28 * An intent action to launch setup activity of a TV input.
35 "com.android.tv.action.LAUNCH_INPUT_SETUP";
37 * A constant of the key to indicate a TV input ID for the intent action {@link
51 * A constant of the key to indicate an Activity launch intent for the intent action {@link
59 * An intent action to launch setup activity of a TV input.
71 "com.google.android.tv.action.LAUNCH_INPUT_SETUP";
85 * action {@link #INTENT_ACTION_INPUT_SETUP}.
123 String action = intent.getAction(); local
124 return INTENT_ACTION_INPUT_SETUP.equals(action)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlViewerActivity.java 41 final String action = intent.getAction(); local
45 if (Intent.ACTION_VIEW.equals(action) &&
54 "Entered EmlViewerActivity with wrong intent action or type: %s, %s",
55 action, type);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProviderBroadcastReceiver.java 34 String action = intent.getAction(); local
35 if (!CalendarAlarmManager.ACTION_CHECK_NEXT_ALARM.equals(action)
36 && !CalendarContract.ACTION_EVENT_REMINDER.equals(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)) {
  /packages/services/Telephony/tests/src/com/android/phone/tests/
SendInstantTextTestService.java 47 String action = intent.getAction(); local
50 Log.i(TAG, "Received instant response message. action=" + action
  /system/bt/stack/avdt/
avdt_scb.cc 68 /* action function list */
137 /* Action 1 Action 2 Next state */
238 /* Action 1 Action 2 Next state */
339 /* Action 1 Action 2 Next state */
440 /* Action 1 Action 2 Next state */
541 /* Action 1 Action 2 Next state *
760 uint8_t action; local
    [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/extras/memory_replay/
Threads.cpp 29 #include "Action.h"
37 Action* action = thread->GetAction(); local
38 thread->AddTimeNsecs(action->Execute(thread->pointers()));
39 bool end_thread = action->EndThread();
60 if (Thread::ACTION_SIZE < Action::MaxActionSize()) {
61 err(1, "Thread action size is too small: ACTION_SIZE %zu, max size %zu\n",
62 Thread::ACTION_SIZE, Action::MaxActionSize());
  /system/extras/simpleperf/scripts/
binary_cache_builder.py 236 action='append') variable
237 parser.add_argument('--disable_adb_root', action='store_true', help=
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
VoicemailErrorAlert.java 28 import com.android.dialer.voicemail.listui.error.VoicemailErrorMessage.Action;
128 Action primaryAction = message.getActions().get(0);
132 Action secondaryAction = message.getActions().get(1);
157 VoicemailErrorMessage.Action action = message.getActions().get(i); local
159 if (action.isRaised()) {
166 button.setText(action.getText());
167 button.setOnClickListener(action.getListener());
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
DeleteConversationAction.java 17 package com.android.messaging.datamodel.action;
44 * Action used to delete a conversation.
46 public class DeleteConversationAction extends Action implements Parcelable {
50 final DeleteConversationAction action = new DeleteConversationAction(conversationId, local
52 action.start();
ProcessDeliveryReportAction.java 17 package com.android.messaging.datamodel.action;
38 public class ProcessDeliveryReportAction extends Action implements Parcelable {
50 final ProcessDeliveryReportAction action = new ProcessDeliveryReportAction(uri, status); local
51 action.start();
ActionServiceImpl.java 17 package com.android.messaging.datamodel.action;
47 * Start action by sending intent to the service
48 * @param action - action to start
50 protected static void startAction(final Action action) {
53 actionBundle.putParcelable(BUNDLE_ACTION, action);
55 action.markStart();
60 * Schedule an action to run after specified delay using alarm manager to send pendingintent
61 * @param action - action to star
261 Action action; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoringAction.java 27 import org.eclipse.jface.action.Action;
28 import org.eclipse.jface.action.IAction;
59 * Examine the selection to determine if the action should be enabled or not.
64 public void selectionChanged(IAction action, ISelection selection) {
71 // At that point, just enable the action and later decide if it's valid when it actually
95 action.setEnabled((mTextSelection != null || mTreeSelection != null)
103 public abstract void run(IAction action);
141 private static class ActionWrapper extends Action {
154 VisualRefactoringAction action; local
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
GuidedActionsStylist.java 82 * {@link #getItemViewType(GuidedAction)} method to change the layout used to display each action.
86 * provides a layout id for the action.
90 * <li> Override {@link #onUpdateActivatorView(ViewHolder, GuidedAction)} to update action.
145 * Default viewType that associated with default layout Id for the action item.
171 * ViewHolder caches information about the action item layouts' subviews. Subclasses of {@link
213 * Constructs an ViewHolder for sub action and caches the relevant subviews.
345 * @return True if bound action is inside {@link GuidedAction#getSubActions()}, false
353 * @return Currently bound action.
558 * Returns the VerticalGridView that displays the sub actions list of an expanded action.
559 * @return The VerticalGridView that displays the sub actions list of an expanded action
849 GuidedAction action = vh.getAction(); local
    [all...]
  /external/vogar/src/vogar/
Driver.java 53 private final Map<String, Action> actions = Collections.synchronizedMap(
54 new LinkedHashMap<String, Action>());
87 for (Action action : actions.values()) {
88 action.setUserDir(new File(run.runnerDir, action.getName()));
89 Outcome outcome = outcomes.get(action.getName());
92 } else if (run.expectationStore.get(action.getName()).getResult() == Result.UNSUPPORTED) {
93 addEarlyResult(new Outcome(action.getName(), Result.UNSUPPORTED,
96 enqueueActionTasks(action);
197 Action action = new Action(className, className, null, null, null); local
198 actions.put(action.getName(), action); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 31 public class CategoryAdapter extends ArrayAdapter<Action> {
55 Action action = getItem(i); local
56 action.clearBitmap();
70 public void add(Action action) {
71 super.add(action);
72 action.setAdapter(this);
97 Action action = getItem(position) local
156 Action action = getItem(i); local
168 Action action = getItem(i); local
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionServiceSystemTest.java 17 package com.android.messaging.datamodel.action;
34 import com.android.messaging.datamodel.action.ActionMonitor.ActionCompletedListener;
35 import com.android.messaging.datamodel.action.ActionMonitor.ActionExecutedListener;
36 import com.android.messaging.datamodel.action.ActionTestHelpers.ResultTracker;
37 import com.android.messaging.datamodel.action.ActionTestHelpers.StubBackgroundWorker;
38 import com.android.messaging.datamodel.action.ActionTestHelpers.StubConnectivityUtil;
39 import com.android.messaging.datamodel.action.ActionTestHelpers.StubLoader;
55 final Action action, final Object data, final Object result) {
56 final TestChatAction test = (TestChatAction) action;
103 final TestChatAction action = parcel.readParcelable(mContext.getClassLoader()); local
148 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter); local
195 final TestChatAction action = local
237 final TestChatAction action = new TestChatAction(monitor.getActionKey(), parameter); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiPackageAttributeNode.java 230 ShowInPackageViewAction action = new ShowInPackageViewAction(site); local
231 action.run(fragment);
232 // This action's run() doesn't provide the status (although internally it could)
301 OpenNewPackageWizardAction action = new OpenNewPackageWizardAction(); local
304 action.setSelection(new StructuredSelection(project));
305 action.run();
307 IJavaElement element = action.getCreatedElement();
  /art/runtime/
runtime_common.cc 463 struct sigaction action; local
464 memset(&action, 0, sizeof(action));
465 sigemptyset(&action.sa_mask);
466 action.sa_sigaction = newact;
468 action.sa_flags |= SA_SIGINFO;
470 action.sa_flags |= SA_ONSTACK;
473 rc += sigaction(SIGABRT, &action, oldact);
474 rc += sigaction(SIGBUS, &action, oldact);
475 rc += sigaction(SIGFPE, &action, oldact)
    [all...]

Completed in 1272 milliseconds

<<11121314151617181920>>