Lines Matching refs:nValue

270     double nValue = m_nValue + m_nStep;  in Up()  local
271 if ( m_bMaxSet && nValue > m_nMax ) in Up()
274 m_nValue = nValue; in Up()
283 double nValue = m_nValue - m_nStep; in Down() local
284 if ( m_bMinSet && nValue < m_nMin ) in Down()
287 m_nValue = nValue; in Down()
377 sal_Int32 nValue; in executeControlCommand() local
383 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
385 ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
396 sal_Int32 nValue; 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()
413 sal_Int32 nValue; 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()
427 ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
430 ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
433 ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
443 sal_Int32 nValue; in executeControlCommand() local
449 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
451 ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
460 sal_Int32 nValue; in executeControlCommand() local
466 if ( impl_getValue( rControlCommand.Arguments[i].Value, nValue, fValue, bFloat )) in executeControlCommand()
468 ::rtl::OUString::valueOf( nValue ); in executeControlCommand()
510 const Any& rAny, sal_Int32& nValue, double& fValue, bool& bFloat ) in impl_getValue() argument
521 bValueValid = rAny >>= nValue; in impl_getValue()