Searched refs:FindString (Results 201 - 225 of 426) sorted by relevance

1234567891011>>

/haiku/src/apps/bootmanager/
H A DLegacyBootMenu.cpp434 partition.FindString("name", &name);
435 partition.FindString("path", &path);
468 if (settings->FindString("disk", &path) != B_OK)
508 if (settings->FindString("disk", &path) != B_OK)
/haiku/src/apps/serialconnect/
H A DSerialWindow.cpp337 bool open = (message->FindString("port name", &path) == B_OK);
455 if (message->FindString("terminator", &terminator) == B_OK) {
460 item->Message()->FindString("terminator", &code);
483 BString label = message->FindString("info");
/haiku/src/apps/terminal/
H A DThemeWindow.cpp124 msg->FindString("name", &filename);
/haiku/src/add-ons/input_server/filters/shortcut_catcher/
H A DKeyCommandMap.cpp233 if (!(message->FindString("path", &path) == B_OK
268 if (message.FindString("command", &command) == B_OK) {
/haiku/src/kits/mail/
H A DMailContainer.cpp248 content_type_string = content_type.FindString("unlabeled");
256 _boundary = strdup(content_type.FindString("boundary"));
/haiku/src/bin/network/ppp_up/
H A DConnectionView.cpp174 && parameter.FindString(MDSU_VALUES, &username) == B_OK)
179 && parameter.FindString(MDSU_VALUES, &password) == B_OK)
/haiku/src/add-ons/tracker/zipomatic/
H A DZipOMaticWindow.cpp133 if (message->FindString("archive_filename", &filename) == B_OK) {
145 if (message->FindString("zip_output", &string) == B_OK) {
/haiku/src/kits/storage/mime/
H A DAssociatedTypes.cpp207 extensions->FindString(kTypesField, i, &extension) == B_OK;
437 for (int i = 0; msg.FindString(kExtensionsField, i, &extension) == B_OK; i++) {
/haiku/src/apps/haikudepot/process/
H A DProcessCoordinator.cpp37 if (from->FindString(KEY_PROCESS_COORDINATOR_IDENTIFIER,
47 if (from->FindString(KEY_MESSAGE, &fMessage) != B_OK) {
/haiku/src/apps/people/
H A DPeopleApp.cpp127 if (info.FindString("attr:public_name", index,
131 if (info.FindString("attr:name", index,
H A DPictureView.cpp494 bool saveToFile = msg->FindString("be:filetypes", &type) == B_OK
496 && msg->FindString("name", &name) == B_OK;
499 && msg->FindString("be:types", &type) == B_OK;
/haiku/src/apps/mail/
H A DMailApp.cpp740 for (addonNameIndex = 0; B_OK == settingsMessage.FindString (
956 settings.AddString("FindString", FindWindow::GetFindString());
1015 if (settings.FindString("FontFamily", &fontFamily) == B_OK) {
1017 if (settings.FindString("FontStyle", &fontStyle) == B_OK) {
1046 if (settings.FindString("SignatureText", &string) == B_OK) {
1058 if (settings.FindString("FindString", &string) == B_OK)
1074 if (settings.FindString("ReplyPreamble", &string) == B_OK) {
/haiku/src/kits/tracker/
H A DFindPanel.cpp658 if (message->FindString("name", &name) == B_OK
1248 error = message->FindString("name", &name);
1264 if (message->FindString("be:types", &str) == B_OK
1266 && (message->FindString("be:actionspecifier",
1268 || message->FindString("be:filetypes", &mimeType) == B_OK)
1269 && message->FindString("name", &name) == B_OK
1377 if (message->FindString("name", &str) == B_OK)
1686 if (message->FindString("mimetype", type) != B_OK)
1880 while (types.FindString("super_types", index++, &superType) == B_OK) {
2714 if (message.FindString("menuSelectio
[all...]
H A DViewState.cpp138 if (message.FindString(kColumnTitleName, index, &fTitle) != B_OK)
156 if (message.FindString(kColumnAttrName, index, &fAttrName) != B_OK)
169 if (message.FindString(kColumnDisplayAsName, index, &fDisplayAs) != B_OK)
/haiku/src/apps/text_search/
H A DGrepWindow.cpp840 if (message->FindString("path", &path) == B_OK) {
868 if (message->FindString("path", &path) != B_OK) {
923 if (message->FindString("path", &path) == B_OK) {
995 BString name = message->FindString("filename");
1033 while (message->FindString("text", --count, &buf) == B_OK) {
1061 if (message->FindString("error", &buf) == B_OK)
1244 if (message->FindString("text", &buf) == B_OK)
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp724 && message->FindString("bytes", &bytes) == B_OK
844 if (message->FindString("url", &url) != B_OK)
866 && message->FindString("name", &name) == B_OK) {
1054 CurrentWebView()->FindString(fFindTextControl->Text(), true,
1065 CurrentWebView()->FindString(fFindTextControl->Text(), false,
1170 if (message->FindString("name", &name) != B_OK)
1187 && message->FindString("value", &string) == B_OK) {
1190 && message->FindString("value", &string) == B_OK) {
2086 && originatorData.FindString("url", &url) == B_OK
2087 && originatorData.FindString("titl
[all...]
/haiku/src/build/libbe/app/
H A DMessage.cpp1120 if (specifier->FindString(B_PROPERTY_ENTRY, property) < B_OK)
1856 BMessage::FindString(const char *name, const char **string) const function in class:BMessage
1858 return FindString(name, 0, string);
1863 BMessage::FindString(const char *name, int32 index, const char **string) const function in class:BMessage
1871 BMessage::FindString(const char *name, BString *string) const function in class:BMessage
1873 return FindString(name, 0, string);
1878 BMessage::FindString(const char *name, int32 index, BString *string) const function in class:BMessage
1884 status_t error = FindString(name, index, &cstr);
1912 status_t error = FindString(name, i, &string);
/haiku/headers/os/app/
H A DMessage.h203 status_t FindString(const char* name,
205 status_t FindString(const char* name, int32 index,
207 status_t FindString(const char* name,
209 status_t FindString(const char* name, int32 index,
419 const char* FindString(const char* name, int32 n = 0) const;
/haiku/src/kits/interface/
H A DPrintJob.cpp313 fSetupMessage->FindString(PSRV_FIELD_CURRENT_PRINTER, &printerName);
440 && message->FindString("printer_name", &name) == B_OK
683 reply.FindString("printer_name", &printerName);
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp78 if (fSettings.FindString("destination", &fDestinationDir) != B_OK)
98 status_t error = Open(fSettings.FindString("server"),
105 error = Login(fSettings.FindString("username"), password,
/haiku/src/apps/diskusage/
H A DPieView.cpp651 msg.FindString("applications", i, &appSig);
656 msg.FindString("applications", i + hold, &appSig);
665 if (msg.FindString("applications", i, &appSig) == B_OK)
/haiku/src/preferences/locale/
H A DLocaleWindow.cpp105 for (int i = 0; availableLanguages.FindString("language", i, &currentID)
203 availableLanguages.FindString("language", i, &conventionsID) == B_OK;
581 languages.FindString("language", index, &languageID) == B_OK; index++) {
/haiku/src/apps/networkstatus/
H A DNetworkStatusView.cpp259 if (message->FindString("device", &deviceName) == B_OK
260 && message->FindString("name", &name) == B_OK
324 if (message->FindString("interface", &name) != B_OK)
/haiku/src/preferences/shortcuts/
H A DShortcutsWindow.cpp612 if ((message->FindString("name", &name) == B_OK)
709 } else if ((message->FindString("bytes", &bytes) == B_OK)
719 } else if (message->FindString("text", &bytes) == B_OK) {
/haiku/src/kits/app/
H A DApplication.cpp284 data->FindString("mime_sig", &signature);
775 err = specifier->FindString("name", &name);
822 err = specifier->FindString("name", &name);
1255 err = specifier->FindString("name", &name);
1297 err = specifier->FindString("name", &name);
1599 error = message->FindString("argv", i, &arg);

Completed in 161 milliseconds

1234567891011>>