Searched defs:actions (Results 1 - 10 of 10) sorted by relevance

/frameworks/compile/mclinker/unittests/
H A DInputTreeTest.cpp65 std::vector<InputAction*> actions; local
68 actions.push_back(new StartGroupAction(position++));
69 actions.push_back(new InputFileAction(position++, "path1"));
70 actions.push_back(new EndGroupAction(position++));
73 for (action = actions.begin(); action != actions.end(); ++action) {
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DPlaybackStateCompatApi21.java52 float speed, long actions, CharSequence errorMessage, long updateTime) {
56 stateObj.setActions(actions);
51 newInstance(int state, long position, long bufferedPosition, float speed, long actions, CharSequence errorMessage, long updateTime) argument
/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLinker.cpp272 std::vector<InputAction*> actions; local
273 actions.reserve(num_actions);
280 actions.push_back(new ScriptAction(0x0,
284 actions.push_back(new ContextAction(0x0));
285 actions.push_back(new MemoryAreaAction(0x0, FileHandle::ReadOnly));
295 actions.push_back(new DefSymAction(pos, *defsym));
304 actions.push_back(new InputFileAction(pos, *input));
305 actions.push_back(new ContextAction(pos));
306 actions.push_back(new MemoryAreaAction(pos, FileHandle::ReadOnly));
315 actions
[all...]
/frameworks/support/v4/api20/android/support/v4/app/
H A DNotificationCompatApi20.java118 return getActionCompatFromAction(notif.actions[actionIndex], actionFactory, remoteInputFactory);
146 * Get a list of notification compat actions by parsing actions stored within a list of
158 NotificationCompatBase.Action[] actions = actionFactory.newArray(parcelables.size());
159 for (int i = 0; i < actions.length; i++) {
161 actions[i] = getActionCompatFromAction(action, actionFactory, remoteInputFactory);
163 return actions;
168 * that matches what framework code would do to store an actions list in this way. In API20,
172 NotificationCompatBase.Action[] actions) {
173 if (actions
171 getParcelableArrayListForActions( NotificationCompatBase.Action[] actions) argument
[all...]
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java420 * actions were broadcast.
480 * actions were broadcast.
540 * is in discoverable mode and that the correct actions were broadcast.
583 * device is in in connectable mode and that the correct actions were broadcast.
626 * and that the correct actions were broadcast.
664 * and that the correct actions were broadcast.
738 * and that the correct actions were broadcast.
751 * and that the correct actions were broadcast.
837 * and that the correct actions were broadcast.
909 * profile is connected and that the correct actions wer
1389 addReceiver(BroadcastReceiver receiver, String[] actions) argument
[all...]
/frameworks/base/media/java/android/media/session/
H A DPlaybackState.java275 bob.append(", actions=").append(mActions);
276 bob.append(", custom actions=").append(mCustomActions);
346 * Get the current actions available on this session. This should use a
347 * bitmask of the available actions.
365 * Get the list of custom actions.
484 long actions = 0;
488 actions |= getActionForRccFlag((int) flag);
492 return actions;
498 public static int getRccControlFlagsFromActions(long actions) { argument
501 while (action <= actions
878 setActions(long actions) argument
[all...]
/frameworks/support/v4/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java221 float rate, long actions, CharSequence errorMessage, long updateTime) {
226 mActions = actions;
249 bob.append(", actions=").append(mActions);
315 * Get the current actions available on this session. This should use a
316 * bitmask of the available actions.
411 * app specific actions to {@link MediaControllerCompat Controllers}.
220 PlaybackStateCompat(int state, long position, long bufferedPosition, float rate, long actions, CharSequence errorMessage, long updateTime) argument
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java295 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());
348 for (int i = 0; i < actions.length; i++) {
349 actions[i] = getActionFromBundle((Bundle) parcelables.get(i),
352 return actions;
369 NotificationCompatBase.Action[] actions) {
368 getParcelableArrayListForActions( NotificationCompatBase.Action[] actions) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java334 * Notification extras key: the indices of actions to be shown in the compact view,
450 public ArrayList<Parcelable> getParcelableArrayListForActions(Action[] actions); argument
497 public ArrayList<Parcelable> getParcelableArrayListForActions(Action[] actions) { argument
613 Action[] actions) {
614 return NotificationCompatJellybean.getParcelableArrayListForActions(actions);
718 Action[] actions) {
719 return NotificationCompatApi20.getParcelableArrayListForActions(actions);
778 ArrayList<Action> actions) {
779 for (Action action : actions) {
1770 * to attach actions
612 getParcelableArrayListForActions( Action[] actions) argument
717 getParcelableArrayListForActions( Action[] actions) argument
777 addActionsToBuilder(NotificationBuilderWithActions builder, ArrayList<Action> actions) argument
2457 addActions(List<Action> actions) argument
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java840 * {@link #extras} key: the indices of actions to be shown in the compact view,
885 * to attach actions.
1099 * Wearable extender for notification actions. To add extensions to an action,
1293 * interface for invoking actions.
1295 public Action[] actions; field in class:Notification
1405 actions = parcel.createTypedArray(Action.CREATOR); // may be null
1498 if (this.actions != null) {
1499 that.actions = new Action[this.actions.length];
1500 for(int i=0; i<this.actions
4648 addActions(List<Action> actions) argument
[all...]

Completed in 1341 milliseconds