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

  /packages/apps/Browser/src/com/android/browser/
OpenDownloadReceiver.java 56 Intent launchIntent = new Intent(Intent.ACTION_VIEW);
62 launchIntent.setDataAndType(path, mimetype);
63 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
65 context.startActivity(launchIntent);
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationLauncher.java 92 Intent launchIntent = new Intent(Intent.ACTION_MAIN);
93 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
95 launchIntent.setComponent(componentName);
97 startActivity(launchIntent);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAppWidgetService.java 502 Intent launchIntent = new Intent();
504 launchIntent.setAction(Intent.ACTION_VIEW);
505 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
509 launchIntent.putExtra(KEY_DETAIL_VIEW, true);
513 launchIntent.setData(data);
515 launchIntent, PendingIntent.FLAG_UPDATE_CURRENT);
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java 688 Intent launchIntent = new Intent();
689 launchIntent.setClass(context, SettingsAppWidgetProvider.class);
690 launchIntent.addCategory(Intent.CATEGORY_ALTERNATIVE);
691 launchIntent.setData(Uri.parse("custom:" + buttonId));
693 launchIntent, 0 /* no flags */);
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 497 launchIntent(intent);
513 launchIntent(intent);
563 protected void launchIntent(Intent intent) {
593 launchIntent(intent);
  /frameworks/base/core/java/android/app/
SearchDialog.java     [all...]

Completed in 171 milliseconds