Home | History | Annotate | Download | only in networkusage

Lines Matching refs:title

69     // It includes the data members "title," "link," and "summary."
71 public final String title;
75 private Entry(String title, String summary, String link) {
76 this.title = title;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
87 String title = null;
95 if (name.equals("title")) {
96 title = readTitle(parser);
105 return new Entry(title, summary, link);
108 // Processes title tags in the feed.
110 parser.require(XmlPullParser.START_TAG, ns, "title");
111 String title = readText(parser);
112 parser.require(XmlPullParser.END_TAG, ns, "title");
113 return title;
140 // For the tags title and summary, extracts their text values.