| /aoo4110/main/dbaccess/source/core/api/ | 
| H A D | StaticSet.cxx | 159 	if(isAfterLast())  in next()167 	else if(!isAfterLast())  in next()
 169 	return !isAfterLast();  in next()
 178 sal_Bool SAL_CALL OStaticSet::isAfterLast(  ) throw(SQLException, RuntimeException)  in isAfterLast()  function in OStaticSet
 229 	return !isBeforeFirst() && !isAfterLast();  in last()
 235 	OSL_ENSURE(!isAfterLast(),"getRow is not allowed when afterlast record!");  in getRow()
 
 | 
| H A D | RowSetCache.cxx | 670 	if(!isAfterLast())  in next()695 sal_Bool ORowSetCache::isAfterLast(  )  in isAfterLast()  function in ORowSetCache
 1129 	return (isBeforeFirst() || isAfterLast()) ? 0 : m_nPosition;  in getRow()
 1202 			bErg = bErg && !isAfterLast() && !isBeforeFirst();  in relative()
 1246 	if(isAfterLast())  in refreshRow()
 1326 	if(isAfterLast() || isBeforeFirst())  in updateRow()
 1357 	if(isAfterLast() || isBeforeFirst())  in deleteRow()
 
 | 
| H A D | RowSetBase.cxx | 656         sal_Bool bAfterLast = m_pCache->isAfterLast();  in next()661 		if ( bRet || bAfterLast != m_pCache->isAfterLast() )  in next()
 699 sal_Bool SAL_CALL ORowSetBase::isAfterLast(  ) throw(SQLException, RuntimeException)  in isAfterLast()  function in dbaccess::ORowSetBase
 942         if  (   m_pCache->isAfterLast()  in impl_getRow()
 1115 	m_bAfterLast	= m_pCache->isAfterLast();  in setCurrentRow()
 1414 	m_bAfterLast	= m_pCache->isAfterLast();  in movementFailed()
 
 | 
| H A D | KeySet.cxx | 417 	return !isBeforeFirst() && !isAfterLast();  in moveRelativeToBookmark()1161 	if(isAfterLast())  in next()
 1172             return !isAfterLast();  in next()
 1175 	else if(!isAfterLast())  in next()
 1179 	return !isAfterLast();  in next()
 1188 sal_Bool SAL_CALL OKeySet::isAfterLast(  ) throw(SQLException, RuntimeException)  in isAfterLast()  function in OKeySet
 1266 	OSL_ENSURE(!isAfterLast(),"getRow is not allowed when afterlast record!");  in getRow()
 1353 	if(isBeforeFirst() || isAfterLast() || !m_xStatement.is())  in refreshRow()
 
 | 
| H A D | CacheSet.cxx | 618 sal_Bool SAL_CALL OCacheSet::isAfterLast(  ) throw(SQLException, RuntimeException)  in isAfterLast()  function in OCacheSet621 	return m_xDriverSet->isAfterLast();  in isAfterLast()
 
 | 
| H A D | StaticSet.hxx | 62 …virtual sal_Bool SAL_CALL isAfterLast(  ) throw(::com::sun::star::sdbc::SQLException, ::com::sun::…
 | 
| H A D | RowSetCache.hxx | 240 		sal_Bool isAfterLast(  );
 | 
| H A D | resultset.cxx | 881 sal_Bool OResultSet::isAfterLast(void) throw( SQLException, RuntimeException )  in isAfterLast()  function in OResultSet887 	return m_xDelegatorResultSet->isAfterLast();  in isAfterLast()
 
 | 
| /aoo4110/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()
 2302             &&  !m_pDataCursor->isAfterLast()  in AdjustDataSource()
 2385 			else if ( m_pDataCursor->isAfterLast() )  in AlignSeekCursor()
 2444 …== nRow) && (GetRowCount() == ((m_nOptions & OPT_INSERT) ? 1 : 0)) && m_pSeekCursor->isAfterLast())  in SeekCursor()
 2457                 if ( m_pSeekCursor->isAfterLast() || m_pSeekCursor->isBeforeFirst() )  in SeekCursor()
 2463                 DBG_ASSERT( !m_pSeekCursor->isAfterLast() && !m_pSeekCursor->isBeforeFirst(),  in SeekCursor()
 2479 					if (m_pSeekCursor->isAfterLast())  in SeekCursor()
 2490 					else if (m_pSeekCursor->isAfterLast())  in SeekCursor()
 
 | 
| /aoo4110/main/forms/qa/org/openoffice/complex/forms/tools/ | 
| H A D | ResultSet.java | 71     boolean isAfterLast() throws SQLException  in isAfterLast()  method in ResultSet73         return m_resultSet.isAfterLast();  in isAfterLast()
 
 | 
| /aoo4110/main/dbaccess/qa/complex/dbaccess/ | 
| H A D | RowSet.java | 631 …ailed after |deleteRow|", !m_resultSet.isBeforeFirst() && !m_resultSet.isAfterLast() && !m_resultS…  in testDeleteBehavior()668 …eRow| + |moveToInsertRow| + |moveToCurrentRow| results in wrong state", m_resultSet.isAfterLast());  in testDeleteBehavior()
 785 …("deleting the last record left the clone in a strange state (after |next|)", clone.isAfterLast());  in testCloneMovesPlusDeletions()
 799 …assertTrue("wrong position after |deleteRow| and clone movement", !m_resultSet.isAfterLast() && !m…  in testCloneMovesPlusDeletions()
 
 | 
| /aoo4110/main/odk/examples/DevelopersGuide/Forms/ | 
| H A D | RowSet.java | 106     public boolean isAfterLast() throws SQLException  in isAfterLast()  method in RowSet108         return m_rowSet.isAfterLast();  in isAfterLast()
 
 | 
| /aoo4110/main/connectivity/qa/connectivity/tools/ | 
| H A D | RowSet.java | 107     public boolean isAfterLast() throws SQLException  in isAfterLast()  method in RowSet109         return m_rowSet.isAfterLast();  in isAfterLast()
 
 | 
| /aoo4110/main/qadevOOo/tests/java/ifc/frame/ | 
| H A D | _XDocumentTemplates.java | 201             while(! statRes.isAfterLast()) {  in getContentList()259             while(!statRes.isAfterLast()) {  in getSubContent()
 
 | 
| /aoo4110/main/odk/examples/DevelopersGuide/Database/ | 
| H A D | RowSet.java | 214 		System.out.println("We stand after the last row: " + xRes.isAfterLast());  in showRowSetEvents()222 		System.out.println("We stand after the last row: " + xRes.isAfterLast());  in showRowSetEvents()
 
 | 
| /aoo4110/main/svx/inc/svx/ | 
| H A D | fmtools.hxx | 156 	sal_Bool isAfterLast() const				{ return m_xMoveOperations->isAfterLast(); }  in isAfterLast()  function in CursorWrapper
 | 
| /aoo4110/main/xmlhelp/source/cxxhelp/provider/ | 
| H A D | resultsetbase.cxx | 191 ResultSetBase::isAfterLast(  in isAfterLast()  function in ResultSetBase304 	if( isAfterLast() || isBeforeFirst() )  in relative()
 
 | 
| /aoo4110/main/ucb/source/ucp/ftp/ | 
| H A D | ftpresultsetbase.cxx | 191 ResultSetBase::isAfterLast(  in isAfterLast()  function in ResultSetBase304 	if( isAfterLast() || isBeforeFirst() )  in relative()
 
 | 
| /aoo4110/main/ucb/source/ucp/file/ | 
| H A D | filrset.cxx | 385 XResultSet_impl::isAfterLast(  in isAfterLast()  function in XResultSet_impl508 	if( isAfterLast() || isBeforeFirst() )  in relative()
 
 | 
| /aoo4110/main/connectivity/source/commontools/ | 
| H A D | FDatabaseMetaDataResultSet.cxx | 325 sal_Bool SAL_CALL ODatabaseMetaDataResultSet::isAfterLast(  ) throw(SQLException, RuntimeException)  in isAfterLast()  function in ODatabaseMetaDataResultSet634     if ( isBeforeFirst() || isAfterLast() )  in getValue()
 
 | 
| /aoo4110/main/ucb/source/cacher/ | 
| H A D | cachedcontentresultset.cxx | 1512 	sal_Bool bIsAfterLast = m_xResultSetOrigin->isAfterLast();  in absolute()1694 	::isAfterLast()  in isAfterLast()  function in CachedContentResultSet
 1722 	return m_xResultSetOrigin->isAfterLast();  in isAfterLast()
 
 | 
| H A D | contentresultsetwrapper.cxx | 1030 	::isAfterLast()  in isAfterLast()  function in ContentResultSetWrapper1041 	return m_xResultSetOrigin->isAfterLast();  in isAfterLast()
 
 | 
| H A D | cachedcontentresultsetstub.cxx | 288 	bOldOriginal_AfterLast = m_xResultSetOrigin->isAfterLast(); \
 | 
| /aoo4110/main/qadevOOo/tests/java/ifc/sdbc/ | 
| H A D | _XResultSet.java | 170             result = oObj.isAfterLast() ;  in _isAfterLast()
 | 
| /aoo4110/main/mysqlc/source/ | 
| H A D | mysqlc_resultset.cxx | 644 sal_Bool SAL_CALL OResultSet::isAfterLast()  in isAfterLast()  function in OResultSet652 		return m_result->isAfterLast()? sal_True:sal_False;  in isAfterLast()
 
 |