Lines Matching refs:nLength

60 		pPreeditData->aText.nLength    = 0;  in PreeditStartCallback()
100 if (ptext->nLength == 0) in Preedit_DeleteText()
102 ptext->nLength = from; in Preedit_DeleteText()
108 if (to == (int)ptext->nLength) in Preedit_DeleteText()
111 ptext->nLength = from; in Preedit_DeleteText()
114 if (to < (int)ptext->nLength) in Preedit_DeleteText()
119 (ptext->nLength - to) * sizeof(sal_Unicode)); in Preedit_DeleteText()
122 (ptext->nLength - to) * sizeof(XIMFeedback)); in Preedit_DeleteText()
123 ptext->nLength -= howmuch; in Preedit_DeleteText()
130 from, to, ptext->nLength ); in Preedit_DeleteText()
133 ptext->nLength = from; in Preedit_DeleteText()
137 ptext->pUnicodeBuffer[ptext->nLength] = (sal_Unicode)0; in Preedit_DeleteText()
230 if (pText->nSize <= (pText->nLength + nInsertTextLength)) in Preedit_InsertText()
231 enlarge_buffer(pText, pText->nLength + nInsertTextLength); in Preedit_InsertText()
236 int howmany = pText->nLength - where; in Preedit_InsertText()
253 pText->nLength += howmany; in Preedit_InsertText()
256 pText->pUnicodeBuffer[pText->nLength] = (sal_Unicode)0; in Preedit_InsertText()
266 if ( (from + amount) > (int)ptext->nLength ) in Preedit_UpdateAttributes()
270 from, amount, ptext->nLength ); in Preedit_UpdateAttributes()
407 pPreeditData->aText.pCharStyle, pPreeditData->aText.nLength, pPreeditData->aInputFlags); in PreeditDrawCallback()
410 pPreeditData->aText.nLength); in PreeditDrawCallback()
417 if (pPreeditData->aText.nLength == 0 && pPreeditData->pFrame ) in PreeditDrawCallback()
420 if (pPreeditData->aText.nLength == 0) in PreeditDrawCallback()
601 size_t nLength = 0; in StatusDrawCallback() local
609 nLength = wcstombs( pMBString, pWString, nBytes+1 ); in StatusDrawCallback()
617 nLength = strlen( pMBString ); in StatusDrawCallback()
620 if( nLength ) in StatusDrawCallback()
621 aText = String( pMBString, nLength, gsl_getSystemTextEncoding() ); in StatusDrawCallback()