HomeSort by relevance Sort by last modified time
    Searched refs:intents (Results 1 - 25 of 42) sorted by null

1 2

  /frameworks/support/v4/honeycomb/android/support/v4/app/
TaskStackBuilderHoneycomb.java 28 Intent[] intents, int flags) {
29 return PendingIntent.getActivities(context, requestCode, intents, flags);
ActivityCompatHoneycomb.java 33 static void startActivities(Activity activity, Intent[] intents) {
34 activity.startActivities(intents);
  /frameworks/support/v4/java/android/support/v4/app/
ActivityCompat.java 89 * @param intents Array of intents defining the activities that will be started. The element
93 public static boolean startActivities(Activity activity, Intent[] intents) {
95 ActivityCompatHoneycomb.startActivities(activity, intents);
TaskStackBuilder.java 70 PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
75 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
77 Intent topIntent = intents[intents.length - 1];
84 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
86 intents[0].addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
89 intents, flags);
178 * @return the number of intents added so far.
211 "No intents added to TaskStackBuilder; cannot startActivities");
214 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]) local
237 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]); local
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerClient.java 32 public void onRecognitionSuccess(final Intent[] intents);
PhoneTypeChoiceRecognizerEngine.java 43 * of results, builds a corresponding list of Intents, and
53 ArrayList<Intent> intents = new ArrayList<Intent>(); local
56 intents.size() < RESULT_LIMIT; result++) {
86 addIntent(intents, intent);
93 if (mLogger != null) mLogger.logIntents(intents);
98 if (intents.size() == 0) {
99 if (false) Log.d(TAG, " no intents");
100 recognizerClient.onRecognitionFailure("No Intents generated");
105 intents.toArray(new Intent[intents.size()]))
    [all...]
CommandRecognizerEngine.java 51 * it will process the results, which will pass a list of intents to
940 ArrayList<Intent> intents = new ArrayList<Intent>(); local
    [all...]
VoiceDialerTester.java 118 * @param intents Array of Intents corresponding to recognized sentences.
120 public void onRecognitionSuccess(Intent[] intents) {
122 wf.mTotal = intents.length;
125 for (int i = 0; i < intents.length; i++) {
127 intents[i].getStringExtra(RecognizerEngine.SENTENCE_EXTRA).
132 if (intents.length > 1) wf.mMessage += ", etc";
RecognizerEngine.java 45 * a list of intents to the {@RecogizerClient}.
101 * <li>Build a list of Intents corresponding to the results. (implementation
232 protected static void addIntent(ArrayList<Intent> intents, Intent intent) {
233 for (Intent in : intents) {
242 intents.add(intent);
VoiceDialerActivity.java 736 * @param intents a list of Intents corresponding to the sentences.
738 public void onRecognitionSuccess(final Intent[] intents) {
740 intents.length);
746 // store the intents in a member variable so that we can access it
748 mAvailableChoices = intents;
757 String[] sentences = new String[intents.length];
758 for (int i = 0; i < intents.length; i++) {
759 sentences[i] = intents[i].getStringExtra(
763 if (intents.length == 0)
    [all...]
RecognizerLogger.java 163 * Write a list of Intents into the text log file.
164 * @param intents
166 public void logIntents(ArrayList<Intent> intents) {
167 logLine("Intents *********************");
169 for (Intent intent : intents) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessage.java 70 // accomplish this, we can build an array of intents to insert the back
72 Intent[] intents = new Intent[4]; local
77 intents[0] = Intent.makeRestartActivityTask(new ComponentName(context,
81 intents[1] = new Intent(context, com.example.android.apis.ApiDemos.class);
82 intents[1].putExtra("com.example.android.apis.Path", "App");
84 intents[2] = new Intent(context, com.example.android.apis.ApiDemos.class);
85 intents[2].putExtra("com.example.android.apis.Path", "App/Notification");
89 intents[3] = new Intent(context, IncomingMessageView.class);
90 intents[3].putExtra(IncomingMessageView.KEY_FROM, from);
91 intents[3].putExtra(IncomingMessageView.KEY_MESSAGE, msg)
    [all...]
IntentActivityFlags.java 41 // be done by launching an array of Intents, representing the new
44 Intent[] intents = new Intent[3]; local
49 intents[0] = Intent.makeRestartActivityTask(new ComponentName(this,
55 intents[1] = intent;
61 intents[2] = intent;
62 return intents;
StatusBarNotifications.java 152 // extras (and other Intents in the array) to be the ones passed in here.
163 // accomplish this, we can build an array of intents to insert the back
165 Intent[] intents = new Intent[4]; local
170 intents[0] = Intent.makeRestartActivityTask(new ComponentName(this,
174 intents[1] = new Intent(this, com.example.android.apis.ApiDemos.class);
175 intents[1].putExtra("com.example.android.apis.Path", "App");
177 intents[2] = new Intent(this, com.example.android.apis.ApiDemos.class);
178 intents[2].putExtra("com.example.android.apis.Path", "App/Notification");
181 intents[3] = new Intent(this, StatusBarNotifications.class);
186 // extras (and other Intents in the array) to be the ones passed in here
    [all...]
Intents.java 28 public class Intents extends Activity {
33 setContentView(R.layout.intents);
  /cts/tests/tests/security/src/android/security/cts/
BrowserTest.java 32 * Test for browsers which share state across multiple javascript intents.
59 * Verify that no state is preserved across multiple intents sent
62 * In this test, we send two intents to the Android browser. The first
65 * across the two intents.
71 List<Intent> intents = getAllJavascriptIntents(); local
72 for (Intent i : intents) {
82 + "multiple intents. Vulnerable to CVE-2011-2357?",
90 * Verify that no state is preserved across multiple intents sent
93 * In this test, we send 20 intents to the Android browser. Each
102 List<Intent> intents = getAllJavascriptIntents() local
    [all...]
  /frameworks/base/core/java/android/app/
PendingIntent.java 89 * Intent. This can be used if you are creating intents where only the
209 * array of Intents to be supplied. The first Intent in the array is
212 * the resulting PendingIntent, all of the Intents are started in the same
229 * This is because it is the most specific of the supplied intents, and the
230 * UI the user actually sees when the intents are started.
237 * @param intents Array of Intents of the activities to be launched.
249 Intent[] intents, int flags) {
251 String[] resolvedTypes = new String[intents.length];
252 for (int i=0; i<intents.length; i++)
    [all...]
Instrumentation.java 432 * @param which The set of intents this monitor is responsible for.
609 * @param filter The set of intents this monitor is responsible for.
    [all...]
LocalActivityManager.java 313 ArrayList<Intent> intents = new ArrayList<Intent>(1); local
314 intents.add(intent);
316 mActivityThread.performNewIntents(r, intents);
  /frameworks/base/test-runner/src/android/test/
IsolatedContext.java 65 /** Returns the list of intents that were broadcast since the last call to this method. */
67 List<Intent> intents = mBroadcastIntents; local
69 return intents;
  /packages/apps/Browser/src/com/android/browser/
UploadHandler.java 228 private Intent createChooserIntent(Intent... intents) {
230 chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, intents);
  /packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java 20 import static android.provider.Telephony.Sms.Intents.WAP_PUSH_RECEIVED_ACTION;
52 * Receives Intent.WAP_PUSH_RECEIVED_ACTION intents and starts the
67 protected Void doInBackground(Intent... intents) {
68 Intent intent = intents[0];
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
SimpleMenu.java 160 Intent[] intents, Intent intent, int i3, MenuItem[] menuItems) {
  /frameworks/base/core/java/android/content/
ContextWrapper.java 280 public void startActivities(Intent[] intents) {
281 mBase.startActivities(intents);
Context.java 49 * broadcasting and receiving intents, etc.
    [all...]

Completed in 786 milliseconds

1 2