| /aoo41x/main/tools/inc/tools/ | 
| H A D | gen.hxx | 71 	long				nA;  member in Pair92 	nA = nB = 0;  in Pair()
 103 	return ((nA == rPair.nA) && (nB == rPair.nB));  in operator ==()
 108 	return ((nA != rPair.nA) || (nB != rPair.nB));  in operator !=()
 182 	return (nA < rPoint.nA);  in IsLeft()
 187 	return (nA > rPoint.nA);  in IsRight()
 192 	nA += rPoint.nA;  in operator +=()
 199 	nA -= rPoint.nA;  in operator -=()
 206 	nA *= nVal;  in operator *=()
 312 		nA = nB;  in Justify()
 [all …]
 
 | 
| H A D | vector2d.hxx | 44 	inline Vector2D( const Pair& rPair ) : mfX( rPair.nA ), mfY( rPair.nB ) {};  in Vector2D()90 	inline Vector2D&	operator=( const Pair& rPair ) { mfX = rPair.nA, mfY = rPair.nB; return *this; }  in operator =()
 91 …inline Vector2D&	operator-=( const Pair& rPair ) { mfX -= rPair.nA, mfY -= rPair.nB; return *this;…  in operator -=()
 92 …inline Vector2D&	operator+=( const Pair& rPair ) { mfX += rPair.nA, mfY += rPair.nB; return *this;…  in operator +=()
 93 …inline Vector2D&	operator*=( const Pair& rPair ) { mfX *= rPair.nA, mfY *= rPair.nB; return *this;…  in operator *=()
 94 …inline Vector2D&	operator/=( const Pair& rPair ) { mfX /= rPair.nA, mfY /= rPair.nB; return *this;…  in operator /=()
 96 …inline sal_Bool			operator==( const Pair& rPair ) const { return( mfX == rPair.nA && mfY == rPair.…  in operator ==()
 
 | 
| /aoo41x/main/svl/inc/svl/ | 
| H A D | svarray.hxx | 129 		nE = pI->nA; \220 	  nA    (0)\
 242 	DBG_ASSERT(nP <= nA && nA < USHRT_MAX, "Ins 1");\
 244 		_resize (nA + ((nA > 1) ? nA : 1));\
 253 	DBG_ASSERT(nP<=nA && ((long)nA+nL)<USHRT_MAX,"Ins n");\
 255 		_resize (nA + ((nA > nL) ? nA : nL));\
 260 	nA = nA + nL; nFree = nFree - nL;\
 285 			nA = nA + nFree; \
 296 	DBG_ASSERT( nP < nA && nP + nL <= nA,"Del");\
 299 	nA = nA - nL; nFree = nFree + nL;\
 [all …]
 
 | 
| /aoo41x/main/tools/source/generic/ | 
| H A D | bigint.cxx | 486         BigInt nA, nB;  in ABS_IsLess()  local492             for (i = nA.nLen - 1; i > 0 && nA.nNum[i] == nB.nNum[i]; i--)  in ABS_IsLess()
 1051         BigInt nA, nB;  in operator ==()  local
 1059                 for ( i = nA.nLen - 1; i > 0 && nA.nNum[i] == nB.nNum[i]; i-- )  in operator ==()
 1078         BigInt nA, nB;  in operator <()  local
 1086                 for ( i = nA.nLen - 1; i > 0 && nA.nNum[i] == nB.nNum[i]; i-- )  in operator <()
 1095             if ( nA.bIsNeg )  in operator <()
 1111         BigInt nA, nB;  in operator >()  local
 1119                 for ( i = nA.nLen - 1; i > 0 && nA.nNum[i] == nB.nNum[i]; i-- )  in operator >()
 1128             if ( nA.bIsNeg )  in operator >()
 [all …]
 
 | 
| H A D | fract.cxx | 88     BigInt nA( rVal1 );  in Reduce()  local90     nA.Abs();  in Reduce()
 93     if ( nA.IsOne() || nB.IsOne() || nA.IsZero() || nB.IsZero() )  in Reduce()
 96     while ( nA != nB )  in Reduce()
 98         if ( nA > nB )  in Reduce()
 100             nA %= nB;  in Reduce()
 101             if ( nA.IsZero() )  in Reduce()
 110             nB %= nA;  in Reduce()
 113                 rVal1 /= nA;  in Reduce()
 114                 rVal2 /= nA;  in Reduce()
 [all …]
 
 | 
| H A D | gen.cxx | 60 		rPair.nA = (sal_Int32)nNum;  in operator >>()76 		rIStream >> rPair.nA >> rPair.nB;  in operator >>()
 96 		nNum = (sal_uInt32)(sal_Int32)rPair.nA;  in operator <<()
 97 		if ( rPair.nA < 0 )  in operator <<()
 182 		rOStream << rPair.nA << rPair.nB;  in operator <<()
 
 | 
| /aoo41x/main/framework/test/ | 
| H A D | threadtest.cxx | 295 		void		init	(	sal_Int32	nA			,298 		void		setA	(	sal_Int32	nA			,
 348     LOG_INIT( nA, nThreadID )  in init()
 360         m_nA = nA;  in init()
 404     LOG_SETA_START( nA, nThreadID )  in setA()
 414         m_nA = nA;  in setA()
 468         m_nA = nA;  in workA()
 547 	sal_Int32	nA		;  in run()  local
 554         if( nA % 5 == 0 )  in run()
 556 			nA = m_pClass->workA( nA, m_nThreadID );  in run()
 [all …]
 
 | 
| /aoo41x/main/framework/test/threadtest/ | 
| H A D | threadtest.cxx | 293 		void		init	(	sal_Int32	nA			,296 		void		setA	(	sal_Int32	nA			,
 299 		sal_Int32	workA	(	sal_Int32	nA			,
 349     LOG_INIT( nA, nThreadID )  in init()
 355     m_nA = nA;  in init()
 411         m_nA = nA;  in setA()
 463         m_nA = nA;  in workA()
 542 	sal_Int32	nA		;  in run()  local
 548 		nA = (sal_Int32)getRandomValue();  in run()
 549         if( nA % 5 == 0 )  in run()
 [all …]
 
 | 
| /aoo41x/main/idl/source/objects/ | 
| H A D | types.cxx | 617 			if( nA & WA_VARIABLE )  in WriteAttributes()619 			else if( nA & WA_METHOD )  in WriteAttributes()
 624 			if( rId.IsSet() && !(nA & WA_STRUCT) )  in WriteAttributes()
 739 		 					WriteType nT, WriteAttribute nA )  in WriteRecursiv_Impl()  argument
 751 		nA |= WA_READONLY;  in WriteRecursiv_Impl()
 773 		 					WriteType nT, WriteAttribute nA )  in Write()  argument
 785 	if( nA & WA_VARIABLE )  in Write()
 787 	else if( nA & WA_METHOD )  in Write()
 1578 		 					WriteType nT, WriteAttribute nA )  in WriteContext()  argument
 1602 		 				WriteType nT, WriteAttribute nA )  in Write()  argument
 [all …]
 
 | 
| H A D | basobj.cxx | 474 		 				WriteType nT, WriteAttribute nA )  in Write()  argument480     WriteAttributes( rBase, rOutStm, nTab +1, nT, nA );  in Write()
 755 		 				WriteType nT, WriteAttribute nA )  in Write()  argument
 757 	SvMetaReference::Write( rBase, rOutStm, nTab, nT, nA );  in Write()
 767 					 				WriteType nT, WriteAttribute nA )  in WriteAttributes()  argument
 769 	SvMetaReference::WriteAttributes( rBase, rOutStm, nTab, nT, nA );  in WriteAttributes()
 
 | 
| H A D | module.cxx | 486 		 						    WriteType nT, WriteAttribute nA )  in WriteAttributes()  argument488 	SvMetaExtern::WriteAttributes( rBase, rOutStm, nTab, nT, nA );  in WriteAttributes()
 525 		 					WriteType nT, WriteAttribute nA )  in Write()  argument
 536 		SvMetaExtern::Write( rBase, rOutStm, nTab, nT, nA );  in Write()
 573 		        pClass->Write( rBase, rOutStm, nTab +1, nT, nA );  in Write()
 632 	        	pClass->Write( rBase, rOutStm, nTab, nT, nA );  in Write()
 
 | 
| /aoo41x/main/svl/source/memtools/ | 
| H A D | svarray.cxx | 63 	for( n=0; n < nA && *(GetData()+n) != aElement; ) n++;  in SV_IMPL_VARARR()64 	return ( n >= nA ? USHRT_MAX : n );  in SV_IMPL_VARARR()
 94 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in SV_IMPL_VARARR()
 141 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in _SV_IMPL_SORTAR_ALG()
 280 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in _SV_IMPL_SORTAR_ALG()
 326 		DBG_ASSERT( nP < nA && nP + nL <= nA, "ERR_VAR_DEL" );  in _SV_IMPL_SORTAR_ALG()
 
 | 
| /aoo41x/main/chart2/source/controller/itemsetwrapper/ | 
| H A D | MultipleChartConverters.cxx | 63     for( sal_Int32 nA = 0; nA < aElementList.getLength(); nA++ )  in AllAxisItemConverter()  local65         uno::Reference< beans::XPropertySet > xObjectProperties(aElementList[nA], uno::UNO_QUERY);  in AllAxisItemConverter()
 99     for( sal_Int32 nA = 0; nA < aElementList.getLength(); nA++ )  in AllGridItemConverter()  local
 101         Reference< beans::XPropertySet > xObjectProperties(aElementList[nA]);  in AllGridItemConverter()
 
 | 
| /aoo41x/main/editeng/source/misc/ | 
| H A D | txtrange.cxx | 178 	void NotePoint( const long nA ) { NoteMargin( nA - nStart, nA + nEnd ); }  in NotePoint()  argument182 	void NoteUpLow( long nA, const sal_uInt8 nArea );
 658 void SvxBoundArgs::NoteUpLow( long nA, const sal_uInt8 nArea )  in NoteUpLow()  argument
 662 		NoteMargin( nA, nA );  in NoteUpLow()
 674 		nMin = nA;  in NoteUpLow()
 675 		nMax = nA;  in NoteUpLow()
 
 | 
| /aoo41x/main/sc/source/ui/view/ | 
| H A D | drawutil.cxx | 43 inline Fraction MakeFraction( long nA, long nB )  in MakeFraction()  argument45 	return ( nA && nB ) ? Fraction(nA,nB) : Fraction(1,1);  in MakeFraction()
 
 | 
| /aoo41x/main/vcl/inc/unx/ | 
| H A D | salfont.h | 64 	inline				SalFontDimension( USHORT nA = 0, USHORT nH = 0 );75 inline SalFontDimension::SalFontDimension( USHORT nA, USHORT nH )  in SalFontDimension()  argument
 76 	: nHeight_( nH ), nAverage_( nA )  in SalFontDimension()
 
 | 
| /aoo41x/main/sw/source/core/layout/ | 
| H A D | newfrm.cxx | 65 long SwIncrement( long nA, long nAdd )  in SwIncrement()  argument66     { return nA + nAdd; }  in SwIncrement()
 67 long SwDecrement( long nA, long nSub )  in SwDecrement()  argument
 68     { return nA - nSub; }  in SwDecrement()
 
 | 
| /aoo41x/main/sw/source/filter/ww8/ | 
| H A D | writerwordglue.cxx | 511         bool ItemSort::operator()(sal_uInt16 nA, sal_uInt16 nB) const  in operator ()()  argument521             if (nA == nB)  in operator ()()
 523             if (nA == RES_TXTATR_CHARFMT)  in operator ()()
 527             if (nA == RES_TXTATR_INETFMT)  in operator ()()
 531             return nA < nB;  in operator ()()
 
 | 
| /aoo41x/main/chart2/source/controller/main/ | 
| H A D | ObjectHierarchy.cxx | 326         for( sal_Int32 nA=0; nA<aAxes.getLength(); ++nA )  in createAxesTree()  local328             Reference< XAxis > xAxis( aAxes[nA] );  in createAxesTree()
 347                 lcl_addAxisTitle( aAxes[nA], rContainer, xChartModel );  in createAxesTree()
 
 | 
| /aoo41x/main/svx/inc/svx/ | 
| H A D | swframeexample.hxx | 91     inline void SetAnchor(short nA)          { nAnchor   = nA; }  in SetAnchor()  argument
 | 
| /aoo41x/main/sd/source/filter/ppt/ | 
| H A D | pptinanimations.cxx | 952 				sal_Int32 nA = aString.getToken( 0, (sal_Unicode)',', index ).toInt32();  in convertAnimationValue()  local955 				dump( "hsl(%ld", nA );  in convertAnimationValue()
 959 				aHSL[0] = nA * 360.0/255.0;  in convertAnimationValue()
 1833 Any AnimationImporter::implGetColorAny( sal_Int32 nMode, sal_Int32  nA, sal_Int32 nB, sal_Int32 nC )  in implGetColorAny()  argument
 1839 			dump( "rgb(%ld", nA );  in implGetColorAny()
 1842 			Color aColor( (sal_uInt8)nA, (sal_uInt8)nB, (sal_uInt8)nC );  in implGetColorAny()
 1847 			dump( "hsl(%ld", nA );  in implGetColorAny()
 1851 			aHSL[0] = nA * 360.0/255.0;  in implGetColorAny()
 1860 			mpPPTImport->GetColorFromPalette((sal_uInt16)nA, aColor );  in implGetColorAny()
 1861 			dump( "index(%ld", nA );  in implGetColorAny()
 [all …]
 
 | 
| /aoo41x/main/vcl/unx/generic/printergfx/ | 
| H A D | text_gfx.cxx | 516             double nA = nTextScale * aInfo.m_nAscend / 1000.0;  in drawVerticalizedText()  local526                     aPos.X() += (sal_Int32)(+nA * fCos + nD * fSin);  in drawVerticalizedText()
 527                     aPos.Y() += (sal_Int32)(-nA * fSin + nD * fCos);  in drawVerticalizedText()
 530                     aPos.X() += (sal_Int32)(+nA * fSin + nD * fCos);  in drawVerticalizedText()
 
 | 
| /aoo41x/main/vcl/source/window/ | 
| H A D | split.cxx | 240 	long nA = rSettings.GetScrollBarSize();  in ImplSplitterActive()  local246         if( aSize.Width() == nB && aSize.Height() == nA )  in ImplSplitterActive()
 251         if( aSize.Width() == nA && aSize.Height() == nB )  in ImplSplitterActive()
 
 | 
| /aoo41x/main/filter/source/svg/ | 
| H A D | svgwriter.cxx | 1087                             const sal_Int32 nA = *pSrc++;  in ImplWriteBmp()  local1091                             *pTmpDst++ = pBase64[ ( nA >> 2 ) & 0x3f ];  in ImplWriteBmp()
 1092                             *pTmpDst++ = pBase64[ ( ( nA << 4 ) & 0x30 ) + ( ( nB >> 4 ) & 0xf ) ];  in ImplWriteBmp()
 1099                             const sal_Int32 nA = *pSrc++;  in ImplWriteBmp()  local
 1101                             *pTmpDst++ = pBase64[ ( nA >> 2 ) & 0x3f ];  in ImplWriteBmp()
 1107 …                            *pTmpDst++ = pBase64[ ( ( nA << 4 ) & 0x30 ) + ( ( nB >> 4 ) & 0xf ) ];  in ImplWriteBmp()
 1112                                 *pTmpDst++ = pBase64[ ( nA << 4 ) & 0x30 ];  in ImplWriteBmp()
 
 | 
| /aoo41x/main/chart2/source/tools/ | 
| H A D | AxisHelper.cxx | 868     sal_Int32 nA = 0;  in getAllGrids()  local869     for( nA=0; nA<aAllAxes.getLength(); ++nA )  in getAllGrids()
 871         Reference< XAxis > xAxis( aAllAxes[nA] );  in getAllGrids()
 
 |