Lines Matching refs:_rValue

90 …void SAL_CALL OTimeControl::setValue( const Any& _rValue ) throw (IllegalTypeException, RuntimeExc…  in setValue()  argument
93 if ( !( _rValue >>= aUNOTime ) ) in setValue()
144 …void SAL_CALL ODateControl::setValue( const Any& _rValue ) throw (IllegalTypeException, RuntimeExc… in setValue() argument
147 if ( !( _rValue >>= aUNODate ) ) in setValue()
192 …void SAL_CALL OEditControl::setValue( const Any& _rValue ) throw (IllegalTypeException, RuntimeExc… in setValue() argument
198 _rValue >>= nValue; in setValue()
206 _rValue >>= sText; in setValue()
286 …void SAL_CALL ODateTimeControl::setValue( const Any& _rValue ) throw (IllegalTypeException, Runtim… in setValue() argument
288 if ( !_rValue.hasValue() ) in setValue()
295 OSL_VERIFY( _rValue >>= aUNODateTime ); in setValue()
610 …void SAL_CALL ONumericControl::setValue( const Any& _rValue ) throw (IllegalTypeException, Runtime… in setValue() argument
612 if ( !_rValue.hasValue() ) in setValue()
620 OSL_VERIFY( _rValue >>= nValue ); in setValue()
719 …void SAL_CALL OColorControl::setValue( const Any& _rValue ) throw (IllegalTypeException, RuntimeEx… in setValue() argument
721 if ( _rValue.hasValue() ) in setValue()
724 if ( _rValue >>= nColor ) in setValue()
740 if ( !( _rValue >>= sNonColorValue ) ) in setValue()
845 …void SAL_CALL OListboxControl::setValue( const Any& _rValue ) throw (IllegalTypeException, Runtime… in setValue() argument
847 if ( !_rValue.hasValue() ) in setValue()
852 _rValue >>= sSelection; in setValue()
916 …void SAL_CALL OComboboxControl::setValue( const Any& _rValue ) throw (IllegalTypeException, Runtim… in setValue() argument
919 _rValue >>= sText; in setValue()
1383 …void SAL_CALL OMultilineEditControl::setValue( const Any& _rValue ) throw (IllegalTypeException, R… in setValue() argument
1392 if ( !( _rValue >>= sText ) && _rValue.hasValue() ) in setValue()
1400 if ( !( _rValue >>= aStringLines ) && _rValue.hasValue() ) in setValue()