Home | History | Annotate | Download | only in launcher2

Lines Matching refs:TITLE

288                 if (modelShortcut.title.toString().equals(shortcut.title.toString()) &&
424 String transaction = "DbDebug Modify item (" + item.title + ") in db, id: " + item.id +
456 String transaction = "DbDebug Modify item (" + item.title + ") in db, id: " + item.id +
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);
576 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
589 folderInfo.title = c.getString(titleIndex);
635 String transaction = "DbDebug Add item (" + item.title + ") to db, id: "
714 String transaction = "DbDebug Delete item (" + item.title + ") from db, id: "
1301 (LauncherSettings.Favorites.TITLE);
1430 folderInfo.title = c.getString(titleIndex);
2196 * If c is not null, then it will be used to fill in missing data like the title and icon.
2232 info.title = labelCache.get(key);
2234 info.title = lai.getLabel();
2236 labelCache.put(key, info.title);
2240 if (info.title == null) {
2242 info.title = c.getString(titleIndex);
2246 if (info.title == null) {
2247 info.title = componentName.getClassName();
2250 info.contentDescription = mApp.getPackageManager().getUserBadgedLabel(info.title, user);
2286 info.title = c.getString(titleIndex);
2288 info.title, info.user);
2344 + c.getString(c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE)));
2469 info.title = name;
2537 int result = collator.compare(a.title.toString(), b.title.toString());