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

1 23 4 5 6 7 8 91011>>

  /external/bison/lib/
fatal-signal.c 1 /* Emergency actions in case of a fatal signal.
112 /* Type of an entry in the actions array.
121 /* The registered cleanup actions. */
123 static actions_entry_t * volatile actions = static_actions; variable
163 action = actions[n].action;
218 /* Extend the actions array. Note that we cannot use xrealloc(),
221 actions_entry_t *old_actions = actions;
233 actions = new_actions;
235 /* Now we can free the old actions array. */
242 actions[actions_count]. *
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
MediaControllerGlue.java 186 long actions = mMediaController.getPlaybackState().getActions(); local
187 if ((actions & PlaybackStateCompat.ACTION_PLAY_PAUSE) != 0) {
190 if ((actions & PlaybackStateCompat.ACTION_SKIP_TO_NEXT) != 0) {
193 if ((actions & PlaybackStateCompat.ACTION_SKIP_TO_PREVIOUS) != 0) {
196 if ((actions & PlaybackStateCompat.ACTION_FAST_FORWARD) != 0) {
199 if ((actions & PlaybackStateCompat.ACTION_REWIND) != 0) {
  /frameworks/support/v4/api20/android/support/v4/app/
NotificationCompatApi20.java 119 return getActionCompatFromAction(notif.actions[actionIndex], actionFactory, remoteInputFactory);
147 * Get a list of notification compat actions by parsing actions stored within a list of
159 NotificationCompatBase.Action[] actions = actionFactory.newArray(parcelables.size()); local
160 for (int i = 0; i < actions.length; i++) {
162 actions[i] = getActionCompatFromAction(action, actionFactory, remoteInputFactory);
164 return actions;
169 * that matches what framework code would do to store an actions list in this way. In API20,
173 NotificationCompatBase.Action[] actions) {
174 if (actions == null)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
FormatAsPublicStepFragment.java 79 public void onCreateActions(@NonNull List<GuidedAction> actions, Bundle savedInstanceState) {
80 actions.add(new GuidedAction.Builder()
85 actions.add(new GuidedAction.Builder()
90 actions.add(new GuidedAction.Builder()
BackupAppsStepFragment.java 129 public void onCreateActions(@NonNull List<GuidedAction> actions, Bundle savedInstanceState) {
133 actions.addAll(getAppActions(true, entries));
140 final List<GuidedAction> actions = new ArrayList<>(entries.size()); local
142 final int index = actions.size();
145 actions.add(new GuidedAction.Builder()
162 return actions;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
xtestext1proto.h 73 * This defines the maximum size of a list of input actions
138 * more user input actions to report to the client. It must
145 CARD8 actions[XTestACTIONS_SIZE]; member in struct:__anon30430
168 * These are the definitions for key/button motion input actions.
177 * This is the definition for pointer jump input actions.
189 * actions.
211 * there are no more input actions in an XTestInputAction event.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
xtestext1proto.h 73 * This defines the maximum size of a list of input actions
138 * more user input actions to report to the client. It must
145 CARD8 actions[XTestACTIONS_SIZE]; member in struct:__anon32298
168 * These are the definitions for key/button motion input actions.
177 * This is the definition for pointer jump input actions.
189 * actions.
211 * there are no more input actions in an XTestInputAction event.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
FixProjectAction.java 17 package com.android.ide.eclipse.adt.internal.actions;
SdkManagerAction.java 17 package com.android.ide.eclipse.adt.internal.actions;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 125 DebugEventListener actions,
149 actions, visitedStates);
162 LexerActionGetTokenType actions = new LexerActionGetTokenType(grammar); local
163 scan(startRule, actions, visitedStates);
164 return actions.token;
168 DebugEventListener actions,
186 actions, visitedStates);
198 ParseTreeBuilder actions = new ParseTreeBuilder(grammar.name); local
200 parse(startRule, actions, visitedStates);
207 return actions.getTree()
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 224 ArrayList<Action> actions = new ArrayList<>(); local
230 actions.add(new Action.Builder()
235 actions.add(new Action.Builder()
242 actions.add(new Action.Builder()
249 return actions;
272 final ArrayList<Action> actions = getActions(); local
274 final Fragment actionFragment = ActionFragment.newInstance(actions);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DaydreamActivity.java 174 ArrayList<Action> actions = new ArrayList<>(); local
175 actions.add(new Action.Builder().key(ActionType.SELECT.name())
178 actions.add(new Action.Builder()
194 actions.add(new Action.Builder()
199 actions.add(new Action.Builder().key(ActionType.TEST.name())
202 return actions;
226 ArrayList<Action> actions = new ArrayList<>(); local
234 actions.add(sleepAction);
236 return actions;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/privacy/
PrivacyActivity.java 188 ArrayList<Action> actions = new ArrayList<Action>(); local
189 actions.add(new Action.Builder()
194 actions.add(new Action.Builder()
199 return actions;
203 ArrayList<Action> actions = new ArrayList<Action>(); local
204 actions.add(new Action.Builder()
209 actions.add(new Action.Builder()
214 return actions;
222 ArrayList<Action> actions = new ArrayList<Action>(); local
223 actions.add(ActionBehavior.ON.toAction(new ActionKey
283 ArrayList<Action> actions = new ArrayList<Action>(); local
330 ArrayList<Action> actions = new ArrayList<Action>(); local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
AppRestrictionsManager.java 41 * Handles all aspects of DialogFragment Actions for setting individual app restrictions.
46 void onRestrictionActionsLoaded(String packageName, ArrayList<Action> actions);
93 * @param fragment THe fragment for which DialogFragment actions are being managed.
97 * @param listener a listener for when restriction actions are ready to be displayed.
128 ArrayList<Action> actions = new ArrayList<>(); local
131 actions.add(new Action.Builder()
138 actions.add(new Action.Builder()
162 actions.add(new Action.Builder()
185 actions.add(new Action.Builder()
198 if (!actions.isEmpty())
285 ArrayList<Action> actions = new ArrayList<>(); local
    [all...]
RestrictedProfileDialogFragment.java 154 .actions(getMainMenuActions()).build();
184 public void onActionsLoaded(ArrayList<Action> actions) {
186 for(Action action : actions) {
229 .actions(getConfigActions()).build();
362 ArrayList<Action> actions = new ArrayList<>(); local
365 actions.add(new Action.Builder()
369 actions.add(new Action.Builder()
373 actions.add(new Action.Builder()
378 actions.add(new Action.Builder()
384 actions.add(new Action.Builder(
393 ArrayList<Action> actions = new ArrayList<>(); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.touchpoint.natives_1.0.200.v20100503a.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.natives_1.1.100.v20130327-2119.jar 
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
org.eclipse.equinox.p2.publisher_1.3.0.v20140129-1405.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.natives_1.1.100.v20130327-2119.jar 
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
org.eclipse.equinox.p2.publisher_1.3.0.v20130509-0110.jar 
  /prebuilts/devtools/tools/lib/
hierarchyviewer2.jar 
uiautomatorviewer.jar 
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
MultiPagedForm.java 289 * @param actions the actions the ActionFragment should display.
290 * @param selectedAction the action in actions that is currently selected,
292 * @return an ActionFragment displaying the given actions.
294 protected ActionFragment getActionFragment(FormPage formPage, ArrayList<Action> actions,
296 ActionFragment actionFragment = ActionFragment.newInstance(actions);
298 int indexOfSelection = actions.indexOf(selectedAction);
311 * @param actions the actions the ActionFragment should display.
314 protected ActionFragment getResultActionFragment(ArrayList<Action> actions) {
470 ArrayList<Action> actions = new ArrayList<Action>(); local
478 ArrayList<Action> actions = new ArrayList<Action>(); local
500 ArrayList<Action> actions = getActions(formPage); local
    [all...]

Completed in 694 milliseconds

1 23 4 5 6 7 8 91011>>