HomeSort by relevance Sort by last modified time
    Searched refs:chooserIntent (Results 1 - 4 of 4) sorted by null

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowIntentTest.java 347 Intent chooserIntent = Intent.createChooser(originalIntent, "The title");
348 assertThat(chooserIntent.getAction()).isEqualTo(Intent.ACTION_CHOOSER);
349 assertThat(chooserIntent.getStringExtra(Intent.EXTRA_TITLE)).isEqualTo("The title");
350 assertThat((Intent) chooserIntent.getParcelableExtra(Intent.EXTRA_INTENT))
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
IntentTest.java 368 Intent chooserIntent = Intent.createChooser(originalIntent, "The title");
372 assertEquals(expectedIntent, chooserIntent);
  /packages/apps/DocumentsUI/src/com/android/documentsui/files/
ActionHandler.java 390 Intent chooserIntent = Intent.createChooser(
393 mActivity.startActivity(chooserIntent);
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportProgressService.java     [all...]

Completed in 240 milliseconds