/trunk/main/wizards/com/sun/star/wizards/db/ |
H A D | TypeInspector.java | 91 aTypeVector.addElement(new Integer(xRow.getShort(2))); in TypeInspector() 93 aNullableVector.addElement(new Integer(xRow.getShort(7))); in TypeInspector() 94 aSearchableVector.addElement(new Integer(xRow.getShort(9))); in TypeInspector() 96 aMinScaleVector.addElement(new Integer(xRow.getShort(14))); in TypeInspector() 97 aMaxScaleVector.addElement(new Integer(xRow.getShort(15))); in TypeInspector()
|
/trunk/main/wizards/com/sun/star/wizards/common/ |
H A D | NumericalHelper.java | 111 retValue = (byte) getShort(aTypeObject); in toByte() 169 retValue = (char) getShort(aTypeObject); in toChar() 232 retValue = getShort(aTypeObject); in toShort() 515 retValue = (int) getShort(aTypeObject); in toInt() 571 retValue = (long) getShort(aTypeObject); in toLong() 627 retValue = (float) getShort(aTypeObject); in toFloat() 683 retValue = (double) getShort(aTypeObject); in toDouble() 1269 private static short getShort(TypeObject typeObject) in getShort() method in NumericalHelper
|
H A D | ConfigGroup.java | 97 return new Short(field.getShort(this)); in convertValue() 154 field.setShort(this, Configuration.getShort(propertyName, configView)); in readField()
|
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/ |
H A D | PostgresqlDatabaseMetadata.java | 101 short dataType = row.getShort(5); in getColumns() 348 short dataType = row.getShort(2); in getTypeInfo() 353 short nullable = row.getShort(7); in getTypeInfo() 355 short searchable = row.getShort(9); in getTypeInfo() 360 short minimumScale = row.getShort(14); in getTypeInfo() 361 short maximumScale = row.getShort(15); in getTypeInfo()
|
H A D | PostgresqlResultSet.java | 237 public short getShort(int arg0) throws SQLException { in getShort() method in PostgresqlResultSet 238 return implRow.getShort(arg0); in getShort()
|
/trunk/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/ |
H A D | SConnection.cxx | 338 aInfo.nType = xRow->getShort (2); in buildTypeInfo() 345 aInfo.nSearchType = xRow->getShort (9); in buildTypeInfo() 350 aInfo.nMinimumScale = xRow->getShort (14); in buildTypeInfo() 351 aInfo.nMaximumScale = xRow->getShort (15); in buildTypeInfo()
|
/trunk/main/connectivity/source/drivers/adabas/ |
H A D | BDatabaseMetaData.cxx | 94 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getShort (9)); in impl_getTypeInfo_throw() 109 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getShort (14)); in impl_getTypeInfo_throw() 112 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getShort (15)); in impl_getTypeInfo_throw()
|
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sdbc/ |
H A D | _XRowUpdate.java | 135 if (rowData.get(i) instanceof Short) row.getShort(i + 1) ; in _updateNull() 243 short newVal = (short) (row.getShort(idx) + 1) ; in _updateShort() 245 short getVal = row.getShort(idx) ; in _updateShort()
|
/trunk/main/forms/qa/integration/complex/forms/tools/ |
H A D | ResultSet.java | 191 short getShort( int _colIndex ) throws SQLException in getShort() method in ResultSet 193 return m_row.getShort( _colIndex ); in getShort()
|
/trunk/main/connectivity/source/commontools/ |
H A D | FValue.cxx | 2015 virtual sal_Int16 getShort() const = 0; 2047 …virtual sal_Int16 getShort() const { return m_xRow->getShort( m_nPos … in getShort() function in connectivity::detail::RowValue 2080 … virtual sal_Int16 getShort() const { return m_xColumn->getShort(); } in getShort() function in connectivity::detail::ColumnValue 2174 (*this) = _rValueSource.getShort(); in impl_fill() 2178 (*this) = _rValueSource.getShort(); in impl_fill()
|
/trunk/main/odk/examples/DevelopersGuide/Forms/ |
H A D | RowSet.java | 207 public short getShort(int i) throws SQLException in getShort() method in RowSet 209 return m_row.getShort(i); in getShort()
|
/trunk/main/connectivity/qa/connectivity/tools/ |
H A D | RowSet.java | 208 public short getShort(int i) throws SQLException in getShort() method in RowSet 210 return m_row.getShort(i); in getShort()
|
/trunk/main/basic/source/sbx/ |
H A D | sbxdec.cxx | 266 bool SbxDecimal::getShort( sal_Int16& rVal ) in getShort() function in SbxDecimal 376 bool SbxDecimal::getShort( sal_Int16& rVal ) { (void)rVal; return false; } in getShort() function in SbxDecimal 700 if( !pDec->getShort( *p->pInteger ) ) in ImpPutDecimal()
|
H A D | sbxdec.hxx | 97 bool getShort( sal_Int16& rVal );
|
/trunk/main/svx/source/form/ |
H A D | sdbdatacolumn.cxx | 115 sal_Int16 DataColumn::getShort() throw( SQLException, RuntimeException ) in getShort() function in svxform::DataColumn 117 return m_xColumn->getShort(); in getShort()
|
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ |
H A D | JavaSQLCallableStatement.java | 261 public synchronized short getShort(int columnIndex) throws SQLException { in getShort() method in JavaSQLCallableStatement 264 return ((java.sql.CallableStatement)jdbcStatement).getShort(columnIndex); in getShort()
|
/trunk/main/dbaccess/source/core/api/ |
H A D | callablestatement.cxx | 193 sal_Int16 SAL_CALL OCallableStatement::getShort( sal_Int32 columnIndex ) throw(SQLException, Runtim… in getShort() function in OCallableStatement 198 return Reference< XRow >(m_xAggregateAsSet, UNO_QUERY)->getShort( columnIndex ); in getShort()
|
H A D | datacolumn.cxx | 188 sal_Int16 ODataColumn::getShort(void) throw( SQLException, RuntimeException ) in getShort() function in ODataColumn 193 return m_xRow->getShort(m_nPos); in getShort()
|
H A D | CacheSet.cxx | 508 sal_Int16 SAL_CALL OCacheSet::getShort( sal_Int32 columnIndex ) throw(SQLException, RuntimeExceptio… in getShort() function in OCacheSet 511 return m_xDriverRow->getShort(columnIndex); in getShort()
|
/trunk/main/unoxml/source/xpath/ |
H A D | xpathobject.hxx | 91 virtual sal_Int16 SAL_CALL getShort() throw (RuntimeException);
|
H A D | xpathobject.cxx | 118 sal_Int16 SAL_CALL CXPathObject::getShort() throw (RuntimeException) in getShort() function in XPath::CXPathObject
|
/trunk/main/xmlhelp/source/cxxhelp/provider/ |
H A D | resultsetbase.hxx | 151 getShort( in getShort() function in chelp::ResultSetBase 158 return m_aItems[m_nRow]->getShort( columnIndex ); in getShort()
|
/trunk/main/ucb/source/cacher/ |
H A D | contentresultsetwrapper.cxx | 1242 ::getShort( sal_Int32 columnIndex ) in getShort() function in ContentResultSetWrapper 1246 XROW_GETXXX( getShort ); in getShort()
|
/trunk/main/ucb/source/ucp/ftp/ |
H A D | ftpresultsetbase.hxx | 155 getShort( in getShort() function in ftp::ResultSetBase 162 return m_aItems[m_nRow]->getShort( columnIndex ); in getShort()
|
/trunk/main/ucb/source/ucp/file/ |
H A D | filrset.hxx | 208 getShort( in getShort() function in fileaccess::XResultSet_impl 215 return m_aItems[m_nRow]->getShort( columnIndex ); in getShort()
|