Searched refs:text (Results 1 - 25 of 886) sorted by last modified time

1234567891011>>

/haiku-fatelf/src/apps/debugger/debugger_interface/
H A DDebuggerInterface.cpp491 imageInfo.name, imageInfo.type, (addr_t)imageInfo.text,
503 if ((addr_t)imageInfo.text >= USER_COMMPAGE_ADDR
504 && (addr_t)imageInfo.text < USER_COMMPAGE_ADDR + COMMPAGE_SIZE) {
507 (addr_t)imageInfo.text, imageInfo.text_size,
748 (addr_t)info.text, info.text_size, (addr_t)info.data,
758 (addr_t)info.text, info.text_size, (addr_t)info.data,
/haiku-fatelf/src/kits/print/
H A DPicturePrinter.cpp39 void PicturePrinter::Print(const char* text) { argument
40 printf("%s ", text);
69 void PicturePrinter::Print(const char* text, float f) { argument
70 printf("%s %f ", text, f);
73 void PicturePrinter::Print(const char* text, BPoint* point) { argument
74 Print(text); Print(point);
194 Print("text:"); Print(string); Cr();
/haiku-fatelf/src/preferences/filetypes/
H A DApplicationTypeWindow.cpp443 // Manually set a minimum size for the version text controls
612 char text[256]; local
613 snprintf(text, sizeof(text), "%" B_PRId32, versionInfo.major);
614 fMajorVersionControl->SetText(text);
615 snprintf(text, sizeof(text), "%" B_PRId32, versionInfo.middle);
616 fMiddleVersionControl->SetText(text);
617 snprintf(text, sizeof(text), "
[all...]
/haiku-fatelf/src/system/kernel/
H A Delf.cpp123 imageInfo.text = (void *)image->text_region.start;
532 dump_elf_region(&image->text_region, "text");
1330 // we now no longer need to write to the text area anymore
2169 // assume ro/text segment
2182 dprintf("error mapping file text: %s!\n", strerror(id));
2187 imageInfo.text = regionAddress;
2392 // Usually add-ons have two PT_LOAD headers: one for .data one or .text.
2396 // Some add-ons may have .text and .data concatenated in a single
2397 // PT_LOAD RWE header and we must map that to .text.
2417 // some programs may have .text an
2581 elf_create_memory_image(const char* imageName, addr_t text, size_t textSize, addr_t data, size_t dataSize) argument
[all...]
/haiku-fatelf/src/servers/print/
H A DConfigWindow.cpp303 BString text = B_TRANSLATE("Printer server"); local
304 text << "\n"
310 BAlert *about = new BAlert("About printer server", text.String(),
/haiku-fatelf/data/bin/
H A Dinstalloptionalpackage98 eval local text='\$'"\$1"
101 local length=\${#text}
103 if [ "\${text:0:1}" == ' ' ] ; then
104 text=\${text#' '}
107 eval \$_outvar="'\$text'"
114 eval local text='\$'"\$1"
117 local length=\${#text}
119 if [ "\${text:\$length}" == ' ' ] ; then
120 text
[all...]
/haiku-fatelf/src/apps/stylededit/
H A DStyledEditWindow.cpp528 BString text; local
529 bs_printf(&text,
532 _ShowAlert(text, B_TRANSLATE("OK"), "", "", B_STOP_ALERT);
701 // text encoding
1420 BString text; local
1422 bs_printf(&text,
1425 bs_printf(&text, B_TRANSLATE("Error loading \"%s\":\n\t%s"),
1428 _ShowAlert(text, B_TRANSLATE("OK"), "", "", B_STOP_ALERT);
1694 // start from the beginning of text
1710 // advance the caret behind the inserted text
1867 _ShowAlert(const BString& text, const BString& label, const BString& label2, const BString& label3, alert_type type) const argument
[all...]
H A DStyledEditWindow.h78 int32 _ShowAlert(const BString& text,
H A DStyledEditView.cpp189 StyledEditView::InsertText(const char* text, int32 length, int32 offset, argument
195 BTextView::InsertText(text, length, offset, runs);
H A DStyledEditView.h32 virtual void InsertText(const char* text, int32 length, int32 offset,
/haiku-fatelf/src/apps/sudoku/
H A DSudokuField.cpp20 static char text[64]; local
23 text[i++] = set & (1UL << (number - 1)) ? number + '0' : '-';
26 text[i] = '\0';
27 return text;
H A DSudokuGenerator.cpp45 SudokuGenerator::_Progress(BMessenger progress, const char* text, argument
49 if (text)
50 update.AddString("message", text);
/haiku-fatelf/src/kits/interface/
H A DTextView.cpp13 /*! BTextView displays and manages styled text. */
20 // to refresh only changed parts of text (currently we often redraw the whole
21 // text)
163 // text to be hidden
224 "Returns the length of the text in bytes.", 0,
231 "Returns the text in the specified range in the BTextView.", 0,
238 "Removes or inserts text into the specified range in the BTextView.", 0,
245 "Returns the style information for the text in the specified range in "
253 "Sets the style information for the text in the specified range in the "
264 \param textRect Determines the area of the text withi
343 const char *text = NULL; local
1441 const char* text = fText->GetString(fSelStart, &numBytes); local
1472 const char *text = NULL; local
3284 const char* text = fText->GetString(fSelStart, &numBytes); local
4305 const char* text = fText->GetString(fromOffset, &numBytes); local
4917 const char *text = NULL; local
5783 _FilterDisallowedChars(char* text, ssize_t& length, text_run_array* runArray) argument
[all...]
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DDocInfoWindow.cpp393 BTextControl *text = reinterpret_cast<BTextControl*>(p); local
394 key = text->Text();
479 BString text; local
480 _DocInfo()->FindString(name, &text);
486 textControl->TextView()->SetText(text.String());
517 PermissionLabels("Prevent copying or extracting text or graphics.", "nocopy"),
520 PermissionLabels("Prevent extracting text of graphics.", "noaccessible"),
H A DPrinterDriver.cpp202 char text[128]; local
204 sprintf(text, "Faking print of page %" B_PRId32 "/%" B_PRId32 "...", pageNumber, pageCount);
205 BAlert *alert = new BAlert("PrinterDriver::PrintPage()", text, "Hmm?");
/haiku-fatelf/src/apps/showimage/
H A DShowImageWindow.cpp315 BString text(B_TRANSLATE_COMMENT("%SECONDS seconds",
319 text.ReplaceFirst("%SECONDS", seconds);
321 _AddDelayItem(delayMenu, text.String(), kDelays[i] * 1000000LL);
1091 BString text; local
1092 if (message != NULL && message->FindString("status", &text) == B_OK
1093 && text.Length() > 0) {
1094 status << ", " << text; local
/haiku-fatelf/src/apps/processcontroller/
H A DProcessController.cpp867 char text[4096]; local
868 sprintf(text, "db %d", int(param->thread));
869 system(text);
886 sprintf (text, "This thread is waiting for the "
891 strcat(text, "This semaphore belongs to the "
900 strcat(text, moreText);
903 BAlert* alert = new BAlert("", text, "Cancel", "Release",
/haiku-fatelf/src/kits/tracker/
H A DPoseView.cpp4096 // handle simple text clipping drag&drop message
4551 // text dropped, make into a clipping file
4556 // find the text
4558 const char* text; local
4559 if (message->FindData(kPlainTextMimeType, B_MIME_TYPE, (const void**)&text,
4573 || file.Write(text, (size_t)textLength) < 0
4579 PRINT(("error writing text into file %s\n", name));
6639 const char* text = NULL; local
6641 text = widget->Text(this);
6643 if (text !
10064 const char* text = NULL; local
[all...]
H A DOverrideAlert.cpp44 OverrideAlert::OverrideAlert(const char* title, const char* text, argument
49 : BAlert(title, text, button1, button2, button3, width, type),
62 OverrideAlert::OverrideAlert(const char* title, const char* text, argument
67 : BAlert(title, text, button1, button2, button3, width, spacing, type),
H A DUtilities.cpp655 const char* text, uint32 resizeFlags, uint32 flags)
657 BStringView(bounds, name, text, resizeFlags, flags),
665 const char* text, BBitmap* inBitmap, uint32 resizeFlags, uint32 flags)
667 BStringView(bounds, name, text, resizeFlags, flags),
1208 StringToScalar(const char* text) argument
1213 char* buffer = new char [strlen(text) + 1];
1214 strcpy(buffer, text);
1584 ComputeTypeAheadScore(const char* text, const char* match, bool wordMode) argument
1587 const char* found = strcasestr(text, match);
1589 if (found == text)
654 FlickerFreeStringView(BRect bounds, const char* name, const char* text, uint32 resizeFlags, uint32 flags) argument
664 FlickerFreeStringView(BRect bounds, const char* name, const char* text, BBitmap* inBitmap, uint32 resizeFlags, uint32 flags) argument
[all...]
/haiku-fatelf/src/apps/expander/
H A DExpanderWindow.cpp624 BString text(B_TRANSLATE("Expanding '%s'"));
625 text.ReplaceFirst("%s", path.Leaf());
626 SetStatus(text.String());
726 ExpanderWindow::SetStatus(BString text) argument
728 if (text.Length() >= MAX_STATUS_LENGTH) {
729 text.Truncate(MAX_STATUS_LENGTH - 1);
730 text << B_UTF8_ELLIPSIS;
733 fStatusView->SetText(text);
772 BString text(B_TRANSLATE("Creating listing for '%s'"));
773 text
[all...]
/haiku-fatelf/src/apps/terminal/
H A DTermView.cpp738 // convert view coordinates to terminal text buffer position
746 // convert terminal text buffer position to view coordinates
840 // synchronize the visible text buffer
1005 clipMsg->AddData("text/plain", B_MIME_TYPE, copyStr.String(),
1019 const char* text; local
1021 if (clipMsg->FindData("text/plain", B_MIME_TYPE,
1022 (const void**)&text, &numBytes) == B_OK ) {
1023 _WritePTY(text, numBytes);
1735 BString text; local
1736 text << column
1763 char *text; local
1839 const char* text; local
2517 _WritePTY(const char* text, int32 numBytes) argument
[all...]
/haiku-fatelf/src/apps/tv/
H A DController.cpp55 HandleError(const char *text, status_t err) argument
58 printf("%s. error 0x%08x (%s)\n",text, (int)err, strerror(err));
/haiku-fatelf/src/system/kernel/debug/
H A Dblue_screen.cpp135 const char *text = in_command_invocation() local
138 int32 length = strlen(text);
141 text = "P";
148 text[i], sScreen.boot_debug_output ? 0x6f : 0xf6);
162 // remove on screen text again
701 blue_screen_puts(const char *text) argument
710 while (text[0] != '\0') {
711 parse_character(text[0]);
712 text++;
/haiku-fatelf/src/add-ons/kernel/drivers/network/broadcom570x/dev/bce/
H A Dif_bcereg.h6322 u32 *text; member in struct:fw_info

Completed in 249 milliseconds

1234567891011>>