Lines Matching refs:nDigits
406 sal_Int32 nDigits = nDecPlaces + 1; in doubleToString() local
409 nDigits += nExp; in doubleToString()
412 if( nDigits >= 0 ) in doubleToString()
414 if( ( fValue += nRoundVal[ nDigits > 15 ? 15 : nDigits ] ) >= 10 ) in doubleToString()
419 nDigits++; in doubleToString()
427 ( nDigits <= 0 ? std::max< sal_Int32 >( nDecPlaces, abs(nExp) ) in doubleToString()
428 : nDigits + nDecPlaces ) + 10 + (pGroups ? abs(nDigits) * 2 : 0); in doubleToString()
455 sal_Int32 i = ( nDigits <= 0 ? nDecPlaces : -nExp - 1 ); in doubleToString()
484 if( nDigits > 0 ) in doubleToString()
491 if (nDigits-1 == 0 && i > 0 && i < 14) in doubleToString()
568 if( !--nDigits ) in doubleToString()