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

123456

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeProvider.java51 * public boolean performAction(int action, int virtualDescendantId) {
100 * Performs an accessibility action on a virtual view, i.e. a descendant of the
105 * @param action The action to perform.
106 * @param arguments Optional action arguments.
107 * @return True if the action was performed.
113 public boolean performAction(int virtualViewId, int action, Bundle arguments) { argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityCallback.java63 * Sets an action to perform after the user successfully enters their credentials.
64 * @param action
66 void setOnDismissAction(OnDismissAction action); argument
/frameworks/compile/mclinker/lib/LD/
H A DStaticResolver.cpp67 LinkAction action; local
70 action = link_action[row][col];
72 switch(action) {
79 case NOACT: { /* no action. */
187 error(diag::undefined_situation) << action << old->name() << pNew.name();
190 } // end of the big switch (action)
H A DNamePool.cpp104 unsigned int action = Resolver::LastAction; local
111 m_pResolver->resolveAgain(*this, action, *old_symbol, *new_symbol, pResult);
/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);
H A DAccessibilityNodeInfoCompatJellyBean.java44 public static boolean performAction(Object info, int action, Bundle arguments) { argument
45 return ((AccessibilityNodeInfo) info).performAction(action, arguments);
/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/base/core/java/android/transition/
H A DScene.java137 * Exiting a scene runs the {@link #setExitAction(Runnable) exit action}
153 * an {@link #setEnterAction(Runnable)} enter action}, or a
207 * action, and possibly an exit action as well. An enter action
215 * @param action The runnable whose {@link Runnable#run() run()} method will
221 public void setEnterAction(Runnable action) { argument
222 mEnterAction = action;
229 * action, and possibly an exit action a
242 setExitAction(Runnable action) argument
[all...]
/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/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/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.java166 public boolean performPrivateCommand(String action, Bundle data) { argument
167 mTextView.onPrivateIMECommand(action, data);
/frameworks/base/core/tests/coretests/src/android/view/
H A DVelocityTest.java259 private void addMotionEvent(VelocityTracker vt, int x, int y, long time, int action) { argument
260 MotionEvent me = MotionEvent.obtain(time, time, action, x, y, 0);
/frameworks/base/drm/java/android/drm/
H A DDrmStore.java41 * {@link android.drm.DrmStore.Action action}.
50 * {@link android.drm.DrmStore.Action action}.
58 * an {@link android.drm.DrmStore.Action action} can be performed on
67 * an {@link android.drm.DrmStore.Action action} can not be performed on
165 * The default action.
197 /* package */ static boolean isValid(int action) { argument
200 switch (action) {
/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLinker.cpp383 std::vector<InputAction*>::iterator action, actionEnd = actions.end(); local
384 for (action = actions.begin(); action != actionEnd; ++action) {
385 (*action)->activate(pBuilder.getInputBuilder());
386 delete *action;
/frameworks/native/cmds/service/
H A Dservice.cpp163 char* action = NULL; local
183 if (strcmp(key, "action") == 0)
185 action = value;
219 writeString16(data, action);
280 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/frameworks/native/libs/input/tests/
H A DInputPublisherAndConsumer_test.cpp76 const int32_t action = AKEY_EVENT_ACTION_DOWN; local
85 status = mPublisher->publishKeyEvent(seq, deviceId, source, action, flags,
105 EXPECT_EQ(action, keyEvent->getAction());
135 const int32_t action = AMOTION_EVENT_ACTION_MOVE; local
166 status = mPublisher->publishMotionEvent(seq, deviceId, source, action, flags, edgeFlags,
188 EXPECT_EQ(action, motionEvent->getAction());
/frameworks/support/v4/java/android/support/v4/view/
H A DAccessibilityDelegateCompat.java51 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
113 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
266 public boolean performAccessibilityAction(View host, int action, Bundle args) {
267 return compat.performAccessibilityAction(host, action, args);
284 public boolean performAccessibilityAction(Object delegate, View host, int action, argument
287 host, action, args);
484 * Performs the specified accessibility action on the view. For
493 * @param action The action to perform.
494 * @return Whether the action wa
499 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]
/frameworks/testing/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/av/drm/common/
H A DDrmEngineBase.cpp30 int uniqueId, const String8* path, int action) {
31 return onGetConstraints(uniqueId, path, action);
77 int DrmEngineBase::checkRightsStatus(int uniqueId, const String8& path, int action) { argument
78 return onCheckRightsStatus(uniqueId, path, action);
82 int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) {
83 return onConsumeRights(uniqueId, decryptHandle, action, reserve);
93 int action, const ActionDescription& description) {
94 return onValidateAction(uniqueId, path, action, description);
29 getConstraints( int uniqueId, const String8* path, int action) argument
81 consumeRights( int uniqueId, DecryptHandle* decryptHandle, int action, bool reserve) argument
91 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp42 DrmConstraints* DrmManagerClient::getConstraints(const String8* path, const int action) { argument
43 return mDrmManagerClientImpl->getConstraints(mUniqueId, path, action);
75 int DrmManagerClient::checkRightsStatus(const String8& path, int action) { argument
76 return mDrmManagerClientImpl->checkRightsStatus(mUniqueId, path, action);
80 sp<DecryptHandle> &decryptHandle, int action, bool reserve) {
81 return mDrmManagerClientImpl->consumeRights(mUniqueId, decryptHandle, action, reserve);
91 const String8& path, int action, const ActionDescription& description) {
92 return mDrmManagerClientImpl->validateAction(mUniqueId, path, action, description);
79 consumeRights( sp<DecryptHandle> &decryptHandle, int action, bool reserve) argument
90 validateAction( const String8& path, int action, const ActionDescription& description) argument

Completed in 5813 milliseconds

123456