Home
last modified time | relevance | path

Searched refs:getBoolean (Results 1 – 25 of 123) sorted by relevance

12345

/trunk/main/svtools/source/contnr/
H A Dcontentenumeration.cxx249 sal_Bool bIsHidden = xRow->getBoolean( ROW_IS_HIDDEN ); in enumerateFolderContent()
282 … pData->mbIsFolder = xRow->getBoolean( ROW_IS_FOLDER ) && !xRow->wasNull(); in enumerateFolderContent()
283 … pData->mbIsVolume = xRow->getBoolean( ROW_IS_VOLUME ) && !xRow->wasNull(); in enumerateFolderContent()
284 … pData->mbIsRemote = xRow->getBoolean( ROW_IS_REMOTE ) && !xRow->wasNull(); in enumerateFolderContent()
285 … pData->mbIsRemoveable = xRow->getBoolean( ROW_IS_REMOVEABLE ) && !xRow->wasNull(); in enumerateFolderContent()
286 … pData->mbIsFloppy = xRow->getBoolean( ROW_IS_FLOPPY ) && !xRow->wasNull(); in enumerateFolderContent()
287 … pData->mbIsCompactDisc = xRow->getBoolean( ROW_IS_COMPACTDISC ) && !xRow->wasNull(); in enumerateFolderContent()
/trunk/main/l10ntools/source/filter/merge/
H A DMerger.java135 boolean bTrim = m_aCfg.getBoolean(PROP_TRIM); in Merger()
136 boolean bDecode = m_aCfg.getBoolean(PROP_DECODE); in Merger()
200 m_aCfg.getBoolean(PROP_LANGUAGEPACK, false))); in merge()
313 boolean bHandleLanguagePacks = m_aCfg.getBoolean(PROP_LANGUAGEPACK, false); in getFragments()
314 boolean bDebug = m_aCfg.getBoolean(PROP_DEBUG , false); in getFragments()
/trunk/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/
H A DSConnection.cxx343 aInfo.bNullable = xRow->getBoolean (7) == ColumnValue::NULLABLE; in buildTypeInfo()
344 aInfo.bCaseSensitive = xRow->getBoolean (8); in buildTypeInfo()
346 aInfo.bUnsigned = xRow->getBoolean (10); in buildTypeInfo()
347 aInfo.bCurrency = xRow->getBoolean (11); in buildTypeInfo()
348 aInfo.bAutoIncrement = xRow->getBoolean (12); in buildTypeInfo()
/trunk/main/connectivity/source/drivers/adabas/
H A DBDatabaseMetaData.cxx91 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getBoolean (8)); in impl_getTypeInfo_throw()
97 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getBoolean (10)); in impl_getTypeInfo_throw()
103 aRow[nPos++] = new ::connectivity::ORowSetValueDecorator(xRow->getBoolean (12)); in impl_getTypeInfo_throw()
/trunk/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlDatabaseMetadata.java354 boolean caseSensitive = row.getBoolean(8); in getTypeInfo()
356 boolean unsignedAttribute = row.getBoolean(10); in getTypeInfo()
357 boolean fixedPrecScale = row.getBoolean(11); in getTypeInfo()
358 boolean autoIncrement = row.getBoolean(12); in getTypeInfo()
H A DPostgresqlResultSet.java189 public boolean getBoolean(int arg0) throws SQLException { in getBoolean() method in PostgresqlResultSet
190 return implRow.getBoolean(arg0); in getBoolean()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sdbc/
H A D_XRowUpdate.java133 if (rowData.get(i) instanceof Boolean) row.getBoolean(i + 1) ; in _updateNull()
185 boolean newVal = !row.getBoolean(idx) ; in _updateBoolean()
187 boolean getVal = row.getBoolean(idx) ; in _updateBoolean()
/trunk/main/forms/qa/org/openoffice/complex/forms/tools/
H A DResultSet.java179 boolean getBoolean( int _colIndex ) throws SQLException in getBoolean() method in ResultSet
181 return m_row.getBoolean( _colIndex ); in getBoolean()
/trunk/main/wizards/com/sun/star/wizards/common/
H A DConfigGroup.java89 return (field.getBoolean(this) ? Boolean.TRUE : Boolean.FALSE); in convertValue()
146 field.setBoolean(this, Configuration.getBoolean(propertyName, configView)); in readField()
/trunk/main/l10ntools/source/filter/utils/
H A DConfigHelper.java167 public synchronized boolean getBoolean(java.lang.String sProp) in getBoolean() method in ConfigHelper
176 public synchronized boolean getBoolean(java.lang.String sProp , in getBoolean() method in ConfigHelper
/trunk/main/ucb/source/ucp/file/
H A Dbc.cxx537 sal_Bool IsDocument = xRow->getBoolean( 1 ); in getContentType()
676 IsDocument = xRow->getBoolean( 1 ); in createNewContent()
1136 sal_Bool IsDocument = xRow->getBoolean( 1 ); in transfer()
1210 bDocument = xRow->getBoolean( 1 ); in insert()
/trunk/main/odk/examples/DevelopersGuide/Forms/
H A DRowSet.java197 public boolean getBoolean(int i) throws SQLException in getBoolean() method in RowSet
199 return m_row.getBoolean(i); in getBoolean()
/trunk/main/connectivity/qa/connectivity/tools/
H A DRowSet.java198 public boolean getBoolean(int i) throws SQLException in getBoolean() method in RowSet
200 return m_row.getBoolean(i); in getBoolean()
/trunk/main/wizards/com/sun/star/wizards/ui/event/
H A DUnoDataAware.java66 Boolean b = getBoolean(value); in enableControls()
111 protected Boolean getBoolean(Object value) in getBoolean() method in UnoDataAware
/trunk/main/svx/source/form/
H A Dsdbdatacolumn.cxx105 sal_Bool DataColumn::getBoolean() throw( SQLException, RuntimeException ) in getBoolean() function in svxform::DataColumn
107 return m_xColumn->getBoolean(); in getBoolean()
/trunk/main/connectivity/source/commontools/
H A DFValue.cxx2013 virtual sal_Bool getBoolean() const = 0;
2045 …virtual sal_Bool getBoolean() const { return m_xRow->getBoolean( m_nPo… in getBoolean() function in connectivity::detail::RowValue
2078 …virtual sal_Bool getBoolean() const { return m_xColumn->getBoolean(); … in getBoolean() function in connectivity::detail::ColumnValue
2168 (*this) = _rValueSource.getBoolean(); in impl_fill()
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DCustomResultSet.java233 public synchronized boolean getBoolean(int columnIndex) throws SQLException { in getBoolean() method in CustomResultSet
236 return field.getBoolean(); in getBoolean()
H A DDatabaseMetaDataResultSet.java255 public synchronized boolean getBoolean(int columnIndex) throws SQLException { in getBoolean() method in DatabaseMetaDataResultSet
258 return field.getBoolean(); in getBoolean()
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLCallableStatement.java87 public synchronized boolean getBoolean(int columnIndex) throws SQLException { in getBoolean() method in JavaSQLCallableStatement
90 return ((java.sql.CallableStatement)jdbcStatement).getBoolean(columnIndex); in getBoolean()
/trunk/main/dbaccess/source/core/api/
H A Dcallablestatement.cxx173 sal_Bool SAL_CALL OCallableStatement::getBoolean( sal_Int32 columnIndex ) throw(SQLException, Runti… in getBoolean() function in OCallableStatement
179 return Reference< XRow >(m_xAggregateAsSet, UNO_QUERY)->getBoolean( columnIndex ); in getBoolean()
H A Ddatacolumn.cxx170 sal_Bool ODataColumn::getBoolean(void) throw( SQLException, RuntimeException ) in getBoolean() function in ODataColumn
175 return m_xRow->getBoolean(m_nPos); in getBoolean()
/trunk/main/unoxml/source/xpath/
H A Dxpathobject.hxx81 virtual sal_Bool SAL_CALL getBoolean() throw (RuntimeException);
/trunk/main/toolkit/test/accessibility/
H A DOptions.java57 return Boolean.getBoolean(Instance().getProperty (sName)); in GetBoolean()
/trunk/main/xmlhelp/source/cxxhelp/provider/
H A Dresultsetbase.hxx127 getBoolean( in getBoolean() function in chelp::ResultSetBase
133 return m_aItems[m_nRow]->getBoolean( columnIndex ); in getBoolean()
/trunk/main/ucb/source/cacher/
H A Dcontentresultsetwrapper.cxx1224 ::getBoolean( sal_Int32 columnIndex ) in getBoolean() function in ContentResultSetWrapper
1228 XROW_GETXXX( getBoolean ); in getBoolean()

Completed in 126 milliseconds

12345