Lines Matching refs:intent

34     /** Extra added to a clip data intent object to hold the results bundle. */
181 * Get the remote input results bundle from an intent. The returned Bundle will
184 * @param intent The intent object that fired in response to an action or content intent
187 public static Bundle getResultsFromIntent(Intent intent) {
188 return IMPL.getResultsFromIntent(intent);
192 * Populate an intent object with the results gathered from remote input. This method
194 * pending intent.
196 * @param intent The intent to add remote inputs to. The {@link android.content.ClipData}
197 * field of the intent will be modified to contain the results.
202 public static void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent,
204 IMPL.addResultsToIntent(remoteInputs, intent, results);
210 Bundle getResultsFromIntent(Intent intent);
211 void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent,
217 public Bundle getResultsFromIntent(Intent intent) {
223 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) {
230 public Bundle getResultsFromIntent(Intent intent) {
231 return RemoteInputCompatJellybean.getResultsFromIntent(intent);
235 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) {
236 RemoteInputCompatJellybean.addResultsToIntent(remoteInputs, intent, results);
242 public Bundle getResultsFromIntent(Intent intent) {
243 return RemoteInputCompatApi20.getResultsFromIntent(intent);
247 public void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, Bundle results) {
248 RemoteInputCompatApi20.addResultsToIntent(remoteInputs, intent, results);