Searched refs:mAction (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/view/
H A DDragEvent.java127 int mAction; field in class:DragEvent
257 mAction = action;
295 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
313 return mAction;
442 + " action=" + mAction + " @ (" + mX + ", " + mY + ") desc=" + mClipDescription
464 dest.writeInt(mAction);
489 event.mAction = in.readInt();
H A DKeyEvent.java1233 private int mAction; field in class:KeyEvent
1314 mAction = action;
1337 mAction = action;
1361 mAction = action;
1389 mAction = action;
1419 mAction = action;
1451 mAction = action;
1477 mAction = ACTION_MULTIPLE;
1491 mAction = origEvent.mAction;
[all...]
H A DViewGroup.java1009 switch (event.mAction) {
1078 final int action = event.mAction;
1082 event.mAction = DragEvent.ACTION_DRAG_EXITED;
1091 event.mAction = DragEvent.ACTION_DRAG_ENTERED;
1096 event.mAction = action; // restore the event's original state
H A DViewRootImpl.java3434 final int what = event.mAction;
/frameworks/base/include/ui/
H A DInput.h291 inline int32_t getAction() const { return mAction; }
329 int32_t mAction; member in class:android::KeyEvent
348 inline int32_t getAction() const { return mAction; }
350 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
353 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
357 inline void setAction(int32_t action) { mAction = action; }
559 return isTouchEvent(mSource, mAction);
572 int32_t mAction; member in class:android::MotionEvent
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp39 jfieldID mAction; member in struct:android::__anon47
79 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction);
151 GET_FIELD_ID(gKeyEventClassInfo.mAction, gKeyEventClassInfo.clazz,
152 "mAction", "I");
/frameworks/base/core/java/android/content/
H A DIntent.java3003 private String mAction; field in class:Intent
3026 this.mAction = o.mAction;
3052 this.mAction = o.mAction;
3547 if (intent.mAction == null) {
3549 intent.mAction = ACTION_VIEW;
3570 return mAction;
4417 mAction = action != null ? action.intern() : null;
5608 if (other.mAction !
[all...]
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
H A DImageProcessingActivity.java85 private Runnable mAction = new Runnable() { field in class:ImageProcessingActivity.FilterCallback
99 mSurfaceView.removeCallbacks(mAction);
100 mSurfaceView.post(mAction);
/frameworks/base/services/java/com/android/server/accessibility/
H A DTouchExplorer.java1408 private int mAction; field in class:TouchExplorer.SendHoverDelayed
1416 mAction = action;
1437 mAction = 0;
1451 if (mAction == MotionEvent.ACTION_HOVER_ENTER) {
1453 } else if (mAction == MotionEvent.ACTION_HOVER_MOVE) {
1455 } else if (mAction == MotionEvent.ACTION_HOVER_EXIT) {
1460 sendMotionEvent(mEvent, mAction, mPointerIdBits, mPolicyFlags);
/frameworks/base/libs/ui/
H A DInput.cpp240 mAction = action;
252 mAction = from.mAction;
407 mAction = action;
426 mAction = other->mAction;
590 mAction = parcel->readInt32();
637 parcel->writeInt32(mAction);
/frameworks/base/core/java/android/webkit/
H A DWebView.java6190 ted.mAction = action;
6240 ted.mAction = action;
6433 ted.mAction = action;
6458 ted.mAction = WebViewCore.ACTION_DOUBLETAP;
6596 ted.mAction = ev.getActionMasked();
6608 if (ted.mAction == MotionEvent.ACTION_POINTER_DOWN
6609 || ted.mAction == MotionEvent.ACTION_POINTER_UP) {
6695 ted.mAction = MotionEvent.ACTION_CANCEL;
8042 Log.w(LOGTAG, "Stale touch event " + MotionEvent.actionToString(ted.mAction) +
8216 if (ted.mAction
[all...]
H A DWebViewCore.java840 // mAction of TouchEventData can be MotionEvent.getAction() which uses the
846 int mAction; field in class:WebViewCore.TouchEventData
1396 ted.mNativeResult = nativeHandleTouchEvent(ted.mAction, ted.mIds,
1401 ted.mAction,

Completed in 870 milliseconds