summaryrefslogtreecommitdiff
path: root/i18npool/source/search
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-01-19 17:56:23 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-01-19 18:03:19 +0100
commit18f40d26ec03dbd23f254c2cfe95e4783fd33449 (patch)
tree7a8099ed9f7096eb323b56daab52fff03501294e /i18npool/source/search
parent25df36cf04b6ad94da09725a0bfe012b404b7de2 (diff)
New loplugin:dynexcspec: Add @throws documentation, i18npool
Change-Id: Ie1304a081a8c26cb3204ca7fb3edfa7e2dfae386
Diffstat (limited to 'i18npool/source/search')
-rw-r--r--i18npool/source/search/textsearch.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/i18npool/source/search/textsearch.hxx b/i18npool/source/search/textsearch.hxx
index 5ed122b73dd5..cd8712b18a91 100644
--- a/i18npool/source/search/textsearch.hxx
+++ b/i18npool/source/search/textsearch.hxx
@@ -72,10 +72,12 @@ class TextSearch: public cppu::WeakImplHelper
void MakeBackwardTab();
void MakeBackwardTab2();
sal_Int32 GetDiff( const sal_Unicode ) const;
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
NSrchFrwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
NSrchBkwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
@@ -83,10 +85,12 @@ class TextSearch: public cppu::WeakImplHelper
// Members and methods for the regular expression search
RegexMatcher* pRegexMatcher;
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
RESrchFrwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
RESrchBkwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
@@ -97,10 +101,12 @@ class TextSearch: public cppu::WeakImplHelper
int nLimit;
WLevDistance* pWLD;
css::uno::Reference < css::i18n::XBreakIterator > xBreak;
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
ApproxSrchFrwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
ApproxSrchBkwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
@@ -111,10 +117,12 @@ class TextSearch: public cppu::WeakImplHelper
OUString maWildcardReversePattern2;
sal_uInt32 mcWildcardEscapeChar;
bool mbWildcardAllowSubstring;
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
WildcardSrchFrwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
throw(css::uno::RuntimeException);
+ /// @throws css::uno::RuntimeException
css::util::SearchResult SAL_CALL
WildcardSrchBkwrd( const OUString& searchStr,
sal_Int32 startPos, sal_Int32 endPos )
@@ -123,6 +131,7 @@ class TextSearch: public cppu::WeakImplHelper
bool IsDelimiter( const OUString& rStr, sal_Int32 nPos ) const;
bool checkCTLStart, checkCTLEnd;
+ /// @throws css::uno::RuntimeException
bool SAL_CALL isCellStart(const OUString& searchStr, sal_Int32 nPos)
throw(css::uno::RuntimeException);