Home | History | Annotate | Download | only in launcher3

Lines Matching refs:TITLE

639                 if (modelShortcut.title.toString().equals(shortcut.title.toString()) &&
944 final int titleIndex = c.getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE);
959 folderInfo.title = c.getString(titleIndex);
1783 (LauncherSettings.Favorites.TITLE);
2093 folderInfo.title = c.getString(titleIndex);
3191 si.title = Utilities.trim(appInfo.title);
3409 String title = (c != null) ? c.getString(titleIndex) : null;
3410 if (!TextUtils.isEmpty(title)) {
3411 info.title = Utilities.trim(title);
3414 if (TextUtils.isEmpty(info.title)) {
3415 info.title = (c != null) ? Utilities.trim(c.getString(titleIndex)) : "";
3421 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
3449 * If c is not null, then it will be used to fill in missing data like the title and icon.
3486 if (TextUtils.isEmpty(info.title) && c != null) {
3487 info.title = Utilities.trim(c.getString(titleIndex));
3491 if (info.title == null) {
3492 info.title = componentName.getClassName();
3497 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);
3560 info.title = Utilities.trim(c.getString(titleIndex));
3610 info.title = Utilities.trim(name);
3611 info.contentDescription = mUserManager.getBadgedLabelForUser(info.title, info.user);