Searched refs:action (Results 1 - 25 of 668) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/tests/sandbox/
H A Dmonkey.c199 #define _(entryState, action, probability) {entryState, action, probability, #action, 0},
296 printf("state %d action %s count %u\n",
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jar ... Result result void attach (com.squareup.picasso.Action) com.squareup.picasso.Action action boolean loggingEnabled ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jar ... Result result void attach (com.squareup.picasso.Action) com.squareup.picasso.Action action boolean loggingEnabled ...
/frameworks/support/transition/base/android/support/transition/
H A DSceneImpl.java37 public abstract void setEnterAction(Runnable action); argument
39 public abstract void setExitAction(Runnable action); argument
/frameworks/support/transition/ics/android/support/transition/
H A DSceneIcs.java53 public void setEnterAction(Runnable action) { argument
54 mScene.setEnterAction(action);
58 public void setExitAction(Runnable action) { argument
59 mScene.setExitAction(action);
H A DScenePort.java147 * Exiting a scene runs the {@link #setExitAction(Runnable) exit action}
163 * an {@link #setEnterAction(Runnable)} enter action}, or a
194 * action, and possibly an exit action as well. An enter action
202 * @param action The runnable whose {@link Runnable#run() run()} method will
208 public void setEnterAction(Runnable action) { argument
209 mEnterAction = action;
216 * action, and possibly an exit action a
229 setExitAction(Runnable action) argument
[all...]
/frameworks/support/transition/kitkat/android/support/transition/
H A DSceneWrapper.java36 public void setEnterAction(Runnable action) { argument
37 mScene.setEnterAction(action);
41 public void setExitAction(Runnable action) { argument
42 mScene.setExitAction(action);
/frameworks/support/transition/src/android/support/transition/
H A DScene.java146 * Exiting a scene runs the {@link #setExitAction(Runnable) exit action}
158 * an {@link #setEnterAction(Runnable)} enter action}, or a
171 * action, and possibly an exit action as well. An enter action
179 * @param action The runnable whose {@link Runnable#run() run()} method will
184 public void setEnterAction(@Nullable Runnable action) { argument
185 mImpl.setEnterAction(action);
192 * action, and possibly an exit action a
204 setExitAction(@ullable Runnable action) argument
[all...]
/frameworks/support/v13/java/android/support/v13/view/inputmethod/
H A DInputConnectionCompat.java89 public boolean performPrivateCommand(String action, Bundle data) {
90 if (BaseInputContentInfoCompatImpl.handlePerformPrivateCommand(action, data,
94 return super.performPrivateCommand(action, data);
100 @Nullable String action,
103 if (!TextUtils.equals(COMMIT_CONTENT_ACTION, action)) {
99 handlePerformPrivateCommand( @ullable String action, @NonNull Bundle data, @NonNull OnCommitContentListener onCommitContentListener) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DGuidedStepFragment.java347 * Callback invoked when an action is taken by the user. Subclasses should override in
349 * @param action The chosen action.
351 public void onGuidedActionClicked(GuidedAction action) { argument
355 * Callback invoked when an action in sub actions is taken by the user. Subclasses should
358 * @param action The chosen action.
361 public boolean onSubGuidedActionClicked(GuidedAction action) { argument
373 * Expand a given action's sub actions list.
374 * @param action GuidedActio
377 expandSubActions(GuidedAction action) argument
404 onGuidedActionFocused(GuidedAction action) argument
414 onGuidedActionEdited(GuidedAction action) argument
423 onGuidedActionEditCanceled(GuidedAction action) argument
436 onGuidedActionEditedAndProceed(GuidedAction action) argument
1160 getAutoRestoreKey(GuidedAction action) argument
1169 getButtonAutoRestoreKey(GuidedAction action) argument
1173 isSaveEnabled(GuidedAction action) argument
[all...]
H A DGuidedStepSupportFragment.java349 * Callback invoked when an action is taken by the user. Subclasses should override in
351 * @param action The chosen action.
353 public void onGuidedActionClicked(GuidedAction action) { argument
357 * Callback invoked when an action in sub actions is taken by the user. Subclasses should
360 * @param action The chosen action.
363 public boolean onSubGuidedActionClicked(GuidedAction action) { argument
375 * Expand a given action's sub actions list.
376 * @param action GuidedActio
379 expandSubActions(GuidedAction action) argument
406 onGuidedActionFocused(GuidedAction action) argument
416 onGuidedActionEdited(GuidedAction action) argument
425 onGuidedActionEditCanceled(GuidedAction action) argument
438 onGuidedActionEditedAndProceed(GuidedAction action) argument
1162 getAutoRestoreKey(GuidedAction action) argument
1171 getButtonAutoRestoreKey(GuidedAction action) argument
1175 isSaveEnabled(GuidedAction action) argument
[all...]
H A DPlaybackControlGlue.java56 * <p>Provide a click listener on your fragment and if an action is clicked, call
58 * but if you do a click listener will be installed on the fragment and recognized action clicks
437 * Handles action clicks. A subclass may override this add support for additional actions.
440 public void onActionClicked(Action action) { argument
441 dispatchAction(action, null);
467 Action action = mControlsRow.getActionForKeyCode(mPrimaryActionsAdapter, keyCode);
468 if (action != null) {
469 if (action == mPrimaryActionsAdapter.lookup(ACTION_PLAY_PAUSE) ||
470 action == mPrimaryActionsAdapter.lookup(ACTION_REWIND) ||
471 action
486 dispatchAction(Action action, KeyEvent keyEvent) argument
[all...]
H A DPlaybackControlSupportGlue.java58 * <p>Provide a click listener on your fragment and if an action is clicked, call
60 * but if you do a click listener will be installed on the fragment and recognized action clicks
439 * Handles action clicks. A subclass may override this add support for additional actions.
442 public void onActionClicked(Action action) { argument
443 dispatchAction(action, null);
469 Action action = mControlsRow.getActionForKeyCode(mPrimaryActionsAdapter, keyCode);
470 if (action != null) {
471 if (action == mPrimaryActionsAdapter.lookup(ACTION_PLAY_PAUSE) ||
472 action == mPrimaryActionsAdapter.lookup(ACTION_REWIND) ||
473 action
488 dispatchAction(Action action, KeyEvent keyEvent) argument
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAbstractMediaItemPresenter.java61 * media details or each individual action views.
133 * Sets the action presenter rendering each optional custom action within each media item row.
218 * (or reusing the existing) action view holders, and populating them with the actions'
278 int findActionIndex(MultiActionsProvider.MultiAction action) { argument
281 if (mMediaItemRowActions[i] == action) {
290 * Notifies an action has changed in this media row and the UI needs to be updated
291 * @param action The action whose state has changed
293 public void notifyActionChanged(MultiActionsProvider.MultiAction action) { argument
[all...]
H A DActionPresenterSelector.java33 Action action = (Action) item;
34 if (TextUtils.isEmpty(action.getLabel2())) {
68 Action action = (Action) item;
70 vh.mAction = action;
71 vh.mButton.setText(action.getLabel1());
90 Action action = (Action) item;
92 Drawable icon = action.getIcon();
93 vh.mAction = action;
112 CharSequence line1 = action.getLabel1();
113 CharSequence line2 = action
[all...]
H A DControlButtonPresenterSelector.java94 Action action = (Action) item;
96 vh.mIcon.setImageDrawable(action.getIcon());
98 if (action.getIcon() == null) {
99 vh.mLabel.setText(action.getLabel1());
104 CharSequence contentDescription = TextUtils.isEmpty(action.getLabel2()) ?
105 action.getLabel1() : action.getLabel2();
H A DDetailsOverviewRow.java267 * @param action The Action to add.
271 public final void addAction(Action action) { argument
272 getArrayObjectAdapter().add(action);
281 * @param action The Action to add.
285 public final void addAction(int pos, Action action) { argument
286 getArrayObjectAdapter().add(pos, action);
293 * @param action The Action to remove.
298 public final boolean removeAction(Action action) { argument
299 return getArrayObjectAdapter().remove(action);
339 * Returns the Action associated with the given keycode, or null if no associated action exist
[all...]
H A DFullWidthDetailsOverviewRowPresenter.java45 * FullWidthDetailsOverviewRowPresenter is made in three parts: logo view on the left, action list view on
751 View action = viewHolder.getActionsRow();
752 MarginLayoutParams lpActions = (MarginLayoutParams) action.getLayoutParams();
756 action.setLayoutParams(lpActions);
H A DGridLayoutManager.java234 RecyclerView.State state, Action action) {
246 action.update(dx, dy, time, mDecelerateInterpolator);
336 protected void updateActionForInterimTarget(Action action) { argument
340 super.updateActionForInterimTarget(action);
3267 public boolean performAccessibilityAction(Recycler recycler, State state, int action, argument
3270 switch (action) {
233 onTargetFound(View targetView, RecyclerView.State state, Action action) argument
H A DGuidedAction.java30 * A data class which represents an action within a {@link
34 * A GuidedAction typically represents a single action a user may take, but may also represent a
63 * When finishing editing, goes to next action.
67 * When finishing editing, stay on current action.
72 * Id of standard OK action.
77 * Id of standard Cancel action.
82 * Id of standard Finish action.
87 * Id of standard Finish action.
92 * Id of standard Yes action.
97 * Id of standard No action
160 applyValues(GuidedAction action) argument
[all...]
H A DGuidedActionAdapter.java63 * Called when the user clicks on an action.
65 public void onGuidedActionClicked(GuidedAction action); argument
75 * Called when the user focuses on an action.
77 public void onGuidedActionFocused(GuidedAction action); argument
86 * Called when the user exits edit mode on an action.
88 public void onGuidedActionEditCanceled(GuidedAction action); argument
91 * Called when the user exits edit mode on an action and process confirm button in IME.
93 public long onGuidedActionEditedAndProceed(GuidedAction action); argument
119 GuidedAction action = avh.getAction();
120 if (action
191 indexOf(GuidedAction action) argument
[all...]
H A DGuidedActionAdapterGroup.java35 * Internal implementation manages a group of GuidedActionAdapters, control the next action after
74 boolean focusToNextAction(GuidedActionAdapter adapter, GuidedAction action, long nextActionId) { argument
78 index = adapter.indexOf(action);
104 // open Ime on next action.
108 // close IME and focus to next (not editable) action
176 if (DEBUG_EDIT) Log.v(TAG_EDIT, "closeIme no next action");
184 GuidedAction action = avh.getAction();
186 if (action.getEditDescription() != null) {
187 action.setEditDescription(v.getText());
189 action
[all...]
H A DGuidedActionsStylist.java74 * {@link #getItemViewType(GuidedAction)} method to change the layout used to display each action.
78 * provides a layout id for the action.
82 * <li> Override {@link #onUpdateActivatorView(ViewHolder, GuidedAction)} to update action.
137 * Default viewType that associated with default layout Id for the action item.
162 * ViewHolder caches information about the action item layouts' subviews. Subclasses of {@link
203 * Constructs an ViewHolder for sub action and caches the relevant subviews.
335 * @return True if bound action is inside {@link GuidedAction#getSubActions()}, false
343 * @return Currently bound action.
499 * Returns the VerticalGridView that displays the sub actions list of an expanded action.
500 * @return The VerticalGridView that displays the sub actions list of an expanded action
528 getItemViewType(GuidedAction action) argument
620 onBindViewHolder(ViewHolder vh, GuidedAction action) argument
695 setupImeOptions(ViewHolder vh, GuidedAction action) argument
706 setEditingMode(ViewHolder vh, GuidedAction action, boolean editing) argument
712 onEditingModeChange(ViewHolder vh, GuidedAction action, boolean editing) argument
827 onBindCheckMarkView(ViewHolder vh, GuidedAction action) argument
854 onBindActivatorView(ViewHolder vh, GuidedAction action) argument
879 onUpdateActivatorView(ViewHolder vh, GuidedAction action) argument
900 onEditActivatorView(final ViewHolder vh, final GuidedAction action, boolean editing) argument
935 onBindChevronView(ViewHolder vh, GuidedAction action) argument
1254 setIcon(final ImageView iconView, GuidedAction action) argument
[all...]
H A DGuidedDatePickerAction.java94 * @param action GuidedDatePickerAction to apply values.
96 protected final void applyDatePickerValues(GuidedDatePickerAction action) { argument
97 super.applyValues(action);
98 action.mDatePickerFormat = mDatePickerFormat;
99 action.mDate = mDate;
103 action.mMinDate = mMinDate;
104 action.mMaxDate = mMaxDate;
122 GuidedDatePickerAction action = new GuidedDatePickerAction();
123 applyDatePickerValues(action);
124 return action;
[all...]
H A DMediaItemActionPresenter.java24 * The presenter displaying a custom action in {@link AbstractMediaItemPresenter}.
25 * This is the default presenter for actions in media rows if no action presenter is provided by the
60 MultiActionsProvider.MultiAction action = (MultiActionsProvider.MultiAction) item;
61 actionViewHolder.getIcon().setImageDrawable(action.getCurrentDrawable());

Completed in 497 milliseconds

1234567891011>>