Searched defs:action (Results 1 - 25 of 136) 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/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.cpp97 unsigned int action = Resolver::LastAction; local
104 m_pResolver->resolveAgain(*this, action, *old_symbol, *new_symbol, pResult);
/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/base/policy/src/com/android/internal/policy/impl/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/base/core/java/android/text/method/
H A DLinkMovementMethod.java46 event.getRepeatCount() == 0 && action(CLICK, widget, buffer)) {
57 if (action(UP, widget, buffer)) {
66 if (action(DOWN, widget, buffer)) {
75 if (action(UP, widget, buffer)) {
84 if (action(DOWN, widget, buffer)) {
91 private boolean action(int what, TextView widget, Spannable buffer) { method in class:LinkMovementMethod
191 int action = event.getAction();
193 if (action == MotionEvent.ACTION_UP ||
194 action == MotionEvent.ACTION_DOWN) {
211 if (action
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DBroadcastInterceptingContext.java83 public Future<Intent> nextBroadcastIntent(String action) { argument
84 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);
147 * Performs an accessibility action on a virtual view, i.e. a descendant of the
152 * @param action The action to perform.
154 * @return True if the action was performed.
159 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.java44 public static void postOnAnimation(View view, Runnable action) { argument
45 view.postOnAnimation(action);
48 public static void postOnAnimationDelayed(View view, Runnable action, long delayMillis) { argument
49 view.postOnAnimationDelayed(action, delayMillis);
60 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) { argument
61 return view.performAccessibilityAction(action, arguments);
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java209 * @param action the MotionEvent.ACTION_* for the event
215 private void injectMotionEvent(int inputSource, int action, long when, float x, float y, float pressure) { argument
222 MotionEvent event = MotionEvent.obtain(when, when, action, x, y, pressure, DEFAULT_SIZE,
/frameworks/base/cmds/service/
H A Dservice.cpp152 char* action = NULL; local
172 if (strcmp(key, "action") == 0)
174 action = value;
208 writeString16(data, action);
269 // " action=STR data=STR type=STR launchFlags=INT component=STR categories=STR[,STR,...]\n";
/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/base/libs/androidfw/tests/
H A DInputPublisherAndConsumer_test.cpp75 const int32_t action = AKEY_EVENT_ACTION_DOWN; local
84 status = mPublisher->publishKeyEvent(seq, deviceId, source, action, flags,
104 EXPECT_EQ(action, keyEvent->getAction());
134 const int32_t action = AMOTION_EVENT_ACTION_MOVE; local
165 status = mPublisher->publishMotionEvent(seq, deviceId, source, action, flags, edgeFlags,
187 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/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
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityService.java52 * accessibility service is triggered exclusively by an explicit user action through
71 * &lt;action android:name="android.accessibilityservice.AccessibilityService" /&gt;
90 * &lt;action android:name="android.accessibilityservice.AccessibilityService" /&gt;
423 * Performs a global action. Such an action can be performed
428 * @param action The action to perform.
429 * @return Whether the action was successfully performed.
436 public final boolean performGlobalAction(int action) { argument
441 return connection.performGlobalAction(action);
[all...]
H A DUiTestAutomationBridge.java444 * Performs an accessibility action on an {@link AccessibilityNodeInfo}
448 * @param action The action to perform.
449 * @param arguments Optional action arguments.
450 * @return Whether the action was performed.
452 public boolean performAccessibilityActionInActiveWindow(long accessibilityNodeId, int action, argument
454 return performAccessibilityAction(ACTIVE_WINDOW_ID, accessibilityNodeId, action, arguments);
458 * Performs an accessibility action on an {@link AccessibilityNodeInfo}.
463 * @param action The action t
467 performAccessibilityAction(int accessibilityWindowId, long accessibilityNodeId, int action, Bundle arguments) argument
[all...]
/frameworks/base/core/java/android/inputmethodservice/
H A DIInputMethodSessionWrapper.java202 public void appPrivateCommand(String action, Bundle data) { argument
203 mCaller.executeOrSendMessage(mCaller.obtainMessageOO(DO_APP_PRIVATE_COMMAND, action, data));
/frameworks/base/core/java/android/view/
H A DDragEvent.java31 * an action type that indicates the state of the drag and drop operation. This allows a View
33 * For example, a View can react to the {@link #ACTION_DRAG_ENTERED} action type by
38 * is called a drag shadow. Several action types reflect the position of the drag shadow relative
195 * The View can also react to this action by changing its appearance.
255 private void init(int action, float x, float y, ClipDescription description, ClipData data, argument
257 mAction = action;
271 public static DragEvent obtain(int action, float x, float y, Object localState, argument
277 ev.init(action, x, y, description, data, localState, result);
288 ev.init(action, x, y, description, data, localState, result);
300 * Inspect the action valu
[all...]

Completed in 5578 milliseconds

123456