Searched defs:action (Results 1 - 25 of 213) sorted by relevance

123456789

/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationBuilderWithActions.java23 public void addAction(NotificationCompatBase.Action action); argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DOnActionClickedListener.java17 * Interface for receiving notification when an action is clicked.
21 public void onActionClicked(Action action); argument
H A DDetailsOverviewRow.java102 * @param action The Action to add.
104 public final void addAction(Action action) { argument
105 mActions.add(action);
112 * @param action The Action to add.
114 public final void addAction(int pos, Action action) { argument
115 mActions.add(pos, action);
121 * @param action The Action to remove.
124 public final boolean removeAction(Action action) { argument
125 return mActions.remove(action);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeProvider.java51 * public boolean performAction(int action, int virtualDescendantId) {
105 * Performs an accessibility action on a virtual view, i.e. a descendant of the
110 * @param action The action to perform.
111 * @param arguments Optional action arguments.
112 * @return True if the action was performed.
118 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp68 LinkAction action; local
71 action = link_action[row][col];
73 switch(action) {
80 case NOACT: { /* no action. */
205 error(diag::undefined_situation) << action << old->name() << pNew.name();
208 } // end of the big switch (action)
/frameworks/compile/mclinker/unittests/
H A DInputTreeTest.cpp72 std::vector<InputAction*>::iterator action; local
73 for (action = actions.begin(); action != actions.end(); ++action) {
74 (*action)->activate(*m_pBuilder);
75 delete *action;
/frameworks/support/v4/jellybean/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatJellyBean.java31 public boolean performAction(int virtualViewId, int action, Bundle arguments); argument
54 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
55 return bridge.performAction(virtualViewId, action, arguments);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DRecyclerViewAccessibilityTest.java204 final RecyclerView recyclerView, final int action) throws Throwable {
208 delegate.performAccessibilityAction(recyclerView, action, null);
203 performAccessibilityAction(final AccessibilityDelegateCompat delegate, final RecyclerView recyclerView, final int action) argument
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintErrorFragment.java46 public static PrintErrorFragment newInstance(CharSequence message, int action) { argument
49 arguments.putInt(EXTRA_ACTION, action);
74 final int action = getArguments().getInt(EXTRA_ACTION);
75 switch (action) {
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraExceptionHandler.java35 RuntimeException e, String commandHistory, int action, int state) {
50 RuntimeException e, String commandHistory, int action, int state);
99 final int action, final int state) {
103 mCallback.onCameraException(ex, commandHistory, action, state);
49 onCameraException( RuntimeException e, String commandHistory, int action, int state) argument
97 onCameraException( final RuntimeException ex, final String commandHistory, final int action, final int state) argument
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompatKitKat.java31 public boolean performAction(int virtualViewId, int action, Bundle arguments); argument
55 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
56 return bridge.performAction(virtualViewId, action, arguments);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerViewAccessibilityDelegate.java39 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
40 if (super.performAccessibilityAction(host, action, args)) {
44 return mRecyclerView.getLayoutManager().performAccessibilityAction(action, args);
86 public boolean performAccessibilityAction(View host, int action, Bundle args) {
87 if (super.performAccessibilityAction(host, action, args)) {
92 performAccessibilityActionForItem(host, action, args);
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DKeyphraseEnrollmentInfo.java63 "com.android.intent.action.MANAGE_VOICE_KEYPHRASES";
65 * Intent extra: The intent extra for the specific manage action that needs to be performed.
252 * @param action The enrollment related action that this intent is supposed to perform.
261 public Intent getManageKeyphraseIntent(int action, String keyphrase, Locale locale) { argument
272 .putExtra(EXTRA_VOICE_KEYPHRASE_ACTION, action);
/frameworks/base/core/java/android/transition/
H A DScene.java146 * Exiting a scene runs the {@link #setExitAction(Runnable) exit action}
162 * an {@link #setEnterAction(Runnable)} enter action}, or a
216 * action, and possibly an exit action as well. An enter action
224 * @param action The runnable whose {@link Runnable#run() run()} method will
230 public void setEnterAction(Runnable action) { argument
231 mEnterAction = action;
238 * action, and possibly an exit action a
251 setExitAction(Runnable action) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DEditText.java138 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
139 switch (action) {
150 return super.performAccessibilityAction(action, arguments);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
H A DRangeTest.java156 private static <T, T2> void assertAction(String action, T object, T2 expected, argument
158 assertEquals("Expected " + object + " " + action + " to be ",
162 private static <T, T2> void assertAction(String action, T object, T2 needle, boolean expected, argument
164 String expectedMessage = expected ? action : ("not " + action);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DBroadcastInterceptingContext.java84 public Future<Intent> nextBroadcastIntent(String action) { argument
85 return nextBroadcastIntent(new IntentFilter(action));
/frameworks/base/telecomm/java/android/telecom/
H A DRemoteConnectionService.java392 String callId, String action) {
396 Log.w(this, "%s - Cannot find Connection %s", action, callId);
401 String callId, String action) {
405 Log.w(this, "%s - Cannot find Conference %s", action, callId);
391 findConnectionForAction( String callId, String action) argument
400 findConferenceForAction( String callId, String action) argument
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeProviderCompat.java50 public boolean performAction(int virtualViewId, int action,
52 return compat.performAction(virtualViewId, action, arguments);
92 int virtualViewId, int action, Bundle arguments) {
93 return compat.performAction(virtualViewId, action, arguments);
199 * Performs an accessibility action on a virtual view, i.e. a descendant of the
204 * @param action The action to perform.
206 * @return True if the action was performed.
211 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/support/v4/jellybean/android/support/v4/view/
H A DAccessibilityDelegateCompatJellyBean.java42 public boolean performAccessibilityAction(View host, int action, Bundle args); argument
91 public boolean performAccessibilityAction(View host, int action, Bundle args) {
92 return bridge.performAccessibilityAction(host, action, args);
102 public static boolean performAccessibilityAction(Object delegate, View host, int action, argument
104 return ((AccessibilityDelegate) delegate).performAccessibilityAction(host, action, args);
H A DViewCompatJB.java45 public static void postOnAnimation(View view, Runnable action) { argument
46 view.postOnAnimation(action);
49 public static void postOnAnimationDelayed(View view, Runnable action, long delayMillis) { argument
50 view.postOnAnimationDelayed(action, delayMillis);
61 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
62 return view.performAccessibilityAction(action, arguments);
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiAutomatorBridge.java30 * each action.
136 public boolean performGlobalAction(int action) { argument
137 return mUiAutomation.performGlobalAction(action);
/frameworks/base/core/java/android/text/method/
H A DLinkMovementMethod.java51 event.getRepeatCount() == 0 && action(CLICK, widget, buffer)) {
62 if (action(UP, widget, buffer)) {
71 if (action(DOWN, widget, buffer)) {
80 if (action(UP, widget, buffer)) {
89 if (action(DOWN, widget, buffer)) {
96 private boolean action(int what, TextView widget, Spannable buffer) { method in class:LinkMovementMethod
196 int action = event.getAction();
198 if (action == MotionEvent.ACTION_UP ||
199 action == MotionEvent.ACTION_DOWN) {
216 if (action
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSession.java160 * @param action Name of the command to be performed. This <em>must</em>
165 public void appPrivateCommand(String action, Bundle data); argument
/frameworks/base/core/java/com/android/internal/widget/
H A DEditableInputConnection.java167 public boolean performPrivateCommand(String action, Bundle data) { argument
168 mTextView.onPrivateIMECommand(action, data);

Completed in 6130 milliseconds

123456789