Home | History | Annotate | Download | only in launcher2

Lines Matching refs:TITLE

277                 if (modelShortcut.title.toString().equals(shortcut.title.toString()) &&
413 String transaction = "DbDebug Modify item (" + item.title + ") in db, id: " + item.id +
445 String transaction = "DbDebug Modify item (" + item.title + ") in db, id: " + item.id +
487 * we identify a shortcut by its title and intent.
489 static boolean shortcutExists(Context context, String title, Intent intent) {
492 new String[] { "title", "intent" }, "title=? and intent=?",
493 new String[] { title, intent.toUri(0) }, null);
558 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
571 folderInfo.title = c.getString(titleIndex);
616 String transaction = "DbDebug Add item (" + item.title + ") to db, id: "
695 String transaction = "DbDebug Delete item (" + item.title + ") from db, id: "
1288 (LauncherSettings.Favorites.TITLE);
1405 folderInfo.title = c.getString(titleIndex);
2145 * If c is not null, then it will be used to fill in missing data like the title and icon.
2215 info.title = labelCache.get(key);
2217 info.title = resolveInfo.activityInfo.loadLabel(manager);
2219 labelCache.put(key, info.title);
2224 if (info.title == null) {
2226 info.title = c.getString(titleIndex);
2230 if (info.title == null) {
2231 info.title = componentName.getClassName();
2268 info.title = c.getString(titleIndex);
2323 + c.getString(c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE)));
2445 info.title = name;
2511 int result = collator.compare(a.title.toString(), b.title.toString());