HomeSort by relevance Sort by last modified time
    Searched defs:actions (Results 101 - 125 of 428) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/widget/
ExploreByTouchHelper.java 80 /** Node provider that handles creating nodes and performing actions. */
357 * specified item. Automatically manages accessibility focus actions.
411 final int actions = node.getActions(); local
412 if ((actions & AccessibilityNodeInfo.ACTION_ACCESSIBILITY_FOCUS) != 0) {
416 if ((actions & AccessibilityNodeInfo.ACTION_CLEAR_ACCESSIBILITY_FOCUS) != 0) {
704 * action. Implementations must <b>never</b> manually add these actions.
723 * Implementations <b>must</b> handle any actions added manually in
730 * actions.
  /frameworks/base/media/java/android/media/session/
PlaybackState.java 280 bob.append(", actions=").append(mActions);
281 bob.append(", custom actions=").append(mCustomActions);
351 * Get the current actions available on this session. This should use a
352 * bitmask of the available actions.
375 * Get the list of custom actions.
494 long actions = 0; local
498 actions |= getActionForRccFlag((int) flag);
502 return actions;
508 public static int getRccControlFlagsFromActions(long actions) {
511 while (action <= actions && action < Integer.MAX_VALUE)
    [all...]
  /frameworks/compile/mclinker/tools/mcld/
Main.cpp 810 std::vector<Action> actions; local
812 actions.reserve(32);
826 actions.push_back(std::move(action));
829 actions.push_back(std::move(action));
833 actions.push_back(std::move(action));
846 actions.push_back(std::move(action));
854 actions.push_back(std::move(action));
857 actions.push_back(std::move(action));
861 actions.push_back(std::move(action));
870 actions.push_back(std::move(action))
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
ExploreByTouchHelper.java 78 /** Node provider that handles creating nodes and performing actions. */
357 * specified item. Automatically manages accessibility focus actions.
405 final int actions = node.getActions(); local
406 if ((actions & AccessibilityNodeInfoCompat.ACTION_ACCESSIBILITY_FOCUS) != 0) {
410 if ((actions & AccessibilityNodeInfoCompat.ACTION_CLEAR_ACCESSIBILITY_FOCUS) != 0) {
686 * action. Implementations must <b>never</b> manually add these actions.
716 * Implementations <b>must</b> handle any actions added manually in
723 * actions.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/
AboutActivity.java 307 public void onCreateActions(@NonNull List<GuidedAction> actions,
309 actions.add(new GuidedAction.Builder()
313 actions.add(new GuidedAction.Builder()
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
NewStorageActivity.java 152 public void onCreateActions(@NonNull List<GuidedAction> actions,
155 actions.add(new GuidedAction.Builder()
160 actions.add(new GuidedAction.Builder()
165 actions.add(new GuidedAction.Builder()
169 actions.add(new GuidedAction.Builder()
238 public void onCreateActions(@NonNull List<GuidedAction> actions,
240 actions.add(new GuidedAction.Builder()
UnmountActivity.java 227 public void onCreateActions(@NonNull List<GuidedAction> actions, Bundle savedInstanceState) {
228 actions.add(new GuidedAction.Builder()
232 actions.add(new GuidedAction.Builder()
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
Action.java 205 ArrayList<Action> actions = new ArrayList<Action>(); local
217 actions.add(action);
219 return actions;
247 * Returns the check set id this action is a part of. All actions in the same list with the
248 * same check set id are considered linked. When one of the actions within that set is selected
249 * that action becomes checked while all the other actions become unchecked.
DialogActivity.java 81 * Dialog Action Fragment actions starting index.
86 * Dialog Action Fragment actions.
113 ArrayList<Action> actions) {
115 Color.TRANSPARENT, actions);
120 int imageBackground, ArrayList<Action> actions) {
127 intent.putParcelableArrayListExtra(EXTRA_PARCELABLE_ACTIONS, actions);
134 ArrayList<Action> actions, Class<? extends DialogActivity> activityClass) {
136 actions, activityClass);
141 ArrayList<Action> actions, Class<? extends DialogActivity> activityClass) {
148 intent.putParcelableArrayListExtra(EXTRA_PARCELABLE_ACTIONS, actions);
209 ArrayList<Action> actions = local
    [all...]
  /system/core/adb/
usb_linux.cpp 673 struct sigaction actions; local
675 memset(&actions, 0, sizeof(actions));
676 sigemptyset(&actions.sa_mask);
677 actions.sa_flags = 0;
678 actions.sa_handler = sigalrm_handler;
679 sigaction(SIGALRM,& actions, NULL);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java 411 * the computation of the list of actions that should be taken then executes them.
490 final ActionBatch actions = new ActionBatch(); local
491 actions.add(new ActionBatch.InstallAfterDownloadAction(clientId,
493 actions.execute(context, new LogProblemReporter(TAG));
603 final ActionBatch actions = computeUpgradeTo(context, clientId, newMetadata); local
606 actions.execute(context, new LogProblemReporter(TAG));
748 final ActionBatch actions = new ActionBatch(); local
955 final ActionBatch actions = new ActionBatch(); local
1116 final ActionBatch actions = new ActionBatch(); local
    [all...]
  /prebuilts/misc/common/droiddriver/
droiddriver-0.9.jar 
  /cts/tools/dasm/src/dasm/
parser.java 800 protected CUP$actions action_obj;
805 action_obj = new CUP$actions();
880 class CUP$actions {
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
PlaybackOverlayActivity.java 131 long actions = PlaybackState.ACTION_PLAY | local
136 actions |= PlaybackState.ACTION_PAUSE;
139 return actions;
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 224 private static final RandomHasherAction[] actions = values(); field in class:HashTestUtils.RandomHasherAction
227 return actions[random.nextInt(actions.length)];
  /frameworks/support/v4/jellybean/android/support/v4/app/
NotificationCompatJellybean.java 295 Log.e(TAG, "Unable to access notification actions", e);
310 Log.e(TAG, "Unable to access notification actions", e);
327 sActionsField = Notification.class.getDeclaredField("actions");
331 Log.e(TAG, "Unable to access notification actions", e);
334 Log.e(TAG, "Unable to access notification actions", e);
347 NotificationCompatBase.Action[] actions = actionFactory.newArray(parcelables.size()); local
348 for (int i = 0; i < actions.length; i++) {
349 actions[i] = getActionFromBundle((Bundle) parcelables.get(i),
352 return actions;
369 NotificationCompatBase.Action[] actions) {
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryActionBar.java 295 final ArrayList<Integer> actions = mActions; local
304 clusterRunner.doCluster(actions.get(which).intValue());
  /packages/apps/Launcher3/src/com/android/launcher3/accessibility/
LauncherAccessibilityDelegate.java 202 final ArrayList<Integer> actions = getSupportedResizeActions(host, info); local
203 CharSequence[] labels = new CharSequence[actions.size()];
204 for (int i = 0; i < actions.size(); i++) {
205 labels[i] = mLauncher.getText(actions.get(i));
214 performResizeAction(actions.get(which), host, info);
224 ArrayList<Integer> actions = new ArrayList<>(); local
228 return actions;
235 actions.add(R.string.action_increase_width);
239 actions.add(R.string.action_decrease_width);
246 actions.add(R.string.action_increase_height)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AccountSyncSettings.java 198 ArrayList<Action> actions = new ArrayList<Action>(); local
246 actions.add(action);
253 Collections.sort(actions, ADAPTER_COMPARATOR);
264 actions.add(0, new Action.Builder()
268 return actions;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
AppLoadingTask.java 56 void onActionsLoaded(ArrayList<Action> actions);
110 ArrayList<Action> actions = new ArrayList<Action>(); local
172 actions.add(UserAppRestrictionsDialogFragment.createAction(mContext, packageName,
177 mListener.onActionsLoaded(actions);
183 UserAppRestrictionsDialogFragment.applyUserAppsStates(mSelectedPackages, actions,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
AddSupportJarAction.java 17 package com.android.ide.eclipse.adt.internal.actions;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DynamicContextMenu.java 122 // Remember how many static actions we have. Then each time the menu is
140 // Now add all the dynamic menu actions depending on the current selection.
149 * All previous dynamic menu actions have been removed and this method can now insert
150 * any new actions that depend on the current selection.
181 * Returns the list of node-specific actions applicable to the given
184 * @param nodes the collection of nodes to look up actions for
199 // We'll use the actions returned by the first node. Even when there
201 // the set of all selected nodes to that first action. Actions are required
202 // to work this way to facilitate multi selection and actions which apply
307 * Given a map from selection items to list of applicable actions (produce
368 List<RuleAction> actions = mCanvas.getRulesEngine().callGetContextMenu(node); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 69 * When actions are performed in the tool (like a paste action, or a drag from palette,
158 * any custom menu actions. Otherwise, a list of {@link RuleAction}.
168 List<RuleAction> actions = new ArrayList<RuleAction>(); local
169 rule.addContextMenuActions(actions, selectedNode);
170 Collections.sort(actions);
172 return actions;
211 * @param actions The list of actions to add layout actions into
216 * provide any custom menu actions. Otherwise, a list o
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecLocalDevice.java 41 * CEC commands that call for actions customized per device type.
49 // Normal actions timeout is 2s but some of them would have several sequence of timeout.
320 // Iterates all actions to check whether incoming message is consumed.
683 // Returns all actions matched with given class type.
687 List<T> actions = Collections.<T>emptyList(); local
690 if (actions.isEmpty()) {
691 actions = new ArrayList<T>();
693 actions.add((T) action);
696 return actions;
712 // Remove all actions matched with the given Class type
    [all...]
  /prebuilts/devtools/tools/lib/
hierarchyviewer2lib.jar 

Completed in 647 milliseconds

1 2 3 45 6 7 8 91011>>