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

1 2 3 4 5 6 7 8

  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherProvider.java 52 import com.android.launcher3.LauncherSettings.Favorites;
74 static final String TABLE_FAVORITES = "favorites";
133 if (!values.containsKey(LauncherSettings.Favorites._ID)) {
140 Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
273 // Populate favorites table with initial favorites
291 private static final String TAG_FAVORITES = "favorites";
339 db.execSQL("CREATE TABLE favorites (" +
372 int container = values.getAsInteger(LauncherSettings.Favorites.CONTAINER);
373 if (container == Favorites.CONTAINER_DESKTOP)
    [all...]
ItemInfo.java 40 * One of {@link LauncherSettings.Favorites#ITEM_TYPE_APPLICATION},
41 * {@link LauncherSettings.Favorites#ITEM_TYPE_SHORTCUT},
42 * {@link LauncherSettings.Favorites#ITEM_TYPE_FOLDER}, or
43 * {@link LauncherSettings.Favorites#ITEM_TYPE_APPWIDGET}.
49 * {@link LauncherSettings.Favorites#CONTAINER_DESKTOP}. For the all applications folder it
132 values.put(LauncherSettings.Favorites.CONTAINER, container);
133 values.put(LauncherSettings.Favorites.SCREEN, screenId);
134 values.put(LauncherSettings.Favorites.CELLX, cellX);
135 values.put(LauncherSettings.Favorites.CELLY, cellY);
136 values.put(LauncherSettings.Favorites.SPANX, spanX)
    [all...]
UninstallShortcutReceiver.java 95 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI,
96 new String[] { LauncherSettings.Favorites._ID, LauncherSettings.Favorites.INTENT },
97 LauncherSettings.Favorites.TITLE + "=?", new String[] { name }, null);
99 final int intentIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT);
100 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
109 final Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
125 cr.notifyChange(LauncherSettings.Favorites.CONTENT_URI, null);
LauncherModel.java 233 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
363 LauncherSettings.Favorites.CONTAINER_DESKTOP,
519 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
545 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
567 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
568 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
583 if (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
584 modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
586 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
587 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT
    [all...]
LauncherAppWidgetInfo.java 54 itemType = LauncherSettings.Favorites.ITEM_TYPE_APPWIDGET;
67 values.put(LauncherSettings.Favorites.APPWIDGET_ID, appWidgetId);
68 values.put(LauncherSettings.Favorites.APPWIDGET_PROVIDER, providerName.flattenToString());
LauncherBackupHelper.java 22 import com.android.launcher3.LauncherSettings.Favorites;
92 Favorites._ID, // 0
93 Favorites.MODIFIED, // 1
94 Favorites.INTENT, // 2
95 Favorites.APPWIDGET_PROVIDER, // 3
96 Favorites.APPWIDGET_ID, // 4
97 Favorites.CELLX, // 5
98 Favorites.CELLY, // 6
99 Favorites.CONTAINER, // 7
100 Favorites.ICON, //
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 53 import com.android.launcher2.LauncherSettings.Favorites;
73 static final String TABLE_FAVORITES = "favorites";
127 if (!values.containsKey(LauncherSettings.Favorites._ID)) {
134 Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
222 // Populate favorites table with initial favorites
234 private static final String TAG_FAVORITES = "favorites";
276 db.execSQL("CREATE TABLE favorites (" +
332 // We already have a favorites database in the old provider
355 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID)
    [all...]
ItemInfo.java 40 * One of {@link LauncherSettings.Favorites#ITEM_TYPE_APPLICATION},
41 * {@link LauncherSettings.Favorites#ITEM_TYPE_SHORTCUT},
42 * {@link LauncherSettings.Favorites#ITEM_TYPE_FOLDER}, or
43 * {@link LauncherSettings.Favorites#ITEM_TYPE_APPWIDGET}.
49 * {@link LauncherSettings.Favorites#CONTAINER_DESKTOP}. For the all applications folder it
143 values.put(LauncherSettings.Favorites.CONTAINER, container);
144 values.put(LauncherSettings.Favorites.SCREEN, screen);
145 values.put(LauncherSettings.Favorites.CELLX, cellX);
146 values.put(LauncherSettings.Favorites.CELLY, cellY);
147 values.put(LauncherSettings.Favorites.SPANX, spanX)
    [all...]
UninstallShortcutReceiver.java 103 Cursor c = cr.query(LauncherSettings.Favorites.CONTENT_URI,
104 new String[] { LauncherSettings.Favorites._ID, LauncherSettings.Favorites.INTENT },
105 LauncherSettings.Favorites.TITLE + "=?", new String[] { name }, null);
107 final int intentIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.INTENT);
108 final int idIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites._ID);
117 final Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
133 cr.notifyChange(LauncherSettings.Favorites.CONTENT_URI, null);
LauncherModel.java 328 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
340 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
341 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
357 if (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
358 modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
360 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
361 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
362 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
425 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
432 values.put(LauncherSettings.Favorites.CONTAINER, item.container)
    [all...]
LauncherApplication.java 74 // Register for changes to the favorites
76 resolver.registerContentObserver(LauncherSettings.Favorites.CONTENT_URI, true,
94 * Receives notifications whenever the user favorites have changed.
  /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>
  /external/chromium_org/chromeos/network/
favorite_state.h 19 // favorites. This is necessary to avoid unnecessarily re-requesting entries,
21 // entries that are not actually favorites.
  /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;
  /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_org/chrome/common/importer/
ie_importer_utils_win.h 12 // Returns the key to be used in HKCU to look for IE's favorites order blob.
  /external/chromium_org/chrome/utility/importer/
bookmarks_file_importer.cc 82 // "favorites".
83 DCHECK_EQ(importer::FAVORITES, items);
86 bridge->NotifyItemStarted(importer::FAVORITES);
106 bridge->NotifyItemEnded(importer::FAVORITES);
ie_importer_win.h 67 // Gets the information of Favorites folder. Returns true if successful.
70 // This function will read the files in the Favorites folder, and store
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
8bit.sed 6 # favorites. I just know that everyone reading these test cases wants
  /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);
  /external/chromium_org/chrome/browser/resources/options/
import_data_overlay.html 26 <span id="import-favorites-with-label"
28 <input id="import-favorites" type="checkbox"
31 <label for="import-favorites" i18n-content="importFavorites">
  /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/Launcher3/
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/Dialer/res/values/
colors.xml 57 <!-- Color of the 1dp divider that separates favorites -->
71 <!-- Text color for no favorites message -->

Completed in 536 milliseconds

1 2 3 4 5 6 7 8