/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 | 1206 private int mAction; field in KeyEvent 1286 mAction = action; in KeyEvent() 1309 mAction = action; in KeyEvent() 1333 mAction = action; in KeyEvent() 1361 mAction = action; in KeyEvent() 1391 mAction = action; in KeyEvent() 1423 mAction = action; in KeyEvent() 1449 mAction = ACTION_MULTIPLE; in KeyEvent() 1463 mAction = origEvent.mAction; in KeyEvent() 1489 mAction = origEvent.mAction; in KeyEvent() [all …]
|
D | ViewGroup.java | 1384 switch (event.mAction) { in dispatchDragEvent() 1455 final int action = event.mAction; in dispatchDragEvent() 1459 event.mAction = DragEvent.ACTION_DRAG_EXITED; in dispatchDragEvent() 1468 event.mAction = DragEvent.ACTION_DRAG_ENTERED; in dispatchDragEvent() 1473 event.mAction = action; // restore the event's original state in dispatchDragEvent()
|
D | ViewRootImpl.java | 5245 final int what = event.mAction; in handleDragEvent()
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
D | ActionPresenterSelector.java | 47 Action mAction; field in ActionPresenterSelector.ActionViewHolder 70 vh.mAction = action; in onBindViewHolder() 76 ((ActionViewHolder) viewHolder).mAction = null; in onUnbindViewHolder() 93 vh.mAction = action; in onBindViewHolder() 128 vh.mAction = null; in onUnbindViewHolder()
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
D | PickFragment.java | 41 private int mAction; field in PickFragment 99 mAction = action; in setPickTarget() 110 switch (mAction) { in updateView() 125 mAction == BaseActivity.State.ACTION_OPEN_TREE || in updateView()
|
/frameworks/support/v4/java/android/support/v4/media/session/ |
D | PlaybackStateCompat.java | 545 private final String mAction; field in PlaybackStateCompat.CustomAction 556 mAction = action; in CustomAction() 563 mAction = in.readString(); in CustomAction() 571 dest.writeString(mAction); in writeToParcel() 622 mCustomActionObj = PlaybackStateCompatApi21.CustomAction.newInstance(mAction, in getCustomAction() 647 return mAction; in getAction() 694 private final String mAction; field in PlaybackStateCompat.CustomAction.Builder 725 mAction = action; in Builder() 751 return new CustomAction(mAction, mName, mIcon, mExtras); in build()
|
/frameworks/base/services/core/java/com/android/server/ |
D | ServiceWatcher.java | 56 private final String mAction; field in ServiceWatcher 103 mAction = action; in ServiceWatcher() 163 Intent intent = new Intent(mAction); in bindBestPackageLocked() 181 Log.w(mTag, packageName + " resolves service " + mAction in bindBestPackageLocked() 207 Log.d(mTag, String.format("bindBestPackage for %s : %s found %d, %s", mAction, in bindBestPackageLocked() 214 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction); in bindBestPackageLocked() 237 Intent intent = new Intent(mAction); in bindToPackageLocked()
|
/frameworks/base/media/java/android/media/session/ |
D | PlaybackState.java | 594 private final String mAction; 603 mAction = action; 610 mAction = in.readString(); 618 dest.writeString(mAction); 649 return mAction; 693 private final String mAction; 721 mAction = action; 745 return new CustomAction(mAction, mName, mIcon, mExtras);
|
/frameworks/native/include/input/ |
D | Input.h | 303 inline int32_t getAction() const { return mAction; } in getAction() 338 int32_t mAction; 357 inline int32_t getAction() const { return mAction; } in getAction() 359 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; } in getActionMasked() 362 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK) in getActionIndex() 366 inline void setAction(int32_t action) { mAction = action; } in setAction() 577 return isTouchEvent(mSource, mAction); in isTouchEvent() 593 int32_t mAction;
|
/frameworks/base/core/java/android/view/accessibility/ |
D | AccessibilityEvent.java | 756 int mAction; field in AccessibilityEvent 776 mAction = event.mAction; in init() 972 mAction = action; in setAction() 981 return mAction; in getAction() 1057 mAction = 0; in clear() 1078 mAction = parcel.readInt(); in initFromParcel() 1134 parcel.writeInt(mAction); in writeToParcel() 1196 builder.append("; Action: ").append(mAction); in toString()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | GsmMmiCode.java | 123 String mAction; // One of ACTION_* field in GsmMmiCode 198 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION)); in newFromDialString() 289 mAction = getActionStringFromReqType(ssData.requestType); in parseSsData() 290 Rlog.d(LOG_TAG, "parseSsData msc = " + mSc + ", action = " + mAction + ", ex = " + ex); in parseSsData() 743 return mAction != null && mAction.equals(ACTION_ACTIVATE); in isActivate() 747 return mAction != null && mAction.equals(ACTION_DEACTIVATE); in isDeactivate() 751 return mAction != null && mAction.equals(ACTION_INTERROGATE); in isInterrogate() 755 return mAction != null && mAction.equals(ACTION_REGISTER); in isRegister() 759 return mAction != null && mAction.equals(ACTION_ERASURE); in isErasure() 894 mAction = ACTION_REGISTER; in processCode() [all …]
|
/frameworks/native/libs/input/ |
D | Input.cpp | 66 mAction = action; in initialize() 78 mAction = from.mAction; in initialize() 234 mAction = action; in initialize() 254 mAction = other->mAction; in copyFrom() 433 mAction = parcel->readInt32(); in readFromParcel() 481 parcel->writeInt32(mAction); in writeToParcel()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | RemoteInputView.java | 53 private Notification.Action mAction; field in RemoteInputView 94 RemoteInput.addResultsToIntent(mAction.getRemoteInputs(), fillInIntent, in sendRemoteInput() 115 v.mAction = action; in inflate()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
D | CdmaMmiCode.java | 65 String mAction; // ACTION_REGISTER field in CdmaMmiCode 118 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION)); in newFromDialString() 200 return mAction != null && mAction.equals(ACTION_REGISTER); in isRegister() 259 throw new RuntimeException ("Ivalid register/action=" + mAction); in processCode()
|
/frameworks/base/core/jni/ |
D | android_view_KeyEvent.cpp | 43 jfieldID mAction; member 83 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction); in android_view_KeyEvent_toNative() 142 gKeyEventClassInfo.mAction = GetFieldIDOrDie(env, gKeyEventClassInfo.clazz, "mAction", "I"); in register_android_view_KeyEvent()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneMmiCode.java | 170 private String mAction; // One of ACTION_* field in ImsPhoneMmiCode 242 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION)); in newFromDialString() 635 return mAction != null && mAction.equals(ACTION_ACTIVATE); in isActivate() 639 return mAction != null && mAction.equals(ACTION_DEACTIVATE); in isDeactivate() 643 return mAction != null && mAction.equals(ACTION_INTERROGATE); in isInterrogate() 647 return mAction != null && mAction.equals(ACTION_REGISTER); in isRegister() 651 return mAction != null && mAction.equals(ACTION_ERASURE); in isErasure() 1538 if (mAction != null) sb.append(" action=" + mAction); in toString()
|
/frameworks/base/core/java/android/content/ |
D | Intent.java | 4324 private String mAction; field in Intent 4349 this.mAction = o.mAction; in Intent() 4379 this.mAction = o.mAction; in Intent() 4958 if (intent.mAction == null) { 4960 intent.mAction = ACTION_VIEW; 4981 return mAction; in getAction() 5886 mAction = action != null ? action.intern() : null; in setAction() 7245 if (other.mAction != null in fillIn() 7246 && (mAction == null || (flags&FILL_IN_ACTION) != 0)) { in fillIn() 7247 mAction = other.mAction; in fillIn() [all …]
|
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/ |
D | GuidedActionAdapter.java | 74 private GuidedAction mAction; field in GuidedActionAdapter.ActionViewHolder 89 return mAction; in getAction() 97 mAction = action; in setAction()
|
/frameworks/base/services/core/java/com/android/server/connectivity/ |
D | NetworkMonitor.java | 504 private final String mAction; field in NetworkMonitor.CustomIntentReceiver 508 mAction = action + "_" + mNetworkAgentInfo.network.netId + "_" + token; in CustomIntentReceiver() 509 mContext.registerReceiver(this, new IntentFilter(mAction)); in CustomIntentReceiver() 512 final Intent intent = new Intent(mAction); in getPendingIntent() 518 if (intent.getAction().equals(mAction)) sendMessage(obtainMessage(mWhat, mToken)); in onReceive()
|
/frameworks/wilhelm/tests/sandbox/ |
D | monkey.c | 192 Action_pt mAction; member 285 State_t nextState = (*transitionTable[i].mAction)(&player); in main()
|
/frameworks/support/v4/java/android/support/v4/view/accessibility/ |
D | AccessibilityNodeInfoCompat.java | 336 private final Object mAction; field in AccessibilityNodeInfoCompat.AccessibilityActionCompat 349 mAction = action; in AccessibilityActionCompat() 358 return IMPL.getAccessibilityActionId(mAction); in getId() 368 return IMPL.getAccessibilityActionLabel(mAction); in getLabel() 2512 IMPL.addAction(mInfo, action.mAction); in addAction() 2530 return IMPL.removeAction(mInfo, action.mAction); in removeAction()
|