/aoo42x/main/dbaccess/source/core/api/ |
H A D | StaticSet.cxx | 172 sal_Bool SAL_CALL OStaticSet::isBeforeFirst( ) throw(SQLException, RuntimeException) in isBeforeFirst() function in OStaticSet 229 return !isBeforeFirst() && !isAfterLast(); in last() 236 OSL_ENSURE(!isBeforeFirst(),"getRow is not allowed when beforefirst record!"); in getRow()
|
H A D | RowSetCache.cxx | 690 sal_Bool ORowSetCache::isBeforeFirst( ) in isBeforeFirst() function in ORowSetCache 1129 return (isBeforeFirst() || isAfterLast()) ? 0 : m_nPosition; in getRow() 1202 bErg = bErg && !isAfterLast() && !isBeforeFirst(); in relative() 1216 if(!isBeforeFirst()) in previous() 1326 if(isAfterLast() || isBeforeFirst()) in updateRow() 1357 if(isAfterLast() || isBeforeFirst()) in deleteRow()
|
H A D | RowSetBase.cxx | 687 sal_Bool SAL_CALL ORowSetBase::isBeforeFirst( ) throw(SQLException, RuntimeException) in isBeforeFirst() function in dbaccess::ORowSetBase 943 || m_pCache->isBeforeFirst() in impl_getRow() 1114 m_bBeforeFirst = m_pCache->isBeforeFirst(); in setCurrentRow() 1413 m_bBeforeFirst = m_pCache->isBeforeFirst(); in movementFailed()
|
H A D | KeySet.cxx | 417 return !isBeforeFirst() && !isAfterLast(); in moveRelativeToBookmark() 1182 sal_Bool SAL_CALL OKeySet::isBeforeFirst( ) throw(SQLException, RuntimeException) in isBeforeFirst() function in OKeySet 1267 OSL_ENSURE(!isBeforeFirst(),"getRow is not allowed when beforefirst record!"); in getRow() 1353 if(isBeforeFirst() || isAfterLast() || !m_xStatement.is()) in refreshRow()
|
H A D | CacheSet.cxx | 612 sal_Bool SAL_CALL OCacheSet::isBeforeFirst( ) throw(SQLException, RuntimeException) in isBeforeFirst() function in OCacheSet 615 return m_xDriverSet->isBeforeFirst(); in isBeforeFirst()
|
H A D | StaticSet.hxx | 61 …virtual sal_Bool SAL_CALL isBeforeFirst( ) throw(::com::sun::star::sdbc::SQLException, ::com::sun…
|
H A D | resultset.cxx | 871 sal_Bool OResultSet::isBeforeFirst(void) throw( SQLException, RuntimeException ) in isBeforeFirst() function in OResultSet 877 return m_xDelegatorResultSet->isBeforeFirst(); in isBeforeFirst()
|
/aoo42x/main/forms/qa/org/openoffice/complex/forms/tools/ |
H A D | ResultSet.java | 65 boolean isBeforeFirst() throws SQLException in isBeforeFirst() method in ResultSet 67 return m_resultSet.isBeforeFirst(); in isBeforeFirst()
|
/aoo42x/main/svx/source/fmcomp/ |
H A D | gridctrl.cxx | 835 m_eStatus = (pCur->isAfterLast() || pCur->isBeforeFirst()) ? GRS_INVALID : GRS_CLEAN; in DbGridRow() 842 if (!m_bIsNew && (pCur->isAfterLast() || pCur->isBeforeFirst())) in DbGridRow() 2136 if ( !m_pSeekCursor->isBeforeFirst() && !m_pSeekCursor->isAfterLast() ) in SetCurrent() 2301 && !m_pDataCursor->isBeforeFirst() in AdjustDataSource() 2377 if ( m_pDataCursor->isBeforeFirst() ) in AlignSeekCursor() 2457 if ( m_pSeekCursor->isAfterLast() || m_pSeekCursor->isBeforeFirst() ) in SeekCursor() 2463 DBG_ASSERT( !m_pSeekCursor->isAfterLast() && !m_pSeekCursor->isBeforeFirst(), in SeekCursor() 2481 else if (m_pSeekCursor->isBeforeFirst()) in SeekCursor() 2488 if (m_pSeekCursor->isBeforeFirst()) in SeekCursor()
|
/aoo42x/main/connectivity/qa/connectivity/tools/ |
H A D | RowSet.java | 102 public boolean isBeforeFirst() throws SQLException in isBeforeFirst() method in RowSet 104 return m_rowSet.isBeforeFirst(); in isBeforeFirst()
|
/aoo42x/main/odk/examples/DevelopersGuide/Forms/ |
H A D | RowSet.java | 101 public boolean isBeforeFirst() throws SQLException in isBeforeFirst() method in RowSet 103 return m_rowSet.isBeforeFirst(); in isBeforeFirst()
|
/aoo42x/main/odk/examples/DevelopersGuide/Database/ |
H A D | RowSet.java | 204 System.out.println("We stand before the first row: " + xRes.isBeforeFirst()); in showRowSetEvents() 219 System.out.println("We stand before the first row: " + xRes.isBeforeFirst()); in showRowSetEvents()
|
/aoo42x/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/ |
H A D | CustomResultSet.java | 79 if (isBeforeFirst() || isAfterLast()) { in getField() 139 public synchronized boolean isBeforeFirst() throws SQLException { in isBeforeFirst() method in CustomResultSet
|
H A D | DatabaseMetaDataResultSet.java | 101 if (isBeforeFirst() || isAfterLast()) { in getField() 161 public synchronized boolean isBeforeFirst() throws SQLException { in isBeforeFirst() method in DatabaseMetaDataResultSet
|
/aoo42x/main/svx/inc/svx/ |
H A D | fmtools.hxx | 155 sal_Bool isBeforeFirst() const { return m_xMoveOperations->isBeforeFirst(); } in isBeforeFirst() function in CursorWrapper
|
/aoo42x/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/ |
H A D | PostgresqlResultSet.java | 131 public boolean isBeforeFirst() throws SQLException { in isBeforeFirst() method in PostgresqlResultSet 132 return impl.isBeforeFirst(); in isBeforeFirst()
|
/aoo42x/main/dbaccess/qa/complex/dbaccess/ |
H A D | RowSet.java | 631 …assertTrue("one of the isFoo failed after |deleteRow|", !m_resultSet.isBeforeFirst() && !m_resultS… in testDeleteBehavior() 777 …ing the first record left the clone in a strange state (after |previous|)", clone.isBeforeFirst()); in testCloneMovesPlusDeletions() 799 …after |deleteRow| and clone movement", !m_resultSet.isAfterLast() && !m_resultSet.isBeforeFirst()); in testCloneMovesPlusDeletions()
|
/aoo42x/main/xmlhelp/source/cxxhelp/provider/ |
H A D | resultsetbase.cxx | 181 ResultSetBase::isBeforeFirst( in isBeforeFirst() function in ResultSetBase 304 if( isAfterLast() || isBeforeFirst() ) in relative()
|
/aoo42x/main/ucb/source/ucp/ftp/ |
H A D | ftpresultsetbase.cxx | 181 ResultSetBase::isBeforeFirst( in isBeforeFirst() function in ResultSetBase 304 if( isAfterLast() || isBeforeFirst() ) in relative()
|
/aoo42x/main/ucb/source/ucp/file/ |
H A D | filrset.cxx | 375 XResultSet_impl::isBeforeFirst( in isBeforeFirst() function in XResultSet_impl 508 if( isAfterLast() || isBeforeFirst() ) in relative()
|
/aoo42x/main/connectivity/source/commontools/ |
H A D | FDatabaseMetaDataResultSet.cxx | 420 sal_Bool SAL_CALL ODatabaseMetaDataResultSet::isBeforeFirst( ) throw(SQLException, RuntimeExceptio… in isBeforeFirst() function in ODatabaseMetaDataResultSet 634 if ( isBeforeFirst() || isAfterLast() ) in getValue()
|
/aoo42x/main/ucb/source/cacher/ |
H A D | contentresultsetwrapper.cxx | 1046 ::isBeforeFirst() in isBeforeFirst() function in ContentResultSetWrapper 1057 return m_xResultSetOrigin->isBeforeFirst(); in isBeforeFirst()
|
/aoo42x/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/ |
H A D | JavaSQLResultSet.java | 644 public boolean isBeforeFirst() throws SQLException { in isBeforeFirst() method in JavaSQLResultSet 646 return jdbcResultSet.isBeforeFirst(); in isBeforeFirst()
|
/aoo42x/main/mysqlc/source/ |
H A D | mysqlc_resultset.cxx | 626 sal_Bool SAL_CALL OResultSet::isBeforeFirst() in isBeforeFirst() function in OResultSet 634 return m_result->isBeforeFirst()? sal_True:sal_False; in isBeforeFirst()
|
/aoo42x/main/qadevOOo/tests/java/ifc/sdbc/ |
H A D | _XResultSet.java | 129 result = oObj.isBeforeFirst() ; in _isBeforeFirst()
|