Searched defs:action (Results 126 - 136 of 136) sorted by relevance

123456

/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java657 private native int nativeHandleTouchEvent(int nativeClass, int action, argument
H A DWebViewClassic.java378 int action = EditorInfo.IME_ACTION_GO;
386 action = EditorInfo.IME_ACTION_NONE;
392 action = EditorInfo.IME_ACTION_SEARCH;
404 // action, so set the action to NEXT
418 imeOptions |= action;
1346 int action = ev.getActionMasked();
1347 final boolean pointerUp = action == MotionEvent.ACTION_POINTER_UP;
1349 action == MotionEvent.ACTION_POINTER_UP ||
1350 action
1693 performAccessibilityAction(int action, Bundle arguments) argument
5844 handleTouchEventCommon(MotionEvent event, int action, int x, int y) argument
8683 post(Runnable action) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java541 * Delayed action for touch mode.
1385 public boolean performAccessibilityAction(int action, Bundle arguments) { argument
1386 if (super.performAccessibilityAction(action, arguments)) {
1389 switch (action) {
2232 public boolean performAccessibilityAction(View host, int action, Bundle arguments) { argument
2233 if (super.performAccessibilityAction(host, action, arguments)) {
2252 switch (action) {
2736 // The data has changed since we posted this action in the event queue,
3263 final int action = ev.getAction();
3270 switch (action
[all...]
H A DTextView.java265 // System wide time for last cut or copy action.
425 * Interface definition for a callback to be invoked when an action is
430 * Called when an action is being performed.
433 * @param actionId Identifier of the action. This will be either the
439 * @return Return true if you have consumed the action, else false.
3912 * Change the custom IME action associated with the text view, which
3929 * Get the IME action label previous set with {@link #setImeActionLabel}.
3940 * Get the IME action ID previous set with {@link #setImeActionLabel}.
3951 * Set a special listener to be called when an action is performed
3953 * or when an action supplie
5602 onPrivateIMECommand(String action, Bundle data) argument
[all...]
/frameworks/base/services/input/
H A DInputReader.cpp175 static void synthesizeButtonKey(InputReaderContext* context, int32_t action, argument
180 (action == AKEY_EVENT_ACTION_DOWN
183 || (action == AKEY_EVENT_ACTION_UP
187 action, 0, keyCode, 0, context->getGlobalMetaState(), when);
192 static void synthesizeButtonKeys(InputReaderContext* context, int32_t action, argument
195 synthesizeButtonKey(context, action, when, deviceId, source, policyFlags,
198 synthesizeButtonKey(context, action, when, deviceId, source, policyFlags,
5463 int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags,
5477 action |= pointerCount << AMOTION_EVENT_ACTION_POINTER_INDEX_SHIFT;
5486 // Replace initial down and final up action
5462 dispatchMotion(nsecs_t when, uint32_t policyFlags, uint32_t source, int32_t action, int32_t flags, int32_t metaState, int32_t buttonState, int32_t edgeFlags, const PointerProperties* properties, const PointerCoords* coords, const uint32_t* idToIndex, BitSet32 idBits, int32_t changedId, float xPrecision, float yPrecision, nsecs_t downTime) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DBackupManagerService.java1338 String action = intent.getAction();
1343 if (Intent.ACTION_PACKAGE_ADDED.equals(action) ||
1344 Intent.ACTION_PACKAGE_REMOVED.equals(action)) {
1353 added = Intent.ACTION_PACKAGE_ADDED.equals(action);
1355 } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE.equals(action)) {
1358 } else if (Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE.equals(action)) {
5115 boolean startConfirmationUi(int token, String action) { argument
5117 Intent confIntent = new Intent(action);
5328 // name is not one of the available transports, no action is taken and the method
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java104 /** The mode that no editing action is done. */
200 * EditStyledText extends EditText for managing flow of each editing action.
514 * Notify hint messages what action is expected to calling class.
529 * @param mode Mode of the editing action.
811 * Get the mode of the action.
813 * @return The mode of the action.
918 public void addAction(int mode, EditModeActionBase action) { argument
919 mManager.addAction(mode, action);
969 public void addAction(int mode, EditModeActionBase action) { argument
970 mActions.addAction(mode, action);
2853 addAction(int modeId, EditModeActionBase action) argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java364 * later restarted (hopefully due to some user action). The value is the
550 * State of all active sticky broadcasts per user. Keys are the action of the
552 * that action (which should usually be one). The SparseArray is keyed
963 Intent intent = new Intent("android.intent.action.ANR");
7578 public final void startRunning(String pkg, String cls, String action, argument
7587 mTopAction = action != null ? action : Intent.ACTION_MAIN;
9788 pw.print(" * Sticky action "); pw.print(ent.getKey());
11266 private final List getStickiesLocked(String action, IntentFilter filter, argument
11273 final ArrayList<Intent> list = stickies.get(action);
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java2653 String action = sintent.getAction();
2654 if (resultsAction != null && resultsAction.equals(action)) {
2655 // If this action was explicitly requested, then don't
2657 action = null;
2695 || (action != null && sri.filter.matchAction(action))) {
2735 final String action = it.next();
2736 if (resultsAction != null && resultsAction.equals(action)) {
2737 // If this action was explicitly requested, then don't
2743 if (rij.filter != null && rij.filter.hasAction(action)) {
5370 sendPackageBroadcast(String action, String pkg, Bundle extras, String targetPkg, IIntentReceiver finishedReceiver, int[] userIds) argument
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java301 final String action = intent.getAction();
302 if (DevicePolicyManager.ACTION_DEVICE_POLICY_MANAGER_STATE_CHANGED.equals(action)) {
2615 String action, int x, int y, int z, Bundle extras, boolean sync) {
2628 wallpaper.mClient.dispatchWallpaperCommand(action,
3940 // No obvious action we need to take, but if our current
3981 //action like disabling/enabling sensors etc.,
2614 sendWindowWallpaperCommandLocked(WindowState window, String action, int x, int y, int z, Bundle extras, boolean sync) argument
/frameworks/base/core/java/android/view/
H A DView.java589 * Sometimes it is essential that an application be able to verify that an action
2263 * hide the action bar.
2309 * using the system UI flags to hide the action bar while still retaining
3040 * Whether the long press's action has been invoked. The tap's action is invoked on the
3042 * a long press could be performed before the tap is checked, in which case the tap's action
4290 * Start an action mode.
4292 * @param callback Callback that will control the lifecycle of the action mode
4293 * @return The new action mode if it is started, null otherwise
6883 * Performs the specified accessibility action o
6896 performAccessibilityAction(int action, Bundle arguments) argument
6909 performAccessibilityActionInternal(int action, Bundle arguments) argument
7061 sendViewTextTraversedAtGranularityEvent(int action, int granularity, int fromIndex, int toIndex) argument
10553 post(Runnable action) argument
10582 postDelayed(Runnable action, long delayMillis) argument
10601 postOnAnimation(Runnable action) argument
10624 postOnAnimationDelayed(Runnable action, long delayMillis) argument
10650 removeCallbacks(Runnable action) argument
18180 performAccessibilityAction(View host, int action, Bundle args) argument
[all...]

Completed in 3413 milliseconds

123456