HomeSort by relevance Sort by last modified time
    Searched refs:getAction (Results 226 - 250 of 988) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/bluetooth/
RequestPermissionActivity.java 82 && BluetoothAdapter.ACTION_STATE_CHANGED.equals(intent.getAction())) {
258 if (intent != null && intent.getAction().equals(BluetoothAdapter.ACTION_REQUEST_ENABLE)) {
261 && intent.getAction().equals(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE)) {
  /packages/services/Telephony/src/com/android/phone/
EmergencyCallbackModeExitDialog.java 174 if (getIntent().getAction().equals(
178 } else if (getIntent().getAction().equals(ACTION_SHOW_ECM_EXIT_DIALOG)) {
299 if (intent.getAction().equals(
  /cts/tests/tests/content/src/android/content/cts/
IntentTest.java 91 assertEquals(TEST_ACTION, mIntent.getAction());
95 assertEquals(TEST_ACTION, mIntent.getAction());
99 assertEquals(TEST_ACTION, mIntent.getAction());
108 assertEquals(TEST_ACTION, mIntent.getAction());
139 assertEquals(mIntent.getAction(), target.getAction());
351 assertEquals("android.intent.action.MAIN", mIntent.getAction());
596 assertEquals(TEST_ACTION, mIntent.getAction());
634 assertEquals(TEST_ACTION, actual.getAction());
659 assertEquals(TEST_ACTION, actual.getAction());
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
ShareCompat.java 311 boolean isSendMultiple = mIntent.getAction().equals(Intent.ACTION_SEND_MULTIPLE);
466 if (!mIntent.getAction().equals(Intent.ACTION_SEND)) {
691 final String action = mIntent.getAction();
704 return Intent.ACTION_SEND.equals(mIntent.getAction());
715 return Intent.ACTION_SEND_MULTIPLE.equals(mIntent.getAction());
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 319 if (event.getAction() == KeyEvent.ACTION_DOWN
323 } else if (event.getAction() == KeyEvent.ACTION_UP
423 if (event.getAction() == KeyEvent.ACTION_DOWN
466 if (event.getAction() == KeyEvent.ACTION_UP) {
468 } else if (event.getAction() == KeyEvent.ACTION_DOWN) {
  /cts/tests/tests/view/src/android/view/cts/
MotionEventTest.java 80 assertEquals(MotionEvent.ACTION_DOWN, mMotionEvent1.getAction());
101 assertEquals(motionEvent.getAction(), mMotionEvent1.getAction());
123 assertEquals(MotionEvent.ACTION_DOWN, mMotionEvent1.getAction());
138 assertEquals(MotionEvent.ACTION_MOVE, mMotionEvent1.getAction());
141 assertEquals(MotionEvent.ACTION_UP, mMotionEvent1.getAction());
144 assertEquals(MotionEvent.ACTION_MOVE, mMotionEvent1.getAction());
147 assertEquals(MotionEvent.ACTION_CANCEL, mMotionEvent1.getAction());
150 assertEquals(MotionEvent.ACTION_DOWN, mMotionEvent1.getAction());
176 assertEquals(mMotionEvent2.getAction(), motionEvent.getAction())
    [all...]
KeyEventTest.java 72 assertEquals(KeyEvent.ACTION_MULTIPLE, mKeyEvent.getAction());
522 assertEquals(KeyEvent.ACTION_DOWN, mKeyEvent.getAction());
540 assertEquals(mKeyEvent.getAction(), keyEvent.getAction());
582 assertEquals(KeyEvent.ACTION_UP, newEvent.getAction());
599 assertEquals(mKeyEvent.getAction(), newEvent.getAction());
619 assertEquals(mKeyEvent.getAction(), newEvent.getAction());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlEditor.java 371 IAction action = mTextEditor.getAction(ActionFactory.UNDO.getId());
374 action = mTextEditor.getAction(ActionFactory.REDO.getId());
378 mTextEditor.getAction(ActionFactory.DELETE.getId()));
380 mTextEditor.getAction(ActionFactory.CUT.getId()));
382 mTextEditor.getAction(ActionFactory.COPY.getId()));
384 mTextEditor.getAction(ActionFactory.PASTE.getId()));
386 mTextEditor.getAction(ActionFactory.SELECT_ALL.getId()));
388 mTextEditor.getAction(ActionFactory.FIND.getId()));
390 mTextEditor.getAction(IDEActionFactory.BOOKMARK.getId()));
614 IAction action = mTextEditor.getAction(ACTION_NAME_FORMAT_DOCUMENT)
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
RemotePlaybackClient.java 611 Log.d(TAG, "Received result from " + intent.getAction()
654 Log.d(TAG, "Received result from " + intent.getAction()
662 if (intent.getAction().equals(MediaControlIntent.ACTION_END_SESSION)
688 Log.w(TAG, "Received invalid result data from " + intent.getAction()
703 Log.w(TAG, "Received error from " + intent.getAction()
800 String action = intent.getAction()
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java 65 if (ACTION_SET_ALARM.equals(intent.getAction())) {
67 } else if (ACTION_SHOW_ALARMS.equals(intent.getAction())) {
69 } else if (ACTION_SET_TIMER.equals(intent.getAction())) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibleKeyboardViewProxy.java 242 switch (event.getAction()) {
298 final int savedAction = event.getAction();
324 switch (event.getAction()) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/
ResponderTestActivity.java 118 String action = intent.getAction();
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
GrantUriPermission.java 46 final String action = intent.getAction();
  /cts/tests/tests/net/src/android/net/wifi/cts/
ConcurrencyTest.java 46 final String action = intent.getAction();
  /development/samples/AndroidBeamDemo/src/com/example/android/beam/
Beam.java 118 if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(getIntent().getAction())) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentReceiveResult.java 125 text.append(data.getAction());
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Patterns.java 104 switch (event.getAction()) {
TouchRotateActivity.java 90 switch (e.getAction()) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SecureView.java 129 if (event.getAction() == MotionEvent.ACTION_UP) {
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java 50 if (intent.getAction().equals(TOAST_ACTION)) {
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentReceiveResultSupport.java 127 text.append(data.getAction());
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
SnapScrollController.java 68 switch(event.getAction()) {
  /external/chromium_org/tools/android/memconsumer/java/src/org/chromium/memconsumer/
MemConsumer.java 77 if (intent.getAction() == NOTIFICATION_ACTION) {
  /external/icu4c/layout/
ThaiShaping.h 67 le_uint8 getAction() { return action; };
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
MotionEventTest.java 49 assertEquals(1 << MotionEvent.ACTION_POINTER_ID_SHIFT | MotionEvent.ACTION_MOVE, event.getAction());

Completed in 654 milliseconds

1 2 3 4 5 6 7 8 91011>>