Lines Matching refs:nMinIndex
5856 xub_StrLen nMinIndex, xub_StrLen nLen, in ImplPrepareLayoutArgs() argument
5861 if( (sal_uLong)nMinIndex + nLen < nEndIndex ) in ImplPrepareLayoutArgs()
5862 nEndIndex = nMinIndex + nLen; in ImplPrepareLayoutArgs()
5865 if( nEndIndex < nMinIndex ) in ImplPrepareLayoutArgs()
5866 nEndIndex = nMinIndex; in ImplPrepareLayoutArgs()
5876 const xub_Unicode* pStr = rStr.GetBuffer() + nMinIndex; in ImplPrepareLayoutArgs()
5901 const sal_Unicode* pStr = rStr.GetBuffer() + nMinIndex; in ImplPrepareLayoutArgs()
5922 const sal_Unicode* pStr = pBase + nMinIndex; in ImplPrepareLayoutArgs()
5954 ImplLayoutArgs aLayoutArgs( rStr.GetBuffer(), rStr.Len(), nMinIndex, nEndIndex, nLayoutFlags ); in ImplPrepareLayoutArgs()
5968 xub_StrLen nMinIndex, in ImplLayout() argument
5988 if( (unsigned)nMinIndex + nLen > rOrigStr.Len() ) in ImplLayout()
5990 const int nNewLen = (int)rOrigStr.Len() - nMinIndex; in ImplLayout()
6002 … bool bFiltered = mpGraphics->filterText( rOrigStr, aStr, nMinIndex, nLen, nCutStart, nCutStop ); in ImplLayout()
6013 if( nCutStart > nMinIndex ) in ImplLayout()
6014 memcpy( pAry, pDXArray, sizeof(sal_Int32)*(nCutStart-nMinIndex) ); in ImplLayout()
6016 memcpy( pAry+nCutStart-nMinIndex, in ImplLayout()
6017 pDXArray + nOrgLen - (nCutStop-nMinIndex), in ImplLayout()
6018 sizeof(sal_Int32)*(nLen - (nCutStart-nMinIndex)) ); in ImplLayout()
6044 …ImplLayoutArgs aLayoutArgs = ImplPrepareLayoutArgs( aStr, nMinIndex, nLen, nPixelWidth, pDXArray ); in ImplLayout()