Lines Matching refs:intent

95      * if the intent is the result of selecting a suggestion.
115 * to launch the intent.
154 * intent will fill in and launch the pending intent. The data URI will be filled in with an
295 * forming the suggestion's intent. If the element is not provided, the action will be taken
297 * these must be present for the suggestion to generate an intent.</i> Note: If your action is
306 * forming the suggestion's intent. If the element is not provided, the data will be taken
317 * forming the suggestion's intent. If not provided, the Intent's extra data field will be null.
472 * The global search provider should handle this intent.
483 * The global search provider should handle this intent.
490 * Web search providers should handle this intent if they have provider-specific
498 * Components should handle this intent if they cache any searchable data and wish to stay
565 * a search intent.</li>
587 * searches. This data will be returned with SEARCH intent(s). Null if
608 * source bounds for the global search intent.
650 Intent intent = new Intent(INTENT_ACTION_GLOBAL_SEARCH);
651 intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
652 intent.setComponent(globalSearchActivity);
663 intent.putExtra(APP_DATA, appSearchData);
665 intent.putExtra(QUERY, initialQuery);
668 intent.putExtra(EXTRA_SELECT_QUERY, selectInitialQuery);
670 intent.setSourceBounds(sourceBounds);
672 if (DBG) Log.d(TAG, "Starting global search: " + intent.toUri(0));
673 mContext.startActivity(intent);
681 * intent.
729 * searches. This data will be returned with SEARCH intent(s). Null if
939 * Gets an intent for launching installed assistant activity, or null if not available.
940 * @return The assist intent.
946 Intent intent = new Intent(Intent.ACTION_ASSIST);
951 intent.replaceExtras(extras);
954 return intent;