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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/docs/html/guide/appendix/
index.jd 7 <dt><a href="g-app-intents.html">Intents List: Invoking Google Applications on Android Devices</a></dt>
8 <dd>Intents you can send to invoke Google applications on Android devices.</dd>
  /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...]
VoiceDialerReceiver.java 23 import android.provider.Telephony.Intents;
53 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
59 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
android.provider.Contacts.Intents.Insert.html 10 android.provider.Contacts.Intents.Insert
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html" target="_top"><font size="+2"><code>Contacts.Intents.Insert</code></font></A>
86 <A NAME="android.provider.Contacts.Intents.Insert.ctor_changed()"></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#Contacts.Intents.Insert()" target="_top"><code>Contacts.Intents.Insert</code></A>() </nobr>
106 <A NAME="android.provider.Contacts.Intents.Insert.ACTION"></A>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#ACTION" target="_top"><code>ACTION</code></font></A></nobr> </TD>
115 <A NAME="android.provider.Contacts.Intents.Insert.COMPANY"></A
    [all...]
android.provider.Contacts.Intents.html 10 android.provider.Contacts.Intents
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.html" target="_top"><font size="+2"><code>Contacts.Intents</code></font></A>
86 <A NAME="android.provider.Contacts.Intents.ctor_changed()"></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.html#Contacts.Intents()" target="_top"><code>Contacts.Intents</code></A>() </nobr>
106 <A NAME="android.provider.Contacts.Intents.ATTACH_IMAGE"></A>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#ATTACH_IMAGE" target="_top"><code>ATTACH_IMAGE</code></font></A></nobr> </TD>
115 <A NAME="android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION"></A
    [all...]
android.provider.Contacts.Intents.UI.html 10 android.provider.Contacts.Intents.UI
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html" target="_top"><font size="+2"><code>Contacts.Intents.UI</code></font></A>
86 <A NAME="android.provider.Contacts.Intents.UI.ctor_changed()"></A>
87 <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#Contacts.Intents.UI()" target="_top"><code>Contacts.Intents.UI</code></A>() </nobr>
106 <A NAME="android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION"></A>
107 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#FILTER_CONTACTS_ACTION" target="_top"><code>FILTER_CONTACTS_ACTION</code></font></A></nobr> </TD>
115 <A NAME="android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY"></A
    [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...]
Intents.java 28 public class Intents extends Activity {
33 setContentView(R.layout.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...]
  /frameworks/base/docs/html/training/basics/intents/
index.jd 25 href="http://android-developers.blogspot.com/2009/11/integrating-application-with-intents.html">
26 Integrating Application with Intents (blog post)</a></li>
27 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and Intent
41 android.content.Intent} to identify and start the appropriate app component. Using intents even
50 make your app able to respond to intents from other apps.</p>
56 <dd>Shows how you can create implicit intents to launch other apps that can perform an
62 intent filters that declare the implicit intents your app accepts.</dd>
  /frameworks/support/v4/honeycomb/android/support/v4/app/
TaskStackBuilderHoneycomb.java 28 Intent[] intents, int flags) {
29 return PendingIntent.getActivities(context, requestCode, intents, flags);
  /frameworks/support/v4/honeycomb/android/support/v4/content/
ContextCompatHoneycomb.java 27 static void startActivities(Context context, Intent[] intents) {
28 context.startActivities(intents);
  /frameworks/support/v4/jellybean/android/support/v4/app/
TaskStackBuilderJellybean.java 27 Intent[] intents, int flags, Bundle options) {
28 return PendingIntent.getActivities(context, requestCode, intents, flags, options);
  /frameworks/support/v4/jellybean/android/support/v4/content/
ContextCompatJellybean.java 25 public static void startActivities(Context context, Intent[] intents, Bundle options) {
26 context.startActivities(intents, options);
  /frameworks/base/docs/html/training/sharing/
index.jd 17 <li>Experience with <a href="{@docRoot}guide/components/intents-filters.html">Intents and
39 applications with intents.</dd>
42 <dd>Learn how to set up your application to receive text and binary data from intents.</dd>
receive.jd 26 <li><a href="{@docRoot}guide/components/intents-filters.html">Intents and
45 <p>Intent filters inform the system what intents an application component is willing to accept.
47 the <a href="{@docRoot}training/sharing/send.html">Send Content to Other Apps Using Intents</a>
48 lesson, you create intent filters in order to be able to receive intents with this action. You
51 href="{@docRoot}guide/components/intents-filters.html#ifs">&lt;intent-filter&gt;</a></code>
76 please read <a href="{@docRoot}guide/components/intents-filters.html#ifs">Intents and Intent
114 // Handle other intents, such as being started from the home screen
  /development/samples/ApiDemos/res/layout/
intents.xml 17 <!-- Demonstrates launching various intents.
18 See corresponding Java code com.example.android.apis.app.Intents.java. -->
28 android:text="@string/intents"/>
  /frameworks/base/docs/html/sdk/api_diff/3/changes/
android.provider.Contacts.Intents.Insert.html 10 android.provider.Contacts.Intents.Insert
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html" target="_top"><font size="+2"><code>Contacts.Intents.Insert</code></font></A>
87 <A NAME="android.provider.Contacts.Intents.Insert.PHONETIC_NAME"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#PHONETIC_NAME" target="_top"><code>PHONETIC_NAME</code></A></nobr>
94 <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_EMAIL" target="_top"><code>SECONDARY_EMAIL</code></A></nobr>
101 <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_EMAIL_TYPE" target="_top"><code>SECONDARY_EMAIL_TYPE</code></A></nobr>
108 <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_PHONE"></A
    [all...]
android.provider.Contacts.Intents.html 10 android.provider.Contacts.Intents
74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.html" target="_top"><font size="+2"><code>Contacts.Intents</code></font></A>
87 <A NAME="android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION"></A>
88 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#EXTRA_CREATE_DESCRIPTION" target="_top"><code>EXTRA_CREATE_DESCRIPTION</code></A></nobr>
94 <A NAME="android.provider.Contacts.Intents.EXTRA_FORCE_CREATE"></A>
95 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#EXTRA_FORCE_CREATE" target="_top"><code>EXTRA_FORCE_CREATE</code></A></nobr>
101 <A NAME="android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT"></A>
102 <nobr><code>String</code>&nbsp;<A HREF="../../../../reference/android/provider/Contacts.Intents.html#SHOW_OR_CREATE_CONTACT" target="_top"><code>SHOW_OR_CREATE_CONTACT</code></A></nobr>
  /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/packages/SystemUI/src/com/android/systemui/statusbar/phone/
CarrierLabel.java 63 filter.addAction(Telephony.Intents.SPN_STRINGS_UPDATED_ACTION);
81 if (Telephony.Intents.SPN_STRINGS_UPDATED_ACTION.equals(action)) {
82 updateNetworkName(intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_SPN, false),
83 intent.getStringExtra(Telephony.Intents.EXTRA_SPN),
84 intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_PLMN, false),
85 intent.getStringExtra(Telephony.Intents.EXTRA_PLMN));
  /frameworks/support/v4/java/android/support/v4/content/
ContextCompat.java 52 * @param intents Array of intents defining the activities that will be started. The element
56 public static boolean startActivities(Context context, Intent[] intents) {
57 return startActivities(context, intents, null);
81 * @param intents Array of intents defining the activities that will be started. The element
87 public static boolean startActivities(Context context, Intent[] intents,
91 ContextCompatJellybean.startActivities(context, intents, options);
94 ContextCompatHoneycomb.startActivities(context, intents);
  /packages/apps/Settings/src/com/android/settings/
TestingSettingsBroadcastReceiver.java 4 import static android.provider.Telephony.Intents.SECRET_CODE_ACTION;
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 33 import android.provider.Telephony.Sms.Intents;
120 Intent intent = new Intent(Intents.SMS_SERVICE_CATEGORY_PROGRAM_DATA_RECEIVED_ACTION);
133 return Intents.RESULT_SMS_GENERIC_ERROR;
145 return Intents.RESULT_SMS_HANDLED;
157 return Intents.RESULT_SMS_HANDLED;
164 return Intents.RESULT_SMS_HANDLED;
200 return Intents.RESULT_SMS_HANDLED;
208 return Intents.RESULT_SMS_OUT_OF_MEMORY;
222 return Intents.RESULT_SMS_UNSUPPORTED;
234 * @return a result code from {@link Telephony.Sms.Intents}, o
    [all...]

Completed in 7833 milliseconds

1 2 3 4 5 6 7 8 91011>>