Home
last modified time | relevance | path

Searched refs:_rVal (Results 1 – 22 of 22) sorted by relevance

/trunk/main/connectivity/source/commontools/
H A DDateConversion.cxx62 if (_rVal.hasValue()) in toSQLString()
75 if (::cppu::any2bool(_rVal)) in toSQLString()
130 _rVal >>= nValue; in toSQLString()
137 _rVal >>= sValue; in toSQLString()
142 bOk = _rVal >>= aDateTime; in toSQLString()
164 _rVal >>= nValue; in toSQLString()
171 _rVal >>= sValue; in toSQLString()
176 bOk = _rVal >>= aDate; in toSQLString()
191 _rVal >>= nValue; in toSQLString()
198 _rVal >>= sValue; in toSQLString()
[all …]
H A Ddbconversion.cxx268 sal_Int32 DBTypeConversion::toDays(const Date& _rVal, const Date& _rNullDate) in toDays() argument
270 return implRelativeToAbsoluteNull(_rVal) - implRelativeToAbsoluteNull(_rNullDate); in toDays()
286 double DBTypeConversion::toDouble(const DateTime& _rVal, const Date& _rNullDate) in toDouble() argument
288 sal_Int64 nTime = toDays(Date(_rVal.Day, _rVal.Month, _rVal.Year), _rNullDate); in toDouble()
291 aTimePart.Hours = _rVal.Hours; in toDouble()
292 aTimePart.Minutes = _rVal.Minutes; in toDouble()
293 aTimePart.Seconds = _rVal.Seconds; in toDouble()
294 aTimePart.HundredthSeconds = _rVal.HundredthSeconds; in toDouble()
H A DFValue.cxx1639 m_aValue.m_pValue = new sal_Int64((sal_Int64)_rVal); in setFromDouble()
1650 m_aValue.m_pValue = new float((float)_rVal); in setFromDouble()
1655 m_aValue.m_pValue = new double(_rVal); in setFromDouble()
1679 m_aValue.m_bBool = _rVal != 0.0; in setFromDouble()
1683 m_aValue.m_nInt8 = sal_Int8(_rVal); in setFromDouble()
1685 m_aValue.m_nInt16 = sal_Int16(_rVal); in setFromDouble()
1689 m_aValue.m_nInt16 = sal_Int16(_rVal); in setFromDouble()
1691 m_aValue.m_nInt32 = sal_Int32(_rVal); in setFromDouble()
1695 m_aValue.m_nInt32 = sal_Int32(_rVal); in setFromDouble()
1698 m_aValue.m_pValue = new sal_Int64((sal_Int64)_rVal); in setFromDouble()
[all …]
H A Ddbtools.cxx2140 const ::rtl::OUString& _rVal, in find()
2144 return find(__first,__last,sName,_rVal,_rCase); in find()
2149 const ::rtl::OUString& _rVal, in findRealName()
2153 return find(__first,__last,sRealName,_rVal,_rCase); in findRealName()
2159 const ::rtl::OUString& _rVal, in find()
2162 while (__first != __last && !_rCase(getString((*__first)->getPropertyValue(_rProp)),_rVal)) in find()
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DDBTypeConversion.java246 public static double toDouble(DateTime _rVal) { in toDouble() argument
247 return toDouble(_rVal, getStandardDate()); in toDouble()
250 public static double toDouble(DateTime _rVal, Date _rNullDate) { in toDouble() argument
251 long nTime = toDays(new Date(_rVal.Day, _rVal.Month, _rVal.Year), _rNullDate); in toDouble()
254 aTimePart.Hours = _rVal.Hours; in toDouble()
255 aTimePart.Minutes = _rVal.Minutes; in toDouble()
256 aTimePart.Seconds = _rVal.Seconds; in toDouble()
257 aTimePart.HundredthSeconds = _rVal.HundredthSeconds; in toDouble()
/trunk/main/connectivity/inc/connectivity/
H A Ddbconversion.hxx127 …static sal_Int32 toDays(const ::com::sun::star::util::Date& _rVal, const ::com::sun::star::util::D…
142 …dardDbDate(const ::com::sun::star::util::Date& _rNullDate, double _rVal) { return _rVal + toDays(_… in toStandardDbDate() argument
146 …toNullDate(const ::com::sun::star::util::Date& _rNullDate, double _rVal) { return _rVal - toDays(_… in toNullDate() argument
158 …static ::rtl::OUString toSQLString(sal_Int32 eType, const ::com::sun::star::uno::Any& _rVal, sal_B…
H A DCommonTools.hxx141 const ::rtl::OUString& _rVal,
149 const ::rtl::OUString& _rVal,
161 const ::rtl::OUString& _rVal,
H A DFValue.hxx329 void setFromDouble(const double& _rVal,sal_Int32 _nDatatype);
/trunk/main/comphelper/inc/comphelper/
H A Dtypes.hxx92 sal_Bool isA(const staruno::Any& _rVal, TYPE* pDummy) in isA() argument
94 return _rVal.getValueType().equals( in isA()
102 sal_Bool isAReference(const staruno::Any& _rVal, TYPE*) in isAReference() argument
104 return _rVal.getValueType().equals( in isAReference()
H A Dbasicio.hxx41 …& operator >> (const staruno::Reference<stario::XObjectInputStream>& _rxInStream, sal_Bool& _rVal);
/trunk/main/connectivity/source/inc/file/
H A Dfcomp.hxx99 void evaluateSelection(OCodeList& rCodeList,ORowSetValueDecoratorRef& _rVal);
106 inline void startSelection(ORowSetValueDecoratorRef& _rVal) in startSelection() argument
108 evaluateSelection(m_rCompiler->m_aCodeList,_rVal); in startSelection()
H A Dfcode.hxx84 virtual void setValue(const ORowSetValue& _rVal) = 0;
103 virtual void setValue(const ORowSetValue& _rVal);
150 virtual void setValue(const ORowSetValue& _rVal);
/trunk/main/connectivity/source/drivers/file/
H A Dfcode.cxx106 void OOperandRow::setValue(const ORowSetValue& _rVal) in setValue() argument
110 (*(m_pRow->get())[m_nRowPos]) = _rVal; in setValue()
121 void OOperandValue::setValue(const ORowSetValue& _rVal) in setValue() argument
124 m_aValue = _rVal; in setValue()
H A Dfcomp.cxx590 void OPredicateInterpreter::evaluateSelection(OCodeList& rCodeList,ORowSetValueDecoratorRef& _rVal) in evaluateSelection() argument
611 (*_rVal) = pOperand->getValue(); in evaluateSelection()
/trunk/main/dbaccess/source/ui/dlg/
H A DTextConnectionHelper.cxx532 void OTextConnectionHelper::SetExtension(const String& _rVal) in SetExtension() argument
534 if (_rVal.EqualsAscii("txt")) in SetExtension()
536 else if (_rVal.EqualsAscii( "csv" )) in SetExtension()
541 m_aFTExtensionExample.SetText(_rVal); in SetExtension()
H A DTextConnectionHelper.hxx118 void SetExtension(const String& _rVal);
/trunk/main/comphelper/source/streaming/
H A Dbasicio.cxx84 …>& operator >> (const staruno::Reference<stario::XObjectInputStream>& _rxInStream, sal_Bool& _rVal) in operator >>() argument
86 _rVal = _rxInStream->readBoolean(); in operator >>()
/trunk/main/connectivity/source/drivers/dbase/
H A DDNoException.cxx399 void ONDXKey::setValue(const ORowSetValue& _rVal) in setValue() argument
402 xValue = _rVal; in setValue()
H A Ddindexnode.cxx825 void ONDXKey::setValue(const ORowSetValue& _rVal) in setValue() argument
827 xValue = _rVal; in setValue()
/trunk/main/extensions/source/propctrlr/
H A Dproplinelistener.hxx39 …virtual void Commit( const ::rtl::OUString& _rName, const ::com::sun::star::uno::Any& _rVal ) = 0;
H A Dpropcontroller.hxx224 … virtual void Commit( const ::rtl::OUString& _rName, const ::com::sun::star::uno::Any& _rVal );
/trunk/main/connectivity/source/inc/dbase/
H A Ddindexnode.hxx61 virtual void setValue(const ORowSetValue& _rVal);

Completed in 121 milliseconds