compilerplugins/clang/unusedmethods.py                     |    9 
 compilerplugins/clang/unusedmethods.results                | 3384 ++++++++-----
 compilerplugins/clang/unusedmethods.unused-returns.results |  428 -
 dbaccess/source/ui/inc/sbamultiplex.hxx                    |    3 
 include/editeng/brushitem.hxx                              |    1 
 writerfilter/source/dmapper/DomainMapper.cxx               |    7 
 writerfilter/source/dmapper/DomainMapper.hxx               |    3 
 writerfilter/source/dmapper/GraphicHelpers.cxx             |   19 
 writerfilter/source/dmapper/GraphicHelpers.hxx             |   11 
 9 files changed, 2363 insertions(+), 1502 deletions(-)

New commits:
commit cb41806ad98a394333234fce02ad8681f1a4604c
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Fri Aug 12 15:03:23 2022 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Sat Aug 13 08:34:01 2022 +0200

    loplugin:unusedmethods
    
    tweak the python script to code with some clang weirdnes
    
    Change-Id: I88fc9f901748ff44af2b67704cc437b770ef0737
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138196
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/compilerplugins/clang/unusedmethods.py 
b/compilerplugins/clang/unusedmethods.py
index 1a04e81809d2..9f584f535a19 100755
--- a/compilerplugins/clang/unusedmethods.py
+++ b/compilerplugins/clang/unusedmethods.py
@@ -25,9 +25,14 @@ usedReturnSet = set() # set of tuple(return_type, 
name_and_params)
 
 # clang does not always use exactly the same numbers in the type-parameter 
vars it generates
 # so I need to substitute them to ensure we can match correctly.
-normalizeTypeParamsRegex = re.compile(r"type-parameter-\d+-\d+")
+normalizeTypeParamsRegex1 = re.compile(r"type-parameter-\d+-\d+")
+# clang sometimes generates a type name as either "class Foo" or "Foo"
+# so I need to substitute them to ensure we can match correctly.
+normalizeTypeParamsRegex2 = re.compile(r"class ")
 def normalizeTypeParams( line ):
-    return normalizeTypeParamsRegex.sub("type-parameter-?-?", line)
+    line = normalizeTypeParamsRegex1.sub("type-parameter-?-?", line)
+    line = normalizeTypeParamsRegex2.sub("", line)
+    return line
 
 # 
--------------------------------------------------------------------------------------------
 # primary input loop
diff --git a/compilerplugins/clang/unusedmethods.results 
b/compilerplugins/clang/unusedmethods.results
index 2e63c737fc44..1dd04177ee82 100644
--- a/compilerplugins/clang/unusedmethods.results
+++ b/compilerplugins/clang/unusedmethods.results
@@ -1,4 +1,4 @@
-basegfx/source/range/b2drangeclipper.cxx:687
+basegfx/source/range/b2drangeclipper.cxx:686
     type-parameter-?-? basegfx::(anonymous 
namespace)::eraseFromList(type-parameter-?-? &,const type-parameter-?-? &)
 basic/source/inc/buffer.hxx:40
     void SbiBuffer::operator+=(signed char)
@@ -21,15 +21,15 @@ canvas/inc/rendering/icolorbuffer.hxx:70
 canvas/inc/rendering/isurfaceproxy.hxx:38
     void canvas::ISurfaceProxy::setColorBufferDirty()
 canvas/inc/rendering/isurfaceproxy.hxx:51
-    _Bool canvas::ISurfaceProxy::draw(double,const class basegfx::B2DPoint 
&,const class basegfx::B2DHomMatrix &)
+    _Bool canvas::ISurfaceProxy::draw(double,const basegfx::B2DPoint &,const 
basegfx::B2DHomMatrix &)
 canvas/inc/rendering/isurfaceproxy.hxx:71
-    _Bool canvas::ISurfaceProxy::draw(double,const class basegfx::B2DPoint 
&,const class basegfx::B2DRange &,const class basegfx::B2DHomMatrix &)
+    _Bool canvas::ISurfaceProxy::draw(double,const basegfx::B2DPoint &,const 
basegfx::B2DRange &,const basegfx::B2DHomMatrix &)
 canvas/inc/rendering/isurfaceproxy.hxx:91
-    _Bool canvas::ISurfaceProxy::draw(double,const class basegfx::B2DPoint 
&,const class basegfx::B2DPolyPolygon &,const class basegfx::B2DHomMatrix &)
+    _Bool canvas::ISurfaceProxy::draw(double,const basegfx::B2DPoint &,const 
basegfx::B2DPolyPolygon &,const basegfx::B2DHomMatrix &)
 canvas/inc/rendering/isurfaceproxymanager.hxx:57
-    class std::shared_ptr<struct canvas::ISurfaceProxy> 
canvas::ISurfaceProxyManager::createSurfaceProxy(const class 
std::shared_ptr<struct canvas::IColorBuffer> &) const
+    std::shared_ptr<struct canvas::ISurfaceProxy> 
canvas::ISurfaceProxyManager::createSurfaceProxy(const std::shared_ptr<struct 
canvas::IColorBuffer> &) const
 canvas/inc/rendering/isurfaceproxymanager.hxx:63
-    class std::shared_ptr<struct canvas::ISurfaceProxyManager> 
canvas::createSurfaceProxyManager(const class std::shared_ptr<struct 
canvas::IRenderModule> &)
+    std::shared_ptr<struct canvas::ISurfaceProxyManager> 
canvas::createSurfaceProxyManager(const std::shared_ptr<struct 
canvas::IRenderModule> &)
 canvas/inc/vclwrapper.hxx:66
      
canvas::vcltools::VCLObject::VCLObject<Wrappee_>(unique_ptr<type-parameter-?-?, 
default_delete<type-parameter-?-?> >)
 canvas/inc/vclwrapper.hxx:135
@@ -40,100 +40,102 @@ canvas/inc/vclwrapper.hxx:138
     void canvas::vcltools::VCLObject::swap(VCLObject<Wrappee_> &)
 canvas/source/vcl/impltools.hxx:102
      vclcanvas::tools::LocalGuard::LocalGuard()
+chart2/source/view/axes/VAxisBase.hxx:70
+    std::shared_ptr<chart::DataTableView> chart::VAxisBase::getDataTableView()
 connectivity/inc/sdbcx/VGroup.hxx:61
      connectivity::sdbcx::OGroup::OGroup(_Bool)
 connectivity/inc/sdbcx/VGroup.hxx:62
-     connectivity::sdbcx::OGroup::OGroup(const class rtl::OUString &,_Bool)
+     connectivity::sdbcx::OGroup::OGroup(const rtl::OUString &,_Bool)
 connectivity/source/drivers/evoab2/NResultSet.hxx:60
-    class rtl::OString 
connectivity::evoab::OEvoabVersionHelper::getUserName(void *)
+    rtl::OString connectivity::evoab::OEvoabVersionHelper::getUserName(void *)
 connectivity/source/drivers/evoab2/NResultSetMetaData.hxx:49
-    class com::sun::star::uno::Reference<class 
com::sun::star::sdbc::XResultSetMetaData> 
connectivity::evoab::OEvoabResultSetMetaData::operator Reference()
-connectivity/source/drivers/firebird/Driver.hxx:61
-    const class com::sun::star::uno::Reference<class 
com::sun::star::uno::XComponentContext> & 
connectivity::firebird::FirebirdDriver::getContext() const
-connectivity/source/drivers/firebird/Util.hxx:65
-     connectivity::firebird::ColumnTypeInfo::ColumnTypeInfo(short,const class 
rtl::OUString &)
-connectivity/source/drivers/firebird/Util.hxx:70
-    short connectivity::firebird::ColumnTypeInfo::getType() const
-connectivity/source/drivers/firebird/Util.hxx:71
-    short connectivity::firebird::ColumnTypeInfo::getSubType() const
-connectivity/source/drivers/firebird/Util.hxx:73
-    const class rtl::OUString & 
connectivity::firebird::ColumnTypeInfo::getCharacterSet() const
-connectivity/source/drivers/mysqlc/mysqlc_connection.hxx:176
-    class rtl::OUString 
connectivity::mysqlc::OConnection::transFormPreparedStatement(const class 
rtl::OUString &)
+    com::sun::star::uno::Reference<com::sun::star::sdbc::XResultSetMetaData> 
connectivity::evoab::OEvoabResultSetMetaData::operator Reference()
+connectivity/source/drivers/mysqlc/mysqlc_connection.hxx:180
+    rtl::OUString 
connectivity::mysqlc::OConnection::transFormPreparedStatement(const 
rtl::OUString &)
 connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:93
     type-parameter-?-? 
connectivity::mysqlc::OPreparedResultSet::safelyRetrieveValue(const int)
 connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:94
     type-parameter-?-? 
connectivity::mysqlc::OPreparedResultSet::retrieveValue(const int)
+connectivity/source/drivers/mysqlc/mysqlc_user.hxx:28
+     
connectivity::mysqlc::User::User(com::sun::star::uno::Reference<com::sun::star::sdbc::XConnection>)
+connectivity/source/drivers/mysqlc/mysqlc_user.hxx:32
+     
connectivity::mysqlc::User::User(com::sun::star::uno::Reference<com::sun::star::sdbc::XConnection>,const
 rtl::OUString &)
+connectivity/source/inc/calc/CDriver.hxx:30
+    com::sun::star::uno::Reference<com::sun::star::uno::XInterface> 
connectivity::calc::ODriver_CreateInstance(const 
com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
+connectivity/source/inc/dbase/DDriver.hxx:29
+    com::sun::star::uno::Reference<com::sun::star::uno::XInterface> 
connectivity::dbase::ODriver_CreateInstance(const 
com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
 connectivity/source/inc/dbase/dindexnode.hxx:64
-    _Bool connectivity::dbase::ONDXKey::operator<(const class 
connectivity::dbase::ONDXKey &) const
+    _Bool connectivity::dbase::ONDXKey::operator<(const 
connectivity::dbase::ONDXKey &) const
+connectivity/source/inc/flat/EDriver.hxx:29
+    com::sun::star::uno::Reference<com::sun::star::uno::XInterface> 
connectivity::flat::ODriver_CreateInstance(const 
com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
 connectivity/source/inc/java/sql/Connection.hxx:60
-    class rtl::OUString 
connectivity::java_sql_Connection::transFormPreparedStatement(const class 
rtl::OUString &)
-connectivity/source/inc/OColumn.hxx:102
-    _Bool connectivity::OColumn::isReadOnly() const
+    rtl::OUString 
connectivity::java_sql_Connection::transFormPreparedStatement(const 
rtl::OUString &)
 connectivity/source/inc/OColumn.hxx:103
-    _Bool connectivity::OColumn::isWritable() const
+    _Bool connectivity::OColumn::isReadOnly() const
 connectivity/source/inc/OColumn.hxx:104
+    _Bool connectivity::OColumn::isWritable() const
+connectivity/source/inc/OColumn.hxx:105
     _Bool connectivity::OColumn::isDefinitelyWritable() const
 connectivity/source/inc/odbc/OConnection.hxx:117
-    class connectivity::odbc::ODBCDriver * 
connectivity::odbc::OConnection::getDriver() const
+    connectivity::odbc::ODBCDriver * 
connectivity::odbc::OConnection::getDriver() const
 connectivity/source/inc/odbc/ODriver.hxx:71
-    const class com::sun::star::uno::Reference<class 
com::sun::star::uno::XComponentContext> & 
connectivity::odbc::ODBCDriver::getContext() const
+    const 
com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> & 
connectivity::odbc::ODBCDriver::getContext() const
 connectivity/source/inc/odbc/OPreparedStatement.hxx:70
     void 
connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned 
long,const type-parameter-?-?)
 connectivity/source/inc/odbc/OPreparedStatement.hxx:71
     void 
connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned 
long,int,const type-parameter-?-?)
+connectivity/source/inc/OTypeInfo.hxx:39
+     connectivity::OTypeInfo::OTypeInfo()
 connectivity/source/inc/OTypeInfo.hxx:45
     _Bool connectivity::OTypeInfo::operator==(const struct 
connectivity::OTypeInfo &) const
 connectivity/source/inc/OTypeInfo.hxx:46
     _Bool connectivity::OTypeInfo::operator!=(const struct 
connectivity::OTypeInfo &) const
-cui/source/dialogs/SpellAttrib.hxx:72
+cui/source/dialogs/SpellAttrib.hxx:73
     _Bool svx::SpellErrorDescription::operator==(const struct 
svx::SpellErrorDescription &) const
-cui/source/inc/cuihyperdlg.hxx:110
-    _Bool SvxHpLinkDlg::AskApply(_Bool)
 cui/source/inc/CustomNotebookbarGenerator.hxx:30
      CustomNotebookbarGenerator::CustomNotebookbarGenerator()
 cui/source/inc/fileextcheckdlg.hxx:32
-    void FileExtCheckDialog::LinkStubOnOkClick(void *,class weld::Button &)
+    void FileExtCheckDialog::LinkStubOnOkClick(void *,weld::Button &)
 cui/source/inc/fileextcheckdlg.hxx:32
-    void FileExtCheckDialog::OnOkClick(class weld::Button &)
+    void FileExtCheckDialog::OnOkClick(weld::Button &)
 cui/source/inc/fileextcheckdlg.hxx:35
-     FileExtCheckDialog::FileExtCheckDialog(class weld::Window *,const class 
rtl::OUString &,const class rtl::OUString &)
-cui/source/inc/GraphicsTestsDialog.hxx:52
-    void GraphicsTestsDialog::HandleResultViewRequest(class weld::Button &)
-cui/source/inc/GraphicsTestsDialog.hxx:52
-    void GraphicsTestsDialog::LinkStubHandleResultViewRequest(void *,class 
weld::Button &)
+     FileExtCheckDialog::FileExtCheckDialog(weld::Window *,const rtl::OUString 
&,const rtl::OUString &)
+cui/source/inc/GraphicsTestsDialog.hxx:48
+    void GraphicsTestsDialog::HandleResultViewRequest(weld::Button &)
+cui/source/inc/GraphicsTestsDialog.hxx:48
+    void GraphicsTestsDialog::LinkStubHandleResultViewRequest(void 
*,weld::Button &)
 cui/source/inc/SvxNotebookbarConfigPage.hxx:40
     void SvxNotebookbarConfigPage::SetElement()
+dbaccess/qa/unit/dbtest_base.cxx:36
+    
com::sun::star::uno::Reference<com::sun::star::sdb::XOfficeDatabaseDocument> 
DBTestBase::getDocumentForFileName(std::basic_string_view<char16_t>)
 dbaccess/source/filter/hsqldb/fbalterparser.hxx:19
     void dbahsql::FbAlterStmtParser::ensureProperTableLengths() const
 dbaccess/source/filter/hsqldb/parseschema.hxx:80
-    const class std::map<class rtl::OUString, class std::vector<class 
rtl::OUString> > & dbahsql::SchemaParser::getPrimaryKeys() const
+    const std::map<rtl::OUString, std::vector<rtl::OUString> > & 
dbahsql::SchemaParser::getPrimaryKeys() const
 dbaccess/source/ui/inc/dsmeta.hxx:88
-    class __gnu_debug::_Safe_iterator<struct 
std::_Rb_tree_const_iterator<int>, class std::set<int>, struct 
std::bidirectional_iterator_tag> dbaui::FeatureSet::begin() const
+    __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, 
std::set<int>, struct std::bidirectional_iterator_tag> 
dbaui::FeatureSet::begin() const
 dbaccess/source/ui/inc/dsmeta.hxx:89
-    class __gnu_debug::_Safe_iterator<struct 
std::_Rb_tree_const_iterator<int>, class std::set<int>, struct 
std::bidirectional_iterator_tag> dbaui::FeatureSet::end() const
+    __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, 
std::set<int>, struct std::bidirectional_iterator_tag> dbaui::FeatureSet::end() 
const
 dbaccess/source/ui/inc/FieldControls.hxx:68
-    class rtl::OUString dbaui::OPropNumericEditCtrl::get_text() const
+    rtl::OUString dbaui::OPropNumericEditCtrl::get_text() const
 dbaccess/source/ui/inc/FieldControls.hxx:73
     void dbaui::OPropNumericEditCtrl::set_min(int)
 dbaccess/source/ui/inc/indexcollection.hxx:52
-    class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const 
struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex> >, 
class std::vector<struct dbaui::OIndex>, struct 
std::random_access_iterator_tag> dbaui::OIndexCollection::begin() const
+    __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct 
dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, 
std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> 
dbaui::OIndexCollection::begin() const
 dbaccess/source/ui/inc/indexcollection.hxx:56
-    class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const 
struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex> >, 
class std::vector<struct dbaui::OIndex>, struct 
std::random_access_iterator_tag> dbaui::OIndexCollection::end() const
+    __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct 
dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, 
std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> 
dbaui::OIndexCollection::end() const
 dbaccess/source/ui/inc/indexcollection.hxx:61
-    class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const 
struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex> >, 
class std::vector<struct dbaui::OIndex>, struct 
std::random_access_iterator_tag> dbaui::OIndexCollection::find(const class 
rtl::OUString &) const
+    __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct 
dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, 
std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> 
dbaui::OIndexCollection::find(const rtl::OUString &) const
 dbaccess/source/ui/inc/indexcollection.hxx:63
-    class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const 
struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex> >, 
class std::vector<struct dbaui::OIndex>, struct 
std::random_access_iterator_tag> dbaui::OIndexCollection::findOriginal(const 
class rtl::OUString &) const
-dbaccess/source/ui/inc/sbamultiplex.hxx:281
-    class comphelper::OInterfaceContainerHelper3<class 
com::sun::star::beans::XVetoableChangeListener> * 
dbaui::SbaXVetoableChangeMultiplexer::getContainer(const class rtl::OUString &)
-dbaccess/source/ui/inc/unodatbr.hxx:315
-    _Bool dbaui::SbaTableQueryBrowser::implCopyObject(class ODataClipboard 
&,const class weld::TreeIter &,int)
+    __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct 
dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, 
std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> 
dbaui::OIndexCollection::findOriginal(const rtl::OUString &) const
+dbaccess/source/ui/inc/sbamultiplex.hxx:279
+    
comphelper::OInterfaceContainerHelper3<com::sun::star::beans::XVetoableChangeListener>
 * dbaui::SbaXVetoableChangeMultiplexer::getContainer(const rtl::OUString &)
+dbaccess/source/ui/inc/unodatbr.hxx:316
+    _Bool dbaui::SbaTableQueryBrowser::implCopyObject(ODataClipboard &,const 
weld::TreeIter &,int)
 desktop/source/lib/lokclipboard.hxx:95
      LOKClipboardFactory::LOKClipboardFactory()
 drawinglayer/inc/texture/texture.hxx:39
-    _Bool drawinglayer::texture::GeoTexSvx::operator!=(const class 
drawinglayer::texture::GeoTexSvx &) const
-drawinglayer/source/tools/emfpcustomlinecap.hxx:37
-    void emfplushelper::EMFPCustomLineCap::SetAttributes(struct 
com::sun::star::rendering::StrokeAttributes &)
+    _Bool drawinglayer::texture::GeoTexSvx::operator!=(const 
drawinglayer::texture::GeoTexSvx &) const
 drawinglayer/source/tools/emfpstringformat.hxx:93
     _Bool emfplushelper::EMFPStringFormat::NoFitBlackBox() const
 drawinglayer/source/tools/emfpstringformat.hxx:94
@@ -150,16 +152,16 @@ drawinglayer/source/tools/emfpstringformat.hxx:99
     _Bool emfplushelper::EMFPStringFormat::NoClip() const
 drawinglayer/source/tools/emfpstringformat.hxx:100
     _Bool emfplushelper::EMFPStringFormat::BypassGDI() const
-editeng/inc/editdoc.hxx:523
-    _Bool EditLine::IsInvalid() const
 editeng/inc/editdoc.hxx:524
+    _Bool EditLine::IsInvalid() const
+editeng/inc/editdoc.hxx:525
     _Bool EditLine::IsValid() const
 editeng/inc/edtspell.hxx:103
-    class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const 
struct editeng::MisspellRange *, class std::__cxx1998::vector<struct 
editeng::MisspellRange> >, class std::vector<struct editeng::MisspellRange>, 
struct std::random_access_iterator_tag> WrongList::begin() const
+    __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct 
editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> 
>, std::vector<struct editeng::MisspellRange>, struct 
std::random_access_iterator_tag> WrongList::begin() const
 editeng/inc/edtspell.hxx:104
-    class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const 
struct editeng::MisspellRange *, class std::__cxx1998::vector<struct 
editeng::MisspellRange> >, class std::vector<struct editeng::MisspellRange>, 
struct std::random_access_iterator_tag> WrongList::end() const
+    __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct 
editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> 
>, std::vector<struct editeng::MisspellRange>, struct 
std::random_access_iterator_tag> WrongList::end() const
 editeng/source/editeng/impedit.hxx:235
-    class tools::Rectangle LOKSpecialPositioning::GetWindowPos(const class 
tools::Rectangle &,enum MapUnit) const
+    tools::Rectangle LOKSpecialPositioning::GetWindowPos(const 
tools::Rectangle &,enum MapUnit) const
 embeddedobj/source/msole/olecomponent.hxx:75
     _Bool OleComponent::InitializeObject_Impl()
 embeddedobj/source/msole/olecomponent.hxx:77
@@ -169,9 +171,9 @@ embeddedobj/source/msole/olecomponent.hxx:78
 embeddedobj/source/msole/olecomponent.hxx:79
     void OleComponent::Dispose()
 embeddedobj/source/msole/olecomponent.hxx:83
-     OleComponent::OleComponent(const class 
com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> 
&,class OleEmbeddedObject *)
+     OleComponent::OleComponent(const 
com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> 
&,OleEmbeddedObject *)
 embeddedobj/source/msole/olecomponent.hxx:88
-    class OleComponent * OleComponent::createEmbeddedCopyOfLink()
+    OleComponent * OleComponent::createEmbeddedCopyOfLink()
 embeddedobj/source/msole/olecomponent.hxx:90
     void OleComponent::disconnectEmbeddedObject()
 embeddedobj/source/msole/olecomponent.hxx:92
@@ -179,29 +181,29 @@ embeddedobj/source/msole/olecomponent.hxx:92
 embeddedobj/source/msole/olecomponent.hxx:96
     struct com::sun::star::awt::Size OleComponent::CalculateTheRealSize(const 
struct com::sun::star::awt::Size &,_Bool)
 embeddedobj/source/msole/olecomponent.hxx:99
-    void OleComponent::LoadEmbeddedObject(const class rtl::OUString &)
+    void OleComponent::LoadEmbeddedObject(const rtl::OUString &)
 embeddedobj/source/msole/olecomponent.hxx:100
     void OleComponent::CreateObjectFromClipboard()
 embeddedobj/source/msole/olecomponent.hxx:101
-    void OleComponent::CreateNewEmbeddedObject(const class 
com::sun::star::uno::Sequence<signed char> &)
+    void OleComponent::CreateNewEmbeddedObject(const 
com::sun::star::uno::Sequence<signed char> &)
 embeddedobj/source/msole/olecomponent.hxx:102
-    void OleComponent::CreateObjectFromData(const class 
com::sun::star::uno::Reference<class 
com::sun::star::datatransfer::XTransferable> &)
+    void OleComponent::CreateObjectFromData(const 
com::sun::star::uno::Reference<com::sun::star::datatransfer::XTransferable> &)
 embeddedobj/source/msole/olecomponent.hxx:104
-    void OleComponent::CreateObjectFromFile(const class rtl::OUString &)
+    void OleComponent::CreateObjectFromFile(const rtl::OUString &)
 embeddedobj/source/msole/olecomponent.hxx:105
-    void OleComponent::CreateLinkFromFile(const class rtl::OUString &)
+    void OleComponent::CreateLinkFromFile(const rtl::OUString &)
 embeddedobj/source/msole/olecomponent.hxx:106
-    void OleComponent::InitEmbeddedCopyOfLink(const class rtl::Reference<class 
OleComponent> &)
+    void OleComponent::InitEmbeddedCopyOfLink(const 
rtl::Reference<OleComponent> &)
 embeddedobj/source/msole/olecomponent.hxx:109
     void OleComponent::RunObject()
 embeddedobj/source/msole/olecomponent.hxx:110
     void OleComponent::CloseObject()
 embeddedobj/source/msole/olecomponent.hxx:112
-    class com::sun::star::uno::Sequence<struct 
com::sun::star::embed::VerbDescriptor> OleComponent::GetVerbList()
+    com::sun::star::uno::Sequence<struct 
com::sun::star::embed::VerbDescriptor> OleComponent::GetVerbList()
 embeddedobj/source/msole/olecomponent.hxx:114
     void OleComponent::ExecuteVerb(int)
 embeddedobj/source/msole/olecomponent.hxx:115
-    void OleComponent::SetHostName(const class rtl::OUString &)
+    void OleComponent::SetHostName(const rtl::OUString &)
 embeddedobj/source/msole/olecomponent.hxx:116
     void OleComponent::SetExtent(const struct com::sun::star::awt::Size &,long)
 embeddedobj/source/msole/olecomponent.hxx:118
@@ -213,7 +215,7 @@ embeddedobj/source/msole/olecomponent.hxx:120
 embeddedobj/source/msole/olecomponent.hxx:122
     long OleComponent::GetMiscStatus(long)
 embeddedobj/source/msole/olecomponent.hxx:124
-    class com::sun::star::uno::Sequence<signed char> OleComponent::GetCLSID()
+    com::sun::star::uno::Sequence<signed char> OleComponent::GetCLSID()
 embeddedobj/source/msole/olecomponent.hxx:126
     _Bool OleComponent::IsWorkaroundActive() const
 embeddedobj/source/msole/olecomponent.hxx:127
@@ -230,52 +232,54 @@ embeddedobj/source/msole/olecomponent.hxx:134
     void OleComponent::OnClose_Impl()
 extensions/source/scanner/scanner.hxx:79
     void ScannerManager::SetData(void *)
+extensions/source/scanner/scanner.hxx:83
+    com::sun::star::uno::Reference<com::sun::star::uno::XInterface> 
ScannerManager_CreateInstance(const 
com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
 hwpfilter/source/hiodev.h:63
     unsigned long HIODev::read4b(void *,unsigned long)
 hwpfilter/source/mzstring.h:100
-    class MzString & MzString::operator<<(unsigned char)
+    MzString & MzString::operator<<(unsigned char)
 hwpfilter/source/mzstring.h:102
-    class MzString & MzString::operator<<(long)
+    MzString & MzString::operator<<(long)
 hwpfilter/source/mzstring.h:103
-    class MzString & MzString::operator<<(short)
-idl/source/prj/svidl.cxx:105
+    MzString & MzString::operator<<(short)
+idl/source/prj/svidl.cxx:103
     int main(int,char **)
+include/basegfx/curve/b2dcubicbezier.hxx:50
+    _Bool basegfx::B2DCubicBezier::operator==(const basegfx::B2DCubicBezier &) 
const
 include/basegfx/curve/b2dcubicbezier.hxx:51
-    _Bool basegfx::B2DCubicBezier::operator==(const class 
basegfx::B2DCubicBezier &) const
-include/basegfx/curve/b2dcubicbezier.hxx:52
-    _Bool basegfx::B2DCubicBezier::operator!=(const class 
basegfx::B2DCubicBezier &) const
-include/basegfx/curve/b2dcubicbezier.hxx:192
-    void basegfx::B2DCubicBezier::transform(const class basegfx::B2DHomMatrix 
&)
-include/basegfx/curve/b2dcubicbezier.hxx:195
+    _Bool basegfx::B2DCubicBezier::operator!=(const basegfx::B2DCubicBezier &) 
const
+include/basegfx/curve/b2dcubicbezier.hxx:194
+    void basegfx::B2DCubicBezier::transform(const basegfx::B2DHomMatrix &)
+include/basegfx/curve/b2dcubicbezier.hxx:197
     void basegfx::B2DCubicBezier::fround()
 include/basegfx/matrix/b2dhommatrix.hxx:106
-    void basegfx::B2DHomMatrix::scale(const class basegfx::B2DTuple &)
+    void basegfx::B2DHomMatrix::scale(const basegfx::B2DTuple &)
 include/basegfx/matrix/b2dhommatrix.hxx:112
-    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator+=(const 
class basegfx::B2DHomMatrix &)
+    basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator+=(const 
basegfx::B2DHomMatrix &)
 include/basegfx/matrix/b2dhommatrix.hxx:113
-    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator-=(const 
class basegfx::B2DHomMatrix &)
+    basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator-=(const 
basegfx::B2DHomMatrix &)
 include/basegfx/matrix/b2dhommatrix.hxx:118
-    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator*=(double)
+    basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator*=(double)
 include/basegfx/matrix/b2dhommatrix.hxx:119
-    class basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator/=(double)
-include/basegfx/matrix/b2dhommatrixtools.hxx:131
-    class basegfx::B2DHomMatrix 
basegfx::utils::createRotateAroundCenterKeepAspectRatioStayInsideRange(const 
class basegfx::B2DRange &,double)
-include/basegfx/matrix/b2dhommatrixtools.hxx:213
+    basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator/=(double)
+include/basegfx/matrix/b2dhommatrixtools.hxx:132
+    basegfx::B2DHomMatrix 
basegfx::utils::createRotateAroundCenterKeepAspectRatioStayInsideRange(const 
basegfx::B2DRange &,double)
+include/basegfx/matrix/b2dhommatrixtools.hxx:214
     double basegfx::utils::B2DHomMatrixBufferedOnDemandDecompose::getShearX() 
const
 include/basegfx/matrix/b3dhommatrix.hxx:66
-    void basegfx::B3DHomMatrix::rotate(const class basegfx::B3DTuple &)
+    void basegfx::B3DHomMatrix::rotate(const basegfx::B3DTuple &)
 include/basegfx/matrix/b3dhommatrix.hxx:70
-    void basegfx::B3DHomMatrix::translate(const class basegfx::B3DTuple &)
+    void basegfx::B3DHomMatrix::translate(const basegfx::B3DTuple &)
 include/basegfx/matrix/b3dhommatrix.hxx:74
-    void basegfx::B3DHomMatrix::scale(const class basegfx::B3DTuple &)
+    void basegfx::B3DHomMatrix::scale(const basegfx::B3DTuple &)
 include/basegfx/matrix/b3dhommatrix.hxx:97
-    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator+=(const 
class basegfx::B3DHomMatrix &)
+    basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator+=(const 
basegfx::B3DHomMatrix &)
 include/basegfx/matrix/b3dhommatrix.hxx:98
-    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator-=(const 
class basegfx::B3DHomMatrix &)
+    basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator-=(const 
basegfx::B3DHomMatrix &)
 include/basegfx/matrix/b3dhommatrix.hxx:105
-    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator*=(double)
+    basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator*=(double)
 include/basegfx/matrix/b3dhommatrix.hxx:106
-    class basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator/=(double)
+    basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator/=(double)
 include/basegfx/numeric/ftools.hxx:112
     double basegfx::snapToRange(double,double,double)
 include/basegfx/numeric/ftools.hxx:116
@@ -283,119 +287,117 @@ include/basegfx/numeric/ftools.hxx:116
 include/basegfx/pixel/bpixel.hxx:53
      basegfx::BPixel::BPixel(unsigned char,unsigned char,unsigned 
char,unsigned char)
 include/basegfx/pixel/bpixel.hxx:84
-    _Bool basegfx::BPixel::operator==(const class basegfx::BPixel &) const
+    _Bool basegfx::BPixel::operator==(const basegfx::BPixel &) const
 include/basegfx/pixel/bpixel.hxx:89
-    _Bool basegfx::BPixel::operator!=(const class basegfx::BPixel &) const
+    _Bool basegfx::BPixel::operator!=(const basegfx::BPixel &) const
 include/basegfx/point/b2ipoint.hxx:69
-    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const class 
basegfx::B2IPoint &)
+    basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const basegfx::B2IPoint 
&)
 include/basegfx/point/b2ipoint.hxx:78
-    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(int)
+    basegfx::B2IPoint & basegfx::B2IPoint::operator*=(int)
 include/basegfx/point/b2ipoint.hxx:95
-    class basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const class 
basegfx::B2DHomMatrix &)
+    basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const 
basegfx::B2DHomMatrix &)
 include/basegfx/point/b3dpoint.hxx:74
-    class basegfx::B3DPoint & basegfx::B3DPoint::operator*=(const class 
basegfx::B3DPoint &)
+    basegfx::B3DPoint & basegfx::B3DPoint::operator*=(const basegfx::B3DPoint 
&)
 include/basegfx/point/b3dpoint.hxx:84
-    class basegfx::B3DPoint & basegfx::B3DPoint::operator*=(double)
+    basegfx::B3DPoint & basegfx::B3DPoint::operator*=(double)
 include/basegfx/polygon/b2dtrapezoid.hxx:70
-    class basegfx::B2DPolygon basegfx::B2DTrapezoid::getB2DPolygon() const
+    basegfx::B2DPolygon basegfx::B2DTrapezoid::getB2DPolygon() const
 include/basegfx/polygon/b2dtrapezoid.hxx:102
-    void basegfx::utils::createLineTrapezoidFromB2DPolygon(class 
std::vector<class basegfx::B2DTrapezoid> &,const class basegfx::B2DPolygon 
&,double)
+    void 
basegfx::utils::createLineTrapezoidFromB2DPolygon(std::vector<basegfx::B2DTrapezoid>
 &,const basegfx::B2DPolygon &,double)
 include/basegfx/polygon/b3dpolypolygon.hxx:88
     void basegfx::B3DPolyPolygon::remove(unsigned int,unsigned int)
 include/basegfx/polygon/b3dpolypolygon.hxx:108
-    class basegfx::B3DPolygon * basegfx::B3DPolyPolygon::begin()
+    basegfx::B3DPolygon * basegfx::B3DPolyPolygon::begin()
 include/basegfx/polygon/b3dpolypolygon.hxx:109
-    class basegfx::B3DPolygon * basegfx::B3DPolyPolygon::end()
+    basegfx::B3DPolygon * basegfx::B3DPolyPolygon::end()
 include/basegfx/range/b1drange.hxx:50
      basegfx::B1DRange::B1DRange(double)
 include/basegfx/range/b1drange.hxx:72
-    _Bool basegfx::B1DRange::operator==(const class basegfx::B1DRange &) const
+    _Bool basegfx::B1DRange::operator==(const basegfx::B1DRange &) const
 include/basegfx/range/b1drange.hxx:143
     double basegfx::B1DRange::clamp(double) const
 include/basegfx/range/b2dpolyrange.hxx:64
-    _Bool basegfx::B2DPolyRange::operator!=(const class basegfx::B2DPolyRange 
&) const
-include/basegfx/range/b2drange.hxx:277
-    class basegfx::B2DTuple basegfx::B2DRange::clamp(const class 
basegfx::B2DTuple &) const
-include/basegfx/range/b2drange.hxx:297
-    const class basegfx::B2DRange & basegfx::B2DRange::getUnitB2DRange()
-include/basegfx/range/b2drange.hxx:308
-    class basegfx::B2DRange basegfx::operator*(const class 
basegfx::B2DHomMatrix &,const class basegfx::B2DRange &)
+    _Bool basegfx::B2DPolyRange::operator!=(const basegfx::B2DPolyRange &) 
const
+include/basegfx/range/b2drange.hxx:128
+    const basegfx::B2DRange & basegfx::B2DRange::getUnitB2DRange()
+include/basegfx/range/b2drange.hxx:133
+    basegfx::B2DRange basegfx::operator*(const basegfx::B2DHomMatrix &,const 
basegfx::B2DRange &)
 include/basegfx/range/b2ibox.hxx:61
      basegfx::B2IBox::B2IBox()
 include/basegfx/range/b2ibox.hxx:64
-     basegfx::B2IBox::B2IBox(const class basegfx::B2ITuple &)
+     basegfx::B2IBox::B2IBox(const basegfx::B2ITuple &)
 include/basegfx/range/b2ibox.hxx:83
-     basegfx::B2IBox::B2IBox(const class basegfx::B2ITuple &,const class 
basegfx::B2ITuple &)
+     basegfx::B2IBox::B2IBox(const basegfx::B2ITuple &,const basegfx::B2ITuple 
&)
 include/basegfx/range/b2ibox.hxx:101
-    _Bool basegfx::B2IBox::operator==(const class basegfx::B2IBox &) const
+    _Bool basegfx::B2IBox::operator==(const basegfx::B2IBox &) const
 include/basegfx/range/b2ibox.hxx:107
-    _Bool basegfx::B2IBox::operator!=(const class basegfx::B2IBox &) const
+    _Bool basegfx::B2IBox::operator!=(const basegfx::B2IBox &) const
 include/basegfx/range/b2ibox.hxx:150
-    _Bool basegfx::B2IBox::isInside(const class basegfx::B2ITuple &) const
+    _Bool basegfx::B2IBox::isInside(const basegfx::B2ITuple &) const
 include/basegfx/range/b2ibox.hxx:166
-    void basegfx::B2IBox::intersect(const class basegfx::B2IBox &)
-include/basegfx/range/b2irange.hxx:196
-    void basegfx::B2IRange::expand(const class basegfx::B2IRange &)
-include/basegfx/range/b2irange.hxx:209
-    class basegfx::B2ITuple basegfx::B2IRange::clamp(const class 
basegfx::B2ITuple &) const
+    void basegfx::B2IBox::intersect(const basegfx::B2IBox &)
 include/basegfx/range/b3drange.hxx:97
-    _Bool basegfx::B3DRange::operator!=(const class basegfx::B3DRange &) const
+    _Bool basegfx::B3DRange::operator!=(const basegfx::B3DRange &) const
 include/basegfx/range/b3drange.hxx:198
-    class basegfx::B3DTuple basegfx::B3DRange::clamp(const class 
basegfx::B3DTuple &) const
+    basegfx::B3DTuple basegfx::B3DRange::clamp(const basegfx::B3DTuple &) const
 include/basegfx/range/b3drange.hxx:218
-    const class basegfx::B3DRange & basegfx::B3DRange::getUnitB3DRange()
+    const basegfx::B3DRange & basegfx::B3DRange::getUnitB3DRange()
 include/basegfx/range/b3drange.hxx:223
-    class basegfx::B3DRange basegfx::operator*(const class 
basegfx::B3DHomMatrix &,const class basegfx::B3DRange &)
+    basegfx::B3DRange basegfx::operator*(const basegfx::B3DHomMatrix &,const 
basegfx::B3DRange &)
+include/basegfx/range/Range2D.hxx:170
+    Tuple2D<type-parameter-?-?> basegfx::Range2D::clamp(const 
Tuple2D<type-parameter-?-?> &) const
 include/basegfx/tuple/b3ituple.hxx:43
      basegfx::B3ITuple::B3ITuple()
 include/basegfx/tuple/b3ituple.hxx:66
     const int & basegfx::B3ITuple::operator[](int) const
 include/basegfx/tuple/b3ituple.hxx:75
     int & basegfx::B3ITuple::operator[](int)
-include/basegfx/tuple/Tuple2D.hxx:77
-    _Bool basegfx::Tuple2D::equal(const class basegfx::Tuple2D<double> &) const
-include/basegfx/tuple/Tuple2D.hxx:77
-    _Bool basegfx::Tuple2D::equal(const class basegfx::Tuple2D<int> &) const
-include/basegfx/tuple/Tuple2D.hxx:77
-    _Bool basegfx::Tuple2D::equal(const class basegfx::Tuple2D<long> &) const
+include/basegfx/tuple/Tuple2D.hxx:83
+    _Bool basegfx::Tuple2D::equal(const basegfx::Tuple2D<double> &) const
+include/basegfx/tuple/Tuple2D.hxx:83
+    _Bool basegfx::Tuple2D::equal(const basegfx::Tuple2D<int> &) const
+include/basegfx/tuple/Tuple2D.hxx:83
+    _Bool basegfx::Tuple2D::equal(const basegfx::Tuple2D<long> &) const
 include/basegfx/utils/b2dclipstate.hxx:72
-    _Bool basegfx::utils::B2DClipState::operator!=(const class 
basegfx::utils::B2DClipState &) const
+    _Bool basegfx::utils::B2DClipState::operator!=(const 
basegfx::utils::B2DClipState &) const
 include/basegfx/utils/canvastools.hxx:109
-    struct com::sun::star::geometry::AffineMatrix3D & 
basegfx::unotools::affineMatrixFromHomMatrix3D(struct 
com::sun::star::geometry::AffineMatrix3D &,const class basegfx::B3DHomMatrix &)
+    struct com::sun::star::geometry::AffineMatrix3D & 
basegfx::unotools::affineMatrixFromHomMatrix3D(struct 
com::sun::star::geometry::AffineMatrix3D &,const basegfx::B3DHomMatrix &)
 include/basegfx/utils/canvastools.hxx:129
-    class basegfx::B3DRange 
basegfx::unotools::b3DRectangleFromRealRectangle3D(const struct 
com::sun::star::geometry::RealRectangle3D &)
-include/basegfx/utils/unopolypolygon.hxx:86
-    const class basegfx::B2DPolyPolygon & 
basegfx::unotools::UnoPolyPolygon::getPolyPolygonUnsafe() const
+    basegfx::B3DRange basegfx::unotools::b3DRectangleFromRealRectangle3D(const 
struct com::sun::star::geometry::RealRectangle3D &)
+include/basegfx/utils/unopolypolygon.hxx:87
+    const basegfx::B2DPolyPolygon & 
basegfx::unotools::UnoPolyPolygon::getPolyPolygonUnsafe() const
 include/basegfx/vector/b2ivector.hxx:72
-    class basegfx::B2IVector & basegfx::B2IVector::operator*=(const class 
basegfx::B2IVector &)
+    basegfx::B2IVector & basegfx::B2IVector::operator*=(const 
basegfx::B2IVector &)
 include/basegfx/vector/b2ivector.hxx:81
-    class basegfx::B2IVector & basegfx::B2IVector::operator*=(int)
+    basegfx::B2IVector & basegfx::B2IVector::operator*=(int)
 include/basegfx/vector/b2ivector.hxx:115
-    class basegfx::B2IVector & basegfx::B2IVector::operator*=(const class 
basegfx::B2DHomMatrix &)
+    basegfx::B2IVector & basegfx::B2IVector::operator*=(const 
basegfx::B2DHomMatrix &)
 include/basegfx/vector/b3dvector.hxx:74
-    class basegfx::B3DVector & basegfx::B3DVector::operator*=(const class 
basegfx::B3DVector &)
+    basegfx::B3DVector & basegfx::B3DVector::operator*=(const 
basegfx::B3DVector &)
+include/basic/codecompletecache.hxx:82
+    std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const 
CodeCompleteDataCache &)
 include/basic/sbxvar.hxx:138
     struct SbxValues * SbxValue::data()
-include/codemaker/commoncpp.hxx:47
-    class rtl::OString codemaker::cpp::translateUnoToCppType(enum 
codemaker::UnoType::Sort,class std::basic_string_view<char16_t>)
-include/codemaker/global.hxx:53
-    class FileStream & operator<<(class FileStream &,const class rtl::OString 
*)
-include/codemaker/global.hxx:55
-    class FileStream & operator<<(class FileStream &,const class 
rtl::OStringBuffer *)
+include/codemaker/global.hxx:54
+    FileStream & operator<<(FileStream &,const rtl::OString *)
 include/codemaker/global.hxx:56
-    class FileStream & operator<<(class FileStream &,const class 
rtl::OStringBuffer &)
+    FileStream & operator<<(FileStream &,const rtl::OStringBuffer *)
+include/codemaker/global.hxx:57
+    FileStream & operator<<(FileStream &,const rtl::OStringBuffer &)
+include/codemaker/options.hxx:54
+    const rtl::OString & Options::getProgramName() const
 include/comphelper/automationinvokedzone.hxx:26
      comphelper::Automation::AutomationInvokedZone::AutomationInvokedZone()
 include/comphelper/basicio.hxx:52
-    const class com::sun::star::uno::Reference<class 
com::sun::star::io::XObjectInputStream> & comphelper::operator>>(const class 
com::sun::star::uno::Reference<class com::sun::star::io::XObjectInputStream> 
&,unsigned int &)
+    const 
com::sun::star::uno::Reference<com::sun::star::io::XObjectInputStream> & 
comphelper::operator>>(const 
com::sun::star::uno::Reference<com::sun::star::io::XObjectInputStream> 
&,unsigned int &)
 include/comphelper/basicio.hxx:53
-    const class com::sun::star::uno::Reference<class 
com::sun::star::io::XObjectOutputStream> & comphelper::operator<<(const class 
com::sun::star::uno::Reference<class com::sun::star::io::XObjectOutputStream> 
&,unsigned int)
-include/comphelper/configuration.hxx:250
-    type-parameter-?-? comphelper::ConfigurationLocalizedProperty::get(const 
class com::sun::star::uno::Reference<class 
com::sun::star::uno::XComponentContext> &)
-include/comphelper/configuration.hxx:266
-    void comphelper::ConfigurationLocalizedProperty::set(const 
type-parameter-?-? &,const class std::shared_ptr<class 
comphelper::ConfigurationChanges> &)
-include/comphelper/configuration.hxx:302
-    class com::sun::star::uno::Reference<class 
com::sun::star::container::XHierarchicalNameReplace> 
comphelper::ConfigurationGroup::get(const class std::shared_ptr<class 
comphelper::ConfigurationChanges> &)
+    const 
com::sun::star::uno::Reference<com::sun::star::io::XObjectOutputStream> & 
comphelper::operator<<(const 
com::sun::star::uno::Reference<com::sun::star::io::XObjectOutputStream> 
&,unsigned int)
+include/comphelper/configuration.hxx:240
+    type-parameter-?-? comphelper::ConfigurationLocalizedProperty::get()
+include/comphelper/configuration.hxx:256
+    void comphelper::ConfigurationLocalizedProperty::set(const 
type-parameter-?-? &,const std::shared_ptr<comphelper::ConfigurationChanges> &)
+include/comphelper/configuration.hxx:291
+    
com::sun::star::uno::Reference<com::sun::star::container::XHierarchicalNameReplace>
 comphelper::ConfigurationGroup::get(const 
std::shared_ptr<comphelper::ConfigurationChanges> &)
 include/comphelper/flagguard.hxx:33
     ValueRestorationGuard_Impl<T> comphelper::<deduction guide for 
ValueRestorationGuard_Impl>(ValueRestorationGuard_Impl<T>)
 include/comphelper/flagguard.hxx:37
@@ -404,6 +406,8 @@ include/comphelper/flagguard.hxx:46
     ValueRestorationGuard<T> comphelper::<deduction guide for 
ValueRestorationGuard>(ValueRestorationGuard<T>)
 include/comphelper/flagguard.hxx:50
      comphelper::ValueRestorationGuard::ValueRestorationGuard(_Bool 
&,type-parameter-?-? &&)
+include/comphelper/flagguard.hxx:50
+     comphelper::ValueRestorationGuard::ValueRestorationGuard(int 
&,type-parameter-?-? &&)
 include/comphelper/flagguard.hxx:50
      comphelper::ValueRestorationGuard::ValueRestorationGuard(long 
&,type-parameter-?-? &&)
 include/comphelper/flagguard.hxx:50
@@ -416,202 +420,214 @@ include/comphelper/interfacecontainer3.hxx:63
     OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for 
OInterfaceIteratorHelper3>(OInterfaceContainerHelper3<type-parameter-?-?> &)
 include/comphelper/interfacecontainer3.hxx:91
     OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for 
OInterfaceIteratorHelper3>(const OInterfaceIteratorHelper3<ListenerT> &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XActionListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XAdjustmentListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XDockableWindowListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XItemListListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XItemListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XKeyHandler::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XMenuListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XMouseClickHandler::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XSpinListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XStyleChangeListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XTabListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XTextListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XTopWindowListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XVclContainerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XWindowListener2::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::grid::XGridSelectionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::tab::XTabPageContainerListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::tree::XTreeEditListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::awt::tree::XTreeExpansionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::beans::XPropertiesChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::beans::XPropertySetInfoChangeListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::beans::XVetoableChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::container::XContainerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::document::XDocumentEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::document::XStorageChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::document::XUndoManagerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::drawing::XShape::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XApproveActionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XChangeListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XConfirmDeleteListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XDatabaseParameterListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XFormControllerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XGridControlListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XLoadListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XResetListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XSubmitListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::XUpdateListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::binding::XListEntryListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::runtime::XFilterControllerListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::submission::XSubmissionVetoListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::form::validation::XFormComponentValidityListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::frame::XStatusListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::linguistic2::XDictionaryEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::linguistic2::XDictionaryListEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::linguistic2::XLinguServiceEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::presentation::XShapeEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::presentation::XSlideShowListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::script::XScriptListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::script::vba::XVBAScriptListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::sdb::XDatabaseRegistrationsListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::sdb::XRowSetApproveListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::sdb::XRowSetChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::sdb::XRowsChangeListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::sdb::XSQLErrorListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::sdb::application::XCopyTableListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::sdbc::XRowSetListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::text::XPasteListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::ucb::XContentEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::ui::XContextMenuInterceptor::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::util::XChangesListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::util::XCloseListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::util::XFlushListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::util::XModeChangeListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::util::XModifyListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer3.hxx:215
-    void comphelper::OInterfaceContainerHelper3::notifyEach(void (class 
com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:45
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XActionListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XAdjustmentListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XDockableWindowListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XItemListListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XItemListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XKeyHandler::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XMenuListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XMouseClickHandler::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XSpinListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XStyleChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XTabListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XTextListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XTopWindowListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XVclContainerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XWindowListener2::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::grid::XGridSelectionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::tab::XTabPageContainerListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::tree::XTreeEditListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::awt::tree::XTreeExpansionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::beans::XPropertiesChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::beans::XPropertySetInfoChangeListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::beans::XVetoableChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::container::XContainerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::document::XDocumentEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::document::XStorageChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::document::XUndoManagerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::drawing::XShape::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XApproveActionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XChangeListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XConfirmDeleteListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XDatabaseParameterListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XFormControllerListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XGridControlListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XLoadListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XResetListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XSubmitListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::XUpdateListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::binding::XListEntryListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::runtime::XFilterControllerListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::submission::XSubmissionVetoListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::form::validation::XFormComponentValidityListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::frame::XStatusListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::linguistic2::XDictionaryEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::linguistic2::XDictionaryListEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::linguistic2::XLinguServiceEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::presentation::XShapeEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::presentation::XSlideShowListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::script::XScriptListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::script::vba::XVBAScriptListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::sdb::XDatabaseRegistrationsListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::sdb::XRowSetApproveListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::sdb::XRowSetChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::sdb::XRowsChangeListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::sdb::XSQLErrorListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::sdb::application::XCopyTableListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::sdbc::XRowSetListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::text::XPasteListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::ucb::XContentEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::ui::XContextMenuInterceptor::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::util::XChangesListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::util::XCloseListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::util::XFlushListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::util::XModeChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::util::XModifyListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer3.hxx:213
+    void comphelper::OInterfaceContainerHelper3::notifyEach(void 
(com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:46
     OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for 
OInterfaceIteratorHelper4>(OInterfaceIteratorHelper4<ListenerT>)
-include/comphelper/interfacecontainer4.hxx:60
-    OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for 
OInterfaceIteratorHelper4>(OInterfaceContainerHelper4<type-parameter-?-?> &)
-include/comphelper/interfacecontainer4.hxx:86
+include/comphelper/interfacecontainer4.hxx:63
+    OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for 
OInterfaceIteratorHelper4>(std::unique_lock<std::mutex> 
&,OInterfaceContainerHelper4<type-parameter-?-?> &)
+include/comphelper/interfacecontainer4.hxx:95
     OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for 
OInterfaceIteratorHelper4>(const OInterfaceIteratorHelper4<ListenerT> &)
-include/comphelper/interfacecontainer4.hxx:165
-    void comphelper::OInterfaceContainerHelper4::clear()
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::accessibility::XAccessibleEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::awt::grid::XGridColumnListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::chart::XChartDataChangeEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::document::XDocumentEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::ui::XContextMenuInterceptor::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::ui::XUIConfigurationListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::util::XModifyListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
-include/comphelper/interfacecontainer4.hxx:200
-    void comphelper::OInterfaceContainerHelper4::notifyEach(void (class 
com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:188
+    void 
comphelper::OInterfaceContainerHelper4::clear(std::unique_lock<std::mutex> &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::accessibility::XAccessibleEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const 
type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::awt::grid::XGridColumnListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::beans::XPropertiesChangeListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::beans::XPropertyChangeListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::beans::XPropertySetInfoChangeListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::chart::XChartDataChangeEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::document::XDocumentEventListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::document::XEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::frame::XStatusListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::io::XStreamListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::lang::XEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::ucb::XContentEventListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::ui::XContextMenuInterceptor::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::ui::XUIConfigurationListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::util::XModifyListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::view::XPrintJobListener::*)(const type-parameter-?-? 
&),const type-parameter-?-? &)
+include/comphelper/interfacecontainer4.hxx:228
+    void 
comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> 
&,void (com::sun::star::view::XSelectionChangeListener::*)(const 
type-parameter-?-? &),const type-parameter-?-? &)
 include/comphelper/logging.hxx:58
-    class rtl::OUString 
comphelper::log::convert::convertLogArgToString(char16_t)
+    rtl::OUString comphelper::log::convert::convertLogArgToString(char16_t)
 include/comphelper/logging.hxx:225
     void comphelper::EventLogger::log(const int,const char 
*,type-parameter-?-?,type-parameter-?-?) const
 include/comphelper/logging.hxx:246
@@ -621,17 +637,17 @@ include/comphelper/logging.hxx:258
 include/comphelper/logging.hxx:271
     void comphelper::EventLogger::log(const int,const char 
*,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
 const
 include/comphelper/logging.hxx:295
-    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const class rtl::OUString &,type-parameter-?-?) const
+    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const rtl::OUString &,type-parameter-?-?) const
 include/comphelper/logging.hxx:304
-    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?) const
+    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const rtl::OUString &,type-parameter-?-?,type-parameter-?-?) const
 include/comphelper/logging.hxx:314
-    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const class rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
+    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
 include/comphelper/logging.hxx:325
-    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const class rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) 
const
+    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) 
const
 include/comphelper/logging.hxx:337
-    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const class rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
 const
+    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
 const
 include/comphelper/logging.hxx:350
-    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const class rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
 const
+    void comphelper::EventLogger::logp(const int,const char *,const char 
*,const rtl::OUString 
&,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
 const
 include/comphelper/logging.hxx:374
     void comphelper::EventLogger::logp(const int,const char *,const char 
*,const char *,type-parameter-?-?) const
 include/comphelper/logging.hxx:383
@@ -652,22 +668,20 @@ include/comphelper/multicontainer2.hxx:112
     void comphelper::OMultiTypeInterfaceContainerHelper2::clear()
 include/comphelper/multiinterfacecontainer3.hxx:179
     void comphelper::OMultiTypeInterfaceContainerHelperVar3::clear()
-include/comphelper/multiinterfacecontainer4.hxx:46
-    vector<type-parameter-?-?, allocator<type-parameter-?-?> > 
comphelper::OMultiTypeInterfaceContainerHelperVar4::getContainedTypes() const
 include/comphelper/multiinterfacecontainer4.hxx:57
     _Bool 
comphelper::OMultiTypeInterfaceContainerHelperVar4::hasContainedTypes() const
-include/comphelper/multiinterfacecontainer4.hxx:160
+include/comphelper/multiinterfacecontainer4.hxx:161
     void comphelper::OMultiTypeInterfaceContainerHelperVar4::clear()
 include/comphelper/profilezone.hxx:56
-     comphelper::ProfileZone::ProfileZone(const char *,const class 
std::map<class rtl::OUString, class rtl::OUString> &)
-include/comphelper/propagg.hxx:60
+     comphelper::ProfileZone::ProfileZone(const char *,const 
std::map<rtl::OUString, rtl::OUString> &)
+include/comphelper/propagg.hxx:59
     _Bool comphelper::internal::OPropertyAccessor::operator==(const struct 
comphelper::internal::OPropertyAccessor &) const
-include/comphelper/propagg.hxx:61
+include/comphelper/propagg.hxx:60
     _Bool comphelper::internal::OPropertyAccessor::operator<(const struct 
comphelper::internal::OPropertyAccessor &) const
 include/comphelper/proparrhlp.hxx:83
-    class cppu::IPropertyArrayHelper * 
comphelper::OAggregationArrayUsageHelper::createArrayHelper() const
+    cppu::IPropertyArrayHelper * 
comphelper::OAggregationArrayUsageHelper::createArrayHelper() const
 include/comphelper/PropertyInfoHash.hxx:36
-     comphelper::PropertyInfo::PropertyInfo(const class rtl::OUString 
&,int,const class com::sun::star::uno::Type &,short)
+     comphelper::PropertyInfo::PropertyInfo(const rtl::OUString &,int,const 
com::sun::star::uno::Type &,short)
 include/comphelper/scopeguard.hxx:54
     ScopeGuard<Func> comphelper::<deduction guide for 
ScopeGuard>(ScopeGuard<Func>)
 include/comphelper/scopeguard.hxx:59
@@ -678,136 +692,224 @@ include/comphelper/sequence.hxx:207
     Sequence<type-parameter-?-?> comphelper::containerToSequence(const 
type-parameter-?-? (&)[N])
 include/comphelper/sequence.hxx:207
     Sequence<type-parameter-?-?> comphelper::containerToSequence(const 
type-parameter-?-? (&)[S])
-include/comphelper/sequence.hxx:207
-    Sequence<type-parameter-?-?> comphelper::containerToSequence(const 
type-parameter-?-? (&)[SrcSize])
-include/comphelper/sequence.hxx:207
-    Sequence<type-parameter-?-?> comphelper::containerToSequence(const 
type-parameter-?-? (&)[_Bound])
-include/comphelper/sequence.hxx:207
-    Sequence<type-parameter-?-?> comphelper::containerToSequence(const 
type-parameter-?-? (&)[_Nm])
+include/comphelper/sequenceashashmap.hxx:403
+    __gnu_debug::_Safe_iterator<struct 
std::__detail::_Node_const_iterator<struct std::pair<const struct 
comphelper::OUStringAndHashCode, com::sun::star::uno::Any>, false, true>, 
std::unordered_map<struct comphelper::OUStringAndHashCode, 
com::sun::star::uno::Any, struct comphelper::OUStringAndHashCodeHash, struct 
comphelper::OUStringAndHashCodeEqual>, struct std::forward_iterator_tag> 
comphelper::SequenceAsHashMap::find(const struct 
comphelper::OUStringAndHashCode &) const
 include/comphelper/servicedecl.hxx:107
      comphelper::service_decl::ServiceDecl::ServiceDecl(const 
type-parameter-?-? &,const char *,const char *)
-include/comphelper/traceevent.hxx:214
+include/comphelper/string.hxx:98
+    std::basic_string_view<char> 
comphelper::string::stripEnd(std::basic_string_view<char>,char)
+include/comphelper/traceevent.hxx:215
     void comphelper::AsyncEvent::finish()
-include/comphelper/unique_disposing_ptr.hxx:46
+include/comphelper/unique_disposing_ptr.hxx:47
     type-parameter-?-? & comphelper::unique_disposing_ptr::operator*() const
 include/comphelper/unwrapargs.hxx:51
-    void comphelper::detail::unwrapArgs(const class 
com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int,const class 
com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
+    void comphelper::detail::unwrapArgs(const 
com::sun::star::uno::Sequence<com::sun::star::uno::Any> &,int,const 
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &)
 include/connectivity/dbcharset.hxx:137
-    const class dbtools::OCharsetMap::CharsetIterator & 
dbtools::OCharsetMap::CharsetIterator::operator--()
-include/connectivity/FValue.hxx:345
+    const dbtools::OCharsetMap::CharsetIterator & 
dbtools::OCharsetMap::CharsetIterator::operator--()
+include/connectivity/FValue.hxx:346
     unsigned char connectivity::ORowSetValue::getUInt8() const
-include/connectivity/FValue.hxx:427
-     connectivity::TSetBound::TSetBound(_Bool)
 include/connectivity/FValue.hxx:428
-    void connectivity::TSetBound::operator()(class connectivity::ORowSetValue 
&) const
+     connectivity::TSetBound::TSetBound(_Bool)
+include/connectivity/FValue.hxx:429
+    void connectivity::TSetBound::operator()(connectivity::ORowSetValue &) 
const
 include/connectivity/sqlparse.hxx:186
-    class rtl::OUString connectivity::OSQLParser::RuleIDToStr(unsigned int)
+    rtl::OUString connectivity::OSQLParser::RuleIDToStr(unsigned int)
 include/desktop/crashreport.hxx:104
-    class rtl::OUString CrashReporter::getActiveSfxObjectName()
+    rtl::OUString CrashReporter::getActiveSfxObjectName()
 include/desktop/crashreport.hxx:109
-    class rtl::OUString CrashReporter::getLoggedUnoCommands()
+    rtl::OUString CrashReporter::getLoggedUnoCommands()
 include/drawinglayer/geometry/viewinformation2d.hxx:119
-    _Bool drawinglayer::geometry::ViewInformation2D::operator!=(const class 
drawinglayer::geometry::ViewInformation2D &) const
-include/drawinglayer/primitive2d/baseprimitive2d.hxx:135
-    _Bool drawinglayer::primitive2d::BasePrimitive2D::operator!=(const class 
drawinglayer::primitive2d::BasePrimitive2D &) const
-include/drawinglayer/primitive2d/baseprimitive2d.hxx:187
-    class basegfx::B2DRange 
drawinglayer::primitive2d::UnoPrimitive2D::getB2DRange(const class 
drawinglayer::geometry::ViewInformation2D &) const
-include/drawinglayer/primitive2d/baseprimitive2d.hxx:192
-    unsigned int drawinglayer::primitive2d::UnoPrimitive2D::getPrimitive2DID() 
const
-include/drawinglayer/primitive2d/baseprimitive2d.hxx:195
-    void drawinglayer::primitive2d::UnoPrimitive2D::get2DDecomposition(class 
drawinglayer::primitive2d::Primitive2DDecompositionVisitor &,const class 
drawinglayer::geometry::ViewInformation2D &) const
-include/drawinglayer/primitive2d/Primitive2DContainer.hxx:61
-     
drawinglayer::primitive2d::Primitive2DContainer::Primitive2DContainer(const 
class std::deque<class rtl::Reference<class 
drawinglayer::primitive2d::BasePrimitive2D> > &)
-include/drawinglayer/primitive2d/Primitive2DContainer.hxx:70
-     
drawinglayer::primitive2d::Primitive2DContainer::Primitive2DContainer(type-parameter-?-?,type-parameter-?-?)
-include/drawinglayer/primitive2d/Primitive2DContainer.hxx:85
-    void drawinglayer::primitive2d::Primitive2DContainer::append(const class 
com::sun::star::uno::Sequence<class com::sun::star::uno::Reference<class 
com::sun::star::graphic::XPrimitive2D> > &)
+    _Bool drawinglayer::geometry::ViewInformation2D::operator!=(const 
drawinglayer::geometry::ViewInformation2D &) const
+include/drawinglayer/primitive2d/baseprimitive2d.hxx:136
+    _Bool drawinglayer::primitive2d::BasePrimitive2D::operator!=(const 
drawinglayer::primitive2d::BasePrimitive2D &) const
 include/drawinglayer/primitive2d/softedgeprimitive2d.hxx:39
     void 
drawinglayer::primitive2d::SoftEdgePrimitive2D::setMaskGeneration(_Bool) const
 include/drawinglayer/primitive3d/baseprimitive3d.hxx:65
      
drawinglayer::primitive3d::Primitive3DContainer::Primitive3DContainer(type-parameter-?-?,type-parameter-?-?)
 include/drawinglayer/primitive3d/baseprimitive3d.hxx:112
-    _Bool drawinglayer::primitive3d::BasePrimitive3D::operator!=(const class 
drawinglayer::primitive3d::BasePrimitive3D &) const
+    _Bool drawinglayer::primitive3d::BasePrimitive3D::operator!=(const 
drawinglayer::primitive3d::BasePrimitive3D &) const
 include/drawinglayer/tools/primitive2dxmldump.hxx:45
-    void drawinglayer::Primitive2dXmlDump::dump(const class 
drawinglayer::primitive2d::Primitive2DContainer &,const class rtl::OUString &)
-include/editeng/colritem.hxx:76
+    void drawinglayer::Primitive2dXmlDump::dump(const 
drawinglayer::primitive2d::Primitive2DContainer &,const rtl::OUString &)
+include/editeng/brushitem.hxx:95
+    Color & SvxBrushItem::GetFiltColor()
+include/editeng/colritem.hxx:96
     short SvxColorItem::GetTintOrShade() const
-include/editeng/colritem.hxx:81
+include/editeng/colritem.hxx:101
     void SvxColorItem::SetTintOrShade(short)
 include/editeng/editeng.hxx:244
     _Bool EditEngine::GetVertical() const
 include/editeng/editeng.hxx:246
     enum TextRotation EditEngine::GetRotation() const
 include/editeng/editeng.hxx:475
-    _Bool EditEngine::(anonymous)::__invoke(const class SvxFieldData *)
-include/editeng/hyphenzoneitem.hxx:64
+    _Bool EditEngine::(anonymous)::__invoke(const SvxFieldData *)
+include/editeng/hyphenzoneitem.hxx:67
     _Bool SvxHyphenZoneItem::IsPageEnd() const
 include/editeng/outliner.hxx:891
-    _Bool Outliner::(anonymous)::__invoke(const class SvxFieldData *)
+    _Bool Outliner::(anonymous)::__invoke(const SvxFieldData *)
 include/editeng/outlobj.hxx:146
      std::optional::optional(struct std::in_place_t,type-parameter-?-? &&...)
 include/editeng/outlobj.hxx:165
     _Bool std::optional::has_value() const
 include/editeng/outlobj.hxx:169
-    class OutlinerParaObject & std::optional::value()
+    OutlinerParaObject & std::optional::value()
 include/filter/msfilter/mstoolbar.hxx:103
      Indent::Indent(_Bool)
 include/formula/opcode.hxx:523
-    class std::basic_string<char> OpCodeEnumToString(enum OpCode)
+    std::basic_string<char> OpCodeEnumToString(enum OpCode)
 include/formula/tokenarray.hxx:182
-    class formula::FormulaTokenArrayReferencesIterator 
formula::FormulaTokenArrayReferencesIterator::operator++(int)
-include/formula/tokenarray.hxx:580
-    basic_ostream<type-parameter-?-?, type-parameter-?-?> & 
formula::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> 
&,const class formula::FormulaTokenArray &)
+    formula::FormulaTokenArrayReferencesIterator 
formula::FormulaTokenArrayReferencesIterator::operator++(int)
+include/formula/tokenarray.hxx:581

... etc. - the rest is truncated

Reply via email to