Searched refs:launchIntent (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSomnambulator.java38 final Intent launchIntent = getIntent();
39 final String action = launchIntent.getAction();
51 boolean docked = launchIntent.hasCategory(Intent.CATEGORY_DESK_DOCK);
/frameworks/base/core/java/android/widget/
H A DShareActionProvider.java291 Intent launchIntent = dataModel.chooseActivity(itemId);
292 if (launchIntent != null) {
293 launchIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
294 mContext.startActivity(launchIntent);
H A DActivityChooserView.java577 Intent launchIntent = mAdapter.getDataModel().chooseActivity(position);
578 if (launchIntent != null) {
579 launchIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
580 mContext.startActivity(launchIntent);
595 Intent launchIntent = mAdapter.getDataModel().chooseActivity(index);
596 if (launchIntent != null) {
597 launchIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
598 mContext.startActivity(launchIntent);
H A DSearchView.java1405 launchIntent(intent);
1415 private void launchIntent(Intent intent) { method in class:SearchView
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DShareActionProvider.java314 Intent launchIntent = dataModel.chooseActivity(itemId);
315 if (launchIntent != null) {
316 launchIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
317 mContext.startActivity(launchIntent);
H A DSearchView.java1347 launchIntent(intent);
1357 private void launchIntent(Intent intent) { method in class:SearchView
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserView.java553 Intent launchIntent = mAdapter.getDataModel().chooseActivity(position);
554 if (launchIntent != null) {
555 launchIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
556 getContext().startActivity(launchIntent);
571 Intent launchIntent = mAdapter.getDataModel().chooseActivity(index);
572 if (launchIntent != null) {
573 launchIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
574 getContext().startActivity(launchIntent);
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DGlobalScreenshot.java279 Intent launchIntent = new Intent(Intent.ACTION_VIEW);
280 launchIntent.setDataAndType(params.imageUri, "image/png");
281 launchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
286 .setContentIntent(PendingIntent.getActivity(params.context, 0, launchIntent, 0))
/frameworks/base/core/java/android/app/
H A DSearchDialog.java540 launchIntent(intent);
546 private void launchIntent(Intent intent) { method in class:SearchDialog

Completed in 142 milliseconds