Lines Matching refs:fValue

378             double      fValue;  in executeControlCommand()  local
383 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
384 aStep = bFloat ? ::rtl::OUString::valueOf( fValue ) : in executeControlCommand()
397 double fValue; in executeControlCommand() local
400 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
402 … aValue = bFloat ? ::rtl::OUString::valueOf( fValue ) : ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
414 double fValue; in executeControlCommand() local
418 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
422 … aValue = bFloat ? ::rtl::OUString::valueOf( fValue ) : ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
426 aStep = bFloat ? ::rtl::OUString::valueOf( fValue ) : in executeControlCommand()
429 aMin = bFloat ? ::rtl::OUString::valueOf( fValue ) : in executeControlCommand()
432 aMax = bFloat ? ::rtl::OUString::valueOf( fValue ) : in executeControlCommand()
444 double fValue; in executeControlCommand() local
449 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
450 aMin = bFloat ? ::rtl::OUString::valueOf( fValue ) : in executeControlCommand()
461 double fValue; in executeControlCommand() local
466 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
467 aMax = bFloat ? ::rtl::OUString::valueOf( fValue ) : in executeControlCommand()
510 const Any& rAny, sal_Int32& nValue, double& fValue, bool& bFloat ) in impl_getValue() argument
525 bValueValid = rAny >>= fValue; in impl_getValue()
532 rtl::OUString SpinfieldToolbarController::impl_formatOutputString( double fValue ) in impl_formatOutputString() argument
537 return rtl::OUString::valueOf( fValue ); in impl_formatOutputString()
539 return rtl::OUString::valueOf( sal_Int32( fValue )); in impl_formatOutputString()
548 …_cast<wchar_t *>(aBuffer), 128, reinterpret_cast<const wchar_t *>(m_aOutFormat.getStr()), fValue ); in impl_formatOutputString()
550 …t *>(aBuffer), 128, reinterpret_cast<const wchar_t *>(m_aOutFormat.getStr()), sal_Int32( fValue )); in impl_formatOutputString()
561 snprintf( aBuffer, 128, aFormat.getStr(), fValue ); in impl_formatOutputString()
563 snprintf( aBuffer, 128, aFormat.getStr(), static_cast<long>( fValue )); in impl_formatOutputString()