HomeSort by relevance Sort by last modified time
    Searched refs:mAction (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DelegatingAction.java 33 private final IAction mAction;
41 mAction = action;
46 mAction.addPropertyChangeListener(listener);
51 return mAction.getAccelerator();
56 return mAction.getActionDefinitionId();
61 return mAction.getDescription();
66 return mAction.getDisabledImageDescriptor();
71 return mAction.getHelpListener();
76 return mAction.getHoverImageDescriptor();
81 return mAction.getId()
    [all...]
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/action/
ActionTest.java 42 private TestChatAction mAction;
54 mAction = new TestChatAction(mActionKey, parameter);
66 assertEquals(mAction, mTransitions.get(index).action);
75 ActionMonitor.registerActionMonitor(mAction.actionKey, mMonitor);
76 assertTrue(ActionMonitor.sActionMonitors.containsKey(mAction.actionKey));
78 assertEquals(ActionMonitor.sActionMonitors.get(mAction.actionKey), mMonitor);
80 mAction.markStart();
85 ActionMonitor.unregisterActionMonitor(mAction.actionKey, mMonitor);
87 assertFalse(ActionMonitor.sActionMonitors.containsKey(mAction.actionKey));
95 ActionMonitor.registerActionMonitor(mAction.actionKey, mMonitor)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ToastBarOperation.java 33 private final int mAction;
52 mAction = menuId;
68 mAction = in.readInt();
78 sb.append(" mAction=");
79 sb.append(mAction);
95 dest.writeInt(mAction);
125 if (mAction == R.id.delete) {
127 } else if (mAction == R.id.remove_folder) {
129 } else if (mAction == R.id.change_folders) {
131 } else if (mAction == R.id.move_folder)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryView.java 40 private Action mAction;
73 if (mAction == null) {
76 if (mAction.getType() == Action.CROP_VIEW) {
79 if (mAction.getType() == Action.ADD_ACTION) {
102 if (mAction != null && mAction.getType() == Action.ADD_ACTION) {
109 if (mAction != null) {
110 if (mAction.getType() == Action.SPACER) {
114 if (mAction.isDoubleAction()) {
117 mAction.setImageFrame(new Rect(0, 0, getWidth(), getHeight()), getOrientation())
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
ScannerNotificationReceiver.java 32 private final String mAction;
36 mAction = action;
41 if (intent.getAction().equals(mAction)) {
50 + mAction + " while trying to scan " + numFiles + " files!");
MediaRandomTest.java 59 private volatile int mAction;
141 fail("Action " + mAction + " Param " + mParam
207 mAction = (int)(r.nextInt() % 12);
210 switch (mAction) {
296 mAction = (int)(r.nextInt(14));
299 switch (mAction) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
TunerSwitch.java 16 private final int mAction;
23 mAction = a.getInt(R.styleable.TunerSwitch_metricsAction, -1);
46 if (mAction != -1) {
47 MetricsLogger.action(getContext(), mAction, isChecked());
  /system/core/include/sysutils/
NetlinkEvent.h 42 Action mAction;
54 Action getAction() { return mAction; }
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
SensorSettingContainer.java 34 private final String mAction;
42 mAction = action;
91 stateContainer.executeActivity(mAction);
111 return stateContainer.hasActivity(mAction);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyKeyEvent.java 33 private int mAction;
51 mAction = action;
69 return mKeyEvent != null ? mKeyEvent.getAction() : mAction;
103 if (mAction == KeyEvent.ACTION_UP) {
129 keyEvent = new KeyEvent(downTime, eventTime, mAction, mKeyCode,
MonkeyMotionEvent.java 33 private int mAction;
51 mAction = action;
82 return mAction;
139 mAction, pointerCount, pointerIds, pointerCoords,
  /packages/apps/Messaging/src/com/android/messaging/ui/
SnackBar.java 130 private Action mAction;
150 mAction = action;
196 private final Action mAction;
212 mAction = builder.mAction;
250 if (mAction == null) {
253 return mAction.getActionLabel();
277 if (mAction == null || mAction.getActionRunnable() == null) {
293 mActionTextView.setText(mAction.getActionLabel())
    [all...]
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 61 int mAction;
66 mAction = ACTION_INJECT_TEXT;
72 mAction = otherType;
79 switch (mAction) {
157 switch (pair.mAction) {
167 Assert.fail("Invalid action for sendResponse: " + pair.mAction);
193 if (expect.mAction == Transaction.ACTION_CLIENT_CLOSE) {
285 SmtpSenderUnitTests.assertTrue(expect.mAction == Transaction.ACTION_START_TLS);
319 if (pair.mAction == Transaction.ACTION_IO_EXCEPTION) {
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderUtils.h 46 void setAction(int32_t action) {mAction = action;}
72 int32_t mAction;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ActionPresenterSelector.java 47 Action mAction;
70 vh.mAction = action;
76 ((ActionViewHolder) viewHolder).mAction = null;
93 vh.mAction = action;
128 vh.mAction = null;
  /frameworks/base/core/java/android/view/
DragEvent.java 129 int mAction;
274 mAction = action;
315 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
334 return mAction;
472 + " action=" + mAction + " @ (" + mX + ", " + mY + ") desc=" + mClipDescription
494 dest.writeInt(mAction);
525 event.mAction = in.readInt();
KeyEvent.java     [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
PickFragment.java 42 private int mAction;
105 mAction = action;
117 switch (mAction) {
133 mAction == State.ACTION_OPEN_TREE ||
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
LocaleMenuListener.java 47 private final int mAction;
55 mAction = action;
61 switch (mAction) {
74 default: assert false : mAction;
  /packages/apps/Messaging/src/com/android/messaging/ui/debug/
DebugSmsMmsFromDumpFileDialogFragment.java 57 private String mAction;
74 mAction = args.getString(KEY_ACTION);
83 if (ACTION_LOAD.equals(mAction)) {
86 } else if (ACTION_EMAIL.equals(mAction)) {
116 if (ACTION_LOAD.equals(mAction)) {
118 } else if (ACTION_EMAIL.equals(mAction)) {
  /frameworks/base/services/core/java/com/android/server/
ServiceWatcher.java 60 private final String mAction;
64 * implements mAction. When null, all packages in the system that matches one of the signature
112 mAction = action;
185 final Intent intent = new Intent(mAction);
202 Intent intent = new Intent(mAction);
223 Log.w(mTag, packageName + " resolves service " + mAction
249 Log.d(mTag, String.format("bindBestPackage for %s : %s found %d, %s", mAction,
256 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction);
260 Slog.w(mTag, "Odd, no component found for service " + mAction);
289 Intent intent = new Intent(mAction);
    [all...]
  /frameworks/support/media-compat/java/android/support/v4/media/session/
PlaybackStateCompat.java 637 private final String mAction;
648 mAction = action;
655 mAction = in.readString();
663 dest.writeString(mAction);
714 mCustomActionObj = PlaybackStateCompatApi21.CustomAction.newInstance(mAction,
739 return mAction;
786 private final String mAction;
817 mAction = action;
843 return new CustomAction(mAction, mName, mIcon, mExtras);
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiNoInternetDialog.java 52 private String mAction;
70 mAction = intent.getAction();
127 if (ACTION_PROMPT_UNVALIDATED.equals(mAction)) {
147 if (ACTION_PROMPT_UNVALIDATED.equals(mAction)) {
170 if (ACTION_PROMPT_UNVALIDATED.equals(mAction)) {
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 89 private final RecommendedAction mAction;
109 mAction = Preconditions.checkNotNull(action);
214 private final byte mAction;
217 this.mAction = val;
220 return mAction;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
RunLintAction.java 184 private final int mAction;
201 mAction = action;
207 if (mAction == ACTION_TOGGLE_EXCLUDE) {
223 if (mAction == ACTION_CLEAR) {
226 assert mAction == ACTION_RUN;

Completed in 2732 milliseconds

1 2 3 4