HomeSort by relevance Sort by last modified time
    Searched refs:getIntent (Results 1 - 25 of 800) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/app/activity/
TestedScreen.java 41 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
42 if (LaunchpadActivity.FORWARD_RESULT.equals(getIntent().getAction())) {
43 Intent intent = new Intent(getIntent());
48 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
50 } else if (DELIVER_RESULT.equals(getIntent().getAction())) {
54 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
56 } else if (CLEAR_TASK.equals(getIntent().getAction())) {
57 if (!getIntent().getBooleanExtra(ClearTop.WAIT_CLEAR_TASK, false)) {
70 + Integer.toHexString(System.identityHashCode(this)) + ": " + getIntent());
71 if (CLEAR_TASK.equals(getIntent().getAction()))
    [all...]
  /cts/tests/app/src/android/app/cts/
TestedScreen.java 40 if (LaunchpadActivity.FORWARD_RESULT.equals(getIntent().getAction())) {
41 final Intent intent = new Intent(getIntent());
46 } else if (DELIVER_RESULT.equals(getIntent().getAction())) {
49 } else if (CLEAR_TASK.equals(getIntent().getAction())) {
50 if (!getIntent().getBooleanExtra(ClearTop.WAIT_CLEAR_TASK, false)) {
64 if (CLEAR_TASK.equals(getIntent().getAction())) {
65 if (getIntent().getBooleanExtra(ClearTop.WAIT_CLEAR_TASK, false)) {
86 final Intent intent = new Intent(getIntent()).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
94 if (CLEAR_TASK.equals(getIntent().getAction())) {
106 if (WAIT_BEFORE_FINISH.equals(getIntent().getAction()))
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
TestedScreen.java 40 if (LaunchpadActivity.FORWARD_RESULT.equals(getIntent().getAction())) {
41 final Intent intent = new Intent(getIntent());
46 } else if (DELIVER_RESULT.equals(getIntent().getAction())) {
49 } else if (CLEAR_TASK.equals(getIntent().getAction())) {
50 if (!getIntent().getBooleanExtra(ClearTop.WAIT_CLEAR_TASK, false)) {
64 if (CLEAR_TASK.equals(getIntent().getAction())) {
65 if (getIntent().getBooleanExtra(ClearTop.WAIT_CLEAR_TASK, false)) {
86 final Intent intent = new Intent(getIntent()).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
94 if (CLEAR_TASK.equals(getIntent().getAction())) {
106 if (WAIT_BEFORE_FINISH.equals(getIntent().getAction()))
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
InstalledAppDetailsTop.java 25 public Intent getIntent() {
26 Intent modIntent = new Intent(super.getIntent());
  /cts/tests/tests/assist/service/src/android/voiceinteraction/service/
DelayedAssistantActivity.java 35 intent.putExtra(Utils.TESTCASE_TYPE, getIntent().getStringExtra(Utils.TESTCASE_TYPE));
37 getIntent().getIntExtra(Utils.DISPLAY_WIDTH_KEY, 0));
39 getIntent().getIntExtra(Utils.DISPLAY_HEIGHT_KEY, 0));
  /development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
SpellCheckerSettingsActivity.java 33 public Intent getIntent() {
34 final Intent modIntent = new Intent(super.getIntent());
  /packages/apps/Settings/src/com/android/settings/notification/
RedactionSettingsStandalone.java 29 public Intent getIntent() {
30 Intent modIntent = new Intent(super.getIntent());
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
ExampleIntentReceivingActivity1.java 29 if (getIntent().getAction().equals(PersistentIntentResolvingTest.EXAMPLE_ACTION)) {
ExampleIntentReceivingActivity2.java 29 if (getIntent().getAction().equals(PersistentIntentResolvingTest.EXAMPLE_ACTION)) {
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
CameraActivity.java 27 int themeId = this.getIntent().getExtras().getInt("theme");
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
ComponentDisablingActivity.java 37 String extraClassName = getIntent().getStringExtra(EXTRA_CLASS_NAME);
38 String extraPackage = getIntent().getStringExtra(EXTRA_PACKAGE);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessageInterstitial.java 56 CharSequence from = getIntent().getCharSequenceExtra(IncomingMessageView.KEY_FROM);
57 CharSequence msg = getIntent().getCharSequenceExtra(IncomingMessageView.KEY_MESSAGE);
IncomingMessageView.java 48 getIntent().getCharSequenceExtra(KEY_FROM));
50 getIntent().getCharSequenceExtra(KEY_MESSAGE));
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
ImePreferences.java 29 public Intent getIntent() {
30 final Intent modIntent = new Intent(super.getIntent());
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
DetailsActivity.java 41 .setItem((PhotoItem) getIntent().getParcelableExtra(EXTRA_ITEM));
44 .setItem((PhotoItem) getIntent().getParcelableExtra(EXTRA_ITEM));
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
ArticleActivity.java 47 mCatIndex = getIntent().getExtras().getInt("catIndex", 0);
48 mArtIndex = getIntent().getExtras().getInt("artIndex", 0);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
DialogPicker.java 30 int typeBits = GalleryUtils.determineTypeBits(this, getIntent());
32 Intent intent = getIntent();
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
WebActivity.java 49 final String extraUrl = getIntent().getStringExtra(EXTRA_URL);
50 final String extraAllowedUrlBase = getIntent().getStringExtra(EXTRA_ALLOWED_URL_BASE);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeEnablerActivity.java 44 public Intent getIntent() {
45 final Intent modIntent = new Intent(super.getIntent());
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiPickerActivity.java 31 public Intent getIntent() {
32 Intent modIntent = new Intent(super.getIntent());
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionarySettingsActivity.java 39 public Intent getIntent() {
40 final Intent modIntent = new Intent(super.getIntent());
  /cts/tests/tests/dpi/src/android/dpi/cts/
OrientationActivity.java 36 int orientation = getIntent().getIntExtra(EXTRA_ORIENTATION, -1);
  /cts/tests/tests/media/src/android/media/cts/
ResourceManagerTestActivity1.java 34 Bundle extras = getIntent().getExtras();
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
BasicNotificationDisplayActivity.java 34 String title = getIntent().getStringExtra(EXTRA_TITLE);
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
BasicNotificationDisplayActivity.java 34 String title = getIntent().getStringExtra(EXTRA_TITLE);

Completed in 836 milliseconds

1 2 3 4 5 6 7 8 91011>>