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

1 2

  /frameworks/base/core/java/android/provider/
LiveFolders.java 26 * <li>An activity that can respond to the intent action {@link #ACTION_CREATE_LIVE_FOLDER}. The
33 * intent filter action {@link #ACTION_CREATE_LIVE_FOLDER} and presents the list to the user.
37 * {@link android.app.Activity#setResult(int, android.content.Intent) activity result}. The
51 * final Intent intent = getIntent();
52 * final String action = intent.getAction();
64 * private static Intent createLiveFolder(Context context, Uri uri, String name,
67 * final Intent intent = new Intent();
    [all...]
Settings.java 29 import android.content.Intent;
68 // Intent actions for Settings
140 * This intent MUST be started using
145 * {@link #EXTRA_AIRPLANE_MODE_ENABLED} extra to this Intent with the state specified.
146 * If there is no extra in this Intent, no changes will be made.
417 * {@link #EXTRA_INPUT_METHOD_ID} extra to this Intent with the input method id.
418 * If there is no extra in this Intent, subtypes from all installed input methods
450 * it is guaranteed there will always be an appropriate implementation for this Intent action.
554 * Input: The Intent's data URI specifies the application package name
598 * {@link #EXTRA_AUTHORITIES} extra to this Intent with one or more syncable content provider'
7096 Intent intent = null; local
7202 Intent intent; local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
UninstallShortcutReceiver.java 22 import android.content.Intent;
44 Intent data;
46 public PendingUninstallShortcutInfo(Intent rawData) {
51 public void onReceive(Context context, Intent data) {
79 final Intent data = pendingInfo.data;
88 private static void removeShortcut(Context context, Intent data) {
89 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT); local
90 String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME)
    [all...]
LauncherSettings.java 43 * The Intent URL of the gesture, describing what it points to. This
44 * value is given to {@link android.content.Intent#parseUri(String, int)} to create
45 * an Intent that can be launched.
48 static final String INTENT = "intent";
ShortcutInfo.java 22 import android.content.Intent;
63 * The intent used to start the application.
65 Intent intent; field in class:ShortcutInfo
83 Intent.ShortcutIconResource iconResource;
124 * If this shortcut is a placeholder, then intent will be a market intent for the package, and
125 * this will hold the original intent from the database. Otherwise, null.
128 Intent promisedIntent;
134 public Intent getIntent()
    [all...]
LauncherProvider.java 30 import android.content.Intent;
434 "intent TEXT," +
607 final int intentIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT);
626 values.put(LauncherSettings.Favorites.INTENT, c.getString(intentIndex));
933 final Intent intent = Intent.parseUri(intentUri, 0); local
1450 final Intent intent; local
    [all...]
AutoInstallsLayout.java 24 import android.content.Intent;
232 protected long addShortcut(String title, Intent intent, int type) {
234 mValues.put(Favorites.INTENT, intent.toUri(0));
297 final Intent intent = new Intent(Intent.ACTION_MAIN, null) local
298 .addCategory(Intent.CATEGORY_LAUNCHER
338 final Intent intent = new Intent(Intent.ACTION_MAIN, null) local
369 final Intent intent = parseIntent(parser); local
480 Intent intent = new Intent(ACTION_APPWIDGET_DEFAULT_WORKSPACE_CONFIGURE); local
    [all...]
LauncherBackupHelper.java 28 import android.content.Intent;
95 Favorites.INTENT, // 2
516 Intent intent = Intent.parseUri(intentDescription, 0); local
517 ComponentName cn = intent.getComponent();
524 Log.w(TAG, "empty intent on application favorite: " + id);
535 Bitmap icon = mIconCache.getIcon(intent, myUserHandle);
625 Log.w(TAG, "empty intent on appwidget: " + id);
775 Intent intent = Intent.parseUri(intentDescription, 0) local
    [all...]
LauncherModel.java 29 import android.content.Intent;
30 import android.content.Intent.ShortcutIconResource;
316 Intent launchIntent,
431 final Intent launchIntent = a.getIntent();
583 modelShortcut.intent.filterEquals(shortcut.intent) &&
1932 Intent intent; local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherSettings.java 34 * The Intent URL of the gesture, describing what it points to. This
35 * value is given to {@link android.content.Intent#parseUri(String, int)} to create
36 * an Intent that can be launched.
39 static final String INTENT = "intent";
UninstallShortcutReceiver.java 22 import android.content.Intent;
49 Intent data;
51 public PendingUninstallShortcutInfo(Intent rawData) {
56 public void onReceive(Context context, Intent data) {
87 final Intent data = pendingInfo.data;
95 private static void removeShortcut(Context context, Intent data,
97 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT); local
98 String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME)
    [all...]
ShortcutInfo.java 24 import android.content.Intent;
34 * The intent used to start the application.
36 Intent intent; field in class:ShortcutInfo
54 Intent.ShortcutIconResource iconResource;
68 intent = new Intent(info.intent);
70 iconResource = new Intent.ShortcutIconResource();
82 intent = new Intent(info.intent)
    [all...]
LauncherProvider.java 29 import android.content.Intent;
305 "intent TEXT," +
383 final int intentIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT);
402 values.put(LauncherSettings.Favorites.INTENT, c.getString(intentIndex));
581 new String[] { Favorites._ID, Favorites.INTENT },
588 final int intentIndex = c.getColumnIndex(Favorites.INTENT);
595 final Intent intent = Intent.parseUri(intentUri, 0); local
596 android.util.Log.d("Home", intent.toString())
849 Intent intent = new Intent(Intent.ACTION_MAIN, null); local
1151 Intent intent = new Intent(ACTION_APPWIDGET_DEFAULT_WORKSPACE_CONFIGURE); local
1171 Intent intent; local
    [all...]
LauncherModel.java 28 import android.content.Intent;
29 import android.content.Intent.ShortcutIconResource;
289 modelShortcut.intent.filterEquals(shortcut.intent) &&
498 * we identify a shortcut by its title and intent.
500 static boolean shortcutExists(Context context, String title, Intent intent) {
503 new String[] { "title", "intent" }, "title=? and intent=?",
504 new String[] { title, intent.toUri(0) }, null)
1336 Intent intent; local
2420 Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT); local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
FormPage.java 19 import android.content.Intent;
36 MULTIPLE_CHOICE, TEXT_INPUT, PASSWORD_INPUT, INTENT
87 * Create a form page which launches an intent to get its results.
91 * @param formIntent the intent to launch for this form page. This intent
92 * should return the form page's results via the result intent's
95 * results of the intent to the user.
98 public static FormPage createIntentForm(String title, Intent formIntent) {
99 return new FormPage(title, Type.INTENT, null, formIntent);
105 private final Intent mFormIntent
    [all...]
MultiPagedForm.java 27 import android.content.Intent;
122 protected void onActivityResult(int requestCode, int resultCode, Intent data) {
130 Log.w(TAG, "Intent result was null!");
132 Log.w(TAG, "Intent result extras were null!");
134 Log.w(TAG, "Intent result extras didn't have the result summary key!");
198 case INTENT:
404 if (page.getType() == FormPage.Type.INTENT) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/
ShortcutManager.java 20 import android.content.Intent;
34 * <li> Returning a shortcut-matching intent to clients
43 Settings.Bookmarks.SHORTCUT, Settings.Bookmarks.INTENT
48 /** Map of a shortcut to its intent. */
49 private SparseArray<Intent> mShortcutIntents;
55 mShortcutIntents = new SparseArray<Intent>();
83 Intent intent = null; local
85 intent = Intent.getIntent(intentURI)
110 Intent intent = null; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
QuickLaunchSettings.java 23 import android.content.Intent;
68 Bookmarks.SHORTCUT, Bookmarks.TITLE, Bookmarks.INTENT
200 Intent intent = new Intent(getActivity(), BookmarkPicker.class); local
201 intent.putExtra(BookmarkPicker.EXTRA_SHORTCUT, pref.getShortcut());
202 startActivityForResult(intent, REQUEST_PICK_BOOKMARK);
217 public void onActivityResult(int requestCode, int resultCode, Intent data) {
226 Log.w(TAG, "Result from bookmark picker does not have an intent.");
238 private void updateShortcut(char shortcut, Intent intent)
242 Bookmarks.add(getContentResolver(), intent, "", DEFAULT_BOOKMARK_FOLDER, shortcut, 0); local
317 Intent intent = Intent.parseUri(intentUri, 0); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 23 import android.content.Intent;
175 Uri uri = Settings.Bookmarks.add(r, new Intent("TEST"),
183 v.put(Settings.Bookmarks.INTENT, "#Intent;action=TOAST;end");
289 assertCanBeHandled(new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS));
290 assertCanBeHandled(new Intent(Settings.ACTION_ADD_ACCOUNT));
291 assertCanBeHandled(new Intent(Settings.ACTION_AIRPLANE_MODE_SETTINGS));
292 assertCanBeHandled(new Intent(Settings.ACTION_APN_SETTINGS));
293 assertCanBeHandled(new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS)
295 assertCanBeHandled(new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS))
    [all...]
  /frameworks/base/core/java/android/widget/
RemoteViews.java 26 import android.content.Intent;
75 * The intent extra that contains the appWidgetId.
208 Intent fillInIntent) {
217 Intent.FLAG_ACTIVITY_NEW_TASK,
218 Intent.FLAG_ACTIVITY_NEW_TASK, 0, opts.toBundle());
220 android.util.Log.e(LOG_TAG, "Cannot send pending intent: ", e);
223 android.util.Log.e(LOG_TAG, "Cannot send pending intent due to " +
364 public SetOnClickFillInIntent(int id, Intent fillInIntent) {
371 fillInIntent = Intent.CREATOR.createFromParcel(parcel);
409 // Insure that a template pending intent has been set on an ancesto
651 Intent intent; field in class:RemoteViews.SetRemoteViewsAdapterIntent
    [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DatabaseHelper.java 22 import android.content.Intent;
167 "intent TEXT," +
2142 final Intent intent; local
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 389 milliseconds

1 2