HomeSort by relevance Sort by last modified time
    Searched refs:getAction (Results 126 - 150 of 1589) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
TestInCallServiceBroadcastReceiver.java 50 String action = intent.getAction();
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
SystemStateProviderTest.java 93 assertEquals(UiModeManager.ACTION_ENTER_CAR_MODE, intentFilter.getValue().getAction(0));
94 assertEquals(UiModeManager.ACTION_EXIT_CAR_MODE, intentFilter.getValue().getAction(1));
105 when(mIntentEnter.getAction()).thenReturn(UiModeManager.ACTION_ENTER_CAR_MODE);
109 when(mIntentExit.getAction()).thenReturn(UiModeManager.ACTION_EXIT_CAR_MODE);
  /packages/services/Telephony/src/com/android/phone/vvm/omtp/
VvmBootCompletedReceiver.java 44 if (!intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
  /platform_testing/tests/perf/PerformanceLaunch/src/com/android/performanceLaunch/helper/
SimpleGLSurfaceView.java 59 switch (e.getAction()) {
  /system/core/include/sysutils/
NetlinkEvent.h 54 Action getAction() { return mAction; }
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
PersistentIntentResolvingTest.java 101 if (intent.getAction().equals(ExampleIntentReceivingActivity1.CONFIRM_ACTION)) {
105 } else if (intent.getAction().equals(ExampleIntentReceivingActivity2
ApplicationHiddenTest.java 99 if (Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())) {
102 } else if (Intent.ACTION_PACKAGE_REMOVED.equals(intent.getAction())) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SearchQueryResults.java 54 final String queryAction = queryIntent.getAction();
76 final String queryAction = queryIntent.getAction();
ForegroundService.java 179 if (ACTION_FOREGROUND.equals(intent.getAction())
180 || ACTION_FOREGROUND_WAKELOCK.equals(intent.getAction())) {
199 } else if (ACTION_BACKGROUND.equals(intent.getAction())
200 || ACTION_BACKGROUND_WAKELOCK.equals(intent.getAction())) {
204 if (ACTION_FOREGROUND_WAKELOCK.equals(intent.getAction())
205 || ACTION_BACKGROUND_WAKELOCK.equals(intent.getAction())) {
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/
MediaButtonCallback.java 60 String action = mediaButtonIntent.getAction();
65 int keyAction = event.getAction();
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
ContactsUtilsTests.java 93 assertEquals(Intent.ACTION_SENDTO, imIntent.getAction());
115 assertEquals(Intent.ACTION_SENDTO, imIntent.getAction());
134 assertEquals(Intent.ACTION_SENDTO, imIntent.getAction());
138 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction());
156 assertEquals(Intent.ACTION_SENDTO, imIntent.getAction());
160 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction());
181 assertEquals(Intent.ACTION_SENDTO, imIntent.getAction());
185 assertEquals(Intent.ACTION_SENDTO, secondaryIntent.getAction());
  /packages/services/Telecomm/src/com/android/server/telecom/
SystemStateProvider.java 44 String action = intent.getAction();
50 Log.w(this, "Unexpected intent received: %s", intent.getAction());
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedActionAdapter.java 119 GuidedAction action = avh.getAction();
125 getGuidedActionsStylist().setEditingMode(avh, avh.getAction(),
326 mFocusListener.onGuidedActionFocused(avh.getAction());
356 GuidedAction action = avh.getAction();
390 mClickListener.onGuidedActionClicked(avh.getAction());
419 GuidedAction action = avh.getAction();
422 if (event.getAction() == KeyEvent.ACTION_DOWN) {
429 switch (event.getAction()) {
488 if (keyCode == KeyEvent.KEYCODE_BACK && event.getAction() == KeyEvent.ACTION_UP) {
491 } else if (keyCode == KeyEvent.KEYCODE_ENTER && event.getAction() =
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
ContextFixture.java 278 mBroadcastReceiversByAction.put(filter.getAction(i), receiver);
280 result = mStickyBroadcastByAction.get(filter.getAction(i));
290 logd("sendBroadcast called for " + intent.getAction());
293 mBroadcastReceiversByAction.get(intent.getAction())) {
301 logd("sendBroadcast called for " + intent.getAction());
307 logd("sendOrderedBroadcast called for " + intent.getAction());
360 logd("sendOrderedBroadcastAsUser called for " + intent.getAction());
373 logd("sendOrderedBroadcastAsUser called for " + intent.getAction());
387 logd("sendOrderedBroadcastAsUser called for " + intent.getAction());
398 logd("sendStickyBroadcast called for " + intent.getAction());
    [all...]
  /cts/apps/NotificationBot/src/com/android/cts/robot/
NotificationBot.java 61 if (ACTION_POST.equals(intent.getAction())) {
75 } else if (ACTION_CANCEL.equals(intent.getAction())) {
87 } else if (ACTION_RESET_SETUP_NOTIFICATION.equals(intent.getAction())) {
90 } else if (ACTION_INLINE_REPLY.equals(intent.getAction())) {
94 Log.i(TAG, "received unexpected action: " + intent.getAction());
  /frameworks/base/services/tests/servicestests/src/com/android/server/search/
SearchablesTest.java 330 assertTrue(intent.getAction().equals(Intent.ACTION_SEARCH)
331 || intent.getAction().equals(Intent.ACTION_WEB_SEARCH)
332 || intent.getAction().equals(SearchManager.INTENT_ACTION_GLOBAL_SEARCH));
346 assertTrue(intent.getAction().equals(Intent.ACTION_WEB_SEARCH)
347 || intent.getAction().equals(SearchManager.INTENT_ACTION_GLOBAL_SEARCH));
  /packages/apps/Nfc/src/com/android/nfc/
BeamShareActivity.java 145 if (intent == null || (!intent.getAction().equalsIgnoreCase(Intent.ACTION_SEND) &&
146 !intent.getAction().equalsIgnoreCase(Intent.ACTION_SEND_MULTIPLE))) return;
173 if (intent.getAction().equalsIgnoreCase(Intent.ACTION_SEND)) {
244 String action = intent.getAction();
245 if (NfcAdapter.ACTION_ADAPTER_STATE_CHANGED.equals(intent.getAction())) {
  /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)
  /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) {
148 if (DEBUG) Log.d(TAG, "handleNIVerify action: " + intent.getAction());
  /frameworks/support/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)) {
  /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/Messaging/src/com/android/messaging/widget/
BaseWidgetProvider.java 57 final String action = intent.getAction();
63 if (getAction().equals(action)) {
81 protected abstract String getAction();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryService.java 164 if (SHOW_DOWNLOAD_TOAST_INTENT_ACTION.equals(intent.getAction())) {
167 Log.e(TAG, "Received " + intent.getAction() + " without locale; skipped");
195 final String action = intent.getAction();
  /cts/tests/app/src/android/app/cts/
ActivityManagerRecentTaskInfoTest.java 71 assertEquals(Intent.ACTION_CALL, values.baseIntent.getAction());
104 assertEquals(Intent.ACTION_CALL, values.baseIntent.getAction());

Completed in 1349 milliseconds

1 2 3 4 56 7 8 91011>>