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

/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DTunerSwitch.java16 private final int mAction; field in class:TunerSwitch
23 mAction = a.getInt(R.styleable.TunerSwitch_metricsAction, -1);
46 if (mAction != -1) {
47 MetricsLogger.action(getContext(), mAction, isChecked());
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DActionPresenterSelector.java47 Action mAction; field in class:ActionPresenterSelector.ActionViewHolder
70 vh.mAction = action;
76 ((ActionViewHolder) viewHolder).mAction = null;
93 vh.mAction = action;
128 vh.mAction = null;
H A DGuidedActionsStylist.java166 private GuidedAction mAction; field in class:GuidedActionsStylist.ViewHolder
181 event.setChecked(mAction != null && mAction.isChecked());
188 mAction != null && mAction.getCheckSetId() != GuidedAction.NO_CHECK_SET);
189 info.setChecked(mAction != null && mAction.isChecked());
344 return mAction;
616 vh.mAction = action;
/frameworks/base/core/java/android/view/
H A DDragEvent.java129 int mAction; field in class:DragEvent
263 mAction = action;
304 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
323 return mAction;
456 + " action=" + mAction + " @ (" + mX + ", " + mY + ") desc=" + mClipDescription
478 dest.writeInt(mAction);
509 event.mAction = in.readInt();
H A DKeyEvent.java1231 private int mAction; field in class:KeyEvent
1311 mAction = action;
1334 mAction = action;
1358 mAction = action;
1386 mAction = action;
1416 mAction = action;
1448 mAction = action;
1474 mAction = ACTION_MULTIPLE;
1488 mAction = origEvent.mAction;
[all...]
H A DViewGroup.java1370 switch (event.mAction) {
1453 final int action = event.mAction;
1461 event.mAction = DragEvent.ACTION_DRAG_EXITED;
1476 event.mAction = DragEvent.ACTION_DRAG_ENTERED;
1485 event.mAction = action; // restore the event's original state
H A DViewRootImpl.java5508 final int what = event.mAction;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DPickFragment.java42 private int mAction; field in class:PickFragment
105 mAction = action;
117 switch (mAction) {
133 mAction == State.ACTION_OPEN_TREE ||
/frameworks/support/v4/java/android/support/v4/media/session/
H A DPlaybackStateCompat.java579 private final String mAction; field in class:PlaybackStateCompat.CustomAction
590 mAction = action;
597 mAction = in.readString();
605 dest.writeString(mAction);
656 mCustomActionObj = PlaybackStateCompatApi21.CustomAction.newInstance(mAction,
681 return mAction;
728 private final String mAction; field in class:PlaybackStateCompat.CustomAction.Builder
759 mAction = action;
785 return new CustomAction(mAction, mName, mIcon, mExtras);
/frameworks/base/media/java/android/media/session/
H A DPlaybackState.java657 private final String mAction; field in class:PlaybackState.CustomAction
666 mAction = action;
673 mAction = in.readString();
681 dest.writeString(mAction);
712 return mAction;
756 private final String mAction; field in class:PlaybackState.CustomAction.Builder
784 mAction = action;
808 return new CustomAction(mAction, mName, mIcon, mExtras);
/frameworks/base/services/core/java/com/android/server/
H A DServiceWatcher.java60 private final String mAction; field in class:ServiceWatcher
64 * implements mAction. When null, all packages in the system that matches one of the signature
112 mAction = action;
187 Intent intent = new Intent(mAction);
208 Log.w(mTag, packageName + " resolves service " + mAction
234 Log.d(mTag, String.format("bindBestPackage for %s : %s found %d, %s", mAction,
241 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction);
245 Slog.w(mTag, "Odd, no component found for service " + mAction);
274 Intent intent = new Intent(mAction);
/frameworks/native/include/input/
H A DInput.h322 inline int32_t getAction() const { return mAction; }
357 int32_t mAction; member in class:android::KeyEvent
376 inline int32_t getAction() const { return mAction; }
378 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
381 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
385 inline void setAction(int32_t action) { mAction = action; }
596 return isTouchEvent(mSource, mAction);
612 int32_t mAction; member in class:android::MotionEvent
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaMmiCode.java66 String mAction; // ACTION_REGISTER field in class:CdmaMmiCode
119 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
201 return mAction != null && mAction.equals(ACTION_REGISTER);
260 throw new RuntimeException ("Ivalid register/action=" + mAction);
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEvent.java757 int mAction; field in class:AccessibilityEvent
777 mAction = event.mAction;
973 mAction = action;
982 return mAction;
1058 mAction = 0;
1079 mAction = parcel.readInt();
1135 parcel.writeInt(mAction);
1197 builder.append("; Action: ").append(mAction);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmMmiCode.java123 String mAction; // One of ACTION_* field in class:GsmMmiCode
198 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
289 mAction = getActionStringFromReqType(ssData.requestType);
290 Rlog.d(LOG_TAG, "parseSsData msc = " + mSc + ", action = " + mAction + ", ex = " + ex);
743 return mAction != null && mAction.equals(ACTION_ACTIVATE);
747 return mAction != null && mAction.equals(ACTION_DEACTIVATE);
751 return mAction != null && mAction
[all...]
/frameworks/native/libs/input/
H A DInput.cpp66 mAction = action;
78 mAction = from.mAction;
234 mAction = action;
254 mAction = other->mAction;
434 mAction = parcel->readInt32();
483 parcel->writeInt32(mAction);
/frameworks/base/core/jni/
H A Dandroid_view_KeyEvent.cpp43 jfieldID mAction; member in struct:android::__anon939
83 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction);
142 gKeyEventClassInfo.mAction = GetFieldIDOrDie(env, gKeyEventClassInfo.clazz, "mAction", "I");
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastStats.java48 final String mAction; field in class:BroadcastStats.ActionEntry
56 mAction = action;
104 pw.print(ae.mAction);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneMmiCode.java173 private String mAction; // One of ACTION_* field in class:ImsPhoneMmiCode
248 ret.mAction = makeEmptyNull(m.group(MATCH_GROUP_ACTION));
653 return mAction != null && mAction.equals(ACTION_ACTIVATE);
657 return mAction != null && mAction.equals(ACTION_DEACTIVATE);
661 return mAction != null && mAction.equals(ACTION_INTERROGATE);
665 return mAction != null && mAction
[all...]
/frameworks/base/core/java/android/content/
H A DIntent.java4743 private String mAction; field in class:Intent
4768 this.mAction = o.mAction;
4798 this.mAction = o.mAction;
5377 if (intent.mAction == null) {
5379 intent.mAction = ACTION_VIEW;
5836 return mAction;
6748 mAction = action != null ? action.intern() : null;
8107 if (other.mAction !
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dmonkey.c192 Action_pt mAction; member in struct:__anon1831
285 State_t nextState = (*transitionTable[i].mAction)(&player);
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkMonitor.java568 private final String mAction; field in class:NetworkMonitor.CustomIntentReceiver
572 mAction = action + "_" + mNetworkAgentInfo.network.netId + "_" + token;
573 mContext.registerReceiver(this, new IntentFilter(mAction));
576 final Intent intent = new Intent(mAction);
582 if (intent.getAction().equals(mAction)) sendMessage(obtainMessage(mWhat, mToken));
/frameworks/base/core/java/android/widget/
H A DListView.java1119 private int mAction; field in class:ListView.FocusSelector
1126 mAction = STATE_SET_SELECTION;
1131 if (mAction == STATE_SET_SELECTION) {
1133 mAction = STATE_WAIT_FOR_LAYOUT;
1134 } else if (mAction == STATE_REQUEST_FOCUS) {
1140 mAction = -1;
1145 if (mAction != STATE_WAIT_FOR_LAYOUT || position != mPosition) {
1148 mAction = STATE_REQUEST_FOCUS;
1153 if (mAction == STATE_WAIT_FOR_LAYOUT) {
1154 mAction
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java337 private final Object mAction; field in class:AccessibilityNodeInfoCompat.AccessibilityActionCompat
350 mAction = action;
359 return IMPL.getAccessibilityActionId(mAction);
369 return IMPL.getAccessibilityActionLabel(mAction);
2582 IMPL.addAction(mInfo, action.mAction);
2600 return IMPL.removeAction(mInfo, action.mAction);

Completed in 6136 milliseconds