Home
last modified time | relevance | path

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

/trunk/main/sal/rtl/source/
H A Dstrtmpl.c739 if ( nDigit > 9 ) in IMPL_RTL_STRNAME()
740 *pBuf = (nDigit-10) + 'a'; in IMPL_RTL_STRNAME()
742 *pBuf = (nDigit + '0' ); in IMPL_RTL_STRNAME()
794 if ( nDigit > 9 ) in IMPL_RTL_STRNAME()
797 *pBuf = (nDigit + '0' ); in IMPL_RTL_STRNAME()
847 sal_Int16 nDigit; in IMPL_RTL_STRNAME() local
872 if ( nDigit < 0 ) in IMPL_RTL_STRNAME()
876 n += nDigit; in IMPL_RTL_STRNAME()
893 sal_Int16 nDigit; in IMPL_RTL_STRNAME() local
918 if ( nDigit < 0 ) in IMPL_RTL_STRNAME()
[all …]
H A Dmath.cxx490 int nDigit; in doubleToString() local
492 nDigit = static_cast< int >( floor( fValue in doubleToString()
495 nDigit = static_cast< int >( fValue + 1E-15 ); in doubleToString()
496 if (nDigit >= 10) in doubleToString()
562 nDigit + static_cast< typename T::Char >('0') ); in doubleToString()
563 fValue = ( fValue - nDigit ) * 10.0; in doubleToString()
/trunk/main/sc/source/core/tool/
H A Dinterpr2.cxx2450 sal_uInt16 nDigit = nVal / pValues[ nIndex ]; in ScRoman() local
2452 if( (nDigit % 5) == 4 ) in ScRoman()
2454 sal_uInt16 nIndex2 = (nDigit == 4) ? nIndex - 1 : nIndex - 2; in ScRoman()
2471 if( nDigit > 4 ) in ScRoman()
2473 aRoman.Expand( aRoman.Len() + (nDigit % 5), pChars[ nIndex ] ); in ScRoman()
2789 void lclAppendDigit( ByteString& rText, sal_Int32 nDigit ) in lclAppendDigit() argument
2791 switch( nDigit ) in lclAppendDigit()
2811 void lclAppendPow10( ByteString& rText, sal_Int32 nDigit, sal_Int32 nPow10 ) in lclAppendPow10() argument
2813 DBG_ASSERT( (1 <= nDigit) && (nDigit <= 9), "lclAppendPow10 - illegal digit" ); in lclAppendPow10()
2814 lclAppendDigit( rText, nDigit ); in lclAppendPow10()
/trunk/main/basic/source/sbx/
H A Dsbxform.cxx164 void SbxBasicFormater::AppendDigit( String& sStrg, short nDigit ) in AppendDigit() argument
166 if( nDigit>=0 && nDigit<=9 ) in AppendDigit()
167 StrAppendChar( sStrg, (sal_Unicode)(nDigit+ASCII_0) ); in AppendDigit()
/trunk/main/basic/inc/basic/
H A Dsbxform.hxx118 void AppendDigit( String& sStrg, short nDigit );
/trunk/main/scripting/source/stringresource/
H A Dstringresource.cxx2194 sal_uInt16 nDigit = nVal / 0x1000; in implWriteCharToBuffer() local
2195 nVal -= nDigit * 0x1000; in implWriteCharToBuffer()
2197 aBuf.append( getHexCharForDigit( nDigit ) ); in implWriteCharToBuffer()

Completed in 80 milliseconds