Searched refs:title (Results 201 - 225 of 283) sorted by relevance

1234567891011>>

/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DNodeHarnessWin.cpp73 NodeHarnessWin::NodeHarnessWin(BRect frame, const char *title) argument
74 : BWindow(frame, title, B_TITLED_WINDOW, B_NOT_RESIZABLE | B_ASYNCHRONOUS_CONTROLS),
/haiku/src/apps/webpositive/
H A DBookmarkBar.cpp20 BookmarkBar::BookmarkBar(const char* title, BHandler* target, argument
23 BMenuBar(title)
/haiku/src/apps/poorman/libhttpd/
H A Dlibhttpd.c129 static void send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads, char* type, off_t length, time_t mod );
130 static void send_response( httpd_conn* hc, int status, char* title, char* extraheads, char* form, char* arg );
134 static int send_err_file( httpd_conn* hc, int status, char* title, char* extraheads, char* filename );
619 send_mime( httpd_conn* hc, int status, char* title, char* encodings, char* extraheads, char* type, off_t length, time_t mod ) argument
644 title = ok206title;
661 hc->protocol, status, title, EXPOSED_SERVER_SOFTWARE, fixed_type,
748 send_response( httpd_conn* hc, int status, char* title, char* extraheads, char* form, char* arg ) argument
753 hc, status, title, "", extraheads, "text/html; charset=%s", (off_t) -1,
762 <title>%d %s</title>\
837 httpd_send_err( httpd_conn* hc, int status, char* title, char* extraheads, char* form, char* arg ) argument
871 send_err_file( httpd_conn* hc, int status, char* title, char* extraheads, char* filename ) argument
3293 char* title; local
[all...]
H A Dlibhttpd.h271 httpd_conn* hc, int status, char* title, char* extraheads, char* form,
/haiku/src/apps/terminal/
H A DTerminalBuffer.cpp190 TerminalBuffer::SetTitle(const char* title) argument
194 message.AddString("title", title);
/haiku/src/apps/debugger/user_interface/cli/
H A DCommandLineUserInterface.cpp203 CommandLineUserInterface::NotifyUser(const char* title, const char* message, argument
216 CommandLineUserInterface::SynchronouslyAskUser(const char* title, argument
/haiku/src/kits/tracker/
H A DFavoritesMenu.cpp68 FavoritesMenu::FavoritesMenu(const char* title, BMessage* openFolderMessage, argument
72 BSlowMenu(title),
H A DFindPanel.h77 BMenu* TrackerBuildRecentFindItemsMenu(const char* title);
328 RecentFindItemsMenu(const char* title,
/haiku/src/add-ons/kernel/bus_managers/virtio/
H A DVirtioDevice.cpp307 VirtioDevice::_DumpFeatures(const char* title, uint64 features, argument
324 TRACE("%s: %s\n", title, features_string);
H A DVirtioPrivate.h79 void _DumpFeatures(const char* title,
/haiku/src/apps/packageinstaller/
H A DPackageView.cpp95 // Set the window title
97 BString title; local
100 title = B_TRANSLATE("Package installer");
102 title = B_TRANSLATE("Install %name%");
103 title.ReplaceAll("%name%", name);
105 parent->SetTitle(title.String());
/haiku/src/servers/app/decorator/
H A DDecorator.cpp46 title(""),
114 Frees the color set and the title string
122 Decorator::AddTab(DesktopSettings& settings, const char* title, argument
130 tab->title = title;
442 /*! \brief Updates the value of the decorator title
443 \param string New title value
454 decoratorTab->title.SetTo(string);
464 /*! \brief Returns the decorator's title
465 \return the decorator's title
[all...]
/haiku/src/apps/text_search/
H A DGrepWindow.cpp386 BString title; local
391 title = B_TRANSLATE("%appname% : %path% : %searchtext%");
392 title.ReplaceAll("%searchtext%", fOldPattern.String());
394 title = B_TRANSLATE("%appname% : %path%");
396 title.ReplaceAll("%appname%", B_TRANSLATE_NOCOLLECT(kAppName));
397 title.ReplaceAll("%path%", path.Path());
401 if (!title.Length())
402 title = B_TRANSLATE_NOCOLLECT(kAppName);
404 SetTitle(title.String());
/haiku/src/system/boot/platform/amiga_m68k/
H A Dconsole.cpp41 ConsoleDevice(const char *title);
187 // why do I have to add this to keep the title ?
219 ConsoleDevice::ConsoleDevice(const char *title) argument
221 fTitle(title),
/haiku/src/tests/servers/app/newerClipping/
H A Dmain.cpp26 Window(const char* title);
63 Window::Window(const char* title) argument
64 : BDirectWindow(BRect(50, 50, 800, 650), title,
/haiku/src/kits/tracker/infowindow/
H A DInfoWindow.cpp606 BString title(B_TRANSLATE_COMMENT("Link \"%name\" to:",
607 "File dialog title for new sym link"));
608 title.ReplaceFirst("%name", fModel->Name());
609 fFilePanel->Window()->SetTitle(title.String());
/haiku/src/kits/interface/
H A DAboutWindow.cpp396 BString title(about);
397 title.ReplaceFirst("%app%", appName);
398 SetTitle(title.String());
H A DWindow.cpp307 BWindow::BWindow(BRect frame, const char* title, window_type type, argument
310 BLooper(title, B_DISPLAY_PRIORITY)
316 _InitData(frame, title, look, feel, flags, workspace);
320 BWindow::BWindow(BRect frame, const char* title, window_look look, argument
323 BLooper(title, B_DISPLAY_PRIORITY)
325 _InitData(frame, title, look, feel, flags, workspace);
335 const char* title; local
336 data->FindString("_title", &title);
355 _InitData(fFrame, title, look, feel, fFlags, workspaces);
2034 BWindow::SetTitle(const char* title) argument
2721 _InitData(BRect frame, const char* title, window_look look, window_feel feel, uint32 flags, uint32 workspace, int32 bitmapToken) argument
2895 _SetName(const char* title) argument
[all...]
H A DAlert.cpp106 BAlert::BAlert(const char *title, const char *text, const char *button1, argument
110 BWindow(BRect(0, 0, 100, 100), title, B_MODAL_WINDOW,
117 BAlert::BAlert(const char *title, const char *text, const char *button1, argument
121 BWindow(BRect(0, 0, 100, 100), title, B_MODAL_WINDOW,
/haiku/src/apps/haikudepot/packagemodel/
H A DPackageInfo.cpp233 PackageInfo::SetTitle(const BString& title) argument
235 if (fTitle != title) {
236 fTitle = title;
/haiku/src/apps/soundrecorder/
H A DVolumeSlider.cpp17 VolumeSlider::VolumeSlider(BRect rect, const char *title, uint32 resizeFlags) argument
/haiku/3rdparty/mmu_man/scripts/
H A DHardwareChecker.sh27 --title "progress:" --progress "$p" "$m" "$@"
328 echo "<title>Hardware report</title>"
/haiku/src/servers/app/
H A DServerWindow.h55 ServerWindow(const char *title, ServerApp *app,
/haiku/src/servers/mail/
H A DMailDaemonApplication.cpp825 BString title; local
830 format.Format(title, fNewMessages);
832 title = B_TRANSLATE("No new messages");
834 fNotification->SetTitle(title.String());
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp668 char title[256]; local
695 snprintf(title, sizeof(title), "%02" B_PRId32 ". %s - %s.wav",
698 snprintf(title, sizeof(title), "%02" B_PRId32 ". %s.wav",
702 snprintf(title, sizeof(title), "Track %02" B_PRId32 ".wav", track);
704 // remove '/' and '\n' from title
705 for (int32 j = 0; title[j]; j++) {
706 if (title[
[all...]

Completed in 175 milliseconds

1234567891011>>