Home
last modified time | relevance | path

Searched refs:bookmark (Results 1 – 25 of 179) sorted by relevance

12345678

/trunk/main/offapi/com/sun/star/sdbcx/
H A DXRowLocate.idl52 the current bookmark
68 @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 DCompareBookmark.idl34 /** 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 DResultSet.idl36 /** extends the SDBC ResultSet by the possibility of bookmark positioning, cancelling
56 /** is the interface for deleting more than one row, identified by it's bookmark.
62 /** returns if the resultset supports bookmark navigation.
/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DCustomResultSet.java388 int bookmark; in hashBookmark() local
390 bookmark = AnyConverter.toInt(arg0); in hashBookmark()
394 return bookmark; in hashBookmark()
399 int bookmark; in moveRelativeToBookmark() local
402 bookmark = AnyConverter.toInt(arg0); in moveRelativeToBookmark()
403 moved = absolute(bookmark); in moveRelativeToBookmark()
417 int bookmark; in moveToBookmark() local
420 bookmark = AnyConverter.toInt(arg0); in moveToBookmark()
421 moved = absolute(bookmark); in moveToBookmark()
H A DDatabaseMetaDataResultSet.java433 int bookmark; in hashBookmark() local
435 bookmark = AnyConverter.toInt(arg0); in hashBookmark()
439 return bookmark; in hashBookmark()
444 int bookmark; in moveRelativeToBookmark() local
447 bookmark = AnyConverter.toInt(arg0); in moveRelativeToBookmark()
448 moved = absolute(bookmark); in moveRelativeToBookmark()
462 int bookmark; in moveToBookmark() local
465 bookmark = AnyConverter.toInt(arg0); in moveToBookmark()
466 moved = absolute(bookmark); in moveToBookmark()
/trunk/main/connectivity/source/drivers/calc/
H A DCResultSet.cxx98 sal_Bool SAL_CALL OCalcResultSet::moveToBookmark( const Any& bookmark ) throw( SQLException, Runt… in moveToBookmark() argument
106 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()
/trunk/main/connectivity/source/drivers/flat/
H A DEResultSet.cxx118 sal_Bool SAL_CALL OFlatResultSet::moveToBookmark( const Any& bookmark ) throw( SQLException, Runt… in moveToBookmark() argument
126 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()
/trunk/main/connectivity/source/drivers/dbase/
H A DDResultSet.cxx103 sal_Bool SAL_CALL ODbaseResultSet::moveToBookmark( const Any& bookmark ) throw( SQLException, Run… in moveToBookmark() argument
111 …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()
/trunk/main/dbaccess/source/core/api/
H A DWrappedResultSet.cxx67 sal_Bool SAL_CALL WrappedResultSet::moveToBookmark( const Any& bookmark ) throw(SQLException, Runti… in moveToBookmark() argument
70 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 DBookmarkSet.cxx61 sal_Bool SAL_CALL OBookmarkSet::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeEx… in moveToBookmark() argument
64 return m_xRowLocate->moveToBookmark(bookmark); in moveToBookmark()
67 sal_Bool SAL_CALL OBookmarkSet::moveRelativeToBookmark( const Any& bookmark, sal_Int32 rows ) throw… in moveRelativeToBookmark() argument
70 return m_xRowLocate->moveRelativeToBookmark(bookmark,rows); in moveRelativeToBookmark()
85 sal_Int32 SAL_CALL OBookmarkSet::hashBookmark( const Any& bookmark ) throw(SQLException, RuntimeExc… in hashBookmark() argument
88 return m_xRowLocate->hashBookmark(bookmark); in hashBookmark()
H A DStaticSet.cxx82 sal_Bool SAL_CALL OStaticSet::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeExce… in moveToBookmark() argument
86 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 DRowSetBase.cxx472 sal_Bool SAL_CALL ORowSetBase::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeExc… in moveToBookmark() argument
476 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 DBookmarkSet.hxx54 …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 DWrappedResultSet.hxx55 …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 DStaticSet.hxx53 …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 Dresultset.cxx1054 sal_Bool OResultSet::moveToBookmark(const Any& bookmark) throw( SQLException, RuntimeException ) in moveToBookmark() argument
1062 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()
H A DRowSetCache.hxx221 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 );
/trunk/main/svx/inc/svx/
H A Dfmtools.hxx148bookmark) throw( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeException ) {… in moveToBookmark() argument
149bookmark, sal_Int32 rows) throw( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::Runt… in moveRelativeToBookmark() argument
152bookmark) const throw( ::com::sun::star::sdbc::SQLException, ::com::sun::star::uno::RuntimeExcepti… in hashBookmark()
/trunk/main/offapi/com/sun/star/text/
H A DReferenceFieldPart.idl84 … <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 DSectionFileLink.idl41 <p>The bookmark of the URL (after the "#") is the name of a bookmark
42 or a section name in the linked document. If a bookmark or section
/trunk/main/connectivity/source/inc/flat/
H A DEResultSet.hxx68 …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:…
/trunk/main/connectivity/source/inc/calc/
H A DCResultSet.hxx71 …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:…
/trunk/main/connectivity/source/inc/dbase/
H A DDResultSet.hxx71 …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:…
/trunk/main/connectivity/source/drivers/macab/
H A DMacabResultSet.cxx900 sal_Bool SAL_CALL MacabResultSet::moveToBookmark(const Any& bookmark) throw( SQLException, Runtim… in moveToBookmark() argument
905 ::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()
/trunk/main/connectivity/source/drivers/ado/
H A DAResultSet.cxx842 sal_Bool SAL_CALL OResultSet::moveToBookmark( const Any& bookmark ) throw(SQLException, RuntimeExce… in moveToBookmark() argument
849 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()

Completed in 126 milliseconds

12345678