Home | History | Annotate | Download | only in provider

Lines Matching defs:TITLE

12983          * If this is empty, the title should be resolved at display time (use
12985 * title of a bookmark.)
12990 public static final String TITLE = "title";
13071 * @param title Bookmark title that is shown to the user; null if none
13072 * or it should be resolved to the intent's title.
13082 String title,
13095 if (title != null) values.put(TITLE, title);
13119 * Return the title as it should be displayed to the user. This takes
13123 * @param cursor A cursor pointing to the row whose title should be
13124 * returned. The cursor must contain at least the {@link #TITLE}
13126 * @return A title that is localized and can be displayed to the user,
13130 int titleColumn = cursor.getColumnIndex(TITLE);
13134 "The cursor must contain the TITLE and INTENT columns.");
13137 String title = cursor.getString(titleColumn);
13138 if (!TextUtils.isEmpty(title)) {
13139 return title;