Lines Matching refs:nTextLength
228 sal_uInt32 nTextLength(nLength); in getTextOutlines() local
231 if(nTextLength + nIndex > nStringLength) in getTextOutlines()
233 nTextLength = nStringLength - nIndex; in getTextOutlines()
238 …OSL_ENSURE(nDXArrayCount == nTextLength, "DXArray size does not correspond to text portion size (!… in getTextOutlines()
275 sal_uInt32 nTextLength(nLength); in getTextBoundRect() local
278 if(nTextLength + nIndex > nStringLength) in getTextBoundRect()
280 nTextLength = nStringLength - nIndex; in getTextBoundRect()
283 if(nTextLength) in getTextBoundRect()
334 sal_uInt32 nTextLength(nLength); in getTextArray() local
337 if(nTextLength + nIndex > nStringLength) in getTextArray()
339 nTextLength = nStringLength - nIndex; in getTextArray()
342 if(nTextLength) in getTextArray()
344 aRetval.reserve(nTextLength); in getTextArray()
345 ::std::vector<sal_Int32> aDXArray( nTextLength); in getTextArray()
348 for(sal_uInt32 a(0); a < nTextLength; a++) in getTextArray()