Searched refs:runArray (Results 1 - 6 of 6) sorted by relevance

/haiku/src/kits/translation/
H A DTranslationUtils.cpp419 text_run_array *runArray = NULL; local
421 runArray = BTextView::UnflattenRunArray(buffer + offset);
423 if (runArray != NULL) {
425 text, textHeader.header.data_size, runArray);
427 BTextView::FreeRunArray(runArray);
429 free(runArray);
484 text_run_array *runArray = fromView->RunArray(0, textLength, local
486 if (runArray == NULL)
491 BTextView::FlattenRunArray(runArray, &flatRunArrayLength);
494 BTextView::FreeRunArray(runArray);
[all...]
/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.cpp127 const char* text, int32 textLen, text_run_array* runArray,
137 if (runArray)
138 fPasteRunArray = BTextView::CopyRunArray(runArray);
195 char const* text, int32 textLen, text_run_array* runArray,
208 if (runArray)
209 fDropRunArray = BTextView::CopyRunArray(runArray);
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 DUndoBuffer.h63 text_run_array* runArray,
94 text_run_array* runArray,
/haiku/src/kits/interface/
H A DTextView.cpp403 text_run_array* runArray = UnflattenRunArray(flattenedRun, local
405 if (runArray) {
406 SetRunArray(0, fText->Length(), runArray);
407 FreeRunArray(runArray);
481 text_run_array* runArray = RunArray(0, fText->Length()); local
483 void* flattened = FlattenRunArray(runArray, &runSize);
490 FreeRunArray(runArray);
1393 text_run_array* runArray = RunArray(fSelStart, fSelEnd, &size); local
1395 B_MIME_TYPE, runArray, size);
1396 FreeRunArray(runArray);
1421 text_run_array* runArray = NULL; local
2855 text_run_array* runArray = (text_run_array*)calloc(size, 1); local
2910 FlattenRunArray(const text_run_array* runArray, int32* _size) argument
2970 text_run_array* runArray = AllocRunArray(count, _size); local
4958 text_run_array* runArray = NULL; local
5959 _FilterDisallowedChars(char* text, ssize_t& length, text_run_array* runArray) argument
[all...]
/haiku/headers/os/interface/
H A DTextView.h224 static void* FlattenRunArray(const text_run_array* runArray,
417 ssize_t& length, text_run_array* runArray);
/haiku/src/apps/mail/
H A DContent.cpp862 text_run_array *runArray = RunArray(0, INT32_MAX);
863 for (int i = 0; i < runArray->count; i++)
864 runArray->runs[i].font = *newFont;
866 SetRunArray(0, INT32_MAX, runArray);
867 FreeRunArray(runArray);

Completed in 67 milliseconds