Lines Matching refs:TITLE
313 final String name = a.title.toString();
467 if (modelShortcut.title.toString().equals(shortcut.title.toString()) &&
736 * we identify a shortcut by its title and intent.
738 static boolean shortcutExists(Context context, String title, Intent intent) {
741 new String[] { "title", "intent" }, "title=? and intent=?",
742 new String[] { title, intent.toUri(0) }, null);
807 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
820 folderInfo.title = c.getString(titleIndex);
1639 (LauncherSettings.Favorites.TITLE);
1781 folderInfo.title = c.getString(titleIndex);
2539 info.title = a.title.toString();
2662 * If c is not null, then it will be used to fill in missing data like the title and icon.
2729 info.title = labelCache.get(key);
2731 info.title = resolveInfo.activityInfo.loadLabel(manager);
2733 labelCache.put(key, info.title);
2738 if (info.title == null) {
2740 info.title = c.getString(titleIndex);
2744 if (info.title == null) {
2745 info.title = componentName.getClassName();
2829 info.title = c.getString(titleIndex);
2884 + c.getString(c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE)));
3006 info.title = name;
3072 int result = collator.compare(a.title.toString().trim(),
3073 b.title.toString().trim());