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

1 2 3 4 5

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 52 import com.android.launcher2.LauncherSettings.Favorites;
72 static final String TABLE_FAVORITES = "favorites";
119 if (!values.containsKey(LauncherSettings.Favorites._ID)) {
126 Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
201 private static final String TAG_FAVORITES = "favorites";
242 db.execSQL("CREATE TABLE favorites (" +
270 // Populate favorites table with initial favorites
290 // We already have a favorites database in the old provider
313 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID)
    [all...]
UninstallShortcutReceiver.java 46 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI,
47 new String[] { LauncherSettings.Favorites._ID, LauncherSettings.Favorites.INTENT },
48 LauncherSettings.Favorites.TITLE + "=?", new String[] { name }, null);
50 final int intentIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT);
51 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
60 final Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
76 cr.notifyChange(LauncherSettings.Favorites.CONTENT_URI, null);
ItemInfo.java 39 * One of {@link LauncherSettings.Favorites#ITEM_TYPE_APPLICATION},
40 * {@link LauncherSettings.Favorites#ITEM_TYPE_SHORTCUT},
41 * {@link LauncherSettings.Favorites#ITEM_TYPE_FOLDER}, or
42 * {@link LauncherSettings.Favorites#ITEM_TYPE_APPWIDGET}.
48 * {@link LauncherSettings.Favorites#CONTAINER_DESKTOP}. For the all applications folder it
111 values.put(LauncherSettings.Favorites.CONTAINER, container);
112 values.put(LauncherSettings.Favorites.SCREEN, screen);
113 values.put(LauncherSettings.Favorites.CELLX, cellX);
114 values.put(LauncherSettings.Favorites.CELLY, cellY);
115 values.put(LauncherSettings.Favorites.SPANX, spanX)
    [all...]
LauncherModel.java 213 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
233 if (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
234 modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
262 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
269 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
270 values.put(LauncherSettings.Favorites.CELLX, item.cellX);
271 values.put(LauncherSettings.Favorites.CELLY, item.cellY);
272 values.put(LauncherSettings.Favorites.SCREEN, item.screen);
288 values.put(LauncherSettings.Favorites.CONTAINER, item.container);
289 values.put(LauncherSettings.Favorites.SPANX, spanX)
    [all...]
LauncherAppWidgetInfo.java 55 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
65 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
72 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
LauncherApplication.java 71 // Register for changes to the favorites
73 resolver.registerContentObserver(LauncherSettings.Favorites.CONTENT_URI, true,
91 * Receives notifications whenever the user favorites have changed.
FolderInfo.java 46 itemType = LauncherSettings.Favorites.ITEM_TYPE_FOLDER;
85 values.put(LauncherSettings.Favorites.TITLE, title.toString());
PendingAddItemInfo.java 45 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
InstallShortcutReceiver.java 69 LauncherSettings.Favorites.CONTAINER_DESKTOP, screen, mCoordinates[0],
102 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
  /external/chromium/chrome/browser/resources/options/
import_data_overlay.html 17 <input id="import-favorites" type="checkbox">
18 <label for="import-favorites" i18n-content="importFavorites"></label>
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaData.java 32 String title, boolean defaultGroup, boolean favorites) {
39 this.mFavorites = favorites;
GroupMetaDataLoader.java 36 Groups.FAVORITES,
47 public final static int FAVORITES = 6;
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
8bit.sed 6 # favorites. I just know that everyone reading these test cases wants
  /packages/apps/Contacts/src/com/android/contacts/list/
OnContactBrowserActionListener.java 54 * Adds the specified contact to favorites
59 * Removes the specified contact from favorites.
  /external/chromium/chrome/browser/ui/webui/options/
import_data_handler.cc 82 selected_items |= importer::FAVORITES;
133 browser_profile->SetBoolean("favorites",
134 (browser_services & importer::FAVORITES) != 0);
  /packages/apps/Launcher2/
fill_screens.py 56 c.execute("DELETE FROM favorites")
65 insert = "INSERT into favorites (_id, title, intent, container, screen, cellX, cellY, spanX, spanY, itemType, appWidgetId, iconType) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, %d)"
73 insert = "INSERT into favorites (_id, title, intent, container, screen, cellX, cellY, spanX, spanY, itemType, appWidgetId, iconType) VALUES (%d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, %d)"
  /packages/apps/Launcher2/res/xml/
update_workspace.xml 17 <favorites xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher">
49 </favorites>
default_workspace.xml 17 <favorites xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher">
91 </favorites>
  /external/chromium/chrome/browser/importer/
importer_data_types.h 23 FAVORITES = 1 << 1,
ie_importer.cc 102 if ((items & importer::FAVORITES) && !cancelled()) {
103 bridge_->NotifyItemStarted(importer::FAVORITES);
105 bridge_->NotifyItemEnded(importer::FAVORITES);
498 info->path = info->path.AppendASCII("Favorites");
503 // IE stores the favorites in the Favorites under user profile's folder.
510 // There is a Links folder under Favorites folder in Windows Vista, but it
512 // folder is under Favorites folder since it looks like there is not name
538 // Favorites path length. Make sure it doesn't include the trailing \.
560 // Make the relative path from the Favorites folder, without the basename
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
DialtactsViewPager.java 35 * disable that here. The Call Log and Favorites tabs are both
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 35 * only. This layout stacks various icons in three distinct areas: the recents, the favorites
51 * favorites, the recents area is not displayed.
146 // Draw behind favorites
318 * Sets the list of favorites.
320 * @param applications the applications to put in the favorites area
  /development/samples/Home/res/layout-land/
home.xml 40 <!-- Favorites and Recents -->
  /development/samples/Home/res/layout-port/
home.xml 40 <!-- Favorites and Recents -->
  /external/chromium/chrome/browser/ui/gtk/importer/
import_progress_dialog_gtk.h 61 // Bookmarks/Favorites checkbox.

Completed in 462 milliseconds

1 2 3 4 5