Searched refs:text (Results 26 - 50 of 543) sorted by relevance

1234567891011>>

/haiku/src/apps/haikudepot/util/
H A DLoggingUrlProtocolListener.cpp41 BUrlProtocolDebugMessage type, const char* text)
43 HDTRACE("url->file <%s>; %s", fTraceLoggingIdentifier.String(), text);
40 DebugMessage(BUrlRequest* caller, BUrlProtocolDebugMessage type, const char* text) argument
/haiku/src/system/boot/platform/efi/arch/arm64/
H A Dentry.S9 .text
/haiku/src/system/libroot/os/arch/m68k/
H A Dsystem_time_asm.S8 .text
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dcdda.cpp27 char text[12]; member in struct:cdtext_pack_data
191 sanitize_album(cdtext &text) argument
193 cut_string(text.album, text.artist);
194 sanitize_string(text.album);
196 if (text.album != NULL && !strcasecmp(text.album, "My CD")) {
198 free(text.album);
199 text.album = NULL;
202 if ((text
218 sanitize_titles(cdtext &text) argument
285 correct_case(cdtext &text) argument
443 dump_cdtext(cdtext &text) argument
601 char text[256]; local
[all...]
/haiku/headers/private/interface/
H A Dutf8_functions.h20 UTF8NextCharLenUnsafe(const char *text) argument
22 const char *ptr = text;
28 return ptr - text;
33 UTF8NextCharLen(const char *text) argument
35 if (text == NULL || *text == 0)
38 return UTF8NextCharLenUnsafe(text);
90 UTF8PreviousCharLen(const char *text, const char *limit) argument
92 const char *ptr = text;
103 return text
[all...]
/haiku/src/tests/kits/interface/
H A DToolTipTest.cpp23 CustomToolTip(const char* text) argument
25 fView = new BStringView("", text);
74 char text[42]; local
75 snprintf(text, sizeof(text), "%d", ++fNumber);
76 SetText(text);
132 char text[42]; local
133 snprintf(text, sizeof(text), "%g:%g", where.x, where.y);
134 SetText(text);
214 BString text; local
[all...]
/haiku/src/apps/haikudepot/textview/
H A DTextSpan.cpp20 TextSpan::TextSpan(const BString& text, const CharacterStyle& style) argument
22 fText(text),
23 fCharCount(text.CountChars()),
75 TextSpan::SetText(const BString& text) argument
77 fText = text;
104 TextSpan::Append(const BString& text) argument
106 return Insert(fCharCount, text);
111 TextSpan::Insert(int32 offset, const BString& text) argument
115 fText.InsertChars(text, offset);
H A DMarkupParser.cpp67 MarkupParser::CreateDocumentFromMarkup(const BString& text) argument
73 AppendMarkup(document, text);
80 MarkupParser::AppendMarkup(const TextDocumentRef& document, const BString& text) argument
90 _ParseText(text);
130 MarkupParser::_ParseText(const BString& text) argument
135 int32 charCount = text.CountChars();
136 const char* c = text.String();
146 // _CopySpan(text, start, offset);
158 _CopySpan(text, start, offset);
165 _CopySpan(text, star
264 _CopySpan(const BString& text, int32& start, int32 end) argument
[all...]
/haiku/src/apps/mail/
H A DKUndoBuffer.h18 KUndoItem(const char* text, int32 length,
23 void Merge(const char* text, int32 length);
55 status_t Undo(char** text, int32* length, int32* offset,
58 status_t Redo(char** text, int32* length, int32* offset,
71 status_t NewUndo(const char* text, int32 length,
/haiku/src/bin/pkgman/
H A Dcommand_info.cpp106 BString text("%name%: %summary%\n\n%description%\n");
107 text.ReplaceFirst("%name%", package->Name());
108 text.ReplaceFirst("%summary%", package->Info().Summary());
109 text.ReplaceFirst("%description%", package->Info().Description());
110 printf("%s\n", text.String());
/haiku/src/apps/people/
H A DPersonView.cpp153 BTextView* text = fControls.ItemAt(i)->TextView(); local
154 if (text->IsFocus()) {
155 text->Select(0, text->TextLength());
229 const char *text = buffer; local
231 char* offset = strstr(text, ",");
235 if (!fGroups->FindItem(text)) {
238 if (strcmp(text, item->Label()) < 0)
243 message->AddString("group", text);
244 fGroups->AddItem(new BMenuItem(text, messag
398 BTextView* text = control->TextView(); local
444 BTextView* text = fControls.ItemAt(i)->TextView(); local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Ddebug.h77 void log_printf(const char *text,...);
78 void debug_printf(const char *text,...);
88 void debug_printf(const char *text,...);
/haiku/src/apps/bootmanager/
H A DUninstallPage.cpp53 BString text; local
54 text << B_TRANSLATE_COMMENT("Uninstall Boot Manager", "Title") << "\n\n"
58 fDescription = CreateDescription(rect, "description", text);
H A DWizardView.h34 virtual void SetPreviousButtonLabel(const char* text);
35 virtual void SetNextButtonLabel(const char* text);
/haiku/src/tests/servers/launch/
H A DSettingsParserTest.h46 status_t _ParseCondition(const char* text,
48 status_t _ParseEvent(const char* text,
50 status_t _ParseName(const char* name, const char* text,
/haiku/src/tests/kits/interface/flatten_picture/
H A DPictureTestWindow.cpp87 BString text; local
88 text << "failures = " << fFailedTests << ", tests =" << fNumberOfTests;
89 fHeader->SetText(text.String());
133 BString text; local
137 text = "Flatten Picture Test";
140 text = "Archive Picture Test";
143 text = "Unknown test method!";
145 fListView->AddItem(new BStringItem(text.String()));
178 BString text; local
179 text
[all...]
/haiku/src/libs/bsd/
H A Ddl_iterate_phdr.c24 // text segment (defined by runtime_loader as the first loaded page
27 // is always loaded at the beginning of the text segment.
41 const Elf_Ehdr* header = (const Elf_Ehdr*)info.text;
49 phdr_info.dlpi_addr = (Elf_Addr)info.text;
52 phdr_info.dlpi_phdr = (const Elf_Phdr*)((const char*)info.text + header->e_phoff);
/haiku/src/tools/checkstyle/
H A Dcheckstyle.py10 def processMatches(matches, name, text, highlights):
12 printMatch(name, match, text)
22 text = file.read()
27 processMatches(regexp.finditer(text), name, text, highlights)
34 renderHtml(text, highlights, fileName, outputFileName)
/haiku/src/add-ons/kernel/generic/mpu401/
H A Ddebug.h49 void debug_printf(const char *text,...);
59 void log_printf(const char *text,...);
/haiku/src/apps/cortex/Persistence/
H A Dxml_export_utils.h47 // so that text written after this call will start at the given
49 // Assumes that the given text string has already been written
55 const char* text,
59 int16 spaces = column - (strlen(text) + context.indentLevel());
53 pad_with_spaces( ostream& str, const char* text, ExportContext& context, uint16 column=30) argument
/haiku/src/apps/debuganalyzer/gui/
H A DAbstractGeneralPage.cpp36 AbstractGeneralPage::AddDataView(const char* label, const char* text) argument
42 TextDataView* dataView = new TextDataView(text);
/haiku/src/kits/interface/textview_support/
H A DWidthBuffer.cpp51 \param text A pointer to the character to examine.
56 CharToCode(const char* text, const int32 charLen) argument
61 value |= ((unsigned char)text[c] << shiftVal);
107 char* text = NULL; local
136 char* newText = (char*)realloc(text, textLen + 1);
138 free(text);
142 text = newText;
143 memcpy(&text[offset], sourceText, charLen);
147 if (text != NULL) {
150 text[textLe
171 const char* text = inBuffer.GetString(fromOffset, &length); local
299 char* text = (char*)inText; local
[all...]
/haiku/src/preferences/filetypes/
H A DStringView.h16 const char* text);
22 void SetText(const char* text);
/haiku/src/system/kernel/arch/m68k/
H A Darch_030_asm.S4 .text
/haiku/src/system/kernel/arch/x86/32/
H A Dsyscalls_asm.S9 .text

Completed in 121 milliseconds

1234567891011>>