Searched refs:fromView (Results 1 - 2 of 2) sorted by relevance

/haiku/headers/os/translation/
H A DTranslationUtils.h59 static status_t PutStyledText(BTextView* fromView,
62 static status_t WriteStyledEditFile(BTextView* fromView,
64 static status_t WriteStyledEditFile(BTextView* fromView,
/haiku/src/kits/translation/
H A DTranslationUtils.cpp449 This function takes styled text data from fromView and writes it to
461 \param fromView, the view with the styled text in it
465 \return B_BAD_VALUE, if fromView or intoStream is NULL
470 BTranslationUtils::PutStyledText(BTextView *fromView, BPositionIO *intoStream, argument
473 if (fromView == NULL || intoStream == NULL)
476 int32 textLength = fromView->TextLength();
480 const char *pTextData = fromView->Text();
481 // its OK if the result of fromView->Text() is NULL
484 text_run_array *runArray = fromView->RunArray(0, textLength,

Completed in 36 milliseconds