Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DDragEvent.java127 int mAction; field in DragEvent
257 mAction = action; in init()
295 return obtain(source.mAction, source.mX, source.mY, source.mLocalState, in obtain()
313 return mAction; in getAction()
442 + " action=" + mAction + " @ (" + mX + ", " + mY + ") desc=" + mClipDescription in toString()
464 dest.writeInt(mAction); in writeToParcel()
489 event.mAction = in.readInt();
DKeyEvent.java1273 private int mAction; field in KeyEvent
1354 mAction = action; in KeyEvent()
1377 mAction = action; in KeyEvent()
1401 mAction = action; in KeyEvent()
1429 mAction = action; in KeyEvent()
1459 mAction = action; in KeyEvent()
1491 mAction = action; in KeyEvent()
1517 mAction = ACTION_MULTIPLE; in KeyEvent()
1531 mAction = origEvent.mAction; in KeyEvent()
1557 mAction = origEvent.mAction; in KeyEvent()
[all …]
DViewGroup.java1108 switch (event.mAction) { in dispatchDragEvent()
1177 final int action = event.mAction; in dispatchDragEvent()
1181 event.mAction = DragEvent.ACTION_DRAG_EXITED; in dispatchDragEvent()
1190 event.mAction = DragEvent.ACTION_DRAG_ENTERED; in dispatchDragEvent()
1195 event.mAction = action; // restore the event's original state in dispatchDragEvent()
DViewRootImpl.java3675 final int what = event.mAction; in handleDragEvent()
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityEvent.java645 int mAction; field in AccessibilityEvent
664 mAction = event.mAction; in init()
811 mAction = action; in setAction()
820 return mAction; in getAction()
912 mAction = 0; in clear()
930 mAction = parcel.readInt(); in initFromParcel()
982 parcel.writeInt(mAction); in writeToParcel()
1040 builder.append("; Action: ").append(mAction); in toString()
/frameworks/base/include/androidfw/
DInput.h259 inline int32_t getAction() const { return mAction; } in getAction()
299 int32_t mAction;
318 inline int32_t getAction() const { return mAction; } in getAction()
320 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; } in getActionMasked()
323 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) in getActionIndex()
327 inline void setAction(int32_t action) { mAction = action; } in setAction()
529 return isTouchEvent(mSource, mAction); in isTouchEvent()
542 int32_t mAction;
/frameworks/base/libs/androidfw/
DInput.cpp133 mAction = action; in initialize()
145 mAction = from.mAction; in initialize()
300 mAction = action; in initialize()
319 mAction = other->mAction; in copyFrom()
483 mAction = parcel->readInt32(); in readFromParcel()
530 parcel->writeInt32(mAction); in writeToParcel()
/frameworks/base/core/java/android/content/
DIntent.java3178 private String mAction; field in Intent
3202 this.mAction = o.mAction; in Intent()
3231 this.mAction = o.mAction; in Intent()
3726 if (intent.mAction == null) { in getIntentOld()
3728 intent.mAction = ACTION_VIEW; in getIntentOld()
3749 return mAction; in getAction()
4606 mAction = action != null ? action.intern() : null; in setAction()
5930 if (other.mAction != null in fillIn()
5931 && (mAction == null || (flags&FILL_IN_ACTION) != 0)) { in fillIn()
5932 mAction = other.mAction; in fillIn()
[all …]
/frameworks/base/core/jni/
Dandroid_view_KeyEvent.cpp39 jfieldID mAction; member
79 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction); in android_view_KeyEvent_toNative()
151 GET_FIELD_ID(gKeyEventClassInfo.mAction, gKeyEventClassInfo.clazz, in register_android_view_KeyEvent()
/frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
DImageProcessingActivity.java85 private Runnable mAction = new Runnable() { field in ImageProcessingActivity.FilterCallback
99 mSurfaceView.removeCallbacks(mAction); in run()
100 mSurfaceView.post(mAction); in run()
/frameworks/wilhelm/tests/sandbox/
Dmonkey.c192 Action_pt mAction; member
285 State_t nextState = (*transitionTable[i].mAction)(&player); in main()
/frameworks/base/core/java/android/webkit/
DWebViewCore.java975 int mAction; field in WebViewCore.TouchEventData