Searched refs:text (Results 51 - 75 of 543) sorted by relevance

1234567891011>>

/haiku/src/apps/terminal/
H A DHyperLink.cpp32 HyperLink::HyperLink(const BString& text, const BString& address, Type type) argument
34 fText(text),
/haiku/src/system/kernel/arch/x86/64/
H A Dsyscalls_asm.S10 .text
/haiku/src/system/kernel/arch/sparc/
H A Darch_asm.S10 .text
/haiku/src/apps/haikudepot/ui/
H A DWorkStatusView.h27 void SetBusy(const BString& text);
31 void SetText(const BString& text);
/haiku/src/bin/network/ppp_up/
H A DPPPStatusView.cpp146 BString text; local
156 text << hours << minsec;
159 text << minsec;
161 text << seconds;
162 fTime->SetText(text.String());
164 text = "";
165 text << statistics.bytesReceived << ' ' << kTextBytes;
166 fBytesReceived->SetText(text.String());
167 text = "";
168 text << statistic
[all...]
/haiku/src/apps/mediaplayer/supplier/
H A DSubTitles.h17 BString text; member in struct:SubTitle
/haiku/src/apps/sudoku/
H A DSudokuGenerator.h26 void _Progress(BMessenger progress, const char* text, float percent);
/haiku/src/bin/screen_blanker/
H A DPasswordWindow.h25 void SetPassword(const char* text);
/haiku/src/preferences/filetypes/
H A DStringView.cpp14 StringView::StringView(const char* label, const char* text) argument
19 fText(new BStringView(NULL, text)),
33 StringView::SetText(const char* text) argument
35 fText->SetText(text);
/haiku/src/system/kernel/arch/mips/
H A Darch_asm.S7 .text
/haiku/src/system/kernel/debug/
H A Dblue_screen.h26 void blue_screen_puts(const char *text);
/haiku/src/apps/packageinstaller/
H A DPackageTextViewer.cpp29 PackageTextViewer::PackageTextViewer(const char *text, bool disclaimer) argument
34 _InitView(text, disclaimer);
62 PackageTextViewer::_InitView(const char* text, bool disclaimer) argument
106 textView->SetText(text);
/haiku/src/apps/haikudepot/ui_generic/
H A DMarkupTextView.h21 void SetDisabledText(const BString& text);
/haiku/src/system/boot/platform/next_m68k/
H A Dshell.S25 .text
/haiku/src/system/boot/platform/riscv/
H A Dcrt0.S16 .section .text.head
/haiku/src/tools/translation/inspector/
H A DInfoWindow.h40 InfoWindow(BRect rect, const char *name, const char *text =
H A DTranslatorItem.h46 BTranslatorItem(const char *text, const char *path, int32 group);
/haiku/src/system/libroot/os/arch/ppc/
H A Dsystem_time_asm.S8 .text
/haiku/src/apps/haikudepot/textview/
H A DTextSpan.h18 TextSpan(const BString& text,
26 void SetText(const BString& text);
37 bool Append(const BString& text);
38 bool Insert(int32 offset, const BString& text);
H A DTextDocument.h34 status_t Insert(int32 textOffset, const BString& text);
35 status_t Insert(int32 textOffset, const BString& text,
37 status_t Insert(int32 textOffset, const BString& text,
44 const BString& text);
46 const BString& text,
49 const BString& text,
85 static TextDocumentRef NormalizeText(const BString& text,
/haiku/src/preferences/datatranslations/
H A DDataTranslations.cpp50 BString text; local
51 snprintf(text.LockBuffer(512), 512,
53 text.UnlockBuffer();
55 text.String(), B_TRANSLATE("OK"));
83 BString text(
86 text.ReplaceAll("%name", name);
87 BAlert* alert = new BAlert("", text.String(), B_TRANSLATE("OK"));
/haiku/src/kits/interface/
H A DStringView.cpp13 //! BStringView draws a non-editable text string.
52 BStringView::BStringView(BRect frame, const char* name, const char* text, argument
56 fText(text ? strdup(text) : NULL),
59 fPreferredSize(text ? _StringWidth(text) : 0.0, -1)
64 BStringView::BStringView(const char* name, const char* text, uint32 flags) argument
67 fText(text ? strdup(text) : NULL),
70 fPreferredSize(text
85 const char* text = archive->GetString("_text", NULL); local
280 const char* text = lines.StringAt(i).String(); local
336 const char* text; local
392 SetText(const char* text) argument
612 _StringWidth(const char* text) argument
[all...]
/haiku/src/apps/mediaplayer/
H A DNetworkStreamWin.cpp124 char* text = NULL; local
128 if (data->FindData("text/plain", B_MIME_TYPE,
129 (const void **)&text, &textLen) == B_OK) {
136 text[textLen] = '\0';
138 // Before to set the text let's see if it's really
140 BUrl url(text);
142 fTextControl->SetText(text);
/haiku/src/apps/mail/
H A DKUndoBuffer.cpp41 KUndoItem::Merge(const char* text, int32 length) argument
44 memcpy(&RedoText[Length], text, length);
120 KUndoBuffer::NewUndo(const char* text, int32 length, int32 offset, argument
123 KUndoItem* NewUndoItem = new KUndoItem(text, length, offset, history,
138 KUndoBuffer::AddUndo(const char* text, int32 length, int32 offset, argument
147 status = NewUndo(text, length, offset, history, cursor_pos);
161 CurrentUndoItem->Merge(text, length);
163 status = NewUndo(text, length, offset, history,
168 status = NewUndo(text, length, offset, history,
173 status = NewUndo(text, lengt
193 Undo(char** text, int32* length, int32* offset, undo_type* history, int32* cursor_pos) argument
216 Redo(char** text, int32* length, int32* offset, undo_type* history, int32* cursor_pos, bool* replaced) argument
[all...]
/haiku/src/tests/kits/locale/
H A DUnicodeCharTest.cpp139 UnicodeCharTest::_ToString(uint32 c, char *text) argument
141 BUnicodeChar::ToUTF8(c, &text);
142 text[0] = '\0';
149 char text[16]; local
151 _ToString(i, text);
152 CPPUNIT_ASSERT_EQUAL(BString(result.value), text); local

Completed in 268 milliseconds

1234567891011>>