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

1234567891011>>

/external/chromium/chrome/common/extensions/docs/examples/extensions/email_this_page/
H A Dcontent_script.js8 "title": document.title,
/external/icu4c/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/webkit/Source/WebCore/platform/chromium/
H A DClipboardChromiumLinux.cpp35 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject) argument
38 return title;
H A DClipboardChromiumMac.cpp35 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject) argument
38 return title;
H A DClipboardChromiumWin.cpp43 String ClipboardChromium::validateFileName(const String& title, ChromiumDataObject* dataObject) argument
46 String result = title.removeCharacters(&isInvalidFileCharacter);
/external/chromium/chrome/browser/history/
H A Dmultipart_uitest.cc35 std::wstring title; local
36 EXPECT_TRUE(tab_proxy->GetTabTitle(&title));
37 EXPECT_EQ(L"page 9", title);
H A Dhistory_publisher.cc30 const string16& title,
36 title.c_str(),
28 PublishPageContent(const base::Time& time, const GURL& url, const string16& title, const string16& contents) const 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/webkit/Source/WebCore/loader/win/
H A DDocumentLoaderWin.cpp36 void DocumentLoader::setTitle(const String& title) argument
38 String text = 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/chrome/browser/chromeos/panels/
H A Dpanel_scroller_header.h20 void set_title(const string16& title) { title_ = title; } argument
/external/chromium/chrome/browser/
H A Derrorpage_uitest.cc16 bool WaitForTitleMatching(const std::wstring& title) { argument
18 if (GetActiveTabTitle() == title)
22 EXPECT_EQ(title, GetActiveTabTitle());
/external/chromium/chrome/browser/ui/webui/options/
H A Doptions_ui_uitest.cc29 std::wstring title; local
30 ASSERT_TRUE(tab->GetTabTitle(&title));
32 // The only guarantee we can make about the title of a settings tab is that
34 ASSERT_FALSE(WideToUTF16Hack(title).find(expected_title) == string16::npos);
/external/webkit/Source/JavaScriptCore/API/
H A DJSProfilerPrivate.cpp35 void JSStartProfiling(JSContextRef ctx, JSStringRef title) argument
37 Profiler::profiler()->startProfiling(toJS(ctx), title->ustring());
40 void JSEndProfiling(JSContextRef ctx, JSStringRef title) argument
44 profiler->stopProfiling(exec, title->ustring());
/external/webkit/Source/WebCore/bindings/js/
H A DScriptProfiler.cpp44 void ScriptProfiler::start(ScriptState* state, const String& title) argument
46 JSC::Profiler::profiler()->startProfiling(state, stringToUString(title));
49 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
51 RefPtr<JSC::Profile> profile = JSC::Profiler::profiler()->stopProfiling(state, stringToUString(title));
/external/chromium/chrome/browser/custom_handlers/
H A Dprotocol_handler.h14 // A single tuple of (protocol, url, title) that indicates how URLs of the
21 const string16& title);
33 string16 title() const { return title_; } function in class:ProtocolHandler
40 const string16& title);
/external/chromium/chrome/browser/extensions/
H A Dextension_bookmarks_unittest.cc63 std::string title; local
64 digg->GetString(keys::kTitleKey, &title);
65 ASSERT_EQ("Digg", title);
78 std::string title; local
79 inner_folder->GetString(keys::kTitleKey, &title);
80 ASSERT_EQ("inner folder 1", title);
/external/chromium/chrome/browser/ui/app_modal_dialogs/
H A Dapp_modal_dialog.h23 AppModalDialog(TabContents* tab_contents, const std::wstring& title);
39 // Dialog window title.
40 std::wstring title() const { return title_; } function in class:AppModalDialog
/external/chromium/chrome/browser/ui/webui/
H A Dprint_preview_ui_uitest.cc27 std::wstring title; local
28 ASSERT_TRUE(tab->GetTabTitle(&title));
31 ASSERT_EQ(expected_title, WideToUTF16Hack(title));
/external/chromium/chrome/browser/web_applications/
H A Dweb_app_unittest.cc43 const string16 title = ASCIIToUTF16("TEST_TITLE"); local
47 web_app_info.title = title;
56 EXPECT_EQ(title, info.title);
/external/linux-tools-perf/util/ui/
H A Dsetup.c41 char title[] = "Fatal Error", ok[] = "Ok"; local
42 newtWinMessage(title, ok, ui_helpline__last_msg);
/external/proguard/src/proguard/gui/
H A DMessageDialogRunnable.java37 private final String title; field in class:MessageDialogRunnable
47 String title,
54 title,
70 String title,
75 this.title = title;
87 title,
45 showMessageDialog(Component parentComponent, Object message, String title, int messageType) argument
68 MessageDialogRunnable(Component parentComponent, Object message, String title, int messageType) argument
/external/srec/tools/grxmlcompile/
H A Dgrph.h29 title= new char [count+1];
30 strcpy (title, name);
40 delete [] title;
70 char *title; member in class:Graph

Completed in 1382 milliseconds

1234567891011>>