Searched refs:nDigit (Results 1 – 6 of 6) sorted by relevance
739 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() local872 if ( nDigit < 0 ) in IMPL_RTL_STRNAME()876 n += nDigit; in IMPL_RTL_STRNAME()893 sal_Int16 nDigit; in IMPL_RTL_STRNAME() local918 if ( nDigit < 0 ) in IMPL_RTL_STRNAME()[all …]
490 int nDigit; in doubleToString() local492 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()
2450 sal_uInt16 nDigit = nVal / pValues[ nIndex ]; in ScRoman() local2452 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() argument2791 switch( nDigit ) in lclAppendDigit()2811 void lclAppendPow10( ByteString& rText, sal_Int32 nDigit, sal_Int32 nPow10 ) in lclAppendPow10() argument2813 DBG_ASSERT( (1 <= nDigit) && (nDigit <= 9), "lclAppendPow10 - illegal digit" ); in lclAppendPow10()2814 lclAppendDigit( rText, nDigit ); in lclAppendPow10()
164 void SbxBasicFormater::AppendDigit( String& sStrg, short nDigit ) in AppendDigit() argument166 if( nDigit>=0 && nDigit<=9 ) in AppendDigit()167 StrAppendChar( sStrg, (sal_Unicode)(nDigit+ASCII_0) ); in AppendDigit()
118 void AppendDigit( String& sStrg, short nDigit );
2194 sal_uInt16 nDigit = nVal / 0x1000; in implWriteCharToBuffer() local2195 nVal -= nDigit * 0x1000; in implWriteCharToBuffer()2197 aBuf.append( getHexCharForDigit( nDigit ) ); in implWriteCharToBuffer()
Completed in 73 milliseconds