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

1 2 3 4 5 6 7 8

  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherProvider.java 56 import com.android.launcher3.LauncherSettings.Favorites;
83 static final String TABLE_FAVORITES = "favorites";
157 Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
306 // Populate favorites table with initial favorites
321 LauncherSettings.Favorites.OLD_CONTENT_URI);
355 private static final String TAG_FAVORITES = "favorites";
410 db.execSQL("CREATE TABLE favorites (" +
445 int container = values.getAsInteger(LauncherSettings.Favorites.CONTAINER);
446 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
136 values.put(LauncherSettings.Favorites.CONTAINER, container);
137 values.put(LauncherSettings.Favorites.SCREEN, screenId);
138 values.put(LauncherSettings.Favorites.CELLX, cellX);
139 values.put(LauncherSettings.Favorites.CELLY, cellY);
140 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 195 LauncherSettings.Favorites.OLD_CONTENT_URI) != null);
245 if (item.container == LauncherSettings.Favorites.CONTAINER_DESKTOP) {
425 LauncherSettings.Favorites.CONTAINER_DESKTOP,
588 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
614 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
636 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
637 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
653 (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
654 modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT)) {
656 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION
    [all...]
LauncherBackupHelper.java 21 import com.android.launcher3.LauncherSettings.Favorites;
94 Favorites._ID, // 0
95 Favorites.MODIFIED, // 1
96 Favorites.INTENT, // 2
97 Favorites.APPWIDGET_PROVIDER, // 3
98 Favorites.APPWIDGET_ID, // 4
99 Favorites.CELLX, // 5
100 Favorites.CELLY, // 6
101 Favorites.CONTAINER, // 7
102 Favorites.ICON, //
    [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());
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherProvider.java 53 import com.android.launcher2.LauncherSettings.Favorites;
74 static final String TABLE_FAVORITES = "favorites";
128 if (!values.containsKey(LauncherSettings.Favorites._ID)) {
135 Uri uri = LauncherSettings.Favorites.getContentUri(id, false);
226 // Populate favorites table with initial favorites
254 private static final String TAG_FAVORITES = "favorites";
296 db.execSQL("CREATE TABLE favorites (" +
352 // We already have a favorites database in the old provider
375 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 329 final Uri uri = LauncherSettings.Favorites.getContentUri(itemId, false);
341 if (item.container != LauncherSettings.Favorites.CONTAINER_DESKTOP &&
342 item.container != LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
358 if (modelItem.container == LauncherSettings.Favorites.CONTAINER_DESKTOP ||
359 modelItem.container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
361 case LauncherSettings.Favorites.ITEM_TYPE_APPLICATION:
362 case LauncherSettings.Favorites.ITEM_TYPE_SHORTCUT:
363 case LauncherSettings.Favorites.ITEM_TYPE_FOLDER:
426 container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
433 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.
  /packages/apps/Dialer/res/values/
dimens.xml 70 <!-- Favorites tile and recent call log padding -->
72 <!-- Favorites tile and recent call log padding -->
89 <!-- Padding above the favorites menu. -->
91 <!-- Padding below the favorites menu.. -->
93 <!-- Horizontal padding in the favorites menu. -->
95 <!-- Text size for the "speed dial" text in the favorites menu. -->
97 <!-- Height of the speed dial TextView in the favorites menu. -->
99 <!-- Text size for the "All Contacts" text in the favorites menu. -->
101 <!-- Height of the all contacts Button in the favorites menu. -->
colors.xml 68 <!-- Color of the 1dp divider that separates favorites -->
84 <!-- Text color for no favorites message -->
93 <!-- Text color for the "speed dial" label in the favorites menu. -->
96 <!-- Background color for the "All Contacts" button in the favorites menu. -->
99 <!-- Background color for the "All Contacts" button in the favorites menu when pressed. -->
102 <!-- Background color for the favorites menu. -->
  /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/list/
OnContactBrowserActionListener.java 54 * Adds the specified contact to favorites
59 * Removes the specified contact from favorites.
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
GroupMetaData.java 32 String title, boolean defaultGroup, boolean favorites) {
39 this.mFavorites = favorites;
  /packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoriteMergedAdapter.java 127 * The +1 is to account for the presence of the favorites menu.
146 // Set position to the position of the actual favorite contact in the favorites adapter
159 * -3: Favorites menu
199 1); /* Favorites menu. */
215 // View type of the favorites menu is last view type of contact tile adapter +3
221 // Catch-all - we shouldn't get here but if we do use the same as the favorites menu.
236 // Get the view for the "teaser view" which describes how to re-arrange favorites.
266 // return the favorites menu.
270 // Set position to the position of the actual favorite contact in the favorites adapter.
271 // Adjusts based on the presence of other views, such as the favorites menu
    [all...]
  /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 86 // "favorites".
87 DCHECK_EQ(importer::FAVORITES, items);
90 bridge->NotifyItemStarted(importer::FAVORITES);
110 bridge->NotifyItemEnded(importer::FAVORITES);
  /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_org/chromeos/network/
favorite_state.h 22 // favorites. This is necessary to avoid unnecessarily re-requesting entries,
24 // entries that are not actually 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);
  /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)"

Completed in 3714 milliseconds

1 2 3 4 5 6 7 8