Searched refs:nWert (Results 1 – 6 of 6) sorted by relevance
81 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 …]
89 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 =() argument206 if( nIndex != nWert ) in operator =()[all …]
476 xub_StrLen SwIndex::operator+=( xub_StrLen nWert ) in operator +=() argument478 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 -=() argument494 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 =() argument607 if( nIndex != nWert ) in operator =()608 ChgValue( *this, nWert ); in operator =()
1255 sal_uInt16 nWert = 0; in ColorToPercent_Impl() local1260 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() local1280 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()
873 double nWert = GetDouble(); in ScDIA() local874 double nDia = ((nWert - nRest) * (nDauer - nZr + 1.0)) / in ScDIA()922 double nWert = GetDouble(); in ScGDA() local923 if (nWert < 0.0 || nRest < 0.0 || nFaktor <= 0.0 || nRest > nWert in ScGDA()946 double nWert = GetDouble(); in ScGDA2() local948 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 …]
201 inline const TokenId Store( const sal_Int16 nWert );365 inline const TokenId TokenPool::Store( const sal_Int16 nWert ) in Store() argument367 return Store( ( double ) nWert ); in Store()
Completed in 53 milliseconds