Home
last modified time | relevance | path

Searched refs:getDouble (Results 26 – 50 of 165) sorted by relevance

1234567

/aoo42x/main/wizards/com/sun/star/wizards/db/
H A DRecordParser.java115 … DblValue = new Double(xResultSetRow.getDouble(ColIndex) + (double) super.getNullDateCorrection()); in getColumnDoubleValue()
119 DblValue = new Double(xResultSetRow.getDouble(ColIndex)); in getColumnDoubleValue()
/aoo42x/main/oox/source/xls/
H A Dpivotcachebuffer.cxx183 maValue <<= rAttribs.getDouble( XML_v, 0.0 ); in readNumeric()
535 maFieldGroupModel.mfStartValue = rAttribs.getDouble( XML_startNum, 0.0 ); in importRangePr()
536 maFieldGroupModel.mfEndValue = rAttribs.getDouble( XML_endNum, 0.0 ); in importRangePr()
537 maFieldGroupModel.mfInterval = rAttribs.getDouble( XML_groupInterval, 1.0 ); in importRangePr()
1055 maDefModel.mfRefreshedDate = rAttribs.getDouble( XML_refreshedDate, 0.0 ); in importPivotCacheDefinition()
H A Dstylesbuffer.cxx353 …setRgb( rAttribs.getIntegerHex( XML_rgb, API_RGB_TRANSPARENT ), rAttribs.getDouble( XML_tint, 0.0 … in importColor()
355 setTheme( rAttribs.getInteger( XML_theme, -1 ), rAttribs.getDouble( XML_tint, 0.0 ) ); in importColor()
357 setIndexed( rAttribs.getInteger( XML_indexed, -1 ), rAttribs.getDouble( XML_tint, 0.0 ) ); in importColor()
752 maModel.mfHeight = rAttribs.getDouble( XML_val, rDefModel.mfHeight ); in importAttribs()
1961 mxGradientModel->mfAngle = rAttribs.getDouble( XML_degree, 0.0 ); in importGradientFill()
1962 mxGradientModel->mfLeft = rAttribs.getDouble( XML_left, 0.0 ); in importGradientFill()
1963 mxGradientModel->mfRight = rAttribs.getDouble( XML_right, 0.0 ); in importGradientFill()
1964 mxGradientModel->mfTop = rAttribs.getDouble( XML_top, 0.0 ); in importGradientFill()
1965 mxGradientModel->mfBottom = rAttribs.getDouble( XML_bottom, 0.0 ); in importGradientFill()
H A Dworksheetfragment.cxx512 setDefaultColumnWidth( rAttribs.getDouble( XML_defaultColWidth, 0.0 ) ); in importSheetFormatPr()
515 rAttribs.getDouble( XML_defaultRowHeight, 0.0 ), in importSheetFormatPr()
527 aModel.mfWidth = rAttribs.getDouble( XML_width, 0.0 ); in importCol()
/aoo42x/main/scaddins/source/analysis/
H A Dfinancial.cxx58 double fVal = aAnyConv.getDouble( xOpt, rVal, 1000.0 ); in getAccrint()
71 double fVal = aAnyConv.getDouble( xOpt, rVal, 1000.0 ); in getAccrintm()
536 double fResultRate = aAnyConv.getDouble( xOpt, rGuessRate, 0.1 ); in getXirr()
H A Danalysishelper.hxx1053 sal_Bool getDouble(
1064 sal_Bool getDouble(
1075 double getDouble(
H A Danalysis.cxx1050 return fNum1 == aAnyConv.getDouble( xOpt, rNum2, 0.0 ); in getDelta()
1057 sal_Bool bContainsValue = aAnyConv.getDouble( fUL, xOpt, rUL ); in getErf()
1073 return fNum >= aAnyConv.getDouble( xOpt, rStep, 0.0 ); in getGestep()
/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DCustomResultSet.java267 public synchronized double getDouble(int columnIndex) throws SQLException { in getDouble() method in CustomResultSet
270 return field.getDouble(); in getDouble()
H A DDatabaseMetaDataResultSet.java289 public synchronized double getDouble(int columnIndex) throws SQLException { in getDouble() method in DatabaseMetaDataResultSet
292 return field.getDouble(); in getDouble()
/aoo42x/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLCallableStatement.java132 public synchronized double getDouble(int columnIndex) throws SQLException { in getDouble() method in JavaSQLCallableStatement
135 return ((java.sql.CallableStatement)jdbcStatement).getDouble(columnIndex); in getDouble()
/aoo42x/main/dbaccess/source/core/api/
H A Dcallablestatement.cxx229 double SAL_CALL OCallableStatement::getDouble( sal_Int32 columnIndex ) throw(SQLException, RuntimeE… in getDouble() function in OCallableStatement
234 return Reference< XRow >(m_xAggregateAsSet, UNO_QUERY)->getDouble( columnIndex ); in getDouble()
H A Ddatacolumn.cxx223 double ODataColumn::getDouble(void) throw( SQLException, RuntimeException ) in getDouble() function in ODataColumn
228 return m_xRow->getDouble(m_nPos); in getDouble()
/aoo42x/main/extensions/test/stm/
H A Ddatatest.cxx467 m_d = aValue.getDouble(); in setPropertyValue()
831 b = b && ( r1->getPropertyValue( L"double" ).getDouble() == in compareMyPropertySet()
832 r2->getPropertyValue( L"double" ).getDouble() ); in compareMyPropertySet()
/aoo42x/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlResultSet.java213 public double getDouble(int arg0) throws SQLException { in getDouble() method in PostgresqlResultSet
214 return implRow.getDouble(arg0); in getDouble()
/aoo42x/main/connectivity/inc/connectivity/
H A DFValue.hxx263 operator double() const { return isNull() ? 0.0 : getDouble(); }
326 double getDouble() const;
/aoo42x/main/ucb/source/sorter/
H A Dsortresult.cxx760 double SAL_CALL SortedResultSet::getDouble( sal_Int32 columnIndex ) in getDouble() function in SortedResultSet
764 return Reference< XRow >::query(mxOriginal)->getDouble( columnIndex ); in getDouble()
1218 aOne = xRowOne->getDouble( nColumn ); in CompareImpl()
1220 aTwo = xRowTwo->getDouble( nColumn ); in CompareImpl()
/aoo42x/main/mysqlc/source/
H A Dmysqlc_resultset.cxx330 double SAL_CALL OResultSet::getDouble(sal_Int32 column) in getDouble() function in OResultSet
339 return m_result->getDouble(column); in getDouble()
358 return m_result->getDouble(column); in getFloat()
/aoo42x/main/unoxml/source/xpath/
H A Dxpathobject.hxx111 virtual double SAL_CALL getDouble() throw (RuntimeException);
H A Dxpathobject.cxx158 double SAL_CALL CXPathObject::getDouble() throw (RuntimeException) in getDouble() function in XPath::CXPathObject
/aoo42x/main/oox/source/ppt/
H A Danimvariantcontext.cxx89 double val = attribs.getDouble( XML_val, 0.0 ); in createFastChildContext()
/aoo42x/main/basic/source/sbx/
H A Dsbxdec.hxx102 bool getDouble( double& rVal );
/aoo42x/main/xmlhelp/source/cxxhelp/provider/
H A Dresultsetbase.hxx200 getDouble( in getDouble() function in chelp::ResultSetBase
206 return m_aItems[m_nRow]->getDouble( columnIndex ); in getDouble()
/aoo42x/main/ucb/source/cacher/
H A Dcontentresultsetwrapper.cxx1278 ::getDouble( sal_Int32 columnIndex ) in getDouble() function in ContentResultSetWrapper
1282 XROW_GETXXX( getDouble ); in getDouble()
/aoo42x/main/ucb/source/ucp/ftp/
H A Dftpresultsetbase.hxx204 getDouble( in getDouble() function in ftp::ResultSetBase
210 return m_aItems[m_nRow]->getDouble( columnIndex ); in getDouble()
/aoo42x/main/testtools/source/performance/
H A Dcli_testobj_performance.cs92 public double getDouble( ) { return _double; } in getDouble() method in testobj.PerformanceTestObject

Completed in 242 milliseconds

1234567