Searched refs:textLen (Results 1 - 10 of 10) sorted by relevance

/haiku/src/apps/mediaplayer/
H A DNetworkStreamWin.cpp125 ssize_t textLen = 0; local
129 (const void **)&text, &textLen) == B_OK) {
136 text[textLen] = '\0';
/haiku/src/kits/interface/textview_support/
H A DWidthBuffer.cpp109 int32 textLen = 0; local
133 int32 offset = textLen;
134 textLen += charLen;
136 char* newText = (char*)realloc(text, textLen + 1);
150 text[textLen] = 0;
151 stringWidth += HashEscapements(text, numChars, textLen, index, inStyle);
277 \param textLen the amount of bytes contained in the string.
285 WidthBuffer::HashEscapements(const char* inText, int32 numChars, int32 textLen, argument
290 ASSERT(textLen > 0);
300 const char* textEnd = inText + textLen;
[all...]
H A DTextGapBuffer.cpp258 int32 textLen = Length();
260 if (offset < 0 || offset > (textLen - 1) || length < 1) {
265 length = ((offset + length) > textLen) ? textLen - offset : length;
H A DUndoBuffer.cpp127 const char* text, int32 textLen, text_run_array* runArray,
131 fPasteTextLength(textLen),
195 char const* text, int32 textLen, text_run_array* runArray,
199 fDropTextLength(textLen),
126 PasteUndoBuffer(BTextView* textView, const char* text, int32 textLen, text_run_array* runArray, int32 runArrayLen) argument
194 DropUndoBuffer(BTextView* textView, char const* text, int32 textLen, text_run_array* runArray, int32 runArrayLen, int32 location, bool internalDrop) argument
H A DStyleBuffer.h124 int32 toOffset, int32 textLen,
H A DStyleBuffer.cpp274 int32 textLen, uint32 inMode, const BFont* inFont,
302 int32 runEnd = textLen;
273 SetStyleRange(int32 fromOffset, int32 toOffset, int32 textLen, uint32 inMode, const BFont* inFont, const rgb_color* inColor) argument
/haiku/src/apps/webpositive/
H A DConsoleWindow.cpp155 ssize_t textLen = text.Length(); local
160 clip->AddData("text/plain", B_MIME_TYPE, text.String(), textLen);
/haiku/src/preferences/shortcuts/
H A DShortcutsWindow.cpp805 ssize_t textLen; local
807 &text, &textLen) == B_OK) {
811 for (ssize_t i = 0; i < textLen; i++) {
/haiku/src/apps/mail/
H A DContent.cpp894 int32 textLen = TextLength();
951 if (end > textLen) {
952 end = textLen;
962 Select(textLen, textLen);
987 if (end > textLen) {
988 end = textLen;
/haiku/src/kits/interface/
H A DTextView.cpp4151 int32 textLen = fText->Length(); local
4152 if (offset >= textLen)
4153 return textLen;
4155 while (offset < textLen) {
4186 int32 textLen = fText->Length(); local
4188 while (offset < textLen) {
4229 int32 textLen = fText->Length(); local
4232 while (offset < textLen) {
4238 while (offset < textLen) {

Completed in 197 milliseconds