Home
last modified time | relevance | path

Searched refs:nWert (Results 1 – 6 of 6) sorted by relevance

/trunk/main/sw/inc/
H A Dndindex.hxx81 inline sal_Bool operator< ( sal_uLong nWert ) const;
82 inline sal_Bool operator<=( sal_uLong nWert ) const;
83 inline sal_Bool operator> ( sal_uLong nWert ) const;
84 inline sal_Bool operator>=( sal_uLong nWert ) const;
146 return pNd->GetIndex() < nWert; in operator <()
150 return pNd->GetIndex() <= nWert; in operator <=()
154 return pNd->GetIndex() > nWert; in operator >()
158 return pNd->GetIndex() >= nWert; in operator >=()
162 return pNd->GetIndex() == nWert; in operator ==()
166 return pNd->GetIndex() != nWert; in operator !=()
[all …]
H A Dindex.hxx89 sal_Bool operator<( xub_StrLen nWert ) const { return nIndex < nWert; } in operator <()
90 sal_Bool operator<=( xub_StrLen nWert ) const { return nIndex <= nWert; } in operator <=()
91 sal_Bool operator>( xub_StrLen nWert ) const { return nIndex > nWert; } in operator >()
92 sal_Bool operator>=( xub_StrLen nWert ) const { return nIndex >= nWert; } in operator >=()
93 sal_Bool operator==( xub_StrLen nWert ) const { return nIndex == nWert; } in operator ==()
94 sal_Bool operator!=( xub_StrLen nWert ) const { return nIndex != nWert; } in operator !=()
173 return ChgValue( *this, nIndex + nWert ).nIndex; in operator +=()
177 return ChgValue( *this, nIndex - nWert ).nIndex; in operator -=()
204 inline SwIndex& SwIndex::operator=( xub_StrLen nWert ) in operator =() argument
206 if( nIndex != nWert ) in operator =()
[all …]
/trunk/main/sw/source/core/bastyp/
H A Dindex.cxx476 xub_StrLen SwIndex::operator+=( xub_StrLen nWert ) in operator +=() argument
478 ASSERT_ID( nIndex < INVALID_INDEX - nWert, ERR_OUTOFSCOPE); in operator +=()
479 return ChgValue( *this, nIndex + nWert ).nIndex; in operator +=()
492 xub_StrLen SwIndex::operator-=( xub_StrLen nWert ) in operator -=() argument
494 ASSERT_ID( nIndex >= nWert, ERR_OUTOFSCOPE ); in operator -=()
495 return ChgValue( *this, nIndex - nWert ).nIndex; in operator -=()
604 SwIndex& SwIndex::operator=( xub_StrLen nWert ) in operator =() argument
607 if( nIndex != nWert ) in operator =()
608 ChgValue( *this, nWert ); in operator =()
/trunk/main/cui/source/tabpages/
H A Dtpcolor.cxx1255 sal_uInt16 nWert = 0; in ColorToPercent_Impl() local
1260 nWert = nColor; in ColorToPercent_Impl()
1264 nWert = (sal_uInt16) ( (double) nColor * 100.0 / 255.0 + 0.5 ); in ColorToPercent_Impl()
1268 return ( nWert ); in ColorToPercent_Impl()
1275 sal_uInt16 nWert = 0; in PercentToColor_Impl() local
1280 nWert = nPercent; in PercentToColor_Impl()
1284 nWert = (sal_uInt16) ( (double) nPercent * 255.0 / 100.0 + 0.5 ); in PercentToColor_Impl()
1288 return ( nWert ); in PercentToColor_Impl()
/trunk/main/sc/source/core/tool/
H A Dinterpr2.cxx873 double nWert = GetDouble(); in ScDIA() local
874 double nDia = ((nWert - nRest) * (nDauer - nZr + 1.0)) / in ScDIA()
922 double nWert = GetDouble(); in ScGDA() local
923 if (nWert < 0.0 || nRest < 0.0 || nFaktor <= 0.0 || nRest > nWert in ScGDA()
946 double nWert = GetDouble(); in ScGDA2() local
948 nPeriode > (nDauer + 1.0) || nRest > nWert || nWert < 0.0) in ScGDA2()
953 double nAbRate = 1.0 - pow(nRest / nWert, 1.0 / nDauer); in ScGDA2()
955 double nErsteAbRate = nWert * nAbRate * nMonate / 12.0; in ScGDA2()
967 nGda2 = (nWert - nSummAbRate) * nAbRate; in ScGDA2()
1126 double nWert = GetDouble(); in ScLIA() local
[all …]
/trunk/main/sc/source/filter/inc/
H A Dtokstack.hxx201 inline const TokenId Store( const sal_Int16 nWert );
365 inline const TokenId TokenPool::Store( const sal_Int16 nWert ) in Store() argument
367 return Store( ( double ) nWert ); in Store()

Completed in 46 milliseconds