Lines Matching refs:nLen

889 					sal_Int32		nIndex, nLen;  in ImplConvertFromSVM1()  local
891 rIStm >> aPt >> nIndex >> nLen >> nTmp; in ImplConvertFromSVM1()
898 rMtf.AddAction( new MetaTextAction( aPt, aStr, (sal_uInt16) nIndex, (sal_uInt16) nLen ) ); in ImplConvertFromSVM1()
908 sal_Int32 nIndex, nLen, nAryLen; in ImplConvertFromSVM1() local
910 rIStm >> aPt >> nIndex >> nLen >> nTmp >> nAryLen; in ImplConvertFromSVM1()
932 aFontVDev.GetTextArray( aStr, pTmpAry, (sal_uInt16) nIndex, (sal_uInt16) nLen ); in ImplConvertFromSVM1()
956 ….AddAction( new MetaTextArrayAction( aPt, aStr, pDXAry, (sal_uInt16) nIndex, (sal_uInt16) nLen ) ); in ImplConvertFromSVM1()
968 sal_Int32 nIndex, nLen, nWidth; in ImplConvertFromSVM1() local
970 rIStm >> aPt >> nIndex >> nLen >> nTmp >> nWidth; in ImplConvertFromSVM1()
977 …ddAction( new MetaStretchTextAction( aPt, nWidth, aStr, (sal_uInt16) nIndex, (sal_uInt16) nLen ) ); in ImplConvertFromSVM1()
1769 sal_uLong nLen = pAct->GetLen(); in ImplWriteActions() local
1776 if( ( nLen + pAct->GetIndex() ) > nTextLen ) in ImplWriteActions()
1779 nLen = nTextLen - pAct->GetIndex(); in ImplWriteActions()
1781 nLen = 0UL; in ImplWriteActions()
1784 if( !pDXArray || !nLen ) in ImplWriteActions()
1787 nAryLen = nLen; // #105987# Write out all of DX array in ImplWriteActions()
1790 rOStm << (sal_Int32) ( 28 + ( nLen + 1 ) + ( nAryLen * 4 ) ); in ImplWriteActions()
1793 rOStm << (sal_Int32) nLen; in ImplWriteActions()
1794 rOStm << (sal_Int32) nLen; in ImplWriteActions()
1796 rOStm.Write( aText.GetBuffer()+pAct->GetIndex(), nLen + 1 ); in ImplWriteActions()