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

1 2

  /packages/apps/VoiceDialer/src/com/android/voicedialer/
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
947 ArrayList<Intent> intents = new ArrayList<Intent>(); local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
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;
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...]
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...]
  /frameworks/base/core/java/android/app/
TaskStackBuilder.java 208 * @return the number of intents added so far.
243 "No intents added to TaskStackBuilder; cannot startActivities");
246 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]); local
247 intents[0].addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
250 mSourceContext.startActivities(intents, options);
287 "No intents added to TaskStackBuilder; cannot getPendingIntent");
290 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]); local
291 intents[0].addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
294 return PendingIntent.getActivities(mSourceContext, requestCode, intents, flags, options);
298 * Return an array containing the intents added to this builder. The intent at th
    [all...]
LocalActivityManager.java 313 ArrayList<Intent> intents = new ArrayList<Intent>(1); local
314 intents.add(intent);
316 mActivityThread.performNewIntents(r, intents);
ContextImpl.java 126 "IntentReceiver components are not allowed to register to receive intents");
911 (Activity)null, intents, options); local
    [all...]
ActivityManagerNative.java 1467 Intent[] intents = data.createTypedArray(Intent.CREATOR); local
1484 Intent[] intents = data.createTypedArray(Intent.CREATOR); local
    [all...]
ActivityThread.java 307 List<Intent> intents; field in class:ActivityThread.NewIntentData
310 return "NewIntentData{intents=" + intents + " token=" + token + "}";
593 public final void scheduleNewIntent(List<Intent> intents, IBinder token) {
595 data.intents = intents;
    [all...]
  /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;
  /frameworks/support/v4/java/android/support/v4/app/
TaskStackBuilder.java 72 PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
77 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
79 Intent topIntent = intents[intents.length - 1];
86 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
88 intents[0].addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
91 intents, flags);
96 public PendingIntent getPendingIntent(Context context, Intent[] intents, int requestCode,
98 intents[0].addFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
101 intents, flags, options)
271 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]); local
316 Intent[] intents = mIntents.toArray(new Intent[mIntents.size()]); local
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
BrowserTest.java 55 * Verify that no state is preserved across multiple intents sent
59 * In this test, we send two intents to the Android browser. The first
62 * across the two intents.
74 List<Intent> intents = getAllJavascriptIntents(); local
75 for (Intent i : intents) {
85 + "multiple intents. Vulnerable to CVE-2011-2357?",
93 * Verify that no state is preserved across multiple intents sent
97 * In this test, we send 20 intents to the Android browser. Each
112 List<Intent> intents = getAllJavascriptIntents(); local
113 for (Intent i : intents) {
143 List<Intent> intents = createAllIntents(Uri.parse("http:\/\/www.google.com")); local
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 3242 public final ArrayList<II> intents; field in class:PackageParser.Component
    [all...]
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 
  /development/samples/training/bitmapfun/libs/
android-support-v4.jar 
  /development/samples/training/location-aware/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java 333 * List of intents that were used to start the most recent tasks.
498 * Resolver for broadcast intents to registered receivers.
523 * sticky Intent, values are an ArrayList of all broadcasted intents with
9566 ArrayList<Intent> intents = ent.getValue(); local
    [all...]
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 

Completed in 650 milliseconds

1 2