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

1 2 3 4 5 6

  /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 17 private final int mAction;
24 mAction = a.getInt(R.styleable.TunerSwitch_metricsAction, -1);
47 if (mAction != -1) {
48 MetricsLogger.action(getContext(), mAction, isChecked());
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmSelectionActivity.java 49 private int mAction;
74 mAction = intent.getIntExtra(EXTRA_ACTION, ACTION_INVALID);
97 new ProcessAlarmActionAsync(alarm, this, mAction).execute();
106 private final int mAction;
111 mAction = action;
116 switch (mAction) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/actions/
ActionView.java 41 private Action mAction;
66 mAction = action;
67 setActionHeader(mAction.getHeader());
69 setAppIcon(mAction.getAppIcon());
70 setAppName(mAction.getAppName());
100 mActionButton.setImageResource(mAction.getButtonIcon());
  /system/core/libsysutils/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);
  /frameworks/rs/rsov/compiler/spirit/
visitor.h 81 InstructionVisitor(T action) : mAction(action) {}
86 void visit(INST_CLASS *inst) override { mAction((Instruction *)inst); }
91 T mAction;
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
SimpleJobIntentController.java 46 final String mAction;
50 mAction = action;
56 Intent intent = new Intent(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/DocumentsUI/tests/common/com/android/documentsui/testing/
TestEvent.java 74 private @Action int mAction;
84 mAction = ACTION_UNSET; // somebody has to set this, else we'll barf later.
95 assert(source.mAction != ACTION_UNSET);
96 mAction = source.mAction;
173 return mAction == MotionEvent.ACTION_DOWN;
178 return mAction == MotionEvent.ACTION_UP;
183 return mAction == MotionEvent.ACTION_POINTER_DOWN;
188 return mAction == MotionEvent.ACTION_POINTER_UP;
193 return mAction == MotionEvent.ACTION_MOVE
    [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;
  /packages/apps/TV/src/com/android/tv/dvr/ui/browse/
ActionPresenterSelector.java 54 Action mAction;
77 vh.mAction = action;
83 ((ActionViewHolder) viewHolder).mAction = null;
100 vh.mAction = action;
131 vh.mAction = null;
  /frameworks/base/core/java/android/view/
DragEvent.java 129 int mAction;
275 mAction = action;
316 return obtain(source.mAction, source.mX, source.mY, source.mLocalState,
335 return mAction;
477 + " action=" + mAction + " @ (" + mX + ", " + mY + ") desc=" + mClipDescription
499 dest.writeInt(mAction);
530 event.mAction = in.readInt();
KeyEvent.java     [all...]
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
CtsMouseUtil.java 67 private final int mAction;
70 mAction = action;
75 return (actual instanceof MotionEvent) && ((MotionEvent) actual).getAction() == mAction;
80 return "action=" + MotionEvent.actionToString(mAction);
  /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;

Completed in 1009 milliseconds

1 2 3 4 5 6