Lines Matching refs:_rField
2002 …static String lcl_setFormattedNumeric_nothrow( DoubleNumericField& _rField, const DbCellControl& _… in lcl_setFormattedNumeric_nothrow() argument
2013 _rField.SetValue( fValue ); in lcl_setFormattedNumeric_nothrow()
2014 sValue = _rField.GetText(); in lcl_setFormattedNumeric_nothrow()
2140 …static String lcl_setFormattedCurrency_nothrow( LongCurrencyField& _rField, const DbCurrencyField&… in lcl_setFormattedCurrency_nothrow() argument
2151 _rField.SetValue( fValue ); in lcl_setFormattedCurrency_nothrow()
2152 BigInt aValue = _rField.GetCorrectedValue(); in lcl_setFormattedCurrency_nothrow()
2154 sValue = _rField.GetText(); in lcl_setFormattedCurrency_nothrow()
2286 …static String lcl_setFormattedDate_nothrow( DateField& _rField, const Reference< XColumn >& _rxFie… in lcl_setFormattedDate_nothrow() argument
2295 _rField.SetText( sDate ); in lcl_setFormattedDate_nothrow()
2298 _rField.SetDate( ::Date( aValue.Day, aValue.Month, aValue.Year ) ); in lcl_setFormattedDate_nothrow()
2299 sDate = _rField.GetText(); in lcl_setFormattedDate_nothrow()
2396 …static String lcl_setFormattedTime_nothrow( TimeField& _rField, const Reference< XColumn >& _rxFie… in lcl_setFormattedTime_nothrow() argument
2405 _rField.SetText( sTime ); in lcl_setFormattedTime_nothrow()
2408 …_rField.SetTime( ::Time( aValue.Hours, aValue.Minutes, aValue.Seconds, aValue.HundredthSeconds ) ); in lcl_setFormattedTime_nothrow()
2409 sTime = _rField.GetText(); in lcl_setFormattedTime_nothrow()