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;
85 inline sal_Bool operator==( sal_uLong nWert ) const;
86 inline sal_Bool operator!=( sal_uLong nWert ) const;
144 inline sal_Bool SwNodeIndex::operator< ( sal_uLong nWert ) const in operator <()
146 return pNd->GetIndex() < nWert; in operator <()
148 inline sal_Bool SwNodeIndex::operator<=( sal_uLong nWert ) const in operator <=()
150 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 !=()
171 inline xub_StrLen SwIndex::operator+=( xub_StrLen nWert ) in operator +=() argument
173 return ChgValue( *this, nIndex + nWert ).nIndex; in operator +=()
175 inline xub_StrLen SwIndex::operator-=( xub_StrLen nWert ) in operator -=() argument
177 return ChgValue( *this, nIndex - nWert ).nIndex; 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.cxx871 double nWert = GetDouble(); in ScDIA() local
872 double nDia = ((nWert - nRest) * (nDauer - nZr + 1.0)) / in ScDIA()
920 double nWert = GetDouble(); in ScGDA() local
921 if (nWert < 0.0 || nRest < 0.0 || nFaktor <= 0.0 || nRest > nWert in ScGDA()
925 PushDouble(ScGetGDA(nWert, nRest, nDauer, nPeriode, nFaktor)); in ScGDA()
944 double nWert = GetDouble(); in ScGDA2() local
946 nPeriode > (nDauer + 1.0) || nRest > nWert || nWert < 0.0) in ScGDA2()
951 double nAbRate = 1.0 - pow(nRest / nWert, 1.0 / nDauer); in ScGDA2()
953 double nErsteAbRate = nWert * nAbRate * nMonate / 12.0; in ScGDA2()
965 nGda2 = (nWert - nSummAbRate) * nAbRate; in ScGDA2()
[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()