| /aoo4110/main/offapi/com/sun/star/sdbcx/ | 
| H A D | XRowLocate.idl | 52 			the current bookmark68 		@param bookmark
 69 			the bookmark where to move
 79 		starting at a given bookmark position.
 89 		@param bookmark
 90 			the bookmark where to move
 92 			count of rows move relative to the bookmark
 112 			the first bookmark
 114 			the second bookmark
 138 		@param bookmark
 [all …]
 
 | 
| H A D | CompareBookmark.idl | 34 	/** the first bookmark is before the second.39 	/** the first bookmark is equal to the second.
 44 	/** the first bookmark is after the second one.
 49 	/** the first bookmark is not the same as the second one.
 
 | 
| H A D | ResultSet.idl | 36 /** extends the SDBC ResultSet by the possibility of bookmark positioning, cancelling56 	/** is the interface for deleting more than one row, identified by it's bookmark.
 62 	/** returns if the resultset supports bookmark navigation.
 
 | 
| /aoo4110/main/connectivity/source/drivers/calc/ | 
| H A D | CResultSet.cxx | 98 sal_Bool SAL_CALL OCalcResultSet::moveToBookmark( const  Any& bookmark ) throw( SQLException,  Runt…  in moveToBookmark()  argument106 	return Move(IResultSetHelper::BOOKMARK,comphelper::getINT32(bookmark),sal_True);  in moveToBookmark()
 109 sal_Bool SAL_CALL OCalcResultSet::moveRelativeToBookmark( const  Any& bookmark, sal_Int32 rows ) th…  in moveRelativeToBookmark()  argument
 117 	Move(IResultSetHelper::BOOKMARK,comphelper::getINT32(bookmark),sal_False);  in moveRelativeToBookmark()
 133 sal_Int32 SAL_CALL OCalcResultSet::hashBookmark( const  Any& bookmark ) throw( SQLException,  Runti…  in hashBookmark()  argument
 139 	return comphelper::getINT32(bookmark);  in hashBookmark()
 
 | 
| /aoo4110/main/connectivity/source/drivers/flat/ | 
| H A D | EResultSet.cxx | 118 sal_Bool SAL_CALL OFlatResultSet::moveToBookmark( const  Any& bookmark ) throw( SQLException,  Runt…  in moveToBookmark()  argument126 	return Move(IResultSetHelper::BOOKMARK,comphelper::getINT32(bookmark),sal_True);  in moveToBookmark()
 129 sal_Bool SAL_CALL OFlatResultSet::moveRelativeToBookmark( const  Any& bookmark, sal_Int32 rows ) th…  in moveRelativeToBookmark()  argument
 137 	Move(IResultSetHelper::BOOKMARK,comphelper::getINT32(bookmark),sal_False);  in moveRelativeToBookmark()
 153 sal_Int32 SAL_CALL OFlatResultSet::hashBookmark( const  Any& bookmark ) throw( SQLException,  Runti…  in hashBookmark()  argument
 155 	return comphelper::getINT32(bookmark);  in hashBookmark()
 
 | 
| /aoo4110/main/connectivity/source/drivers/dbase/ | 
| H A D | DResultSet.cxx | 103 sal_Bool SAL_CALL ODbaseResultSet::moveToBookmark( const  Any& bookmark ) throw( SQLException,  Run…  in moveToBookmark()  argument111 …return m_pTable ? Move(IResultSetHelper::BOOKMARK,comphelper::getINT32(bookmark),sal_True) : sal_F…  in moveToBookmark()
 114 sal_Bool SAL_CALL ODbaseResultSet::moveRelativeToBookmark( const  Any& bookmark, sal_Int32 rows ) t…  in moveRelativeToBookmark()  argument
 122 	Move(IResultSetHelper::BOOKMARK,comphelper::getINT32(bookmark),sal_False);  in moveRelativeToBookmark()
 155 sal_Int32 SAL_CALL ODbaseResultSet::hashBookmark( const  Any& bookmark ) throw( SQLException,  Runt…  in hashBookmark()  argument
 161 	return comphelper::getINT32(bookmark);  in hashBookmark()
 
 | 
| /aoo4110/main/dbaccess/source/core/api/ | 
| H A D | WrappedResultSet.cxx | 67 sal_Bool SAL_CALL WrappedResultSet::moveToBookmark( const Any& bookmark ) throw(SQLException, Runti…  in moveToBookmark()  argument70     return m_xRowLocate->moveToBookmark( bookmark );  in moveToBookmark()
 73 sal_Bool SAL_CALL WrappedResultSet::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) t…  in moveRelativeToBookmark()  argument
 76     return m_xRowLocate->moveRelativeToBookmark( bookmark,rows );  in moveRelativeToBookmark()
 91 sal_Int32 SAL_CALL WrappedResultSet::hashBookmark( const Any& bookmark ) throw(SQLException, Runtim…  in hashBookmark()  argument
 94     return m_xRowLocate->hashBookmark(bookmark);  in hashBookmark()
 
 | 
| H A D | BookmarkSet.cxx | 71 sal_Bool SAL_CALL OBookmarkSet::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeEx…  in moveToBookmark()  argument74 	return m_xRowLocate->moveToBookmark(bookmark);  in moveToBookmark()
 77 sal_Bool SAL_CALL OBookmarkSet::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw…  in moveRelativeToBookmark()  argument
 80 	return m_xRowLocate->moveRelativeToBookmark(bookmark,rows);  in moveRelativeToBookmark()
 95 sal_Int32 SAL_CALL OBookmarkSet::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeExc…  in hashBookmark()  argument
 98 	return m_xRowLocate->hashBookmark(bookmark);  in hashBookmark()
 
 | 
| H A D | StaticSet.cxx | 82 sal_Bool SAL_CALL OStaticSet::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeExce…  in moveToBookmark()  argument86 	return absolute(::comphelper::getINT32(bookmark));  in moveToBookmark()
 89 sal_Bool SAL_CALL OStaticSet::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw(S…  in moveRelativeToBookmark()  argument
 93 	return absolute(::comphelper::getINT32(bookmark)+rows);  in moveRelativeToBookmark()
 111 sal_Int32 SAL_CALL OStaticSet::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeExcep…  in hashBookmark()  argument
 114 	return ::comphelper::getINT32(bookmark);  in hashBookmark()
 
 | 
| H A D | RowSetBase.cxx | 472 sal_Bool SAL_CALL ORowSetBase::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeExc…  in moveToBookmark()  argument476 	OSL_ENSURE(bookmark.hasValue(),"ORowSetBase::moveToBookmark bookmark has no value!");  in moveToBookmark()
 479 	if(!bookmark.hasValue() || m_nResultSetType == ResultSetType::FORWARD_ONLY)  in moveToBookmark()
 481 		if(bookmark.hasValue())  in moveToBookmark()
 502 		bRet = m_pCache->moveToBookmark(bookmark);  in moveToBookmark()
 524 sal_Bool SAL_CALL ORowSetBase::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw(…  in moveRelativeToBookmark()  argument
 545 		bRet = m_pCache->moveRelativeToBookmark(bookmark,rows);  in moveRelativeToBookmark()
 584 sal_Int32 SAL_CALL ORowSetBase::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeExce…  in hashBookmark()  argument
 589 	return m_pCache->hashBookmark(bookmark);  in hashBookmark()
 
 | 
| H A D | BookmarkSet.hxx | 54 …virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com…55 …virtual sal_Bool SAL_CALL moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_…
 58 …virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com:…
 
 | 
| H A D | WrappedResultSet.hxx | 55 …virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com…56 …virtual sal_Bool SAL_CALL moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_…
 59 …virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com:…
 
 | 
| H A D | StaticSet.hxx | 53 …virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com…54 …virtual sal_Bool SAL_CALL moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_…
 57 …virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com:…
 
 | 
| H A D | RowSetCache.hxx | 221 		sal_Bool moveToBookmark( const ::com::sun::star::uno::Any& bookmark );222 		sal_Bool moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_Int32 rows );
 225 		sal_Int32 hashBookmark( const ::com::sun::star::uno::Any& bookmark );
 
 | 
| H A D | resultset.cxx | 1054 sal_Bool OResultSet::moveToBookmark(const Any& bookmark) throw( SQLException, RuntimeException )  in moveToBookmark()  argument1062 	return Reference< XRowLocate >(m_xDelegatorResultSet, UNO_QUERY)->moveToBookmark(bookmark);  in moveToBookmark()
 1066 sal_Bool OResultSet::moveRelativeToBookmark(const Any& bookmark, sal_Int32 rows) throw( SQLExceptio…  in moveRelativeToBookmark()  argument
 1074 …return Reference< XRowLocate >(m_xDelegatorResultSet, UNO_QUERY)->moveRelativeToBookmark(bookmark,…  in moveRelativeToBookmark()
 1102 sal_Int32 OResultSet::hashBookmark(const Any& bookmark) throw( SQLException, RuntimeException )  in hashBookmark()  argument
 1110 	return Reference< XRowLocate >(m_xDelegatorResultSet, UNO_QUERY)->hashBookmark(bookmark);  in hashBookmark()
 
 | 
| /aoo4110/main/svx/inc/svx/ | 
| H A D | fmtools.hxx | 148 …bookmark) throw( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException ) {…  in moveToBookmark()  argument149 …bookmark, sal_Int32 rows) throw( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::Runt…  in moveRelativeToBookmark()  argument
 152 …bookmark) const throw( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeExcepti…  in hashBookmark()
 
 | 
| /aoo4110/main/offapi/com/sun/star/text/ | 
| H A D | ReferenceFieldPart.idl | 84 … <p>This option is only valid, if the source of the reference is a bookmark or a set reference.</p>85 …         <p>The contents of the list label of the paragraph, at which the bookmark respectively the
 103 … <p>This option is only valid, if the source of the reference is a bookmark or a set reference.</p>
 104 …         <p>The contents of the list label of the paragraph, at which the bookmark respectively the
 113 … <p>This option is only valid, if the source of the reference is a bookmark or a set reference.</p>
 114 …         <p>The contents of the list label of the paragraph, at which the bookmark respectively the
 
 | 
| H A D | SectionFileLink.idl | 41 	<p>The bookmark of the URL (after the "#") is the name of a bookmark42 	or a section name in the linked document.  If a bookmark or section
 
 | 
| H A D | TextPortion.idl | 103         <dt>Bookmark</dt><dd>a bookmark</dd>125     /** contains the bookmark of a text portion of type Bookmark. */
 136     /** contains the bookmark of a text portion of type ReferenceMark. */
 
 | 
| /aoo4110/main/connectivity/source/inc/flat/ | 
| H A D | EResultSet.hxx | 68 …virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com…69 …Bool SAL_CALL moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_Int32 rows )…
 72 …virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com:…
 
 | 
| /aoo4110/main/connectivity/source/inc/calc/ | 
| H A D | CResultSet.hxx | 71 …virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com…72 …Bool SAL_CALL moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_Int32 rows )…
 75 …virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com:…
 
 | 
| /aoo4110/main/connectivity/source/inc/dbase/ | 
| H A D | DResultSet.hxx | 71 …virtual sal_Bool SAL_CALL moveToBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com…72 …Bool SAL_CALL moveRelativeToBookmark( const ::com::sun::star::uno::Any& bookmark, sal_Int32 rows )…
 75 …virtual sal_Int32 SAL_CALL hashBookmark( const ::com::sun::star::uno::Any& bookmark ) throw(::com:…
 
 | 
| /aoo4110/main/connectivity/source/drivers/kab/ | 
| H A D | KResultSet.cxx | 819 sal_Bool SAL_CALL KabResultSet::moveToBookmark(const  Any& bookmark) throw( SQLException,  RuntimeE…  in moveToBookmark()  argument824 	::rtl::OUString sBookmark = comphelper::getString(bookmark);  in moveToBookmark()
 841 sal_Bool SAL_CALL KabResultSet::moveRelativeToBookmark(const  Any& bookmark, sal_Int32 rows) throw(…  in moveRelativeToBookmark()  argument
 848 	if (moveToBookmark(bookmark))  in moveRelativeToBookmark()
 882 sal_Int32 SAL_CALL KabResultSet::hashBookmark(const  Any& bookmark) throw( SQLException,  RuntimeEx…  in hashBookmark()  argument
 887 	::rtl::OUString sBookmark = comphelper::getString(bookmark);  in hashBookmark()
 
 | 
| /aoo4110/main/connectivity/source/drivers/macab/ | 
| H A D | MacabResultSet.cxx | 900 sal_Bool SAL_CALL MacabResultSet::moveToBookmark(const  Any& bookmark) throw( SQLException,  Runtim…  in moveToBookmark()  argument905 	::rtl::OUString sBookmark = comphelper::getString(bookmark);  in moveToBookmark()
 927 sal_Bool SAL_CALL MacabResultSet::moveRelativeToBookmark(const  Any& bookmark, sal_Int32 rows) thro…  in moveRelativeToBookmark()  argument
 934 	if (moveToBookmark(bookmark))  in moveRelativeToBookmark()
 968 sal_Int32 SAL_CALL MacabResultSet::hashBookmark(const  Any& bookmark) throw( SQLException,  Runtime…  in hashBookmark()  argument
 973 	::rtl::OUString sBookmark = comphelper::getString(bookmark);  in hashBookmark()
 
 | 
| /aoo4110/main/connectivity/source/drivers/ado/ | 
| H A D | AResultSet.cxx | 842 sal_Bool SAL_CALL OResultSet::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeExce…  in moveToBookmark()  argument849 	bookmark >>= nPos;  in moveToBookmark()
 857 sal_Bool SAL_CALL OResultSet::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw(S…  in moveRelativeToBookmark()  argument
 864 	bookmark >>= nPos;  in moveRelativeToBookmark()
 917 sal_Int32 SAL_CALL OResultSet::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeExcep…  in hashBookmark()  argument
 924 	bookmark >>= nPos;  in hashBookmark()
 
 |