/frameworks/base/core/java/android/view/ |
D | DragEvent.java | 127 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();
|
D | KeyEvent.java | 1273 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 …]
|
D | ViewGroup.java | 1105 switch (event.mAction) { in dispatchDragEvent() 1174 final int action = event.mAction; in dispatchDragEvent() 1178 event.mAction = DragEvent.ACTION_DRAG_EXITED; in dispatchDragEvent() 1187 event.mAction = DragEvent.ACTION_DRAG_ENTERED; in dispatchDragEvent() 1192 event.mAction = action; // restore the event's original state in dispatchDragEvent()
|
D | ViewRootImpl.java | 3801 final int what = event.mAction; in handleDragEvent()
|
/frameworks/base/core/java/android/view/accessibility/ |
D | AccessibilityEvent.java | 699 int mAction; field in AccessibilityEvent 718 mAction = event.mAction; in init() 865 mAction = action; in setAction() 874 return mAction; in getAction() 966 mAction = 0; in clear() 984 mAction = parcel.readInt(); in initFromParcel() 1036 parcel.writeInt(mAction); in writeToParcel() 1094 builder.append("; Action: ").append(mAction); in toString()
|
/frameworks/base/services/java/com/android/server/ |
D | ServiceWatcher.java | 52 private final String mAction; field in ServiceWatcher 86 mAction = action; in ServiceWatcher() 112 Intent intent = new Intent(mAction); in bindBestPackageLocked() 116 List<ResolveInfo> rInfos = mPm.queryIntentServicesAsUser(new Intent(mAction), in bindBestPackageLocked() 128 Log.w(mTag, packageName + " resolves service " + mAction + in bindBestPackageLocked() 149 if (D) Log.d(mTag, String.format("bindBestPackage for %s : %s found %d, %s", mAction, in bindBestPackageLocked() 174 Intent intent = new Intent(mAction); in bindToPackageLocked()
|
/frameworks/base/include/androidfw/ |
D | Input.h | 268 inline int32_t getAction() const { return mAction; } in getAction() 308 int32_t mAction; 327 inline int32_t getAction() const { return mAction; } in getAction() 329 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; } in getActionMasked() 332 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) in getActionIndex() 336 inline void setAction(int32_t action) { mAction = action; } in setAction() 538 return isTouchEvent(mSource, mAction); in isTouchEvent() 551 int32_t mAction;
|
/frameworks/base/libs/androidfw/ |
D | Input.cpp | 133 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/ |
D | Intent.java | 3368 private String mAction; field in Intent 3392 this.mAction = o.mAction; in Intent() 3421 this.mAction = o.mAction; in Intent() 3916 if (intent.mAction == null) { in getIntentOld() 3918 intent.mAction = ACTION_VIEW; in getIntentOld() 3939 return mAction; in getAction() 4796 mAction = action != null ? action.intern() : null; in setAction() 6120 if (other.mAction != null in fillIn() 6121 && (mAction == null || (flags&FILL_IN_ACTION) != 0)) { in fillIn() 6122 mAction = other.mAction; in fillIn() [all …]
|
/frameworks/base/core/jni/ |
D | android_view_KeyEvent.cpp | 39 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/wilhelm/tests/sandbox/ |
D | monkey.c | 192 Action_pt mAction; member 285 State_t nextState = (*transitionTable[i].mAction)(&player); in main()
|
/frameworks/base/core/java/android/webkit/ |
D | WebViewCore.java | 961 int mAction; field in WebViewCore.TouchEventData
|