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

12345678

/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.12/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/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);
H A DClipboardUtilitiesChromium.cpp55 String urlToMarkup(const KURL& url, const String& title) argument
62 markup.append(title);
/external/qemu/distrib/sdl-1.2.12/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/WebCore/bindings/js/
H A DScriptProfiler.cpp37 void ScriptProfiler::start(ScriptState* state, const String& title) argument
39 JSC::Profiler::profiler()->startProfiling(state, title);
42 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
44 return JSC::Profiler::profiler()->stopProfiling(state, title);
/external/webkit/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/webkit/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/WebCore/bindings/v8/
H A DScriptProfiler.cpp37 void ScriptProfiler::start(ScriptState* state, const String& title) argument
44 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) argument
H A DScriptProfile.h40 static PassRefPtr<ScriptProfile> create(const String& title, unsigned uid) argument
42 return adoptRef(new ScriptProfile(title, uid));
46 String title() const { return m_title; } function in class:WebCore::ScriptProfile
50 ScriptProfile(const String& title, unsigned uid) argument
51 : m_title(title)
/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
H A DTabbedPane.java66 * Adds a component with a given title to the tabbed pane.
68 * @param title the title that will be used in the tab button.
71 public Component add(final String title, Component component) argument
80 JToggleButton button = new JToggleButton(title);
122 cardLayout.show(cardPanel, title);
137 cardPanel.add(title, component);
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
H A DSDL_cgxwm.c41 void CGX_SetCaption(_THIS, const char *title, const char *icon) argument
44 SetWindowTitles(SDL_Window,(char *)title,NULL);
/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
/external/webkit/WebKit/chromium/public/
H A DWebFileChooserParams.h43 // |title| is a title of a file chooser dialog. It can be an empty string.
44 WebString title; member in struct:WebKit::WebFileChooserParams
/external/jdiff/src/jdiff/
H A DDiffOutput.java23 /** The title for this difference. */
31 String title, String text) {
35 title_ = title;
30 DiffOutput(String pkgName, String className, String id, String title, String text) argument
/external/oprofile/libop/
H A Dop_xml_events.c20 void open_xml_events(char const * title, char const * doc, op_cpu the_cpu_type) argument
29 init_xml_str_attr(HELP_TITLE, title, buffer);
/external/qemu/distrib/sdl-1.2.12/src/video/bwindow/
H A DSDL_syswm.cc31 void BE_SetWMCaption(_THIS, const char *title, const char *icon) argument
33 SDL_Win->SetTitle(title);
/external/qemu/distrib/sdl-1.2.12/src/video/gem/
H A DSDL_gemwm.c43 void GEM_SetCaption(_THIS, const char *title, const char *icon) argument
45 if (title) {
46 GEM_title_name = title;
/external/qemu/distrib/sdl-1.2.12/src/video/photon/
H A DSDL_ph_wm.c44 void ph_SetCaption(_THIS, const char *title, const char *icon) argument
51 PtSetResource(window, Pt_ARG_WINDOW_TITLE, title, 0);
/external/webkit/JavaScriptCore/profiler/
H A DProfile.h38 static PassRefPtr<Profile> create(const UString& title, unsigned uid);
41 const UString& title() const { return m_title; } function in class:JSC::Profile
59 Profile(const UString& title, unsigned uid);

Completed in 225 milliseconds

12345678