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

1 2 3 4 5 6

  /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());
  /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/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!");
  /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);
  /cts/tests/app/src/android/app/cts/
NotificationTest.java 39 private Notification.Action mAction;
232 mAction = null;
233 mAction = new Notification.Action.Builder(0, ACTION_TITLE, actionIntent).build();
234 assertEquals(ACTION_TITLE, mAction.title);
235 assertEquals(actionIntent, mAction.actionIntent);
236 assertEquals(true, mAction.getAllowGeneratedReplies());
  /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,
  /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());
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
BrowseAnimationFragment.java 43 final OnItemViewClickedListener mAction;
47 mAction = action;
309 ((Item) item).mAction.onItemClicked(itemViewHolder, item, rowViewHolder, row);
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderUtils.h 46 void setAction(int32_t action) {mAction = action;}
72 int32_t mAction;
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
RecurrentTimer.h 43 RecurrentTimer(const Action& action) : mAction(action) {
145 Action mAction;
  /system/core/libsysutils/include/sysutils/
NetlinkEvent.h 42 Action mAction;
54 Action getAction() { return mAction; }
  /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...]
  /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);
  /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);
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 43 jfieldID mAction;
83 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction);
142 gKeyEventClassInfo.mAction = GetFieldIDOrDie(env, gKeyEventClassInfo.clazz, "mAction", "I");
  /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/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/picker/
PickFragment.java 71 private int mAction;
116 mAction = savedInstanceState.getInt(ACTION_KEY);
129 outState.putInt(ACTION_KEY, mAction);
141 mAction = action;
153 switch (mAction) {
185 mAction == State.ACTION_OPEN_TREE ||
  /packages/apps/Messaging/src/com/android/messaging/util/
DebugUtils.java 197 private final String mAction;
202 mAction = action;
213 DebugSmsMmsFromDumpFileDialogFragment.newInstance(result, mAction);
224 && ((mAction == DebugSmsMmsFromDumpFileDialogFragment.ACTION_EMAIL
  /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;
  /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...]
  /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/
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...]

Completed in 1024 milliseconds

1 2 3 4 5 6