HomeSort by relevance Sort by last modified time
    Searched full:maction (Results 1 - 25 of 73) sorted by null

1 2 3

  /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/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...]
  /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...]
  /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) {
291 mAction = (int)(r.nextInt(14));
294 switch (mAction) {
  /external/chromium_org/components/devtools_bridge/android/javatests/src/org/chromium/components/devtools_bridge/tests/
DebugActivity.java 57 private final String mAction;
60 mAction = action;
66 intent.setAction(mAction);
  /system/core/include/sysutils/
NetlinkEvent.h 26 int mAction;
50 int getAction() { return 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,
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ActionPresenterSelector.java 40 Action mAction;
63 vh.mAction = action;
69 ((ActionViewHolder) viewHolder).mAction = null;
86 vh.mAction = action;
121 vh.mAction = null;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
SensorSettingContainer.java 34 private final String mAction;
42 mAction = action;
91 stateContainer.executeActivity(mAction);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 86 private SmilPlayerAction mAction = SmilPlayerAction.NO_ACTIVE_ACTION;
277 return mAction == SmilPlayerAction.PAUSE;
281 return mAction == SmilPlayerAction.START;
285 return mAction == SmilPlayerAction.STOP;
289 return mAction == SmilPlayerAction.RELOAD;
293 return mAction == SmilPlayerAction.NEXT;
297 return mAction == SmilPlayerAction.PREV;
323 mAction = SmilPlayerAction.PAUSE;
333 mAction = SmilPlayerAction.START;
344 mAction = SmilPlayerAction.STOP
    [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;
ActivityMenuListener.java 52 private final int mAction;
60 mAction = action;
66 switch (mAction) {
78 default: assert false : mAction;
  /hardware/intel/common/libmix/videoencoder/
VideoEncoderUtils.h 46 void setAction(int32_t action) {mAction = action;}
72 int32_t mAction;
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/util/
FeatureUtilitiesTest.java 59 private final String mAction;
63 mAction = recognizesAction;
70 if (intent.getAction().equals(mAction)) {
83 private final String mAction;
87 mAction = recognizesAction;
92 return new IntentTestPackageManager(mAction);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
Layout.java 453 private Action mAction;
457 mAction = new Action(id);
462 mAction = new Action(intent);
466 mAction.mAppearence.mTitle = mRes.getString(resId);
471 mAction.mAppearence.mDescriptionGetter = new LiteralStringGetter(mRes.getString(
477 mAction.mAppearence.mTitle = title;
482 mAction.mAppearence.mIcon = mRes.getDrawable(resId);
487 mAction.mAppearence.mDescriptionGetter = new LiteralStringGetter(description);
492 mAction.mAppearence.mDescriptionGetter = description;
497 mAction.mAppearence.mChecked = checked
    [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) {
  /frameworks/base/services/core/java/com/android/server/
ServiceWatcher.java 56 private final String mAction;
60 * implements mAction. When null, all packages in the system that matches one of the signature
103 mAction = action;
163 Intent intent = new Intent(mAction);
181 Log.w(mTag, packageName + " resolves service " + mAction
207 Log.d(mTag, String.format("bindBestPackage for %s : %s found %d, %s", mAction,
214 if (D) Log.d(mTag, "Unable to query intent services for action: " + mAction);
237 Intent intent = new Intent(mAction);
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 41 jfieldID mAction;
81 jint action = env->GetIntField(eventObj, gKeyEventClassInfo.mAction);
158 GET_FIELD_ID(gKeyEventClassInfo.mAction, gKeyEventClassInfo.clazz,
159 "mAction", "I");
  /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;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
math_semantic_util.js 103 'MERROR', 'MPHANTOM', 'MSPACE', 'MACTION', 'MALIGNGROUP', 'MALIGNMARK',
104 'MACTION'
  /frameworks/native/include/input/
Input.h 291 inline int32_t getAction() const { return mAction; }
326 int32_t mAction;
345 inline int32_t getAction() const { return mAction; }
347 inline int32_t getActionMasked() const { return mAction & AMOTION_EVENT_ACTION_MASK; }
350 return (mAction & AMOTION_EVENT_ACTION_POINTER_INDEX_MASK)
354 inline void setAction(int32_t action) { mAction = action; }
558 return isTouchEvent(mSource, mAction);
574 int32_t mAction;
  /frameworks/native/libs/input/
Input.cpp 66 mAction = action;
78 mAction = from.mAction;
233 mAction = action;
252 mAction = other->mAction;
430 mAction = parcel->readInt32();
477 parcel->writeInt32(mAction);

Completed in 1377 milliseconds

1 2 3