HomeSort by relevance Sort by last modified time
    Searched refs:getAction (Results 76 - 100 of 894) sorted by null

1 2 34 5 6 7 8 91011>>

  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyMotionEvent.java 81 public int getAction() {
146 return (getAction() == MotionEvent.ACTION_UP);
175 msg.append(me.getAction());
  /development/samples/CrossCompatibility/src/com/example/android/touchexample/
VersionedGestureDetector.java 72 switch (ev.getAction()) {
112 final int action = ev.getAction();
122 final int pointerIndex = (ev.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK)
  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
LocalServiceBroadcaster.java 73 if (intent.getAction().equals(ACTION_STARTED)) {
75 } else if (intent.getAction().equals(ACTION_UPDATE)) {
77 } else if (intent.getAction().equals(ACTION_STOPPED)) {
  /external/smack/src/org/jivesoftware/smackx/packet/
OfflineMessageRequest.java 155 public String getAction() {
180 if (getAction() != null) {
181 buf.append(" action=\"").append(getAction()).append("\"");
  /frameworks/base/core/java/com/android/internal/app/
NetInitiatedActivity.java 60 if (DEBUG) Log.d(TAG, "NetInitiatedReceiver onReceive: " + intent.getAction());
61 if (intent.getAction() == GpsNetInitiatedHandler.ACTION_NI_VERIFY) {
149 if (DEBUG) Log.d(TAG, "handleNIVerify action: " + intent.getAction());
  /frameworks/base/services/java/com/android/server/wifi/
WifiTrafficPoller.java 82 if (intent.getAction().equals(
86 } else if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
88 } else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
TestsListActivity.java 84 if (!intent.getAction().equals(Intent.ACTION_RUN)) {
101 if (intent.getAction().equals(Intent.ACTION_REBOOT)) {
103 } else if (intent.getAction().equals(Intent.ACTION_SHUTDOWN)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageRedEye.java 62 if (event.getAction() == MotionEvent.ACTION_DOWN) {
67 if (event.getAction() == MotionEvent.ACTION_MOVE) {
71 if (event.getAction() == MotionEvent.ACTION_UP) {
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerEngine.java 234 if (in.getAction() != null &&
235 in.getAction().equals(intent.getAction()) &&
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java 146 if (SHOW_DOWNLOAD_TOAST_INTENT_ACTION.equals(intent.getAction())) {
171 if (DATE_CHANGED_INTENT_ACTION.equals(intent.getAction())) {
176 } else if (UPDATE_NOW_INTENT_ACTION.equals(intent.getAction())) {
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerRecentTaskInfoTest.java 71 assertEquals(Intent.ACTION_CALL, values.baseIntent.getAction());
104 assertEquals(Intent.ACTION_CALL, values.baseIntent.getAction());
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMotionEvent.java 49 return obtain(motionEvent.getDownTime(), motionEvent.getEventTime(), motionEvent.getAction(), motionEvent.getX(), motionEvent.getY(), motionEvent.getMetaState());
53 public int getAction() {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DelegateViewHelper.java 61 switch (event.getAction()) {
74 if (!mPanelShowing && event.getAction() == MotionEvent.ACTION_MOVE) {
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSyncView.java 87 final int action = ev.getAction();
116 final int pointerIndex = (ev.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK)
FBOTestView.java 87 final int action = ev.getAction();
116 final int pointerIndex = (ev.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK)
  /frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/
ShadersTestView.java 81 final int action = ev.getAction();
110 final int pointerIndex = (ev.getAction() & MotionEvent.ACTION_POINTER_INDEX_MASK)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsStorageMonitor.java 153 if (intent.getAction().equals(Intent.ACTION_DEVICE_STORAGE_FULL)) {
156 } else if (intent.getAction().equals(Intent.ACTION_DEVICE_STORAGE_NOT_FULL)) {
  /frameworks/support/v4/java/android/support/v4/view/
MotionEventCompat.java 179 * Call {@link MotionEvent#getAction}, returning only the {@link #ACTION_MASK}
183 return event.getAction() & ACTION_MASK;
187 * Call {@link MotionEvent#getAction}, returning only the pointer index
191 return (event.getAction() & ACTION_POINTER_INDEX_MASK)
  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 109 return TextUtils.equals(a.getAction(), b.getAction());
  /packages/apps/Music/src/com/android/music/
MediaButtonIntentReceiver.java 60 String intentAction = intent.getAction();
75 int action = event.getAction();
  /packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionHelperActivity.java 136 if (intent != null && intent.getAction().equals(ACTION_INTERNAL_REQUEST_BT_ON)) {
139 && intent.getAction().equals(ACTION_INTERNAL_REQUEST_BT_ON_AND_DISCOVERABLE)) {
  /system/netd/
NetlinkHandler.cpp 56 int action = evt->getAction();
78 int action = evt->getAction();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
GoNegRespTestCase.java 85 String action = intent.getAction();
  /cts/tests/src/android/app/cts/
IntentServiceStub.java 71 String action = intent.getAction();
  /cts/tests/src/android/widget/cts/
ViewGroupStubActivity.java 47 String action = getIntent().getAction();

Completed in 695 milliseconds

1 2 34 5 6 7 8 91011>>