Searched defs:title (Results 1 - 25 of 817) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/examples/extensions/email_this_page/
H A Dcontent_script.js6 "title": document.title,
/external/chromium_org/printing/
H A Dprinting_utils_unittest.cc11 std::string Simplify(const char* title) { argument
12 return base::UTF16ToUTF8(SimplifyDocumentTitle(base::ASCIIToUTF16(title)));
H A Dprinting_utils.cc18 base::string16 SimplifyDocumentTitle(const base::string16& title) { argument
19 base::string16 no_controls(title);
/external/chromium_org/third_party/icu/source/samples/layout/
H A DGDIGUISupport.cpp18 void GDIGUISupport::postErrorMessage(const char *message, const char *title) argument
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
H A DGnomeGUISupport.cpp22 void GnomeGUISupport::postErrorMessage(const char *message, const char *title) argument
28 s = g_strconcat(title, ":\n", message, NULL);
33 fprintf(stderr, "%s: %s\n", title, message);
/external/icu/icu4c/source/samples/layout/
H A DGDIGUISupport.cpp18 void GDIGUISupport::postErrorMessage(const char *message, const char *title) argument
20 MessageBoxA(NULL, message, title, MB_ICONERROR);
H A DGnomeGUISupport.cpp22 void GnomeGUISupport::postErrorMessage(const char *message, const char *title) argument
28 s = g_strconcat(title, ":\n", message, NULL);
33 fprintf(stderr, "%s: %s\n", title, message);
/external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
H A DSDL_syswm.cc30 void QT_SetWMCaption(_THIS, const char *title, const char *icon) argument
32 SDL_Win->setCaption(title);
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dselect_file_dialog_util.cc15 base::string16 title; local
18 // Full page file manager doesn't need a title.
22 title = l10n_util::GetStringUTF16(
27 title = l10n_util::GetStringUTF16(
32 title = l10n_util::GetStringUTF16(
37 title = l10n_util::GetStringUTF16(
42 title = l10n_util::GetStringUTF16(
50 return title;
/external/chromium_org/chrome/browser/extensions/api/i18n/
H A Di18n_apitest.cc50 base::string16 title; local
51 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
52 EXPECT_EQ(std::string("FIRSTMESSAGE"), base::UTF16ToUTF8(title));
67 ui_test_utils::GetCurrentTabTitle(browser(), &title); local
68 EXPECT_EQ(std::string("SECONDMESSAGE"), base::UTF16ToUTF8(title));
/external/chromium_org/chrome/browser/ui/
H A Dscreen_capture_notification_ui_stub.cc24 const base::string16& title) {
23 Create( const base::string16& title) argument
/external/chromium_org/content/renderer/
H A Dclipboard_utils.cc15 const blink::WebString& title) {
20 markup.append(net::EscapeForHTML(base::UTF16ToUTF8(title)));
26 const blink::WebString& title) {
30 if (!title.isEmpty()) {
32 markup.append(net::EscapeForHTML(base::UTF16ToUTF8(title)));
14 URLToMarkup(const blink::WebURL& url, const blink::WebString& title) argument
25 URLToImageMarkup(const blink::WebURL& url, const blink::WebString& title) argument
/external/chromium_org/ui/base/models/
H A Dtree_model.cc12 const base::string16& title) {
11 SetTitle(TreeModelNode* node, const base::string16& title) argument
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nxwm.c33 void NX_SetCaption (_THIS, const char * title, const char * icon) argument
41 GrSetWindowTitle (SDL_Window, title) ;
/external/bison/lib/
H A Dbitsetv-print.c30 bitsetv_matrix_dump (FILE * out, const char *title, bitsetv bset) argument
36 fprintf (out, "%s BEGIN\n", title);
69 /* End title. */
70 fprintf (out, "%s END\n\n", title);
/external/chromium_org/chrome/browser/ui/android/
H A Dsimple_message_box_android.cc12 const base::string16& title,
11 ShowMessageBox(gfx::NativeWindow parent, const base::string16& title, const base::string16& message, MessageBoxType type) argument
/external/chromium_org/chrome/browser/ui/webui/signin/
H A Duser_manager_ui_browsertest.cc41 base::string16 title = web_contents->GetTitle(); local
42 EXPECT_EQ(l10n_util::GetStringUTF16(IDS_PRODUCT_NAME), title); local
/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app_unittest.cc36 const base::string16 title = base::ASCIIToUTF16("TEST_TITLE"); local
40 web_app_info.title = title;
49 EXPECT_EQ(title, info.title);
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_utils.h37 scoped_ptr<base::string16> title; member in struct:bookmarks::QueryFields
81 // Returns up to |max_count| bookmarks from |model| whose url or title contain
83 // |query.title|, for all of the preceding fields that are not NULL.
109 const base::string16& title);
137 // Returns the lower-cased title, possibly truncated if the original title
139 base::string16 CleanUpTitleForMatching(const base::string16& title);
/external/chromium_org/components/history/core/browser/
H A Dhistory_client.h20 base::string16 title; member in struct:history::URLAndTitle
41 // reference the same URL only one entry is added even if the title are not
/external/chromium_org/content/test/
H A Dcontent_browser_test_test.cc37 base::string16 title = title_watcher.WaitAndGetTitle(); local
38 EXPECT_EQ(expected_title, title);
/external/chromium_org/ui/base/ime/
H A Dinfolist_entry.cc9 InfolistEntry::InfolistEntry(const base::string16& title, argument
11 : title(title), body(body), highlighted(false) {}
14 return title == other.title && body == other.body &&
H A Dinfolist_entry.h15 base::string16 title; member in struct:ui::InfolistEntry
19 InfolistEntry(const base::string16& title, const base::string16& body);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DMessageInfoBar.java19 * @param title the text displayed in the infobar
21 public MessageInfoBar(CharSequence title) { argument
22 this(null, 0, title);
29 * @param title The text to display in the infobar.
32 CharSequence title) {
33 super(listener, iconResourceId, title);
31 MessageInfoBar(InfoBarListeners.Dismiss listener, int iconResourceId, CharSequence title) argument
/external/chromium_org/chrome/browser/importer/
H A Dimporter_unittest_utils.h18 const wchar_t* title; member in struct:BookmarkInfo

Completed in 5927 milliseconds

1234567891011>>