Lines Matching refs:title
25 * Get a web page, extract the title with libxml.
61 std::string title;
144 context->title = "";
172 context->title.append(reinterpret_cast<char *>(chars), length);
237 // Parse given (assumed to be) HTML text and return the title
241 std::string &title)
254 title = context.title;
261 std::string title;
290 parseHtml(buffer, title);
292 // Display the extracted title
293 printf("Title: %s\n", title.c_str());