| /aoo41x/main/svl/inc/svl/ | 
| H A D | svarray.hxx | 246 		memmove( pData+nP+1, pData+nP, (nA-nP) * sizeof( AE ));\257 		memmove( pData+nP+nL, pData+nP, (nA-nP) * sizeof( AE ));\
 265 	if( nP < nA )\
 278             nP = nP + (nL - nA); \
 296 	DBG_ASSERT( nP < nA && nP + nL <= nA,"Del");\
 298 		memmove( pData+nP, pData+nP+nL, (nA-nP-nL) * sizeof( AE ));\
 447 		DBG_ASSERT( nP < nA && nP + nL <= nA,"Del");\
 448 		for( sal_uInt16 n=nP; n < nP + nL; n++ ) \
 747 			DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );\
 748 			for( sal_uInt16 n=nP; n < nP + nL; n++ ) \
 [all …]
 
 | 
| H A D | svstdarr.hxx | 83 	void RemoveAt( const sal_uInt16 nP, sal_uInt16 nL = 1 );85 	void Remove( const sal_uInt16 nP, sal_uInt16 nL = 1 );
 91 	const sal_uInt16& operator[](sal_uInt16 nP) const {  in operator []()
 92 		return SvUShorts::operator[]( nP );  in operator []()
 94 	const sal_uInt16& GetObject(sal_uInt16 nP) const {  in GetObject()
 95 		return SvUShorts::GetObject( nP );  in GetObject()
 
 | 
| /aoo41x/main/svl/source/memtools/ | 
| H A D | svarray.cxx | 94 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in SV_IMPL_VARARR()95 		for( sal_uInt16 n=nP; n < nP + nL; n++ )  in SV_IMPL_VARARR()
 141 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in _SV_IMPL_SORTAR_ALG()
 142 		for( sal_uInt16 n=nP; n < nP + nL; n++ )  in _SV_IMPL_SORTAR_ALG()
 218 	sal_uInt16 nP;  in Insert()  local
 234 	sal_uInt16 nP;  in Insert()  local
 251 	sal_uInt16 nP;  in Insert()  local
 280 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in _SV_IMPL_SORTAR_ALG()
 281 		for( sal_uInt16 n=nP; n < nP + nL; n++ )  in _SV_IMPL_SORTAR_ALG()
 326 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in _SV_IMPL_SORTAR_ALG()
 [all …]
 
 | 
| /aoo41x/main/i18npool/source/search/ | 
| H A D | levdis.cxx | 189         int nP;  in WLD()  local192             nP = 0;     // ein '?' kann jedes Zeichen sein  in WLD()
 195             nP = Min3( nRepP0, nRepP0, nDelR0 + nInsQ0 );  in WLD()
 204                 nP = 0;     // Replace ab dieser Stelle ist 0  in WLD()
 206             npDistance[i] = nDelCnt + nP;  in WLD()
 209                 if ( nReplacePos < 0 && nP )  in WLD()
 217                 else if ( nReplacePos > 0 && !nP )  in WLD()
 251         int nP, nQ, nR, nPij, d1, d2;  in WLD()  local
 256             nP = 0;     // kann ohne Strafpunkte ersetzt werden  in WLD()
 258             nP = nRepP0;  in WLD()
 [all …]
 
 | 
| /aoo41x/main/tools/source/ref/ | 
| H A D | pstm.cxx | 697 	sal_uInt8 nP = P_STD;  in WritePointer()  local703 			nP |= P_ID;  in WritePointer()
 708 			nP |= P_OBJ;  in WritePointer()
 710 		WriteId( *this, nP, nId, pObj->GetClassId() );  in WritePointer()
 711 		if( nP & P_OBJ )  in WritePointer()
 712 			WriteObj( nP, pObj );  in WritePointer()
 716 		WriteId( *this, nP | P_ID, 0, 0 );  in WritePointer()
 849 		sal_uInt8 nP = P_OBJ | P_ID | P_STD;  in operator <<()  local
 850 		WriteId( rThis, nP, rThis.aPUIdx.GetCurIndex(),  in operator <<()
 852 		rThis.WriteObj( nP, pEle );  in operator <<()
 
 | 
| /aoo41x/main/filter/source/graphicfilter/ios2met/ | 
| H A D | ios2met.cxx | 1067 	long nP,nQ,nR,nS;  in ReadFullArc()  local1078 	if (nP<0) nP=-nP;  in ReadFullArc()
 1085 		nP=(nP*nMul)>>16;  in ReadFullArc()
 1128 	if (nP<0) nP=-nP;  in ReadPartialArc()
 1135 		nP=(nP*nMul)>>16;  in ReadPartialArc()
 1652 				pAttrStack->nIvAttrP=nP;  in ReadOrder()
 1656 					if (nA==1) switch (nP) {  in ReadOrder()
 1663 					else switch (nP) {  in ReadOrder()
 1685 					else switch (nP) {  in ReadOrder()
 1704 					else switch (nP) {  in ReadOrder()
 [all …]
 
 | 
| /aoo41x/main/chart2/source/tools/ | 
| H A D | RegressionCurveCalculator.cxx | 117     for(sal_Int32 nP=0; nP<nPointCount; nP++)  in getCurveValues()  local119         double x = fMin + nP * fFact;  in getCurveValues()
 122         aResult[nP].X = x;  in getCurveValues()
 123         aResult[nP].Y = this->getCurveValue( x );  in getCurveValues()
 
 | 
| /aoo41x/main/sc/source/ui/unoobj/ | 
| H A D | editsrc.cxx | 54 ScHeaderFooterChangedHint::ScHeaderFooterChangedHint(sal_uInt16 nP) :  in ScHeaderFooterChangedHint()  argument55 	nPart( nP )  in ScHeaderFooterChangedHint()
 102 													sal_uInt16 nP ) :  in ScHeaderFooterEditSource()  argument
 103 	ScSharedHeaderFooterEditSource( new ScHeaderFooterTextData( *pContent, nP ) )  in ScHeaderFooterEditSource()
 108 													sal_uInt16 nP ) :  in ScHeaderFooterEditSource()  argument
 109 	ScSharedHeaderFooterEditSource( new ScHeaderFooterTextData( rContent, nP ) )  in ScHeaderFooterEditSource()
 
 | 
| /aoo41x/main/sdext/source/presenter/ | 
| H A D | PresenterPaneAnimator.cxx | 231         double nP,238         double nP,
 251         const double nP);
 1298     double nP,  in InterpolatePosition()  argument
 1302     const double nQ (1 - nP);  in InterpolatePosition()
 1304     OSL_TRACE("InterpolatePosition %f\n", nP);  in InterpolatePosition()
 1307             nQ * rInitialBox.X + nP * rFinalBox.X,  in InterpolatePosition()
 1317         double nP,  in InterpolateValue()  argument
 1321     const double nQ (1 - nP);  in InterpolateValue()
 1338     const double nP)  in SpriteTransform()  argument
 [all …]
 
 | 
| /aoo41x/main/svx/inc/svx/ | 
| H A D | framelink.hxx | 113     inline explicit     Style( sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS ) :  in Style()  argument115                             { Set( nP, nD, nS ); }  in Style()
 117     inline explicit     Style( const Color& rColor, sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS ) :  in Style()  argument
 119                             { Set( rColor, nP, nD, nS ); }  in Style()
 141     void                Set( sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS );
 143     void                Set( const Color& rColor, sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS );
 
 | 
| /aoo41x/main/automation/source/communi/ | 
| H A D | communi.cxx | 50 	void nm::DeleteAndDestroy( sal_uInt16 nP, sal_uInt16 nL ) { \52 			DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );\
 53 			for( sal_uInt16 n=nP; n < nP + nL; n++ ) \
 55 			SvPtrarr::Remove( nP, nL ); \
 
 | 
| /aoo41x/main/sw/source/filter/ww8/dump/ | 
| H A D | ww8scan.cxx | 1775 	long nP;  in WW8SkipField()  local2061 	if( nP < pPLCF_PosArray[0] )  in SeekPos()
 2097 	if( nP < pPLCF_PosArray[0] )  in SeekPosExact()
 2238 	long nP = nPos;  in SeekPos()  local
 2328 	long nP = nPos;  in SeekPos()  local
 2801 	WW8_FC nP = pFkp->Where();  in Where()  local
 2802 	if( nP != LONG_MAX )  in Where()
 2803 		return nP;  in Where()
 3585     long nP;  in GetSprms()  local
 3593     p->nStartPos = nP;  in GetSprms()
 [all …]
 
 | 
| /aoo41x/main/l10ntools/inc/ | 
| H A D | tagtest.hxx | 88 …, sal_uInt16 nP ):bClosed(sal_False),bCloseTag(sal_False),bIsBroken(sal_False),bHasBeenFixed(sal_F…  in TokenInfo()  argument89 …nP, String paStr ):bClosed(sal_False),bCloseTag(sal_False),bIsBroken(sal_False),bHasBeenFixed(sal_…  in TokenInfo()  argument
 90 explicit    TokenInfo( TokenId pnId, sal_uInt16 nP, String paStr, ParserMessageList &rErrorList );
 
 | 
| /aoo41x/main/sw/source/core/attr/ | 
| H A D | hints.cxx | 44 SwInsTxt::SwInsTxt( xub_StrLen nP, xub_StrLen nL )  in SwInsTxt()  argument46 	nPos( nP ),  in SwInsTxt()
 52 SwDelChr::SwDelChr( xub_StrLen nP )  in SwDelChr()  argument
 54 	nPos( nP )  in SwDelChr()
 
 | 
| /aoo41x/main/svtools/source/edit/ | 
| H A D | textdata.cxx | 87 	for ( sal_uInt16 nP = nDelFrom; nP < Count(); nP++ )  in DeleteFromPortion()  local88 		delete GetObject( nP );  in DeleteFromPortion()
 
 | 
| /aoo41x/main/xmloff/source/style/ | 
| H A D | XMLFontAutoStylePool.cxx | 95 		sal_Int16 nP,  in XMLFontAutoStylePoolEntry_Impl()  argument101 	nPitch( nP ),  in XMLFontAutoStylePoolEntry_Impl()
 110 		sal_Int16 nP,  in XMLFontAutoStylePoolEntry_Impl()  argument
 115 	nPitch( nP ),  in XMLFontAutoStylePoolEntry_Impl()
 
 | 
| /aoo41x/main/sc/inc/ | 
| H A D | editsrc.hxx | 50 					ScHeaderFooterChangedHint(sal_uInt16 nP);86 								ScHeaderFooterEditSource( ScHeaderFooterContentObj* pContent, sal_uInt16 nP );
 87 								ScHeaderFooterEditSource( ScHeaderFooterContentObj& rContent, sal_uInt16 nP );
 
 | 
| /aoo41x/main/sw/source/filter/ww8/ | 
| H A D | ww8scan.cxx | 1956     WW8_CP nP;  in WW8SkipField()  local2245     if( nP < pPLCF_PosArray[0] )  in SeekPos()
 2281     if( nP < pPLCF_PosArray[0] )  in SeekPosExact()
 2492     WW8_CP nP = nPos;  in SeekPos()  local
 2587     long nP = nPos;  in SeekPos()  local
 3138     WW8_FC nP = pFkp->Where();  in Where()  local
 3139     if( nP != WW8_FC_MAX )  in Where()
 3140         return nP;  in Where()
 3968     sal_Int32 nP;  in GetSprms()  local
 3976     p->nStartPos = nP;  in GetSprms()
 [all …]
 
 | 
| /aoo41x/main/editeng/source/editeng/ | 
| H A D | editobj.cxx | 844 	for ( sal_uInt16 nP = 0; nP < nParas; nP++ )  in Insert()  local846 		ContentInfo* pC = rBinObj.GetContents()[ nP ];  in Insert()
 848 		aContents.Insert( pNew, nDestPara+nP );  in Insert()
 868 	for ( sal_uInt16 nP = nPara; nP <= nEndPara; nP++ )  in CreateTextObject()  local
 870 		ContentInfo* pC = aContents[ nP ];  in CreateTextObject()
 
 | 
| H A D | editdoc2.cxx | 107 	for ( sal_uInt16 nP = nDelFrom; nP < Count(); nP++ )  in DeleteFromPortion()  local108 		delete GetObject( nP );  in DeleteFromPortion()
 
 | 
| /aoo41x/main/chart2/source/view/main/ | 
| H A D | PlottingPositionHelper.cxx | 242         for( sal_Int32 nP = xValues.getLength(); nP--; )  in transformScaledLogicToScene()  local244             double& fX = xValues[nP];  in transformScaledLogicToScene()
 245             double& fY = yValues[nP];  in transformScaledLogicToScene()
 246             double& fZ = zValues[nP];  in transformScaledLogicToScene()
 
 | 
| /aoo41x/main/svx/source/dialog/ | 
| H A D | framelink.cxx | 1207 void Style::Set( sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS )  in Set()  argument1216     mnPrim = nP ? nP : nS;  in Set()
 1217     mnDist = (nP && nS) ? nD : 0;  in Set()
 1218     mnSecn = (nP && nD) ? nS : 0;  in Set()
 1221 void Style::Set( const Color& rColor, sal_uInt16 nP, sal_uInt16 nD, sal_uInt16 nS )  in Set()  argument
 1224     Set( nP, nD, nS );  in Set()
 
 | 
| /aoo41x/main/sc/source/ui/docshell/ | 
| H A D | pntlock.cxx | 46 void ScPaintLockData::AddRange( const ScRange& rRange, sal_uInt16 nP )  in AddRange()  argument52 	nParts |= nP;  in AddRange()
 
 | 
| /aoo41x/main/sfx2/source/dialog/ | 
| H A D | splitwin.cxx | 618 	sal_uInt16 nL, nP;  in MoveWindow()  local619 	GetWindowPos( pDockWin, nL, nP );  in MoveWindow()
 676 			sal_uInt16 nL=0, nP=0;  in InsertWindow()  local
 677 			GetWindowPos( pD->pWin, nL, nP );  in InsertWindow()
 679 			if ( (nL == nLine && nP == nPos) || nL > nLine )  in InsertWindow()
 
 | 
| /aoo41x/main/sc/source/ui/inc/ | 
| H A D | pfuncache.hxx | 85     ScPrintPageLocation( long nP, const ScRange& rRange, const Rectangle& rRect ) :  in ScPrintPageLocation()86         nPage(nP), aCellRange(rRange), aRectangle(rRect) {}  in ScPrintPageLocation()
 
 |