diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-08-12 15:03:23 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-08-13 08:34:01 +0200 |
commit | cb41806ad98a394333234fce02ad8681f1a4604c (patch) | |
tree | 3636e76a49ff242cd3e882723f4db7ef2a36fa94 /compilerplugins | |
parent | f4027dd967a3292cfba689ca735d839b16ac2d92 (diff) |
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.grandin@collabora.co.uk>
Diffstat (limited to 'compilerplugins')
-rwxr-xr-x | compilerplugins/clang/unusedmethods.py | 9 | ||||
-rw-r--r-- | compilerplugins/clang/unusedmethods.results | 3384 | ||||
-rw-r--r-- | compilerplugins/clang/unusedmethods.unused-returns.results | 428 |
3 files changed, 2363 insertions, 1458 deletions
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 @@ -405,6 +407,8 @@ include/comphelper/flagguard.hxx:46 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 comphelper::ValueRestorationGuard::ValueRestorationGuard(unsigned char &,type-parameter-?-? &&) @@ -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 + basic_ostream<type-parameter-?-?, type-parameter-?-?> & formula::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const formula::FormulaTokenArray &) include/framework/addonsoptions.hxx:195 - class rtl::OUString framework::AddonsOptions::GetAddonsNotebookBarResourceName(unsigned int) const + rtl::OUString framework::AddonsOptions::GetAddonsNotebookBarResourceName(unsigned int) const include/framework/addonsoptions.hxx:220 - _Bool framework::AddonsOptions::GetMergeNotebookBarInstructions(const class rtl::OUString &,class std::vector<struct framework::MergeNotebookBarInstruction> &) const + _Bool framework::AddonsOptions::GetMergeNotebookBarInstructions(const rtl::OUString &,std::vector<struct framework::MergeNotebookBarInstruction> &) const include/i18nlangtag/languagetag.hxx:270 enum LanguageTag::ScriptType LanguageTag::getScriptType() const include/o3tl/any.hxx:155 - class std::optional<const struct o3tl::detail::Void> o3tl::tryAccess(const class com::sun::star::uno::Any &) + std::optional<const struct o3tl::detail::Void> o3tl::tryAccess(const com::sun::star::uno::Any &) include/o3tl/cow_wrapper.hxx:333 type-parameter-?-? * o3tl::cow_wrapper::get() -include/o3tl/enumarray.hxx:105 +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const Color &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const Image &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const Size &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const SwSubFont &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const _Bool &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const char *const &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const double &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const enum SwFieldTypesEnum &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const enum writerfilter::dmapper::PropertyIds &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const int &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const rtl::OUString &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const rtl::Reference<XPropertyList> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const short &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<ImageList> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<QCursor> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<SfxModule> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<SvxNumBulletItem> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<SwContentType> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<struct PPTCharSheet> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<struct PPTParaSheet> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<svx::PropertyValueProvider> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::unique_ptr<weld::TreeIter> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const std::vector<vcl::Window *> &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const struct (anonymous namespace)::FactoryInfo &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const struct INetURLObject::SchemeInfo &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const struct PPTExtParaSheet &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const struct com::sun::star::table::BorderLine2 &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const unsigned long &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const unsigned short &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(const void *const &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:66 + o3tl::enumarray::enumarray(struct _GdkCursor *const &,type-parameter-?-? &&...) +include/o3tl/enumarray.hxx:122 typename type-parameter-?-?::value_type * o3tl::enumarray_iterator::operator->() const -include/o3tl/enumarray.hxx:130 +include/o3tl/enumarray.hxx:147 const typename type-parameter-?-?::value_type * o3tl::enumarray_const_iterator::operator->() const -include/o3tl/enumarray.hxx:133 +include/o3tl/enumarray.hxx:150 _Bool o3tl::enumarray_const_iterator::operator==(const enumarray_const_iterator<EA> &) const +include/o3tl/float_int_conversion.hxx:64 + typename enable_if<std::is_floating_point_v<F>, type-parameter-?-?>::type o3tl::roundAway(type-parameter-?-?) include/o3tl/hash_combine.hxx:19 typename enable_if<(sizeof(N) == 4), void>::type o3tl::hash_combine(type-parameter-?-? &,const type-parameter-?-? *,unsigned long) include/o3tl/hash_combine.hxx:30 typename enable_if<(sizeof(N) == 4), void>::type o3tl::hash_combine(type-parameter-?-? &,const type-parameter-?-? &) -include/o3tl/sorted_vector.hxx:37 +include/o3tl/hash_combine.hxx:37 + typename enable_if<(sizeof(N) == 8), void>::type o3tl::hash_combine(type-parameter-?-? &,const type-parameter-?-? *,unsigned long) +include/o3tl/intcmp.hxx:52 + _Bool o3tl::cmp_not_equal(type-parameter-?-?,type-parameter-?-?) +include/o3tl/intcmp.hxx:83 + _Bool o3tl::cmp_greater_equal(type-parameter-?-?,type-parameter-?-?) +include/o3tl/intcmp.hxx:91 + IntCmp<T> o3tl::<deduction guide for IntCmp>(IntCmp<T>) +include/o3tl/intcmp.hxx:93 + IntCmp<T> o3tl::<deduction guide for IntCmp>(type-parameter-?-?) +include/o3tl/intcmp.hxx:101 + _Bool o3tl::operator==(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>) +include/o3tl/intcmp.hxx:106 + _Bool o3tl::operator!=(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>) +include/o3tl/intcmp.hxx:111 + _Bool o3tl::operator<(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>) +include/o3tl/intcmp.hxx:116 + _Bool o3tl::operator>(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>) +include/o3tl/intcmp.hxx:126 + _Bool o3tl::operator>=(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>) +include/o3tl/sorted_vector.hxx:39 sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(sorted_vector<Value, Compare, Find, >) -include/o3tl/sorted_vector.hxx:50 +include/o3tl/sorted_vector.hxx:52 sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(initializer_list<type-parameter-?-?>) -include/o3tl/sorted_vector.hxx:55 +include/o3tl/sorted_vector.hxx:57 sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>() -include/o3tl/sorted_vector.hxx:56 +include/o3tl/sorted_vector.hxx:58 sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(const sorted_vector<Value, Compare, Find, > &) -include/o3tl/sorted_vector.hxx:57 +include/o3tl/sorted_vector.hxx:59 sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(sorted_vector<Value, Compare, Find, > &&) -include/o3tl/sorted_vector.hxx:225 +include/o3tl/sorted_vector.hxx:227 _Bool o3tl::sorted_vector::operator!=(const sorted_vector<Value, Compare, Find, > &) const +include/o3tl/sorted_vector.hxx:242 + void o3tl::sorted_vector::insert_sorted_unique_vector(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &) include/o3tl/span.hxx:36 span<T> o3tl::<deduction guide for span>(span<T>) include/o3tl/span.hxx:50 span<T> o3tl::<deduction guide for span>() include/o3tl/span.hxx:53 + o3tl::span::span(const SfxPoolItem *(&)[N]) +include/o3tl/span.hxx:53 + o3tl::span::span(const SfxPoolItem *const (&)[N]) +include/o3tl/span.hxx:53 o3tl::span::span(const int (&)[N]) include/o3tl/span.hxx:53 + o3tl::span::span(const struct SfxItemPropertyMapEntry (&)[N]) +include/o3tl/span.hxx:53 o3tl::span::span(const struct XMLPropertyState (&)[N]) include/o3tl/span.hxx:53 + o3tl::span::span(const struct com::sun::star::beans::NamedValue (&)[N]) +include/o3tl/span.hxx:53 + o3tl::span::span(const struct comphelper::PropertyMapEntry (&)[N]) +include/o3tl/span.hxx:53 o3tl::span::span(const unsigned short (&)[N]) include/o3tl/span.hxx:53 o3tl::span::span(int (&)[N]) include/o3tl/span.hxx:53 + o3tl::span::span(struct SfxItemPropertyMapEntry (&)[N]) +include/o3tl/span.hxx:53 o3tl::span::span(struct XMLPropertyState (&)[N]) include/o3tl/span.hxx:53 + o3tl::span::span(struct com::sun::star::beans::NamedValue (&)[N]) +include/o3tl/span.hxx:53 o3tl::span::span(unsigned short (&)[N]) include/o3tl/span.hxx:53 - span<T> o3tl::<deduction guide for span>(type-parameter-?-? (&)[_Size]) + span<T> o3tl::<deduction guide for span>(type-parameter-?-? (&)[S]) include/o3tl/span.hxx:55 span<T> o3tl::<deduction guide for span>(type-parameter-?-? *,unsigned long) include/o3tl/span.hxx:63 @@ -831,7 +933,7 @@ include/o3tl/strong_int.hxx:132 include/o3tl/strong_int.hxx:132 _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<short, struct FractionTag<10> >,type-parameter-?-?...) const include/o3tl/strong_int.hxx:132 - _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned char, struct SdrLayerIDTag>,type-parameter-?-?...) const + _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<short, struct SdrLayerIDTag>,type-parameter-?-?...) const include/o3tl/strong_int.hxx:132 _Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,type-parameter-?-?...) const include/o3tl/strong_int.hxx:132 @@ -844,14 +946,18 @@ include/o3tl/typed_flags_set.hxx:146 typename typed_flags<type-parameter-?-?>::Wrap operator^(typename typed_flags<type-parameter-?-?>::Wrap,type-parameter-?-?) include/o3tl/typed_flags_set.hxx:313 typename typed_flags<type-parameter-?-?>::Self operator^=(type-parameter-?-? &,typename typed_flags<type-parameter-?-?>::Wrap) -include/o3tl/vector_pool.hxx:83 +include/o3tl/vector_pool.hxx:84 o3tl::detail::struct_from_value::type::type() include/oox/export/DMLPresetShapeExport.hxx:100 _Bool oox::drawingml::DMLPresetShapeExporter::HasHandleValue() const include/oox/export/DMLPresetShapeExport.hxx:129 - class com::sun::star::uno::Any oox::drawingml::DMLPresetShapeExporter::FindHandleValue(class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue>,class std::basic_string_view<char16_t>) + com::sun::star::uno::Any oox::drawingml::DMLPresetShapeExporter::FindHandleValue(com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue>,std::basic_string_view<char16_t>) +include/oox/helper/attributelist.hxx:69 + long oox::AttributeConversion::decodeHyper(std::basic_string_view<char16_t>) include/oox/helper/containerhelper.hxx:51 _Bool oox::ValueRange::operator!=(const struct oox::ValueRange &) const +include/oox/helper/containerhelper.hxx:72 + const std::vector<struct oox::ValueRange> & oox::ValueRangeSet::getRanges() const include/oox/helper/containerhelper.hxx:99 oox::Matrix::Matrix<Type>(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_reference) include/oox/helper/containerhelper.hxx:110 @@ -868,88 +974,936 @@ include/oox/helper/containerhelper.hxx:123 typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::iterator oox::Matrix::row_end(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type) include/oox/helper/containerhelper.hxx:126 typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::reference oox::Matrix::row_front(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type) -include/oox/helper/propertymap.hxx:112 - void oox::PropertyMap::dumpCode(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &) -include/oox/helper/propertymap.hxx:113 - void oox::PropertyMap::dumpData(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &) +include/oox/helper/propertymap.hxx:115 + void oox::PropertyMap::dumpCode(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &) +include/oox/helper/propertymap.hxx:116 + void oox::PropertyMap::dumpData(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &) +include/oox/ppt/slidepersist.hxx:93 + const std::shared_ptr<struct oox::drawingml::FillProperties> & oox::ppt::SlidePersist::getBackgroundProperties() const include/opencl/openclconfig.hxx:57 _Bool OpenCLConfig::ImplMatcher::operator!=(const struct OpenCLConfig::ImplMatcher &) const +include/opencl/openclconfig.hxx:94 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct OpenCLConfig &) include/sax/fshelper.hxx:126 - void sax_fastparser::FastSerializerHelper::singleElementNS(int,int,const class rtl::Reference<class sax_fastparser::FastAttributeList> &) + void sax_fastparser::FastSerializerHelper::singleElementNS(int,int,const rtl::Reference<sax_fastparser::FastAttributeList> &) include/sax/fshelper.hxx:130 - void sax_fastparser::FastSerializerHelper::startElementNS(int,int,const class rtl::Reference<class sax_fastparser::FastAttributeList> &) -include/sax/tools/converter.hxx:198 - _Bool sax::Converter::convertAngle(short &,class std::basic_string_view<char16_t>,_Bool) + void sax_fastparser::FastSerializerHelper::startElementNS(int,int,const rtl::Reference<sax_fastparser::FastAttributeList> &) +include/sax/tools/converter.hxx:206 + _Bool sax::Converter::convertAngle(short &,std::basic_string_view<char16_t>,_Bool) include/sfx2/childwin.hxx:120 void SfxChildWindow::ClearController() include/sfx2/docfilt.hxx:81 _Bool SfxFilter::GetGpgEncryption() const -include/sfx2/evntconf.hxx:60 +include/sfx2/evntconf.hxx:61 struct SfxEventName & SfxEventNamesList::at(unsigned long) include/sfx2/infobar.hxx:104 - void SfxInfoBarWindow::SetCommandHandler(class weld::Button &,const class rtl::OUString &) -include/sfx2/lokcharthelper.hxx:43 + void SfxInfoBarWindow::SetCommandHandler(weld::Button &,const rtl::OUString &) +include/sfx2/lokcomponenthelpers.hxx:47 void LokChartHelper::Invalidate() include/sfx2/msg.hxx:120 - const class std::type_info * SfxType0::Type() const -include/sfx2/viewsh.hxx:397 + const std::type_info * SfxType0::Type() const +include/sfx2/viewsh.hxx:400 enum LOKDeviceFormFactor SfxViewShell::GetLOKDeviceFormFactor() const -include/sfx2/viewsh.hxx:399 - _Bool SfxViewShell::isLOKDesktop() const -include/svl/itemiter.hxx:45 +include/svl/itemiter.hxx:44 _Bool SfxItemIter::IsAtEnd() const include/svl/itempool.hxx:103 enum MapUnit SfxItemPool::GetDefaultMetric() const include/svl/itempool.hxx:158 const type-parameter-?-? * SfxItemPool::GetItem2Default(TypedWhichId<type-parameter-?-?>) const -include/svl/itempool.hxx:196 +include/svl/itempool.hxx:199 void SfxItemPool::dumpAsXml(struct _xmlTextWriter *) const include/svl/lockfilecommon.hxx:60 - void svt::LockFileCommon::SetURL(const class rtl::OUString &) + void svt::LockFileCommon::SetURL(const rtl::OUString &) include/svl/ondemand.hxx:346 - const class CharClass & OnDemandCharClass::operator*() const -include/svl/poolitem.hxx:168 + const CharClass & OnDemandCharClass::operator*() const +include/svl/poolitem.hxx:169 type-parameter-?-? * SfxPoolItem::DynamicWhichCast(TypedWhichId<type-parameter-?-?>) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<CntUInt16Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<DatabaseMapItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<DbuTypeCollectionItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<DriverPoolingSettingsItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<MediaItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<NameOrIndex, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<OStringListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<OfaPtrItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<OfaXColorListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SbxItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScCondFormatDlgItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScCondFormatItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScConsolidateItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScHyphenateCell, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScIndentItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScLineBreakCell, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScMergeAttr, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScMergeFlagAttr, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPageHFItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPageScaleToItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPatternAttr, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPivotItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScProtectionAttr, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScQueryItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScRotateValueItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScShrinkToFitCell, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScSolveItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScSortItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScSubTotalItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpCalcItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpDefaultsItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpFormulaItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpPrintItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpViewItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScUserListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScVerticalStackCell, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScViewObjectModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsLayoutItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsMiscItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsPrintItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsSnapItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllPositionXItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllPositionYItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllSizeHeightItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllSizeWidthItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAngleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscAbsItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscDirItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscIsRelItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscRelItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionFitLineLenItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionLineLenItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionTypeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCircKindItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCustomShapeGeometryItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeKindItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeLineDeltaCountItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode1GlueDistItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode1HorzDistItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode1VertDistItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode2GlueDistItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode2HorzDistItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode2VertDistItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafBlueItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafContrastItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafCropItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafGamma100Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafGreenItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafInvertItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafLuminanceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafRedItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafTransparenceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrHorzShearAllItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrHorzShearOneItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLayerIdItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLayerNameItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLogicSizeHeightItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLogicSizeWidthItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureBelowRefEdgeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureDecimalPlacesItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureFormatStringItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureKindItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureOverhangItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureScaleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextAutoAngleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextFixedAngleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextHPosItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextIsFixedAngleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextRota90Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextVPosItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureUnitItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMetricItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMoveXItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMoveYItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrObjPrintableItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrObjVisibleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOnOffItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOnePositionXItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOnePositionYItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOneSizeHeightItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOneSizeWidthItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrPercentItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeXAllItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeXOneItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeYAllItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeYOneItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrRotateAllItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrRotateOneItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrShearAngleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniAmountItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniCountItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniDelayItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniDirectionItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniKindItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniStartInsideItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniStopInsideItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextFitToSizeTypeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextFixedCellHeightItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextHorzAdjustItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextVertAdjustItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef1XItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef1YItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef2XItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef2YItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrVertShearAllItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrVertShearOneItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrYesNoItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxAllEnumItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxBoolItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxByteItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxDocumentInfoItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxEnumItemInterface, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxEventNamesItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxFlagItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxFrameItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxGlobalNameItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxGrabBagItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxHyphenRegionItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxInt16Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxInt32Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxInt64Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxIntegerListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxLinkItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxMacroInfoItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxMetricItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxPointItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxPoolItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxRectangleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxScriptOrganizerItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxStringItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxStringListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxTabDialogItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUInt16Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUInt32Item, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUnoAnyItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUnoFrameItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxVoidItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxWatermarkItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvXMLAttrContainerItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DCharacterModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DCloseBackItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DCloseFrontItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DNormalsKindItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DPerspectiveItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DReducedLineGeometryItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DShadeModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DSmoothLidsItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DSmoothNormalsItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureKindItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureProjectionXItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureProjectionYItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxAdjustItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxAutoKernItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxB3DVectorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBitmapListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBlinkItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBoxInfoItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBoxItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBrushItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBulletItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCaseMapItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharHiddenItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharReliefItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharRotateItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharScaleWidthItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartColorTableItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartIndicateItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartKindErrorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartRegressItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartTextOrderItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxClipboardFormatItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxColorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxColorListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxColumnItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxContourItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCrossedOutItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxDashListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxDoubleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxEmphasisMarkItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxEscapementItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFieldItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontHeightItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxForbiddenRuleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFormatBreakItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFormatKeepItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFormatSplitItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFrameDirectionItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGalleryItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGradientListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGraphicItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGrfCrop, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGridItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHangingPunctuationItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHatchListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHorJustifyItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHyperlinkItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHyphenZoneItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxJustifyMethodItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxKerningItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLRSpaceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLanguageItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineEndListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineSpacingItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLongLRSpaceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLongULSpaceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxMacroItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxMarginItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxNoHyphenItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxNumBulletItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxNumberInfoItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxObjectItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOpaqueItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOrientationItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOrphansItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOverlineItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPageItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPageModelItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPagePosSizeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPaperBinItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxParaGridItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxParaVertAlignItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPatternListItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItAuthorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItDateItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItIdItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItTextItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostureItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPrintItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxProtectItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRotateModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRsidItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxScriptSpaceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSearchItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSetItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxShadowItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxShadowedItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSizeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSmartTagItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTabStopItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTextRotateItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTwoLinesItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxULSpaceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxUnderlineItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxVerJustifyItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxViewLayoutItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWeightItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWidowsItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWordLineModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWritingModeItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxZoomItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxZoomSliderItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwAddPrinterItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwAttrSetChg, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwAutoFormatGetDocNode, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwChannelBGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwChannelGGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwChannelRGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwCharFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwCondCollItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwConditionTextFormatColl, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwContrastGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwCropGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDelChr, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDelText, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDocDisplayItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDocPosUpdate, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDrawFrameFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDrawModeGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwElemItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwEnvItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFindNearestNode, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltAnchor, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltRDFMark, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltRedline, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltTOX, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFlyFrameFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatAnchor, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatAutoFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatChain, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatCharFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatChg, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatCol, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatContent, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatContentControl, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatDrop, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatEditInReadonly, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatEndAtTextEnd, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatField, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFillOrder, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFlyCnt, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFollowTextFlow, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFooter, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFootnote, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFootnoteAtTextEnd, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFrameSize, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatHeader, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatHoriOrient, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatINetFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatLayoutSplit, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatLineBreak, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatLineNumber, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatMeta, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatNoBalancedColumns, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatPageDesc, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatRefMark, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatRowSplit, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatRuby, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatSurround, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatURL, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatVertOrient, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatWrapInfluenceOnObjPos, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFrameFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwGammaGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwGrfFormatColl, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwHeaderAndFooterEatSpacingItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwInsText, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwInvertGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwLuminanceGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwMirrorGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwMsgPoolItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwNumRuleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPaMItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPageFootnoteInfoItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwParaConnectBorderItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPtrItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPtrMsgPoolItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwRefMarkFieldUpdate, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwRegisterItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwRotationGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwShadowCursorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwStringMsgPoolItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTOXMark, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxFormula, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxNumFormat, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxValue, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableFormulaUpdate, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTestItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTextFormatColl, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTextGridItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTransparencyGrf, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwUINumRuleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwUpdateAttr, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwVirtPageNumInfo, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwWrtShellItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XColorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillAttrSetItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBackgroundItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBitmapItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpPosItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpPosOffsetXItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpPosOffsetYItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpSizeLogItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpSizeYItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpStretchItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpTileItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpTileOffsetXItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpTileOffsetYItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillColorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillFloatTransparenceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillGradientItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillHatchItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillStyleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillTransparenceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillUseSlideBackgroundItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextAdjustItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextDistanceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextHideFormItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextMirrorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextOutlineItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowColorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowTranspItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowXValItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowYValItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextStartItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextStyleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XGradientStepCountItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineAttrSetItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineCapItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineColorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineDashItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineEndCenterItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineEndItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineEndWidthItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineJointItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStartCenterItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStartItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStartWidthItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStyleItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineTransparenceItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineWidthItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XSecondaryFillColorItem, derived_type>, int>::type) +include/svl/typedwhich.hxx:31 + TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<const SfxStringItem, derived_type>, int>::type) include/svl/whichranges.hxx:52 void svl::Items_t::fill(struct std::pair<unsigned short, unsigned short> *) +include/svtools/ctrlbox.hxx:413 + void FontStyleBox::set_size_request(int,int) +include/svtools/ctrlbox.hxx:484 + void FontSizeBox::set_size_request(int,int) include/svtools/DocumentToGraphicRenderer.hxx:105 _Bool DocumentToGraphicRenderer::isImpress() const include/svtools/HtmlWriter.hxx:46 - void HtmlWriter::writeAttribute(class SvStream &,class std::basic_string_view<char>,int) + void HtmlWriter::writeAttribute(SvStream &,std::basic_string_view<char>,int) +include/svtools/scrolladaptor.hxx:59 + _Bool ScrollAdaptor::IsHoriScroll() const include/svx/autoformathelper.hxx:145 - _Bool AutoFormatBase::operator==(const class AutoFormatBase &) const + _Bool AutoFormatBase::operator==(const AutoFormatBase &) const include/svx/ClassificationDialog.hxx:86 void svx::ClassificationDialog::(anonymous)::__invoke() -include/svx/ClassificationField.hxx:47 - const class rtl::OUString & svx::ClassificationResult::getDisplayText() const -include/svx/ClassificationField.hxx:52 - _Bool svx::ClassificationResult::operator==(const class svx::ClassificationResult &) const -include/svx/ColorSets.hxx:85 - void svx::Theme::SetName(const class rtl::OUString &) -include/svx/DiagramDataInterface.hxx:33 - class rtl::OUString DiagramDataInterface::getString() const +include/svx/ClassificationField.hxx:48 + const rtl::OUString & svx::ClassificationResult::getDisplayText() const +include/svx/ClassificationField.hxx:53 + _Bool svx::ClassificationResult::operator==(const svx::ClassificationResult &) const +include/svx/ColorSets.hxx:102 + void svx::Theme::SetName(const rtl::OUString &) +include/svx/diagram/IDiagramHelper.hxx:48 + void svx::diagram::DiagramFrameHdl::clicked(const struct svx::diagram::Point &) +include/svx/diagram/IDiagramHelper.hxx:94 + rtl::OUString svx::diagram::IDiagramHelper::getString() const include/svx/dlgctrl.hxx:265 - void SvxLineEndLB::set_active_text(const class rtl::OUString &) + void SvxLineEndLB::set_active_text(const rtl::OUString &) include/svx/framelink.hxx:168 - _Bool svx::frame::operator>(const class svx::frame::Style &,const class svx::frame::Style &) + _Bool svx::frame::operator>(const svx::frame::Style &,const svx::frame::Style &) include/svx/gallery1.hxx:56 - const class std::unique_ptr<class GalleryBinaryEngineEntry> & GalleryThemeEntry::getGalleryStorageEngineEntry() const + const std::unique_ptr<GalleryBinaryEngineEntry> & GalleryThemeEntry::getGalleryStorageEngineEntry() const include/svx/gallerybinaryengine.hxx:59 - const class INetURLObject & GalleryBinaryEngine::GetStrURL() const + const INetURLObject & GalleryBinaryEngine::GetStrURL() const +include/svx/langbox.hxx:97 + void SvxLanguageBox::set_size_request(int,int) include/svx/sidebar/InspectorTextPanel.hxx:49 - class std::unique_ptr<class PanelLayout> svx::sidebar::InspectorTextPanel::Create(class weld::Widget *) + std::unique_ptr<PanelLayout> svx::sidebar::InspectorTextPanel::Create(weld::Widget *) include/svx/svdlayer.hxx:74 - _Bool SdrLayer::operator==(const class SdrLayer &) const + _Bool SdrLayer::operator==(const SdrLayer &) const include/svx/svdpntv.hxx:444 _Bool SdrPaintView::IsSwapAsynchron() const include/svx/svdtrans.hxx:242 _Bool IsMetric(enum MapUnit) -include/svx/txencbox.hxx:92 +include/svx/txencbox.hxx:81 void SvxTextEncodingBox::grab_focus() -include/svx/txencbox.hxx:146 - void SvxTextEncodingTreeView::connect_changed(const class Link<class weld::TreeView &, void> &) +include/svx/txencbox.hxx:135 + void SvxTextEncodingTreeView::connect_changed(const Link<weld::TreeView &, void> &) include/svx/xpoly.hxx:83 - _Bool XPolygon::operator==(const class XPolygon &) const + _Bool XPolygon::operator==(const XPolygon &) const include/tools/bigint.hxx:76 BigInt::BigInt(unsigned int) include/tools/bigint.hxx:82 @@ -957,85 +1911,81 @@ include/tools/bigint.hxx:82 include/tools/bigint.hxx:84 unsigned int BigInt::operator unsigned int() const include/tools/bigint.hxx:109 - class BigInt operator-(const class BigInt &,const class BigInt &) + BigInt operator-(const BigInt &,const BigInt &) include/tools/bigint.hxx:112 - class BigInt operator%(const class BigInt &,const class BigInt &) + BigInt operator%(const BigInt &,const BigInt &) include/tools/bigint.hxx:115 - _Bool operator!=(const class BigInt &,const class BigInt &) + _Bool operator!=(const BigInt &,const BigInt &) include/tools/bigint.hxx:118 - _Bool operator<=(const class BigInt &,const class BigInt &) + _Bool operator<=(const BigInt &,const BigInt &) include/tools/color.hxx:32 unsigned int color::extractRGB(unsigned int) -include/tools/color.hxx:92 - Color::Color(enum ColorAlphaTag,unsigned int) -include/tools/color.hxx:247 - _Bool Color::operator>(const class Color &) const -include/tools/cpuid.hxx:72 +include/tools/cpuid.hxx:67 + _Bool cpuid::hasSSE2() +include/tools/cpuid.hxx:74 _Bool cpuid::hasSSSE3() -include/tools/cpuid.hxx:86 +include/tools/cpuid.hxx:81 + _Bool cpuid::hasAVX() +include/tools/cpuid.hxx:88 _Bool cpuid::hasAVX2() +include/tools/cpuid.hxx:95 + _Bool cpuid::hasAVX512F() include/tools/date.hxx:218 - _Bool Date::operator>=(const class Date &) const + _Bool Date::operator>=(const Date &) const include/tools/datetime.hxx:47 - DateTime::DateTime(const class tools::Time &) + DateTime::DateTime(const tools::Time &) include/tools/datetime.hxx:88 - class DateTime operator-(const class DateTime &,int) + DateTime operator-(const DateTime &,int) include/tools/datetime.hxx:90 - class DateTime operator-(const class DateTime &,double) + DateTime operator-(const DateTime &,double) include/tools/datetime.hxx:92 - class DateTime operator+(const class DateTime &,const class tools::Time &) + DateTime operator+(const DateTime &,const tools::Time &) include/tools/datetime.hxx:93 - class DateTime operator-(const class DateTime &,const class tools::Time &) -include/tools/degree.hxx:25 - char (&)[N] NofDegree(strong_int<type-parameter-?-?, FractionTag<N> >) + DateTime operator-(const DateTime &,const tools::Time &) include/tools/fract.hxx:41 Fraction::Fraction(double,double) include/tools/fract.hxx:68 - class Fraction & Fraction::operator+=(double) + Fraction & Fraction::operator+=(double) include/tools/fract.hxx:69 - class Fraction & Fraction::operator-=(double) -include/tools/fract.hxx:85 - _Bool operator>=(const class Fraction &,const class Fraction &) -include/tools/fract.hxx:101 - class Fraction operator+(const class Fraction &,double) -include/tools/fract.hxx:102 - class Fraction operator-(const class Fraction &,double) + Fraction & Fraction::operator-=(double) +include/tools/fract.hxx:88 + _Bool operator>=(const Fraction &,const Fraction &) include/tools/fract.hxx:104 - class Fraction operator/(const class Fraction &,double) -include/tools/gen.hxx:236 - class Size & Size::operator+=(const class Size &) -include/tools/gen.hxx:237 - class Size & Size::operator-=(const class Size &) -include/tools/gen.hxx:239 - class Size & Size::operator/=(const long) + Fraction operator+(const Fraction &,double) +include/tools/fract.hxx:105 + Fraction operator-(const Fraction &,double) +include/tools/fract.hxx:107 + Fraction operator/(const Fraction &,double) include/tools/gen.hxx:241 - class Size operator+(const class Size &,const class Size &) + Size & Size::operator+=(const Size &) include/tools/gen.hxx:242 - class Size operator-(const class Size &,const class Size &) -include/tools/gen.hxx:362 - class Pair & Range::toPair() -include/tools/gen.hxx:429 - class Pair & Selection::toPair() + Size & Size::operator-=(const Size &) +include/tools/gen.hxx:244 + Size & Size::operator/=(const long) +include/tools/gen.hxx:246 + Size operator+(const Size &,const Size &) +include/tools/gen.hxx:247 + Size operator-(const Size &,const Size &) +include/tools/gen.hxx:367 + Pair & Range::toPair() +include/tools/gen.hxx:434 + Pair & Selection::toPair() include/tools/link.hxx:134 const char * Link::getSourceFilename() const include/tools/link.hxx:135 int Link::getSourceLineNumber() const include/tools/link.hxx:136 const char * Link::getTargetName() const -include/tools/poly.hxx:161 - _Bool tools::Polygon::operator!=(const class tools::Polygon &) const -include/tools/poly.hxx:249 - _Bool tools::PolyPolygon::operator!=(const class tools::PolyPolygon &) const -include/tools/simd.hxx:16 - _Bool simd::isAligned(const type-parameter-?-? *) -include/tools/simd.hxx:21 - type-parameter-?-? simd::roundDown(type-parameter-?-?,unsigned int) -include/tools/stream.hxx:512 - class rtl::OString read_uInt32_lenPrefixed_uInt8s_ToOString(class SvStream &) -include/tools/urlobj.hxx:448 - _Bool INetURLObject::SetHost(class std::basic_string_view<char16_t>) +include/tools/poly.hxx:162 + _Bool tools::Polygon::operator!=(const tools::Polygon &) const +include/tools/poly.hxx:250 + _Bool tools::PolyPolygon::operator!=(const tools::PolyPolygon &) const +include/tools/stream.hxx:516 + rtl::OString read_uInt32_lenPrefixed_uInt8s_ToOString(SvStream &) +include/tools/urlobj.hxx:447 + _Bool INetURLObject::SetHost(std::basic_string_view<char16_t>) include/tools/urlobj.hxx:947 - int INetURLObject::SubString::set(class rtl::OUString &,class std::basic_string_view<char16_t>) + int INetURLObject::SubString::set(rtl::OUString &,std::basic_string_view<char16_t>) include/tools/weakbase.h:110 _Bool tools::WeakReference::operator==(const type-parameter-?-? *) const include/tools/weakbase.h:119 @@ -1043,11 +1993,11 @@ include/tools/weakbase.h:119 include/tools/weakbase.h:122 _Bool tools::WeakReference::operator>(const WeakReference<reference_type> &) const include/tools/XmlWriter.hxx:61 - void tools::XmlWriter::element(const class rtl::OString &) + void tools::XmlWriter::element(const rtl::OString &) include/unotest/directories.hxx:46 - class rtl::OUString test::Directories::getPathFromWorkdir(class std::basic_string_view<char16_t>) const + rtl::OUString test::Directories::getPathFromWorkdir(std::basic_string_view<char16_t>) const include/unotools/localedatawrapper.hxx:239 - const class rtl::OUString & LocaleDataWrapper::getLongDateYearSep() const + const rtl::OUString & LocaleDataWrapper::getLongDateYearSep() const include/unotools/moduleoptions.hxx:165 _Bool SvtModuleOptions::IsDataBase() const include/unotools/resmgr.hxx:53 @@ -1064,34 +2014,32 @@ include/unotools/weakref.hxx:66 unotools::WeakReference::WeakReference<interface_type>(const Reference<type-parameter-?-?> &) include/unotools/weakref.hxx:75 unotools::WeakReference::WeakReference<interface_type>(type-parameter-?-? &) -include/unotools/weakref.hxx:127 - Reference<type-parameter-?-?> unotools::WeakReference::operator Reference<type-parameter-?-?>() const include/vcl/alpha.hxx:46 - _Bool AlphaMask::operator==(const class AlphaMask &) const + _Bool AlphaMask::operator==(const AlphaMask &) const include/vcl/alpha.hxx:47 - _Bool AlphaMask::operator!=(const class AlphaMask &) const + _Bool AlphaMask::operator!=(const AlphaMask &) const include/vcl/animate/Animation.hxx:41 - _Bool Animation::operator!=(const class Animation &) const + _Bool Animation::operator!=(const Animation &) const include/vcl/animate/AnimationBitmap.hxx:68 _Bool AnimationBitmap::operator!=(const struct AnimationBitmap &) const include/vcl/BitmapBasicMorphologyFilter.hxx:63 BitmapDilateFilter::BitmapDilateFilter(int,unsigned char) include/vcl/BitmapReadAccess.hxx:87 - class BitmapColor BitmapReadAccess::GetPixel(const class Point &) const + BitmapColor BitmapReadAccess::GetPixel(const Point &) const include/vcl/BitmapReadAccess.hxx:107 - unsigned char BitmapReadAccess::GetPixelIndex(const class Point &) const -include/vcl/builder.hxx:105 - const class rtl::OString & VclBuilder::getUIFile() const -include/vcl/builder.hxx:331 - void VclBuilder::connectNumericFormatterAdjustment(const class rtl::OString &,const class rtl::OUString &) + unsigned char BitmapReadAccess::GetPixelIndex(const Point &) const +include/vcl/builder.hxx:107 + const rtl::OString & VclBuilder::getUIFile() const +include/vcl/builder.hxx:333 + void VclBuilder::connectNumericFormatterAdjustment(const rtl::OString &,const rtl::OUString &) include/vcl/builderpage.hxx:36 - void BuilderPage::SetHelpId(const class rtl::OString &) + void BuilderPage::SetHelpId(const rtl::OString &) include/vcl/ColorMask.hxx:110 - void ColorMask::GetColorFor16BitMSB(class BitmapColor &,const unsigned char *) const + void ColorMask::GetColorFor16BitMSB(BitmapColor &,const unsigned char *) const include/vcl/ColorMask.hxx:111 - void ColorMask::SetColorFor16BitMSB(const class BitmapColor &,unsigned char *) const + void ColorMask::SetColorFor16BitMSB(const BitmapColor &,unsigned char *) const include/vcl/ColorMask.hxx:113 - void ColorMask::SetColorFor16BitLSB(const class BitmapColor &,unsigned char *) const + void ColorMask::SetColorFor16BitLSB(const BitmapColor &,unsigned char *) const include/vcl/commandevent.hxx:249 CommandMediaData::CommandMediaData(enum MediaCommand) include/vcl/commandevent.hxx:256 @@ -1101,72 +2049,80 @@ include/vcl/commandevent.hxx:276 include/vcl/commandevent.hxx:293 CommandLongPressData::CommandLongPressData() include/vcl/cursor.hxx:96 - _Bool vcl::Cursor::operator!=(const class vcl::Cursor &) const + _Bool vcl::Cursor::operator!=(const vcl::Cursor &) const include/vcl/customweld.hxx:45 - class rtl::OUString weld::CustomWidgetController::GetHelpText() const -include/vcl/customweld.hxx:86 - class Point weld::CustomWidgetController::GetPointerPosPixel() const -include/vcl/customweld.hxx:166 + rtl::OUString weld::CustomWidgetController::GetHelpText() const +include/vcl/customweld.hxx:88 + Point weld::CustomWidgetController::GetPointerPosPixel() const +include/vcl/customweld.hxx:168 void weld::CustomWeld::queue_draw_area(int,int,int,int) -include/vcl/customweld.hxx:181 +include/vcl/customweld.hxx:183 void weld::CustomWeld::set_visible(_Bool) -include/vcl/customweld.hxx:185 - void weld::CustomWeld::set_tooltip_text(const class rtl::OUString &) +include/vcl/customweld.hxx:187 + void weld::CustomWeld::set_tooltip_text(const rtl::OUString &) include/vcl/errcode.hxx:86 - _Bool ErrCode::operator<(const class ErrCode &) const + _Bool ErrCode::operator<(const ErrCode &) const include/vcl/errcode.hxx:87 - _Bool ErrCode::operator<=(const class ErrCode &) const + _Bool ErrCode::operator<=(const ErrCode &) const include/vcl/errcode.hxx:88 - _Bool ErrCode::operator>(const class ErrCode &) const + _Bool ErrCode::operator>(const ErrCode &) const include/vcl/errcode.hxx:89 - _Bool ErrCode::operator>=(const class ErrCode &) const -include/vcl/fieldvalues.hxx:53 + _Bool ErrCode::operator>=(const ErrCode &) const +include/vcl/fieldvalues.hxx:58 double vcl::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit) include/vcl/filter/pdfdocument.hxx:119 - const class std::vector<class vcl::filter::PDFReferenceElement *> & vcl::filter::PDFObjectElement::GetDictionaryReferences() const + const std::vector<vcl::filter::PDFReferenceElement *> & vcl::filter::PDFObjectElement::GetDictionaryReferences() const include/vcl/filter/pdfdocument.hxx:128 unsigned long vcl::filter::PDFObjectElement::GetArrayLength() const include/vcl/filter/pdfdocument.hxx:188 - class vcl::filter::PDFNumberElement & vcl::filter::PDFReferenceElement::GetObjectElement() const + vcl::filter::PDFNumberElement & vcl::filter::PDFReferenceElement::GetObjectElement() const include/vcl/filter/PDFiumLibrary.hxx:56 - const class rtl::OUString & vcl::pdf::PDFium::getLastError() const -include/vcl/filter/PDFiumLibrary.hxx:91 - class std::unique_ptr<class vcl::pdf::PDFiumPageObject> vcl::pdf::PDFiumAnnotation::getObject(int) -include/vcl/filter/PDFiumLibrary.hxx:97 - class basegfx::B2DVector vcl::pdf::PDFiumAnnotation::getBorderCornerRadius() + const rtl::OUString & vcl::pdf::PDFium::getLastError() const +include/vcl/filter/PDFiumLibrary.hxx:93 + std::unique_ptr<vcl::pdf::PDFiumPageObject> vcl::pdf::PDFiumAnnotation::getObject(int) +include/vcl/filter/PDFiumLibrary.hxx:99 + basegfx::B2DVector vcl::pdf::PDFiumAnnotation::getBorderCornerRadius() +include/vcl/font/Feature.hxx:49 + vcl::font::FeatureParameter::FeatureParameter(unsigned int,struct TranslateId) +include/vcl/font/Feature.hxx:76 + vcl::font::FeatureDefinition::FeatureDefinition(unsigned int,struct TranslateId,std::vector<struct vcl::font::FeatureParameter>) include/vcl/gdimtf.hxx:108 - _Bool GDIMetaFile::operator!=(const class GDIMetaFile &) const -include/vcl/gradient.hxx:84 - _Bool Gradient::operator!=(const class Gradient &) const + _Bool GDIMetaFile::operator!=(const GDIMetaFile &) const +include/vcl/gradient.hxx:87 + _Bool Gradient::operator!=(const Gradient &) const include/vcl/hatch.hxx:57 - _Bool Hatch::operator!=(const class Hatch &) const -include/vcl/inputctx.hxx:62 - _Bool InputContext::operator!=(const class InputContext &) const -include/vcl/ITiledRenderable.hxx:217 + _Bool Hatch::operator!=(const Hatch &) const +include/vcl/inputctx.hxx:63 + _Bool InputContext::operator!=(const InputContext &) const +include/vcl/ITiledRenderable.hxx:216 enum PointerStyle vcl::ITiledRenderable::getPointer() -include/vcl/jsdialog/executor.hxx:46 - void LOKTrigger::trigger_clicked(class weld::Button &) -include/vcl/lazydelete.hxx:76 +include/vcl/jsdialog/executor.hxx:47 + void LOKTrigger::trigger_clicked(weld::Button &) +include/vcl/lazydelete.hxx:77 vcl::DeleteOnDeinit::DeleteOnDeinit(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class (anonymous namespace)::SdrHdlBitmapSet> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class (anonymous namespace)::VDevBuffer> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class BitmapEx> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class VclPtr<class OutputDevice> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class Wallpaper> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class drawinglayer::primitive2d::DiscreteShadow> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class std::shared_ptr<class weld::Window> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<class std::unordered_map<int, class rtl::Reference<class LOKClipboard> > > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lazydelete.hxx:92 - class std::optional<struct (anonymous namespace)::WavyLineCache> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) -include/vcl/lok.hxx:22 +include/vcl/lazydelete.hxx:93 + std::optional<(anonymous namespace)::SdrHdlBitmapSet> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<(anonymous namespace)::VDevBuffer> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<BitmapEx> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<SalLayoutGlyphsCache> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<VclPtr<OutputDevice> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<Wallpaper> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<drawinglayer::primitive2d::DiscreteShadow> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<o3tl::lru_map<rtl::OUString, std::shared_ptr<const vcl::text::TextLayoutCache>, struct vcl::text::FirstCharsStringHash, struct vcl::text::FastStringCompareEqual, struct vcl::text::(anonymous namespace)::TextLayoutCacheCost> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<std::shared_ptr<weld::Window> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<std::unordered_map<int, rtl::Reference<LOKClipboard> > > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lazydelete.hxx:93 + std::optional<struct (anonymous namespace)::WavyLineCache> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...) +include/vcl/lok.hxx:23 void vcl::lok::unregisterPollCallbacks() include/vcl/menubarupdateicon.hxx:68 MenuBarUpdateIconManager::MenuBarUpdateIconManager() @@ -1175,157 +2131,161 @@ include/vcl/menubarupdateicon.hxx:71 include/vcl/menubarupdateicon.hxx:72 void MenuBarUpdateIconManager::SetShowBubble(_Bool) include/vcl/menubarupdateicon.hxx:73 - void MenuBarUpdateIconManager::SetBubbleImage(const class Image &) + void MenuBarUpdateIconManager::SetBubbleImage(const Image &) include/vcl/menubarupdateicon.hxx:74 - void MenuBarUpdateIconManager::SetBubbleTitle(const class rtl::OUString &) + void MenuBarUpdateIconManager::SetBubbleTitle(const rtl::OUString &) include/vcl/menubarupdateicon.hxx:75 - void MenuBarUpdateIconManager::SetBubbleText(const class rtl::OUString &) + void MenuBarUpdateIconManager::SetBubbleText(const rtl::OUString &) include/vcl/menubarupdateicon.hxx:77 - void MenuBarUpdateIconManager::SetClickHdl(const class Link<class LinkParamNone *, void> &) + void MenuBarUpdateIconManager::SetClickHdl(const Link<LinkParamNone *, void> &) include/vcl/menubarupdateicon.hxx:79 _Bool MenuBarUpdateIconManager::GetShowMenuIcon() const include/vcl/menubarupdateicon.hxx:80 _Bool MenuBarUpdateIconManager::GetShowBubble() const include/vcl/menubarupdateicon.hxx:81 - const class rtl::OUString & MenuBarUpdateIconManager::GetBubbleTitle() const + const rtl::OUString & MenuBarUpdateIconManager::GetBubbleTitle() const include/vcl/menubarupdateicon.hxx:82 - const class rtl::OUString & MenuBarUpdateIconManager::GetBubbleText() const -include/vcl/opengl/OpenGLHelper.hxx:51 - class rtl::OString OpenGLHelper::GetDigest(const class rtl::OUString &,const class rtl::OUString &,class std::basic_string_view<char>) -include/vcl/opengl/OpenGLHelper.hxx:68 - void OpenGLHelper::renderToFile(long,long,const class rtl::OUString &) -include/vcl/opengl/OpenGLHelper.hxx:101 - void OpenGLHelper::debugMsgStreamWarn(const class std::basic_ostringstream<char> &) + const rtl::OUString & MenuBarUpdateIconManager::GetBubbleText() const +include/vcl/opengl/OpenGLHelper.hxx:70 + void OpenGLHelper::renderToFile(long,long,const rtl::OUString &) +include/vcl/opengl/OpenGLHelper.hxx:103 + void OpenGLHelper::debugMsgStreamWarn(const std::basic_ostringstream<char> &) include/vcl/outdev.hxx:1535 - void OutputDevice::DrawMask(const class Point &,const class Size &,const class Point &,const class Size &,const class Bitmap &,const class Color &) + void OutputDevice::DrawMask(const Point &,const Size &,const Point &,const Size &,const Bitmap &,const Color &) include/vcl/outdev.hxx:1625 - class basegfx::B2DPolyPolygon OutputDevice::LogicToPixel(const class basegfx::B2DPolyPolygon &,const class MapMode &) const + basegfx::B2DPolyPolygon OutputDevice::LogicToPixel(const basegfx::B2DPolyPolygon &,const MapMode &) const include/vcl/outdev.hxx:1643 - class basegfx::B2DPolyPolygon OutputDevice::PixelToLogic(const class basegfx::B2DPolyPolygon &,const class MapMode &) const + basegfx::B2DPolyPolygon OutputDevice::PixelToLogic(const basegfx::B2DPolyPolygon &,const MapMode &) const include/vcl/salnativewidgets.hxx:408 _Bool TabitemValue::isBothAligned() const include/vcl/salnativewidgets.hxx:409 _Bool TabitemValue::isNotAligned() const -include/vcl/settings.hxx:423 +include/vcl/settings.hxx:438 void StyleSettings::SetUseFlatBorders(_Bool) -include/vcl/settings.hxx:426 +include/vcl/settings.hxx:441 void StyleSettings::SetUseFlatMenus(_Bool) -include/vcl/settings.hxx:438 +include/vcl/settings.hxx:453 void StyleSettings::SetHideDisabledMenuItems(_Bool) -include/vcl/settings.hxx:503 +include/vcl/settings.hxx:518 void StyleSettings::SetSpinSize(int) -include/vcl/settings.hxx:539 - class Size StyleSettings::GetToolbarIconSizePixel() const -include/vcl/settings.hxx:655 - _Bool HelpSettings::operator!=(const class HelpSettings &) const -include/vcl/settings.hxx:716 - _Bool AllSettings::operator!=(const class AllSettings &) const +include/vcl/settings.hxx:554 + Size StyleSettings::GetToolbarIconSizePixel() const +include/vcl/settings.hxx:670 + _Bool HelpSettings::operator!=(const HelpSettings &) const +include/vcl/settings.hxx:731 + _Bool AllSettings::operator!=(const AllSettings &) const include/vcl/split.hxx:92 void Splitter::SetHorizontal(_Bool) include/vcl/svapp.hxx:164 - ApplicationEvent::ApplicationEvent(enum ApplicationEvent::Type,class std::vector<class rtl::OUString> &&) -include/vcl/svapp.hxx:802 - void Application::AppEvent(const class ApplicationEvent &) -include/vcl/TaskStopwatch.hxx:92 + ApplicationEvent::ApplicationEvent(enum ApplicationEvent::Type,std::vector<rtl::OUString> &&) +include/vcl/svapp.hxx:805 + void Application::AppEvent(const ApplicationEvent &) +include/vcl/TaskStopwatch.hxx:91 void TaskStopwatch::reset() -include/vcl/TaskStopwatch.hxx:103 +include/vcl/TaskStopwatch.hxx:102 void TaskStopwatch::setInputStop(enum VclInputFlags) -include/vcl/TaskStopwatch.hxx:104 +include/vcl/TaskStopwatch.hxx:103 enum VclInputFlags TaskStopwatch::inputStop() const -include/vcl/TaskStopwatch.hxx:112 +include/vcl/TaskStopwatch.hxx:111 unsigned int TaskStopwatch::timeSlice() -include/vcl/TaskStopwatch.hxx:113 +include/vcl/TaskStopwatch.hxx:112 void TaskStopwatch::setTimeSlice(unsigned int) include/vcl/textrectinfo.hxx:48 - _Bool TextRectInfo::operator!=(const class TextRectInfo &) const + _Bool TextRectInfo::operator!=(const TextRectInfo &) const include/vcl/toolkit/longcurr.hxx:47 - class BigInt LongCurrencyFormatter::GetValue() const + BigInt LongCurrencyFormatter::GetValue() const include/vcl/toolkit/treelist.hxx:170 - const class SvTreeListEntry * SvTreeList::GetParent(const class SvTreeListEntry *) const -include/vcl/toolkit/treelistbox.hxx:372 + const SvTreeListEntry * SvTreeList::GetParent(const SvTreeListEntry *) const +include/vcl/toolkit/treelistbox.hxx:368 void SvTreeListBox::RemoveSelection() include/vcl/txtattr.hxx:56 - _Bool TextAttrib::operator!=(const class TextAttrib &) const -include/vcl/uitest/uiobject.hxx:134 - class std::unique_ptr<class UIObject> WindowUIObject::get_visible_child(const class rtl::OUString &) -include/vcl/uitest/uiobject.hxx:289 - TabPageUIObject::TabPageUIObject(const class VclPtr<class TabPage> &) -include/vcl/uitest/uiobject.hxx:297 - class std::unique_ptr<class UIObject> TabPageUIObject::create(class vcl::Window *) -include/vcl/uitest/uiobject.hxx:360 - SpinUIObject::SpinUIObject(const class VclPtr<class SpinButton> &) -include/vcl/uitest/uiobject.hxx:368 - class std::unique_ptr<class UIObject> SpinUIObject::create(class vcl::Window *) -include/vcl/weld.hxx:183 + _Bool TextAttrib::operator!=(const TextAttrib &) const +include/vcl/uitest/uiobject.hxx:135 + std::unique_ptr<UIObject> WindowUIObject::get_visible_child(const rtl::OUString &) +include/vcl/uitest/uiobject.hxx:311 + TabPageUIObject::TabPageUIObject(const VclPtr<TabPage> &) +include/vcl/uitest/uiobject.hxx:319 + std::unique_ptr<UIObject> TabPageUIObject::create(vcl::Window *) +include/vcl/uitest/uiobject.hxx:382 + SpinUIObject::SpinUIObject(const VclPtr<SpinButton> &) +include/vcl/uitest/uiobject.hxx:390 + std::unique_ptr<UIObject> SpinUIObject::create(vcl::Window *) +include/vcl/weld.hxx:184 _Bool weld::Widget::get_hexpand() const -include/vcl/weld.hxx:185 +include/vcl/weld.hxx:186 _Bool weld::Widget::get_vexpand() const -include/vcl/weld.hxx:192 - int weld::Widget::get_margin_top() const include/vcl/weld.hxx:193 + int weld::Widget::get_margin_top() const +include/vcl/weld.hxx:194 int weld::Widget::get_margin_bottom() const -include/vcl/weld.hxx:412 +include/vcl/weld.hxx:413 + void weld::ScrolledWindow::hadjustment_set_upper(int) +include/vcl/weld.hxx:415 + void weld::ScrolledWindow::hadjustment_set_page_size(int) +include/vcl/weld.hxx:416 + void weld::ScrolledWindow::hadjustment_set_page_increment(int) +include/vcl/weld.hxx:417 void weld::ScrolledWindow::hadjustment_set_step_increment(int) -include/vcl/weld.hxx:545 +include/vcl/weld.hxx:556 struct SystemEnvData weld::Window::get_system_data() const -include/vcl/weld.hxx:629 - class rtl::OString weld::Assistant::get_current_page_ident() const -include/vcl/weld.hxx:635 - class rtl::OUString weld::Assistant::get_page_title(const class rtl::OString &) const -include/vcl/weld.hxx:1118 - void weld::TreeView::set_text_align(const class weld::TreeIter &,double,int) -include/vcl/weld.hxx:1288 - const class rtl::OUString & weld::TreeView::get_saved_value() const -include/vcl/weld.hxx:1382 - _Bool weld::IconView::get_cursor(class weld::TreeIter *) const -include/vcl/weld.hxx:1392 +include/vcl/weld.hxx:640 + rtl::OString weld::Assistant::get_current_page_ident() const +include/vcl/weld.hxx:646 + rtl::OUString weld::Assistant::get_page_title(const rtl::OString &) const +include/vcl/weld.hxx:1058 + _Bool weld::TreeView::get_sensitive(int,int) const +include/vcl/weld.hxx:1161 + void weld::TreeView::set_text_align(const weld::TreeIter &,double,int) +include/vcl/weld.hxx:1331 + const rtl::OUString & weld::TreeView::get_saved_value() const +include/vcl/weld.hxx:1443 + _Bool weld::IconView::get_cursor(weld::TreeIter *) const +include/vcl/weld.hxx:1453 void weld::IconView::select_all() -include/vcl/weld.hxx:1398 +include/vcl/weld.hxx:1459 void weld::IconView::save_value() -include/vcl/weld.hxx:1399 - const class rtl::OUString & weld::IconView::get_saved_value() const -include/vcl/weld.hxx:1400 +include/vcl/weld.hxx:1460 + const rtl::OUString & weld::IconView::get_saved_value() const +include/vcl/weld.hxx:1461 _Bool weld::IconView::get_value_changed_from_saved() const -include/vcl/weld.hxx:1526 - void weld::MenuButton::append_item_radio(const class rtl::OUString &,const class rtl::OUString &) -include/vcl/weld.hxx:1534 - void weld::MenuButton::append_item(const class rtl::OUString &,const class rtl::OUString &,class VirtualDevice &) -include/vcl/weld.hxx:1615 - class rtl::OUString weld::ProgressBar::get_text() const -include/vcl/weld.hxx:1825 - void weld::EntryTreeView::EntryModifyHdl(const class weld::Entry &) -include/vcl/weld.hxx:2061 - class Size weld::MetricSpinButton::get_size_request() const -include/vcl/weld.hxx:2073 +include/vcl/weld.hxx:1587 + void weld::MenuButton::append_item_radio(const rtl::OUString &,const rtl::OUString &) +include/vcl/weld.hxx:1595 + void weld::MenuButton::append_item(const rtl::OUString &,const rtl::OUString &,VirtualDevice &) +include/vcl/weld.hxx:1676 + rtl::OUString weld::ProgressBar::get_text() const +include/vcl/weld.hxx:1886 + void weld::EntryTreeView::EntryModifyHdl(const weld::Entry &) +include/vcl/weld.hxx:2122 + Size weld::MetricSpinButton::get_size_request() const +include/vcl/weld.hxx:2134 void weld::MetricSpinButton::set_position(int) -include/vcl/weld.hxx:2177 +include/vcl/weld.hxx:2238 int weld::TextView::vadjustment_get_lower() const -include/vcl/weld.hxx:2399 - class rtl::OUString weld::Toolbar::get_item_label(const class rtl::OString &) const +include/vcl/weld.hxx:2460 + rtl::OUString weld::Toolbar::get_item_label(const rtl::OString &) const +include/vcl/weld.hxx:2504 + void weld::Scrollbar::adjustment_configure(int,int,int,int,int,int) +include/vcl/weld.hxx:2520 + int weld::Scrollbar::get_scroll_thickness() const include/vcl/weldutils.hxx:198 - const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> & weld::WidgetStatusListener::getFrame() const + const com::sun::star::uno::Reference<com::sun::star::frame::XFrame> & weld::WidgetStatusListener::getFrame() const include/vcl/weldutils.hxx:350 - void weld::DateFormatter::CursorChangedHdl(class weld::Entry &) + void weld::DateFormatter::CursorChangedHdl(weld::Entry &) include/vcl/weldutils.hxx:350 - void weld::DateFormatter::LinkStubCursorChangedHdl(void *,class weld::Entry &) -include/vcl/weldutils.hxx:379 - void weld::PatternFormatter::connect_focus_in(const class Link<class weld::Widget &, void> &) -include/vcl/window.hxx:375 + void weld::DateFormatter::LinkStubCursorChangedHdl(void *,weld::Entry &) +include/vcl/window.hxx:376 const char * ImplDbgCheckWindow(const void *) +include/vcl/windowstate.hxx:120 + std::basic_ostream<char> & vcl::operator<<(std::basic_ostream<char> &,const vcl::WindowData &) include/xmloff/txtimp.hxx:115 - class XMLPropertyBackpatcher<short> & XMLTextImportHelper::GetFootnoteBP() + XMLPropertyBackpatcher<short> & XMLTextImportHelper::GetFootnoteBP() include/xmloff/txtimp.hxx:116 - class XMLPropertyBackpatcher<short> & XMLTextImportHelper::GetSequenceIdBP() + XMLPropertyBackpatcher<short> & XMLTextImportHelper::GetSequenceIdBP() include/xmloff/txtimp.hxx:117 - class XMLPropertyBackpatcher<class rtl::OUString> & XMLTextImportHelper::GetSequenceNameBP() + XMLPropertyBackpatcher<rtl::OUString> & XMLTextImportHelper::GetSequenceNameBP() include/xmloff/xmluconv.hxx:190 - _Bool SvXMLUnitConverter::convertEnum(type-parameter-?-? &,class std::basic_string_view<char>,const SvXMLEnumStringMapEntry<type-parameter-?-?> *) -include/xmlreader/pad.hxx:38 - void xmlreader::Pad::add(const char (&)[size_]) -include/xmlreader/span.hxx:44 - xmlreader::Span::Span(const char (&)[size_]) -include/xmlreader/span.hxx:71 - _Bool xmlreader::Span::operator!=(const char (&)[N]) const + _Bool SvXMLUnitConverter::convertEnum(type-parameter-?-? &,std::basic_string_view<char>,const SvXMLEnumStringMapEntry<type-parameter-?-?> *) libreofficekit/qa/gtktiledviewer/gtv-application-window.cxx:72 void ::operator()(struct _GtkBuilder *) const libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.cxx:31 @@ -1337,211 +2297,247 @@ libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.cxx:184 libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.hxx:35 void openLokDialog(struct _GtkWidget *,void *) lotuswordpro/source/filter/clone.hxx:28 - detail::has_clone<class LwpAtomHolder>::no & detail::has_clone::check_sig() + detail::has_clone<LwpAtomHolder>::no & detail::has_clone::check_sig() lotuswordpro/source/filter/clone.hxx:28 - detail::has_clone<class LwpBackgroundStuff>::no & detail::has_clone::check_sig() + detail::has_clone<LwpBackgroundStuff>::no & detail::has_clone::check_sig() lotuswordpro/source/filter/clone.hxx:28 - detail::has_clone<class LwpBorderStuff>::no & detail::has_clone::check_sig() + detail::has_clone<LwpBorderStuff>::no & detail::has_clone::check_sig() lotuswordpro/source/filter/clone.hxx:28 - detail::has_clone<class LwpMargins>::no & detail::has_clone::check_sig() + detail::has_clone<LwpMargins>::no & detail::has_clone::check_sig() lotuswordpro/source/filter/clone.hxx:28 - detail::has_clone<class LwpShadow>::no & detail::has_clone::check_sig() + detail::has_clone<LwpShadow>::no & detail::has_clone::check_sig() lotuswordpro/source/filter/clone.hxx:28 - detail::has_clone<class LwpSpacingCommonOverride>::no & detail::has_clone::check_sig() + detail::has_clone<LwpSpacingCommonOverride>::no & detail::has_clone::check_sig() o3tl/qa/cow_wrapper_clients.hxx:140 - _Bool o3tltests::cow_wrapper_client4::operator==(const class o3tltests::cow_wrapper_client4 &) const + _Bool o3tltests::cow_wrapper_client4::operator==(const o3tltests::cow_wrapper_client4 &) const o3tl/qa/cow_wrapper_clients.hxx:141 - _Bool o3tltests::cow_wrapper_client4::operator!=(const class o3tltests::cow_wrapper_client4 &) const + _Bool o3tltests::cow_wrapper_client4::operator!=(const o3tltests::cow_wrapper_client4 &) const o3tl/qa/cow_wrapper_clients.hxx:142 - _Bool o3tltests::cow_wrapper_client4::operator<(const class o3tltests::cow_wrapper_client4 &) const + _Bool o3tltests::cow_wrapper_client4::operator<(const o3tltests::cow_wrapper_client4 &) const o3tl/qa/cow_wrapper_clients.hxx:193 - _Bool o3tltests::cow_wrapper_client5::operator!=(const class o3tltests::cow_wrapper_client5 &) const -oox/inc/drawingml/textliststyle.hxx:62 + _Bool o3tltests::cow_wrapper_client5::operator!=(const o3tltests::cow_wrapper_client5 &) const +oox/inc/drawingml/textliststyle.hxx:61 void oox::drawingml::TextListStyle::dump() const -oox/inc/drawingml/textparagraphproperties.hxx:96 - void oox::drawingml::TextParagraphProperties::setLineSpacing(const class oox::drawingml::TextSpacing &) -oox/source/drawingml/diagram/diagramlayoutatoms.hxx:330 - const class std::vector<class std::shared_ptr<class oox::drawingml::Shape> > & oox::drawingml::LayoutNode::getNodeShapes() const -oox/source/drawingml/diagram/diagramlayoutatoms.hxx:339 - const class oox::drawingml::LayoutNode * oox::drawingml::LayoutNode::getParentLayoutNode() const +oox/inc/drawingml/textparagraphproperties.hxx:97 + void oox::drawingml::TextParagraphProperties::setLineSpacing(const oox::drawingml::TextSpacing &) +oox/source/drawingml/diagram/diagramlayoutatoms.hxx:331 + const std::vector<std::shared_ptr<oox::drawingml::Shape> > & oox::drawingml::LayoutNode::getNodeShapes() const +oox/source/drawingml/diagram/diagramlayoutatoms.hxx:340 + const oox::drawingml::LayoutNode * oox::drawingml::LayoutNode::getParentLayoutNode() const sal/osl/unx/uunxapi.hxx:39 - int mkdir_c(const class rtl::OString &,unsigned int) + int mkdir_c(const rtl::OString &,unsigned int) sal/osl/unx/uunxapi.hxx:74 - int osl::lstat(const class rtl::OUString &,struct stat &) -sal/rtl/strtmpl.hxx:917 - int rtl::str::toInt32_WithLength(const type-parameter-?-? *,short,int) -sc/inc/address.hxx:665 - _Bool ScRange::operator<=(const class ScRange &) const -sc/inc/bigrange.hxx:72 - _Bool ScBigAddress::operator!=(const class ScBigAddress &) const -sc/inc/column.hxx:223 + int osl::lstat(const rtl::OUString &,struct stat &) +sal/rtl/strtmpl.hxx:55 + null_terminated<C> rtl::str::<deduction guide for null_terminated>(null_terminated<C>) +sal/rtl/strtmpl.hxx:58 + null_terminated<C> rtl::str::<deduction guide for null_terminated>(type-parameter-?-? *) +sal/rtl/strtmpl.hxx:66 + _Bool rtl::str::operator==(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *) +sal/rtl/strtmpl.hxx:68 + _Bool rtl::str::operator!=(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *) +sal/rtl/strtmpl.hxx:74 + with_length<C> rtl::str::<deduction guide for with_length>(with_length<C>) +sal/rtl/strtmpl.hxx:78 + with_length<C> rtl::str::<deduction guide for with_length>(type-parameter-?-? *,int) +sal/rtl/strtmpl.hxx:112 + FromTo<C> rtl::str::<deduction guide for FromTo>(FromTo<C>) +sal/rtl/strtmpl.hxx:116 + FromTo<C> rtl::str::<deduction guide for FromTo>(type-parameter-?-?,type-parameter-?-?) +sal/rtl/strtmpl.hxx:1581 + auto ::operator()(type-parameter-?-? **,int *,int &,type-parameter-?-?) const +sc/inc/address.hxx:663 + _Bool ScRange::operator<=(const ScRange &) const +sc/inc/appluno.hxx:37 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScSpreadsheetSettings_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) +sc/inc/appluno.hxx:40 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScRecentFunctionsObj_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) +sc/inc/appluno.hxx:43 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScFunctionListObj_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) +sc/inc/arraysumfunctor.hxx:39 + KahanSum sc::op::executeUnrolled(unsigned long &,unsigned long,const double *) +sc/inc/bigrange.hxx:70 + _Bool ScBigAddress::operator!=(const ScBigAddress &) const +sc/inc/column.hxx:138 + const type-parameter-?-? & ScColumnData::GetAttr(int,TypedWhichId<type-parameter-?-?>,int &,int &) const +sc/inc/column.hxx:294 _Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,struct ScDataAreaExtras *) sc/inc/columniterator.hxx:81 int sc::ColumnIterator::getType() const sc/inc/datamapper.hxx:75 void sc::ExternalDataSource::setUpdateFrequency(double) sc/inc/datamapper.hxx:78 - void sc::ExternalDataSource::setURL(const class rtl::OUString &) + void sc::ExternalDataSource::setURL(const rtl::OUString &) sc/inc/datamapper.hxx:79 - void sc::ExternalDataSource::setProvider(const class rtl::OUString &) -sc/inc/document.hxx:587 - void ScDocument::SetImagePreferredDPI(int) -sc/inc/document.hxx:588 - int ScDocument::GetImagePreferredDPI() + void sc::ExternalDataSource::setProvider(const rtl::OUString &) +sc/inc/document.hxx:895 + rtl::OUString ScDocument::MaxRowAsString() const sc/inc/dpfilteredcache.hxx:148 void ScDPFilteredCache::dump() const sc/inc/formulacell.hxx:508 void ScFormulaCell::Dump() const -sc/inc/kahan.hxx:33 - KahanSum::KahanSum(double,double) -sc/inc/kahan.hxx:83 - class KahanSum KahanSum::operator-() const -sc/inc/kahan.hxx:173 - _Bool KahanSum::operator<(const class KahanSum &) const -sc/inc/kahan.hxx:177 - _Bool KahanSum::operator>(const class KahanSum &) const -sc/inc/kahan.hxx:179 +sc/inc/funcuno.hxx:35 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScFunctionAccess_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) +sc/inc/kahan.hxx:91 + KahanSum KahanSum::operator-() const +sc/inc/kahan.hxx:186 + _Bool KahanSum::operator<(const KahanSum &) const +sc/inc/kahan.hxx:190 + _Bool KahanSum::operator>(const KahanSum &) const +sc/inc/kahan.hxx:192 _Bool KahanSum::operator>(double) const -sc/inc/kahan.hxx:181 - _Bool KahanSum::operator<=(const class KahanSum &) const -sc/inc/kahan.hxx:183 +sc/inc/kahan.hxx:194 + _Bool KahanSum::operator<=(const KahanSum &) const +sc/inc/kahan.hxx:196 _Bool KahanSum::operator<=(double) const -sc/inc/kahan.hxx:185 - _Bool KahanSum::operator>=(const class KahanSum &) const -sc/inc/kahan.hxx:199 - double * KahanSum::getSum() -sc/inc/kahan.hxx:200 - double * KahanSum::getError() +sc/inc/kahan.hxx:198 + _Bool KahanSum::operator>=(const KahanSum &) const sc/inc/miscuno.hxx:189 - void ScUnoHelpFunctions::SetOptionalPropertyValue(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const type-parameter-?-? &) + void ScUnoHelpFunctions::SetOptionalPropertyValue(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &,const rtl::OUString &,const type-parameter-?-? &) sc/inc/mtvcellfunc.hxx:40 - class mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, class svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, class EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, class ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> sc::ProcessFormula(const class mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, class svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, class EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, class ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> &,class mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, class svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, class EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, class ScFormulaCell> >, struct sc::CellStoreTrait> &,int,int,class std::function<void (unsigned long, class ScFormulaCell *)>) -sc/inc/mtvelements.hxx:72 - class mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:72 - void sc::mdds_mtv_insert_values(class mdds::mtv::base_element_block &,unsigned long,const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:76 - class mdds::mtv::base_element_block * mdds_mtv_create_new_block(const class ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:76 - void mdds_mtv_insert_values(class mdds::mtv::base_element_block &,unsigned long,const class ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:77 - class mdds::mtv::base_element_block * mdds_mtv_create_new_block(const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:77 - void mdds_mtv_append_values(class mdds::mtv::base_element_block &,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:77 - void mdds_mtv_assign_values(class mdds::mtv::base_element_block &,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:77 - void mdds_mtv_insert_values(class mdds::mtv::base_element_block &,unsigned long,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:77 - void mdds_mtv_prepend_values(class mdds::mtv::base_element_block &,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:77 - void mdds_mtv_set_values(class mdds::mtv::base_element_block &,unsigned long,const class SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:78 - class mdds::mtv::base_element_block * mdds_mtv_create_new_block(const class ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:78 - void mdds_mtv_get_empty_value(class ScFormulaCell *&) -sc/inc/mtvelements.hxx:78 - void mdds_mtv_get_value(const class mdds::mtv::base_element_block &,unsigned long,class ScFormulaCell *&) -sc/inc/mtvelements.hxx:78 - void mdds_mtv_insert_values(class mdds::mtv::base_element_block &,unsigned long,const class ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:79 - class mdds::mtv::base_element_block * mdds_mtv_create_new_block(const class EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:79 - void mdds_mtv_get_empty_value(class EditTextObject *&) + mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> sc::ProcessFormula(const mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> &,mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait> &,int,int,std::function<void (unsigned long, ScFormulaCell *)>) sc/inc/mtvelements.hxx:79 - void mdds_mtv_get_value(const class mdds::mtv::base_element_block &,unsigned long,class EditTextObject *&) + mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) sc/inc/mtvelements.hxx:79 - void mdds_mtv_insert_values(class mdds::mtv::base_element_block &,unsigned long,const class EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:83 - class mdds::mtv::base_element_block * svl::mdds_mtv_create_new_block(const class svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvelements.hxx:83 - void svl::mdds_mtv_insert_values(class mdds::mtv::base_element_block &,unsigned long,const class svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &) -sc/inc/mtvfunctions.hxx:365 + void sc::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:80 + mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const sc::SparklineCell *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:80 + void sc::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const sc::SparklineCell *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:84 + mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:84 + void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:85 + mdds::mtv::base_element_block * mdds_mtv_create_new_block(const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:85 + void mdds_mtv_append_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:85 + void mdds_mtv_assign_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:85 + void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:85 + void mdds_mtv_prepend_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:85 + void mdds_mtv_set_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:86 + mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:86 + void mdds_mtv_get_empty_value(ScFormulaCell *&) +sc/inc/mtvelements.hxx:86 + void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,ScFormulaCell *&) +sc/inc/mtvelements.hxx:86 + void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:87 + mdds::mtv::base_element_block * mdds_mtv_create_new_block(const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:87 + void mdds_mtv_get_empty_value(EditTextObject *&) +sc/inc/mtvelements.hxx:87 + void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,EditTextObject *&) +sc/inc/mtvelements.hxx:87 + void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:90 + mdds::mtv::base_element_block * svl::mdds_mtv_create_new_block(const svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvelements.hxx:90 + void svl::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &) +sc/inc/mtvfunctions.hxx:376 void sc::ProcessElements2(type-parameter-?-? &,type-parameter-?-? &,type-parameter-?-? &) -sc/inc/postit.hxx:47 - ScCaptionPtr::ScCaptionPtr(class SdrCaptionObj *) +sc/inc/postit.hxx:46 + ScCaptionPtr::ScCaptionPtr(SdrCaptionObj *) +sc/inc/rangecache.hxx:94 + unsigned long ScSortedRangeCache::size() const sc/inc/scdll.hxx:35 ScDLL::ScDLL() sc/inc/scopetools.hxx:80 void sc::DelayFormulaGroupingSwitch::reset() sc/inc/segmenttree.hxx:149 - void ScFlatUInt16RowSegments::setValueIf(int,int,unsigned short,const class std::function<_Bool (unsigned short)> &) + void ScFlatUInt16RowSegments::setValueIf(int,int,unsigned short,const std::function<_Bool (unsigned short)> &) sc/inc/segmenttree.hxx:162 void ScFlatUInt16RowSegments::makeReady() -sc/inc/sheetlimits.hxx:41 +sc/inc/sheetlimits.hxx:42 _Bool ScSheetLimits::ValidColRow(short,int) const -sc/inc/sheetlimits.hxx:45 +sc/inc/sheetlimits.hxx:46 _Bool ScSheetLimits::ValidColRowTab(short,int,short) const -sc/inc/sheetlimits.hxx:57 - short ScSheetLimits::SanitizeCol(short) const sc/inc/sheetlimits.hxx:58 + short ScSheetLimits::SanitizeCol(short) const +sc/inc/sheetlimits.hxx:59 int ScSheetLimits::SanitizeRow(int) const +sc/inc/SparklineCell.hxx:35 + void sc::SparklineCell::setInputRange(const ScRangeList &) +sc/inc/SparklineCell.hxx:37 + const ScRangeList & sc::SparklineCell::getInputRange() sc/inc/stlalgorithm.hxx:46 - sc::AlignedAllocator::AlignedAllocator(const AlignedAllocator<type-parameter-?-?, 256UL> &) + sc::AlignedAllocator::AlignedAllocator(const AlignedAllocator<type-parameter-?-?, 256> &) sc/inc/stlalgorithm.hxx:46 sc::AlignedAllocator::AlignedAllocator<T, Alignment>(const AlignedAllocator<type-parameter-?-?, Alignment> &) sc/inc/stlalgorithm.hxx:60 _Bool sc::AlignedAllocator::operator==(const AlignedAllocator<T, Alignment> &) const sc/inc/stlalgorithm.hxx:61 _Bool sc::AlignedAllocator::operator!=(const AlignedAllocator<T, Alignment> &) const -sc/inc/table.hxx:328 +sc/inc/table.hxx:330 _Bool ScTable::IsColRowTabValid(const short,const int,const short) const +sc/inc/table.hxx:726 + const type-parameter-?-? * ScTable::GetAttr(short,int,TypedWhichId<type-parameter-?-?>,int &,int &) const sc/inc/userlist.hxx:89 - class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::unique_ptr<class ScUserListData> *, class std::__cxx1998::vector<class std::unique_ptr<class ScUserListData> > >, class std::vector<class std::unique_ptr<class ScUserListData> >, struct std::random_access_iterator_tag> ScUserList::begin() const -sc/qa/unit/helper/qahelper.hxx:164 - class std::basic_string<char> print(const class ScAddress &) -sc/source/core/inc/interpre.hxx:70 + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<ScUserListData> *, std::__cxx1998::vector<std::unique_ptr<ScUserListData> > >, std::vector<std::unique_ptr<ScUserListData> >, struct std::random_access_iterator_tag> ScUserList::begin() const +sc/qa/unit/helper/qahelper.hxx:115 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const enum OpCode &) +sc/qa/unit/helper/qahelper.hxx:165 + std::basic_string<char> print(const ScAddress &) +sc/qa/unit/ucalc_copypaste.cxx:10835 + int main() +sc/source/core/inc/interpre.hxx:71 basic_ostream<type-parameter-?-?, type-parameter-?-?> & sc::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const struct sc::ParamIfsResult &) -sc/source/core/opencl/formulagroupcl.cxx:1062 +sc/source/core/opencl/formulagroupcl.cxx:1063 _Bool sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::NeedParallelReduction() const -sc/source/core/opencl/formulagroupcl.cxx:1070 - void sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenSlidingWindowFunction(class std::basic_stringstream<char> &) -sc/source/core/opencl/formulagroupcl.cxx:1353 - void sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenSlidingWindowFunction(class std::basic_stringstream<char> &) -sc/source/core/opencl/formulagroupcl.cxx:1355 - class std::basic_string<char> sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenSlidingWindowDeclRef(_Bool) const -sc/source/core/opencl/formulagroupcl.cxx:1369 +sc/source/core/opencl/formulagroupcl.cxx:1071 + void sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenSlidingWindowFunction(std::basic_stringstream<char> &) +sc/source/core/opencl/formulagroupcl.cxx:1354 + void sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenSlidingWindowFunction(std::basic_stringstream<char> &) +sc/source/core/opencl/formulagroupcl.cxx:1356 + std::basic_string<char> sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenSlidingWindowDeclRef(_Bool) const +sc/source/core/opencl/formulagroupcl.cxx:1370 unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::Marshal(struct _cl_kernel *,int,int,struct _cl_program *) -sc/source/core/opencl/formulagroupcl.cxx:1382 +sc/source/core/opencl/formulagroupcl.cxx:1383 unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetArrayLength() const -sc/source/core/opencl/formulagroupcl.cxx:1384 +sc/source/core/opencl/formulagroupcl.cxx:1385 unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetWindowSize() const -sc/source/core/opencl/formulagroupcl.cxx:1386 +sc/source/core/opencl/formulagroupcl.cxx:1387 _Bool sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetStartFixed() const -sc/source/core/opencl/formulagroupcl.cxx:1388 +sc/source/core/opencl/formulagroupcl.cxx:1389 _Bool sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GetEndFixed() const sc/source/core/opencl/op_statistical.hxx:205 sc::opencl::OpGeoMean::OpGeoMean() -sc/source/core/tool/interpr1.cxx:4152 +sc/source/core/tool/interpr1.cxx:4170 double ::operator()(double,unsigned long) const -sc/source/core/tool/interpr1.cxx:6464 +sc/source/core/tool/interpr1.cxx:6559 double ::operator()(const struct sc::ParamIfsResult &) const -sc/source/core/tool/scmatrix.cxx:2262 +sc/source/core/tool/scmatrix.cxx:2263 type-parameter-?-? * (anonymous namespace)::wrapped_iterator::operator->() const sc/source/filter/inc/orcusinterface.hxx:76 - ScOrcusRefResolver::ScOrcusRefResolver(const class ScOrcusGlobalSettings &) + ScOrcusRefResolver::ScOrcusRefResolver(const ScOrcusGlobalSettings &) sc/source/filter/inc/orcusinterface.hxx:632 - const class rtl::OUString * ScOrcusFactory::getString(unsigned long) const -sc/source/filter/inc/tokstack.hxx:212 + const rtl::OUString * ScOrcusFactory::getString(unsigned long) const +sc/source/filter/inc/tokstack.hxx:213 _Bool TokenPool::GrowTripel(unsigned short) -sc/source/filter/inc/xeextlst.hxx:197 - void XclExtLst::AddRecord(const class rtl::Reference<class XclExpExt> &) -sc/source/filter/inc/xerecord.hxx:342 +sc/source/filter/inc/xeextlst.hxx:198 + void XclExtLst::AddRecord(const rtl::Reference<XclExpExt> &) +sc/source/filter/inc/xerecord.hxx:343 void XclExpRecordList::InsertRecord(type-parameter-?-? *,unsigned long) -sc/source/filter/inc/xerecord.hxx:351 +sc/source/filter/inc/xerecord.hxx:352 void XclExpRecordList::AppendRecord(Reference<type-parameter-?-?>) -sc/source/filter/inc/xerecord.hxx:362 +sc/source/filter/inc/xerecord.hxx:363 void XclExpRecordList::AppendNewRecord(const Reference<type-parameter-?-?> &) -sc/source/filter/inc/xerecord.hxx:364 +sc/source/filter/inc/xerecord.hxx:365 void XclExpRecordList::AppendNewRecord(Reference<type-parameter-?-?>) sc/source/filter/inc/xestream.hxx:106 - class XclExpStream & XclExpStream::operator<<(float) + XclExpStream & XclExpStream::operator<<(float) sc/source/filter/inc/xiescher.hxx:153 - class Color XclImpDrawObjBase::GetSolidLineColor(const struct XclObjLineData &) const + Color XclImpDrawObjBase::GetSolidLineColor(const struct XclObjLineData &) const sc/source/filter/inc/xlformula.hxx:408 - _Bool XclTokenArray::operator==(const class XclTokenArray &) const + _Bool XclTokenArray::operator==(const XclTokenArray &) const sc/source/filter/xml/xmltransformationi.hxx:159 - ScXMLDateTimeContext::ScXMLDateTimeContext(class ScXMLImport &,const class rtl::Reference<class sax_fastparser::FastAttributeList> &) + ScXMLDateTimeContext::ScXMLDateTimeContext(ScXMLImport &,const rtl::Reference<sax_fastparser::FastAttributeList> &) sc/source/ui/inc/dataprovider.hxx:56 _Bool sc::CSVFetchThread::IsRequestedTerminate() sc/source/ui/inc/dataprovider.hxx:57 @@ -1549,59 +2545,59 @@ sc/source/ui/inc/dataprovider.hxx:57 sc/source/ui/inc/dataprovider.hxx:58 void sc::CSVFetchThread::EndThread() sc/source/ui/inc/dataprovider.hxx:83 - const class rtl::OUString & sc::DataProvider::GetURL() const + const rtl::OUString & sc::DataProvider::GetURL() const sc/source/ui/inc/dataproviderdlg.hxx:57 - void ScDataProviderDlg::LinkStubStartMenuHdl(void *,const class rtl::OString &) + void ScDataProviderDlg::LinkStubStartMenuHdl(void *,const rtl::OString &) sc/source/ui/inc/dataproviderdlg.hxx:57 - void ScDataProviderDlg::StartMenuHdl(const class rtl::OString &) + void ScDataProviderDlg::StartMenuHdl(const rtl::OString &) sc/source/ui/inc/dataproviderdlg.hxx:58 - void ScDataProviderDlg::ColumnMenuHdl(const class weld::ComboBox &) + void ScDataProviderDlg::ColumnMenuHdl(const weld::ComboBox &) sc/source/ui/inc/dataproviderdlg.hxx:58 - void ScDataProviderDlg::LinkStubColumnMenuHdl(void *,const class weld::ComboBox &) + void ScDataProviderDlg::LinkStubColumnMenuHdl(void *,const weld::ComboBox &) sc/source/ui/inc/dataproviderdlg.hxx:75 void ScDataProviderDlg::applyAndQuit() sc/source/ui/inc/dataproviderdlg.hxx:76 void ScDataProviderDlg::cancelAndQuit() -sc/source/ui/inc/datatableview.hxx:110 +sc/source/ui/inc/datatableview.hxx:108 void ScDataTableView::getRowRange(int &,int &) const sc/source/ui/inc/datatransformation.hxx:197 short sc::FindReplaceTransformation::getColumn() const sc/source/ui/inc/datatransformation.hxx:198 - const class rtl::OUString & sc::FindReplaceTransformation::getFindString() const + const rtl::OUString & sc::FindReplaceTransformation::getFindString() const sc/source/ui/inc/datatransformation.hxx:199 - const class rtl::OUString & sc::FindReplaceTransformation::getReplaceString() const + const rtl::OUString & sc::FindReplaceTransformation::getReplaceString() const sc/source/ui/inc/datatransformation.hxx:211 short sc::DeleteRowTransformation::getColumn() const sc/source/ui/inc/datatransformation.hxx:212 - const class rtl::OUString & sc::DeleteRowTransformation::getFindString() const + const rtl::OUString & sc::DeleteRowTransformation::getFindString() const sc/source/ui/inc/datatransformation.hxx:223 int sc::SwapRowsTransformation::getFirstRow() const sc/source/ui/inc/datatransformation.hxx:224 int sc::SwapRowsTransformation::getSecondRow() const sc/source/ui/inc/hfedtdlg.hxx:85 - ScHFEditFirstHeaderDlg::ScHFEditFirstHeaderDlg(class weld::Window *,const class SfxItemSet &,class std::basic_string_view<char16_t>) + ScHFEditFirstHeaderDlg::ScHFEditFirstHeaderDlg(weld::Window *,const SfxItemSet &,std::basic_string_view<char16_t>) sc/source/ui/inc/hfedtdlg.hxx:106 - ScHFEditFirstFooterDlg::ScHFEditFirstFooterDlg(class weld::Window *,const class SfxItemSet &,class std::basic_string_view<char16_t>) -sc/source/ui/inc/impex.hxx:92 - ScImportExport::ScImportExport(class ScDocument &,const class rtl::OUString &) + ScHFEditFirstFooterDlg::ScHFEditFirstFooterDlg(weld::Window *,const SfxItemSet &,std::basic_string_view<char16_t>) +sc/source/ui/inc/impex.hxx:94 + ScImportExport::ScImportExport(ScDocument &,const rtl::OUString &) sc/source/ui/inc/RandomNumberGeneratorDialog.hxx:65 - void ScRandomNumberGeneratorDialog::GenerateNumbers(type-parameter-?-? &,struct TranslateId,const class std::optional<signed char>) -sc/source/ui/inc/TableFillingAndNavigationTools.hxx:121 + void ScRandomNumberGeneratorDialog::GenerateNumbers(type-parameter-?-? &,struct TranslateId,const std::optional<signed char>) +sc/source/ui/inc/SparklineDataRangeDialog.hxx:54 + _Bool sc::SparklineDataRangeDialog::checkValidInputOutput() +sc/source/ui/inc/TableFillingAndNavigationTools.hxx:120 unsigned long DataRangeIterator::size() -sc/source/ui/inc/viewdata.hxx:406 - long ScViewData::GetLOKDocWidthPixel() const sc/source/ui/inc/viewdata.hxx:407 + long ScViewData::GetLOKDocWidthPixel() const +sc/source/ui/inc/viewdata.hxx:408 long ScViewData::GetLOKDocHeightPixel() const -sc/source/ui/inc/viewdata.hxx:547 +sc/source/ui/inc/viewdata.hxx:557 _Bool ScViewData::IsGridMode() const scaddins/source/analysis/analysishelper.hxx:797 - _Bool sca::analysis::ScaDate::operator>=(const class sca::analysis::ScaDate &) const + _Bool sca::analysis::ScaDate::operator>=(const sca::analysis::ScaDate &) const sccomp/source/solver/DifferentialEvolution.hxx:66 int DifferentialEvolutionAlgorithm::getLastChange() sccomp/source/solver/ParticelSwarmOptimization.hxx:84 int ParticleSwarmOptimizationAlgorithm::getLastChange() -sd/inc/sdabstdlg.hxx:180 - class VclPtr<class SfxAbstractTabDialog> SdAbstractDialogFactory::CreateSdOutlineBulletTabDlg(class weld::Window *,const class SfxItemSet *,class sd::View *) sd/inc/sddll.hxx:47 SdDLL::SdDLL() sd/source/filter/ppt/pptinanimations.hxx:107 @@ -1609,39 +2605,39 @@ sd/source/filter/ppt/pptinanimations.hxx:107 sd/source/ui/inc/filedlg.hxx:54 _Bool SdOpenSoundFileDialog::IsInsertAsLinkSelected() const sd/source/ui/inc/GraphicViewShell.hxx:43 - class SfxViewFactory * sd::GraphicViewShell::Factory() + SfxViewFactory * sd::GraphicViewShell::Factory() sd/source/ui/inc/GraphicViewShell.hxx:43 - class SfxViewShell * sd::GraphicViewShell::CreateInstance(class SfxViewFrame *,class SfxViewShell *) + SfxViewShell * sd::GraphicViewShell::CreateInstance(SfxViewFrame *,SfxViewShell *) sd/source/ui/inc/GraphicViewShell.hxx:43 void sd::GraphicViewShell::InitFactory() sd/source/ui/inc/GraphicViewShell.hxx:43 void sd::GraphicViewShell::RegisterFactory(struct o3tl::strong_int<unsigned short, struct SfxInterfaceIdTag>) sd/source/ui/inc/optsitem.hxx:178 - _Bool SdOptionsContents::operator==(const class SdOptionsContents &) const + _Bool SdOptionsContents::operator==(const SdOptionsContents &) const sd/source/ui/inc/OutlineViewShell.hxx:40 - class SfxViewFactory * sd::OutlineViewShell::Factory() + SfxViewFactory * sd::OutlineViewShell::Factory() sd/source/ui/inc/OutlineViewShell.hxx:40 - class SfxViewShell * sd::OutlineViewShell::CreateInstance(class SfxViewFrame *,class SfxViewShell *) + SfxViewShell * sd::OutlineViewShell::CreateInstance(SfxViewFrame *,SfxViewShell *) sd/source/ui/inc/OutlineViewShell.hxx:40 void sd::OutlineViewShell::InitFactory() sd/source/ui/inc/OutlineViewShell.hxx:40 void sd::OutlineViewShell::RegisterFactory(struct o3tl::strong_int<unsigned short, struct SfxInterfaceIdTag>) sd/source/ui/inc/PaneShells.hxx:33 - void sd::LeftImpressPaneShell::RegisterInterface(const class SfxModule *) + void sd::LeftImpressPaneShell::RegisterInterface(const SfxModule *) sd/source/ui/inc/PaneShells.hxx:50 - void sd::LeftDrawPaneShell::RegisterInterface(const class SfxModule *) + void sd::LeftDrawPaneShell::RegisterInterface(const SfxModule *) sd/source/ui/inc/unomodel.hxx:135 - _Bool SdXImpressDocument::operator==(const class SdXImpressDocument &) const + _Bool SdXImpressDocument::operator==(const SdXImpressDocument &) const sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx:199 - _Bool sd::slidesorter::view::InsertPosition::operator!=(const class sd::slidesorter::view::InsertPosition &) const -sdext/source/pdfimport/pdfparse/pdfparse.cxx:111 + _Bool sd::slidesorter::view::InsertPosition::operator!=(const sd::slidesorter::view::InsertPosition &) const +sdext/source/pdfimport/pdfparse/pdfparse.cxx:112 long (anonymous namespace)::PDFGrammar<boost::spirit::classic::file_iterator<>>::pdf_string_parser::operator()(const type-parameter-?-? &,struct boost::spirit::classic::nil_t &) const sfx2/inc/autoredactdialog.hxx:74 void TargetsTable::select(int) sfx2/source/appl/shutdownicon.hxx:78 - class rtl::OUString ShutdownIcon::getShortcutName() + rtl::OUString ShutdownIcon::getShortcutName() sfx2/source/appl/shutdownicon.hxx:94 - class ShutdownIcon * ShutdownIcon::createInstance() + ShutdownIcon * ShutdownIcon::createInstance() sfx2/source/appl/shutdownicon.hxx:96 void ShutdownIcon::terminateDesktop() sfx2/source/appl/shutdownicon.hxx:99 @@ -1649,94 +2645,94 @@ sfx2/source/appl/shutdownicon.hxx:99 sfx2/source/appl/shutdownicon.hxx:102 void ShutdownIcon::FromTemplate() sfx2/source/appl/shutdownicon.hxx:111 - class rtl::OUString ShutdownIcon::GetUrlDescription(const class rtl::OUString &) + rtl::OUString ShutdownIcon::GetUrlDescription(std::basic_string_view<char16_t>) sfx2/source/appl/shutdownicon.hxx:113 void ShutdownIcon::SetVeto(_Bool) -sfx2/source/inc/templdgi.hxx:133 +sfx2/source/inc/templdgi.hxx:127 void SfxCommonTemplateDialog_Impl::LinkStubUpdateStyleDependents_Hdl(void *,void *) shell/inc/xml_parser.hxx:43 xml_parser::xml_parser() shell/inc/xml_parser.hxx:66 void xml_parser::parse(const char *,unsigned long,_Bool) shell/inc/xml_parser.hxx:84 - void xml_parser::set_document_handler(class i_xml_parser_event_handler *) -slideshow/source/engine/activities/activitiesfactory.cxx:172 + void xml_parser::set_document_handler(i_xml_parser_event_handler *) +slideshow/source/engine/activities/activitiesfactory.cxx:173 void slideshow::internal::(anonymous namespace)::FromToByActivity::startAnimation() -slideshow/source/engine/activities/activitiesfactory.cxx:241 +slideshow/source/engine/activities/activitiesfactory.cxx:242 void slideshow::internal::(anonymous namespace)::FromToByActivity::endAnimation() -slideshow/source/engine/activities/activitiesfactory.cxx:249 +slideshow/source/engine/activities/activitiesfactory.cxx:250 void slideshow::internal::(anonymous namespace)::FromToByActivity::perform(double,unsigned int) const -slideshow/source/engine/activities/activitiesfactory.cxx:313 +slideshow/source/engine/activities/activitiesfactory.cxx:314 void slideshow::internal::(anonymous namespace)::FromToByActivity::perform(unsigned int,unsigned int) const -slideshow/source/engine/activities/activitiesfactory.cxx:331 +slideshow/source/engine/activities/activitiesfactory.cxx:332 void slideshow::internal::(anonymous namespace)::FromToByActivity::performEnd() -slideshow/source/engine/activities/activitiesfactory.cxx:344 +slideshow/source/engine/activities/activitiesfactory.cxx:345 void slideshow::internal::(anonymous namespace)::FromToByActivity::dispose() -slideshow/source/engine/activities/activitiesfactory.cxx:525 +slideshow/source/engine/activities/activitiesfactory.cxx:526 void slideshow::internal::(anonymous namespace)::ValuesActivity::startAnimation() -slideshow/source/engine/activities/activitiesfactory.cxx:536 +slideshow/source/engine/activities/activitiesfactory.cxx:537 void slideshow::internal::(anonymous namespace)::ValuesActivity::endAnimation() -slideshow/source/engine/activities/activitiesfactory.cxx:544 +slideshow/source/engine/activities/activitiesfactory.cxx:545 void slideshow::internal::(anonymous namespace)::ValuesActivity::perform(unsigned int,double,unsigned int) const -slideshow/source/engine/activities/activitiesfactory.cxx:566 +slideshow/source/engine/activities/activitiesfactory.cxx:567 void slideshow::internal::(anonymous namespace)::ValuesActivity::perform(unsigned int,unsigned int) const -slideshow/source/engine/activities/activitiesfactory.cxx:581 +slideshow/source/engine/activities/activitiesfactory.cxx:582 void slideshow::internal::(anonymous namespace)::ValuesActivity::performEnd() -slideshow/source/engine/animationfactory.cxx:616 +slideshow/source/engine/animationfactory.cxx:617 void slideshow::internal::(anonymous namespace)::GenericAnimation::prefetch() -slideshow/source/engine/animationfactory.cxx:619 - void slideshow::internal::(anonymous namespace)::GenericAnimation::start(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeAttributeLayer> &) -slideshow/source/engine/animationfactory.cxx:698 +slideshow/source/engine/animationfactory.cxx:620 + void slideshow::internal::(anonymous namespace)::GenericAnimation::start(const std::shared_ptr<slideshow::internal::AnimatableShape> &,const std::shared_ptr<slideshow::internal::ShapeAttributeLayer> &) +slideshow/source/engine/animationfactory.cxx:699 _Bool slideshow::internal::(anonymous namespace)::GenericAnimation::operator()(const typename type-parameter-?-?::ValueType &) -slideshow/source/engine/animationfactory.cxx:715 +slideshow/source/engine/animationfactory.cxx:716 _Bool slideshow::internal::(anonymous namespace)::GenericAnimation::operator()(typename type-parameter-?-?::ValueType) -slideshow/source/engine/animationfactory.cxx:736 +slideshow/source/engine/animationfactory.cxx:737 typename type-parameter-?-?::ValueType slideshow::internal::(anonymous namespace)::GenericAnimation::getUnderlyingValue() const slideshow/source/engine/opengl/TransitionImpl.cxx:1438 struct std::array<unsigned char, 65536> (anonymous namespace)::(anonymous)::__invoke() slideshow/source/engine/opengl/TransitionImpl.hxx:180 void OGLTransitionImpl::cleanup() slideshow/source/inc/box2dtools.hxx:159 - void box2d::utils::box2DWorld::setShapeAngle(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape>,const double) + void box2d::utils::box2DWorld::setShapeAngle(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape>,const double) slideshow/source/inc/box2dtools.hxx:261 _Bool box2d::utils::box2DWorld::shapesInitialized() slideshow/source/inc/box2dtools.hxx:299 - class std::shared_ptr<class box2d::utils::box2DBody> box2d::utils::box2DWorld::makeShapeStatic(const class std::shared_ptr<class slideshow::internal::Shape> &) + std::shared_ptr<box2d::utils::box2DBody> box2d::utils::box2DWorld::makeShapeStatic(const std::shared_ptr<slideshow::internal::Shape> &) slideshow/source/inc/listenercontainer.hxx:44 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::AnimationEventHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::AnimationEventHandler> &) slideshow/source/inc/listenercontainer.hxx:44 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::EventHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::EventHandler> &) slideshow/source/inc/listenercontainer.hxx:44 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::IntrinsicAnimationEventHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::IntrinsicAnimationEventHandler> &) slideshow/source/inc/listenercontainer.hxx:44 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::PauseEventHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::PauseEventHandler> &) slideshow/source/inc/listenercontainer.hxx:44 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ShapeListenerEventHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ShapeListenerEventHandler> &) slideshow/source/inc/listenercontainer.hxx:44 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::UserPaintEventHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::UserPaintEventHandler> &) slideshow/source/inc/listenercontainer.hxx:44 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ViewUpdate> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ViewUpdate> &) slideshow/source/inc/listenercontainer.hxx:54 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ViewEventHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ViewEventHandler> &) slideshow/source/inc/listenercontainer.hxx:54 - _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const class std::shared_ptr<class slideshow::internal::ViewRepaintHandler> &) + _Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ViewRepaintHandler> &) starmath/inc/format.hxx:137 - _Bool SmFormat::operator!=(const class SmFormat &) const + _Bool SmFormat::operator!=(const SmFormat &) const starmath/inc/mathml/attribute.hxx:80 - SmMlAttribute::SmMlAttribute(const class SmMlAttribute *) + SmMlAttribute::SmMlAttribute(const SmMlAttribute *) starmath/inc/mathml/attribute.hxx:116 _Bool SmMlAttribute::isMlAttributeValueType(enum SmMlAttributeValueType) const starmath/inc/mathml/attribute.hxx:132 - void SmMlAttribute::setMlAttributeValue(const class SmMlAttribute &) -starmath/inc/mathml/element.hxx:104 + void SmMlAttribute::setMlAttributeValue(const SmMlAttribute &) +starmath/inc/mathml/element.hxx:103 _Bool SmMlElement::isMlElementType(enum SmMlElementType) const -starmath/inc/mathml/element.hxx:114 +starmath/inc/mathml/element.hxx:113 const struct ESelection & SmMlElement::getESelection() const -starmath/inc/mathml/element.hxx:126 +starmath/inc/mathml/element.hxx:125 void SmMlElement::setESelection(struct ESelection) -starmath/inc/mathml/element.hxx:133 +starmath/inc/mathml/element.hxx:132 int SmMlElement::GetSourceCodeRow() const -starmath/inc/mathml/element.hxx:140 +starmath/inc/mathml/element.hxx:139 int SmMlElement::GetSourceCodeColumn() const starmath/inc/mathml/export.hxx:54 void SmMLExportWrapper::setFlat(_Bool) @@ -1751,47 +2747,49 @@ starmath/inc/mathml/export.hxx:73 starmath/inc/mathml/export.hxx:77 void SmMLExportWrapper::setUseExportTag(_Bool) starmath/inc/mathml/export.hxx:80 - SmMLExportWrapper::SmMLExportWrapper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &) + SmMLExportWrapper::SmMLExportWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>) starmath/inc/mathml/export.hxx:91 - _Bool SmMLExportWrapper::Export(class SfxMedium &) + _Bool SmMLExportWrapper::Export(SfxMedium &) starmath/inc/mathml/export.hxx:95 - class rtl::OUString SmMLExportWrapper::Export(class SmMlElement *) + rtl::OUString SmMLExportWrapper::Export(SmMlElement *) starmath/inc/mathml/export.hxx:138 _Bool SmMLExport::getUseExportTag() const starmath/inc/mathml/import.hxx:38 - class SmMlElement * SmMLImportWrapper::getElementTree() + SmMlElement * SmMLImportWrapper::getElementTree() starmath/inc/mathml/import.hxx:43 - SmMLImportWrapper::SmMLImportWrapper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &) + SmMLImportWrapper::SmMLImportWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>) starmath/inc/mathml/import.hxx:52 - class ErrCode SmMLImportWrapper::Import(class SfxMedium &) + ErrCode SmMLImportWrapper::Import(SfxMedium &) starmath/inc/mathml/import.hxx:56 - class ErrCode SmMLImportWrapper::Import(class std::basic_string_view<char16_t>) + ErrCode SmMLImportWrapper::Import(std::basic_string_view<char16_t>) starmath/inc/mathml/import.hxx:144 void SmMLImport::SetSmSyntaxVersion(unsigned short) starmath/inc/mathml/import.hxx:148 unsigned short SmMLImport::GetSmSyntaxVersion() const +starmath/inc/mathml/iterator.hxx:22 + void mathml::SmMlIteratorBottomToTop(SmMlElement *,type-parameter-?-?,void *) starmath/inc/mathml/iterator.hxx:121 - class SmMlElement * mathml::SmMlIteratorCopy(class SmMlElement *) -starmath/inc/mathml/mathmlexport.hxx:61 + SmMlElement * mathml::SmMlIteratorCopy(SmMlElement *) +starmath/inc/mathml/mathmlexport.hxx:62 _Bool SmXMLExportWrapper::IsUseHTMLMLEntities() const -starmath/inc/mathml/mathmlimport.hxx:111 +starmath/inc/mathml/mathmlimport.hxx:112 unsigned short SmXMLImport::GetSmSyntaxVersion() const -starmath/inc/mathml/mathmlMo.hxx:82 +starmath/inc/mathml/mathmlMo.hxx:83 enum moOpDF operator|(enum moOpDF,enum moOpDF) -starmath/inc/mathml/mathmlMo.hxx:87 +starmath/inc/mathml/mathmlMo.hxx:88 enum moOpDF operator&(enum moOpDF,enum moOpDF) -starmath/inc/mathml/mathmlMo.hxx:97 +starmath/inc/mathml/mathmlMo.hxx:98 enum moOpDP operator&(enum moOpDP,enum moOpDP) starmath/inc/mathml/starmathdatabase.hxx:274 struct SmColorTokenTableEntry starmathdatabase::Identify_Color_HTML(unsigned int) starmath/inc/mathml/starmathdatabase.hxx:294 struct SmColorTokenTableEntry starmathdatabase::Identify_Color_DVIPSNAMES(unsigned int) -starmath/inc/node.hxx:507 - class SmNode * SmStructureNode::GetSubNodeBinMo(unsigned long) const -starmath/inc/node.hxx:532 - void SmStructureNode::SetSubNodes(class SmNode *,class SmNode *,class SmNode *) -starmath/inc/node.hxx:553 - void SmStructureNode::SetSubNodesBinMo(class SmNode *,class SmNode *,class SmNode *) +starmath/inc/node.hxx:508 + SmNode * SmStructureNode::GetSubNodeBinMo(unsigned long) const +starmath/inc/node.hxx:533 + void SmStructureNode::SetSubNodes(SmNode *,SmNode *,SmNode *) +starmath/inc/node.hxx:554 + void SmStructureNode::SetSubNodesBinMo(SmNode *,SmNode *,SmNode *) starmath/inc/nodetype.hxx:59 _Bool starmathdatabase::isStructuralNode(enum SmNodeType) starmath/inc/nodetype.hxx:71 @@ -1803,438 +2801,318 @@ starmath/inc/nodetype.hxx:82 starmath/inc/nodetype.hxx:89 _Bool starmathdatabase::isStandaloneNode(enum SmNodeType) starmath/inc/parse.hxx:31 - class AbstractSmParser * starmathdatabase::GetDefaultSmParser() -starmath/inc/token.hxx:186 - SmColorTokenTableEntry::SmColorTokenTableEntry(const class std::unique_ptr<struct SmColorTokenTableEntry>) + AbstractSmParser * starmathdatabase::GetDefaultSmParser() +starmath/inc/token.hxx:179 + SmColorTokenTableEntry::SmColorTokenTableEntry(const std::unique_ptr<struct SmColorTokenTableEntry>) +starmath/inc/token.hxx:200 + _Bool SmColorTokenTableEntry::equals(std::basic_string_view<char16_t>) const starmath/inc/token.hxx:207 - _Bool SmColorTokenTableEntry::equals(const class rtl::OUString &) const -starmath/inc/token.hxx:214 - _Bool SmColorTokenTableEntry::equals(class Color) const -svgio/inc/svgstyleattributes.hxx:345 - class svgio::svgreader::SvgNumber svgio::svgreader::SvgStyleAttributes::getStrokeDashOffset() const -svgio/inc/svgstyleattributes.hxx:369 + _Bool SmColorTokenTableEntry::equals(Color) const +svgio/inc/svgstyleattributes.hxx:348 + svgio::svgreader::SvgNumber svgio::svgreader::SvgStyleAttributes::getStrokeDashOffset() const +svgio/inc/svgstyleattributes.hxx:372 enum svgio::svgreader::FontStretch svgio::svgreader::SvgStyleAttributes::getFontStretch() const svgio/inc/svgtspannode.hxx:45 double svgio::svgreader::SvgTspanNode::getCurrentFontSize() const svl/source/misc/gridprinter.cxx:45 - class mdds::mtv::base_element_block * rtl::mdds_mtv_create_new_block(const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) + mdds::mtv::base_element_block * rtl::mdds_mtv_create_new_block(const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) svl/source/misc/gridprinter.cxx:45 - void rtl::mdds_mtv_append_values(class mdds::mtv::base_element_block &,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) + void rtl::mdds_mtv_append_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) svl/source/misc/gridprinter.cxx:45 - void rtl::mdds_mtv_assign_values(class mdds::mtv::base_element_block &,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) + void rtl::mdds_mtv_assign_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) svl/source/misc/gridprinter.cxx:45 - void rtl::mdds_mtv_get_empty_value(class rtl::OUString &) + void rtl::mdds_mtv_get_empty_value(rtl::OUString &) svl/source/misc/gridprinter.cxx:45 - void rtl::mdds_mtv_get_value(const class mdds::mtv::base_element_block &,unsigned long,class rtl::OUString &) + void rtl::mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,rtl::OUString &) svl/source/misc/gridprinter.cxx:45 - void rtl::mdds_mtv_insert_values(class mdds::mtv::base_element_block &,unsigned long,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) + void rtl::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) svl/source/misc/gridprinter.cxx:45 - void rtl::mdds_mtv_prepend_values(class mdds::mtv::base_element_block &,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) + void rtl::mdds_mtv_prepend_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) svl/source/misc/gridprinter.cxx:45 - void rtl::mdds_mtv_set_values(class mdds::mtv::base_element_block &,unsigned long,const class rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) + void rtl::mdds_mtv_set_values(mdds::mtv::base_element_block &,unsigned long,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &) svx/inc/sdr/contact/viewcontactofgraphic.hxx:52 - class SdrGrafObj & sdr::contact::ViewContactOfGraphic::GetGrafObject() -sw/inc/calbck.hxx:295 - class sw::WriterListener * sw::ClientIteratorBase::GetLeftOfPos() + SdrGrafObj & sdr::contact::ViewContactOfGraphic::GetGrafObject() +sw/inc/calbck.hxx:294 + sw::WriterListener * sw::ClientIteratorBase::GetLeftOfPos() +sw/inc/contentindex.hxx:68 + int SwContentIndex::operator--(int) +sw/inc/contentindex.hxx:113 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwContentIndex &) sw/inc/dbgoutsw.hxx:54 const char * dbg_out(const void *) sw/inc/dbgoutsw.hxx:56 - const char * dbg_out(const class SwRect &) + const char * dbg_out(const SwRect &) sw/inc/dbgoutsw.hxx:57 - const char * dbg_out(const class SwFrameFormat &) + const char * dbg_out(const SwFrameFormat &) sw/inc/dbgoutsw.hxx:60 - const char * dbg_out(const class SwContentNode *) + const char * dbg_out(const SwContentNode *) sw/inc/dbgoutsw.hxx:61 - const char * dbg_out(const class SwTextNode *) + const char * dbg_out(const SwTextNode *) sw/inc/dbgoutsw.hxx:62 - const char * dbg_out(const class SwTextAttr &) + const char * dbg_out(const SwTextAttr &) sw/inc/dbgoutsw.hxx:63 - const char * dbg_out(const class SwpHints &) + const char * dbg_out(const SwpHints &) sw/inc/dbgoutsw.hxx:64 - const char * dbg_out(const class SfxPoolItem &) + const char * dbg_out(const SfxPoolItem &) sw/inc/dbgoutsw.hxx:65 - const char * dbg_out(const class SfxPoolItem *) + const char * dbg_out(const SfxPoolItem *) sw/inc/dbgoutsw.hxx:66 - const char * dbg_out(const class SfxItemSet &) + const char * dbg_out(const SfxItemSet &) sw/inc/dbgoutsw.hxx:67 const char * dbg_out(const struct SwPosition &) sw/inc/dbgoutsw.hxx:68 - const char * dbg_out(const class SwPaM &) + const char * dbg_out(const SwPaM &) sw/inc/dbgoutsw.hxx:69 - const char * dbg_out(const class SwNodeNum &) + const char * dbg_out(const SwNodeNum &) sw/inc/dbgoutsw.hxx:70 - const char * dbg_out(const class SwUndo &) + const char * dbg_out(const SwUndo &) sw/inc/dbgoutsw.hxx:71 - const char * dbg_out(const class SwOutlineNodes &) + const char * dbg_out(const SwOutlineNodes &) sw/inc/dbgoutsw.hxx:72 - const char * dbg_out(const class SwNumRule &) + const char * dbg_out(const SwNumRule &) sw/inc/dbgoutsw.hxx:73 - const char * dbg_out(const class SwTextFormatColl &) + const char * dbg_out(const SwTextFormatColl &) sw/inc/dbgoutsw.hxx:74 - const char * dbg_out(const class SwFrameFormats &) + const char * dbg_out(const SwFrameFormats &) sw/inc/dbgoutsw.hxx:75 - const char * dbg_out(const class SwNumRuleTable &) + const char * dbg_out(const SwNumRuleTable &) sw/inc/dbgoutsw.hxx:76 - const char * dbg_out(const class SwNodeRange &) + const char * dbg_out(const SwNodeRange &) sw/inc/dbgoutsw.hxx:79 - class rtl::OUString lcl_dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &) + rtl::OUString lcl_dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &) sw/inc/dbgoutsw.hxx:103 const char * dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &) sw/inc/dbgoutsw.hxx:107 const char * dbg_out(const struct SwFormToken &) sw/inc/dbgoutsw.hxx:108 - const char * dbg_out(const class std::vector<struct SwFormToken> &) -sw/inc/docary.hxx:98 - void SwVectorModifyBase::insert(class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class SwFrameFormat **, class std::__cxx1998::vector<class SwFrameFormat *> >, class std::vector<class SwFrameFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) -sw/inc/docary.hxx:98 - void SwVectorModifyBase::insert(class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class SwGrfFormatColl **, class std::__cxx1998::vector<class SwGrfFormatColl *> >, class std::vector<class SwGrfFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) -sw/inc/docary.hxx:98 - void SwVectorModifyBase::insert(class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class SwNumRule **, class std::__cxx1998::vector<class SwNumRule *> >, class std::vector<class SwNumRule *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) -sw/inc/docary.hxx:98 - void SwVectorModifyBase::insert(class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class SwSectionFormat **, class std::__cxx1998::vector<class SwSectionFormat *> >, class std::vector<class SwSectionFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) -sw/inc/docary.hxx:98 - void SwVectorModifyBase::insert(class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class SwTextFormatColl **, class std::__cxx1998::vector<class SwTextFormatColl *> >, class std::vector<class SwTextFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) -sw/inc/docary.hxx:144 + const char * dbg_out(const std::vector<struct SwFormToken> &) +sw/inc/docary.hxx:97 + void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFrameFormat **, std::__cxx1998::vector<SwFrameFormat *> >, std::vector<SwFrameFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) +sw/inc/docary.hxx:97 + void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwGrfFormatColl **, std::__cxx1998::vector<SwGrfFormatColl *> >, std::vector<SwGrfFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) +sw/inc/docary.hxx:97 + void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwNumRule **, std::__cxx1998::vector<SwNumRule *> >, std::vector<SwNumRule *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) +sw/inc/docary.hxx:97 + void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFormat **, std::__cxx1998::vector<SwSectionFormat *> >, std::vector<SwSectionFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) +sw/inc/docary.hxx:97 + void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFormatColl **, std::__cxx1998::vector<SwTextFormatColl *> >, std::vector<SwTextFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?) +sw/inc/docary.hxx:143 void SwVectorModifyBase::dumpAsXml(struct _xmlTextWriter *) -sw/inc/docufld.hxx:501 +sw/inc/docufld.hxx:502 void SwPostItField::ToggleResolved() -sw/inc/editsh.hxx:370 +sw/inc/editsh.hxx:371 void SwEditShell::ValidateCurrentParagraphSignatures(_Bool) sw/inc/extinput.hxx:47 - class SwExtTextInput * SwExtTextInput::GetPrev() + SwExtTextInput * SwExtTextInput::GetPrev() sw/inc/extinput.hxx:48 - const class SwExtTextInput * SwExtTextInput::GetPrev() const + const SwExtTextInput * SwExtTextInput::GetPrev() const +sw/inc/formatcontentcontrol.hxx:80 + SwFormatContentControl * SwFormatContentControl::CreatePoolDefault(unsigned short) sw/inc/frameformats.hxx:80 void SwFrameFormats::erase(unsigned long) sw/inc/frameformats.hxx:97 - class SwFrameFormat *const & SwFrameFormats::back() const + SwFrameFormat *const & SwFrameFormats::back() const sw/inc/IDocumentLinksAdministration.hxx:54 - _Bool IDocumentLinksAdministration::GetData(const class rtl::OUString &,const class rtl::OUString &,class com::sun::star::uno::Any &) const + _Bool IDocumentLinksAdministration::GetData(const rtl::OUString &,const rtl::OUString &,com::sun::star::uno::Any &) const sw/inc/IDocumentLinksAdministration.hxx:56 - void IDocumentLinksAdministration::SetData(const class rtl::OUString &) -sw/inc/IDocumentMarkAccess.hxx:93 - class IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator++(int) + void IDocumentLinksAdministration::SetData(const rtl::OUString &) +sw/inc/IDocumentMarkAccess.hxx:92 + IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator++(int) +sw/inc/IDocumentMarkAccess.hxx:95 + IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator--() sw/inc/IDocumentMarkAccess.hxx:96 - class IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator--() + IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator--(int) sw/inc/IDocumentMarkAccess.hxx:97 - class IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator--(int) -sw/inc/IDocumentMarkAccess.hxx:98 - class IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator+=(long) -sw/inc/IDocumentMarkAccess.hxx:100 - class IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator-=(long) + IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator+=(long) +sw/inc/IDocumentMarkAccess.hxx:99 + IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator-=(long) +sw/inc/IDocumentMarkAccess.hxx:103 + _Bool IDocumentMarkAccess::iterator::operator<(const IDocumentMarkAccess::iterator &) const sw/inc/IDocumentMarkAccess.hxx:104 - _Bool IDocumentMarkAccess::iterator::operator<(const class IDocumentMarkAccess::iterator &) const -sw/inc/IDocumentMarkAccess.hxx:105 - _Bool IDocumentMarkAccess::iterator::operator>(const class IDocumentMarkAccess::iterator &) const -sw/inc/IDocumentMarkAccess.hxx:107 - _Bool IDocumentMarkAccess::iterator::operator>=(const class IDocumentMarkAccess::iterator &) const + _Bool IDocumentMarkAccess::iterator::operator>(const IDocumentMarkAccess::iterator &) const +sw/inc/IDocumentMarkAccess.hxx:106 + _Bool IDocumentMarkAccess::iterator::operator>=(const IDocumentMarkAccess::iterator &) const sw/inc/modcfg.hxx:344 _Bool SwModuleOptions::IsFileEncryptedFromColumn() const -sw/inc/node.hxx:241 - const class IDocumentStylePoolAccess & SwNode::getIDocumentStylePoolAccess() const +sw/inc/ndindex.hxx:113 + _Bool SwNodeIndex::operator<=(const SwNode &) const +sw/inc/ndindex.hxx:115 + _Bool SwNodeIndex::operator>=(const SwNode &) const sw/inc/node.hxx:245 - const class IDocumentDrawModelAccess & SwNode::getIDocumentDrawModelAccess() const + const IDocumentStylePoolAccess & SwNode::getIDocumentStylePoolAccess() const +sw/inc/node.hxx:249 + const IDocumentDrawModelAccess & SwNode::getIDocumentDrawModelAccess() const sw/inc/pagedesc.hxx:445 - void SwPageDescs::erase(class SwPageDesc *const &) + void SwPageDescs::erase(SwPageDesc *const &) sw/inc/pagedesc.hxx:453 - class SwPageDesc *const & SwPageDescs::front() const + SwPageDesc *const & SwPageDescs::front() const sw/inc/pagedesc.hxx:454 - class SwPageDesc *const & SwPageDescs::back() const + SwPageDesc *const & SwPageDescs::back() const +sw/inc/pam.hxx:48 + SwPosition::SwPosition(const SwNode &,const SwContentNode *,const int) +sw/inc/pam.hxx:49 + SwPosition::SwPosition(const SwNodeIndex &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int) +sw/inc/pam.hxx:50 + SwPosition::SwPosition(const SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int) +sw/inc/pam.hxx:334 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwPaM &) sw/inc/rdfhelper.hxx:76 - void SwRDFHelper::cloneStatements(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::rdf::XResource> &,const class com::sun::star::uno::Reference<class com::sun::star::rdf::XResource> &) + void SwRDFHelper::cloneStatements(const com::sun::star::uno::Reference<com::sun::star::frame::XModel> &,const com::sun::star::uno::Reference<com::sun::star::frame::XModel> &,const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::rdf::XResource> &,const com::sun::star::uno::Reference<com::sun::star::rdf::XResource> &) sw/inc/rdfhelper.hxx:94 - void SwRDFHelper::removeTextNodeStatement(const class rtl::OUString &,class SwTextNode &,const class rtl::OUString &,const class rtl::OUString &) + void SwRDFHelper::removeTextNodeStatement(const rtl::OUString &,SwTextNode &,const rtl::OUString &,const rtl::OUString &) sw/inc/rdfhelper.hxx:97 - void SwRDFHelper::updateTextNodeStatement(const class rtl::OUString &,const class rtl::OUString &,class SwTextNode &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) + void SwRDFHelper::updateTextNodeStatement(const rtl::OUString &,const rtl::OUString &,SwTextNode &,const rtl::OUString &,const rtl::OUString &,const rtl::OUString &) sw/inc/ring.hxx:203 sw::RingIterator::RingIterator<value_type>() sw/inc/shellio.hxx:85 void SwAsciiOptions::SetIncludeHidden(_Bool) sw/inc/swatrset.hxx:219 - const class SvxNoHyphenItem & SwAttrSet::GetNoHyphenHere(_Bool) const -sw/inc/swcrsr.hxx:221 - class SwCursor * SwCursor::GetPrev() -sw/inc/swcrsr.hxx:222 - const class SwCursor * SwCursor::GetPrev() const + const SvxNoHyphenItem & SwAttrSet::GetNoHyphenHere(_Bool) const sw/inc/swcrsr.hxx:307 - class SwTableCursor * SwTableCursor::GetNext() + SwTableCursor * SwTableCursor::GetNext() sw/inc/swcrsr.hxx:308 - const class SwTableCursor * SwTableCursor::GetNext() const + const SwTableCursor * SwTableCursor::GetNext() const sw/inc/swcrsr.hxx:309 - class SwTableCursor * SwTableCursor::GetPrev() + SwTableCursor * SwTableCursor::GetPrev() sw/inc/swcrsr.hxx:310 - const class SwTableCursor * SwTableCursor::GetPrev() const + const SwTableCursor * SwTableCursor::GetPrev() const sw/inc/swrect.hxx:102 - class SwRect & SwRect::operator-=(const class Point &) + SwRect & SwRect::operator-=(const Point &) sw/inc/swrect.hxx:108 - class SvStream & WriteSwRect(class SvStream &,const class SwRect &) + SvStream & WriteSwRect(SvStream &,const SwRect &) sw/inc/swrect.hxx:152 _Bool SwRect::OverStepTop(long) const sw/inc/textboxhelper.hxx:252 - void SwTextBoxNode::SetTextBoxActive(const class SdrObject *) -sw/inc/textboxhelper.hxx:255 _Bool SwTextBoxNode::IsGroupTextBox() const -sw/inc/textboxhelper.hxx:259 - unsigned long SwTextBoxNode::GetTextBoxCount() const -sw/inc/view.hxx:463 +sw/inc/view.hxx:462 void SwView::LinkStubMoveNavigationHdl(void *,void *) -sw/inc/viscrs.hxx:208 - class SwShellTableCursor * SwShellTableCursor::GetNext() -sw/inc/viscrs.hxx:209 - const class SwShellTableCursor * SwShellTableCursor::GetNext() const -sw/inc/viscrs.hxx:210 - class SwShellTableCursor * SwShellTableCursor::GetPrev() -sw/inc/viscrs.hxx:211 - const class SwShellTableCursor * SwShellTableCursor::GetPrev() const -sw/qa/inc/swmodeltestbase.hxx:282 - class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> SwModelTestBase::getParagraphAnchoredObject(const int,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextRange> &) const -sw/qa/unit/sw-dialogs-test_2.cxx:92 - int main() -sw/source/core/access/accportions.cxx:57 +sw/inc/viscrs.hxx:217 + SwShellTableCursor * SwShellTableCursor::GetNext() +sw/inc/viscrs.hxx:218 + const SwShellTableCursor * SwShellTableCursor::GetNext() const +sw/inc/viscrs.hxx:219 + SwShellTableCursor * SwShellTableCursor::GetPrev() +sw/inc/viscrs.hxx:220 + const SwShellTableCursor * SwShellTableCursor::GetPrev() const +sw/qa/inc/swmodeltestbase.hxx:287 + com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> SwModelTestBase::getParagraphAnchoredObject(const int,const com::sun::star::uno::Reference<com::sun::star::text::XTextRange> &) const +sw/source/core/access/accportions.cxx:55 unsigned long FindBreak(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &,type-parameter-?-?) -sw/source/core/access/accportions.cxx:61 +sw/source/core/access/accportions.cxx:59 unsigned long FindLastBreak(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &,type-parameter-?-?) sw/source/core/inc/AccessibilityIssue.hxx:52 - const class std::vector<class rtl::OUString> & sw::AccessibilityIssue::getAdditionalInfo() const + const std::vector<rtl::OUString> & sw::AccessibilityIssue::getAdditionalInfo() const sw/source/core/inc/AccessibilityIssue.hxx:54 - void sw::AccessibilityIssue::setAdditionalInfo(class std::vector<class rtl::OUString> &&) -sw/source/core/inc/frame.hxx:937 + void sw::AccessibilityIssue::setAdditionalInfo(std::vector<rtl::OUString> &&) +sw/source/core/inc/frame.hxx:936 void SwFrame::dumpTopMostAsXml(struct _xmlTextWriter *) const -sw/source/core/inc/frame.hxx:1385 - class Size SwRectFnSet::GetSize(const class SwRect &) const -sw/source/core/inc/frame.hxx:1416 - long SwRectFnSet::LeftDist(const class SwRect &,long) const -sw/source/core/inc/frame.hxx:1417 - long SwRectFnSet::RightDist(const class SwRect &,long) const -sw/source/core/inc/mvsave.hxx:171 - _Bool ZSortFly::operator==(const class ZSortFly &) const -sw/source/core/text/porlin.hxx:119 +sw/source/core/inc/frame.hxx:1383 + Size SwRectFnSet::GetSize(const SwRect &) const +sw/source/core/inc/frame.hxx:1414 + long SwRectFnSet::LeftDist(const SwRect &,long) const +sw/source/core/inc/frame.hxx:1415 + long SwRectFnSet::RightDist(const SwRect &,long) const +sw/source/core/inc/mvsave.hxx:172 + _Bool ZSortFly::operator==(const ZSortFly &) const +sw/source/core/text/porlin.hxx:125 _Bool SwLinePortion::IsTabRightPortion() const sw/source/core/text/txtpaint.hxx:72 - DbgBackColor::DbgBackColor(class OutputDevice *,const _Bool) + DbgBackColor::DbgBackColor(OutputDevice *,const _Bool) sw/source/core/text/txtpaint.hxx:79 - DbgRect::DbgRect(class OutputDevice *,const class tools::Rectangle &,const _Bool,class Color) -sw/source/uibase/inc/swcont.hxx:88 - _Bool SwContent::operator==(const class SwContent &) const + DbgRect::DbgRect(OutputDevice *,const tools::Rectangle &,const _Bool,Color) +sw/source/uibase/inc/swcont.hxx:89 + _Bool SwContent::operator==(const SwContent &) const +sw/source/uibase/inc/unomod.hxx:36 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> SwXModule_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) test/source/sheet/xsubtotalfield.cxx:28 - _Bool CppUnit::assertion_traits::equal(const class com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &,const class com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &) + _Bool CppUnit::assertion_traits::equal(const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &,const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &) test/source/sheet/xsubtotalfield.cxx:34 - class std::basic_string<char> CppUnit::assertion_traits::toString(const class com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &) + std::basic_string<char> CppUnit::assertion_traits::toString(const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &) ucb/source/inc/regexpmap.hxx:285 RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::begin() const ucb/source/inc/regexpmap.hxx:289 RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::end() const ucb/source/ucp/ftp/ftpurl.hxx:108 - class rtl::OUString ftp::FTPURL::child() const + rtl::OUString ftp::FTPURL::child() const ucb/source/ucp/gio/gio_mount.cxx:37 void * ooo_mount_operation_get_instance_private(struct OOoMountOperation *) +unoxml/inc/node.hxx:116 + void DOM::CNode::checkNoParent(const com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode> &) vcl/inc/bitmap/BitmapWriteAccess.hxx:73 void BitmapWriteAccess::SetFillColor() vcl/inc/bitmap/ScanlineTools.hxx:23 void vcl::bitmap::ScanlineTransformer::skipPixel(unsigned int) vcl/inc/ControlCacheKey.hxx:35 - ControlCacheKey::ControlCacheKey(enum ControlType,enum ControlPart,enum ControlState,const class Size &) + ControlCacheKey::ControlCacheKey(enum ControlType,enum ControlPart,enum ControlState,const Size &) vcl/inc/ControlCacheKey.hxx:43 - _Bool ControlCacheKey::operator==(const class ControlCacheKey &) const + _Bool ControlCacheKey::operator==(const ControlCacheKey &) const vcl/inc/ControlCacheKey.hxx:50 _Bool ControlCacheKey::canCacheControl() const vcl/inc/ControlCacheKey.hxx:81 - unsigned long ControlCacheHashFunction::operator()(const class ControlCacheKey &) const + unsigned long ControlCacheHashFunction::operator()(const ControlCacheKey &) const +vcl/inc/dndhelper.hxx:35 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> vcl::OleDnDHelper(const com::sun::star::uno::Reference<com::sun::star::lang::XInitialization> &,long,enum vcl::DragOrDrop) vcl/inc/driverblocklist.hxx:95 - DriverBlocklist::DriverInfo::DriverInfo(enum DriverBlocklist::OperatingSystem,const class rtl::OUString &,enum DriverBlocklist::VersionComparisonOp,unsigned long,_Bool,const char *) + DriverBlocklist::DriverInfo::DriverInfo(enum DriverBlocklist::OperatingSystem,rtl::OUString,enum DriverBlocklist::VersionComparisonOp,unsigned long,_Bool,const char *) vcl/inc/font/FontSelectPattern.hxx:52 - _Bool vcl::font::FontSelectPattern::operator!=(const class vcl::font::FontSelectPattern &) const -vcl/inc/fontinstance.hxx:70 + _Bool vcl::font::FontSelectPattern::operator!=(const vcl::font::FontSelectPattern &) const +vcl/inc/fontinstance.hxx:92 void LogicalFontInstance::SetAverageWidthFactor(double) -vcl/inc/fontinstance.hxx:71 +vcl/inc/fontinstance.hxx:93 double LogicalFontInstance::GetAverageWidthFactor() const vcl/inc/graphic/GraphicID.hxx:39 - _Bool GraphicID::operator==(const class GraphicID &) const -vcl/inc/headless/CairoCommon.hxx:155 - struct _cairo_surface * CairoCommon::getSurface() const -vcl/inc/headless/svpgdi.hxx:103 + _Bool GraphicID::operator==(const GraphicID &) const +vcl/inc/headless/svpgdi.hxx:61 struct _cairo * SvpSalGraphics::createTmpCompatibleCairoContext() const -vcl/inc/jsdialog/jsdialogbuilder.hxx:197 +vcl/inc/impfont.hxx:97 + unsigned long ImplFont::GetHashValue() const +vcl/inc/ImplLayoutArgs.hxx:71 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const vcl::text::ImplLayoutArgs &) +vcl/inc/jsdialog/jsdialogbuilder.hxx:206 void JSDropTarget::fire_dragEnter(const struct com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent &) vcl/inc/opengl/zone.hxx:26 void OpenGLZone::relaxWatchdogTimings() -vcl/inc/qt5/QtAccessibleWidget.hxx:48 - void QtAccessibleWidget::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtAccessibleWidget.hxx:51 - QtAccessibleWidget::QtAccessibleWidget(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible>,class QObject *) -vcl/inc/qt5/QtAccessibleWidget.hxx:154 - class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessibleContext> QtAccessibleWidget::getAccessibleContextImpl() const -vcl/inc/qt5/QtAccessibleWidget.hxx:155 - class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessibleTable> QtAccessibleWidget::getAccessibleTableForParent() const -vcl/inc/qt5/QtClipboard.hxx:36 - void QtClipboard::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtClipboard.hxx:53 - _Bool QtClipboard::isOwner(const enum QClipboard::Mode) -vcl/inc/qt5/QtClipboard.hxx:54 - _Bool QtClipboard::isSupported(const enum QClipboard::Mode) -vcl/inc/qt5/QtClipboard.hxx:56 - QtClipboard::QtClipboard(const class rtl::OUString &,const enum QClipboard::Mode) -vcl/inc/qt5/QtClipboard.hxx:59 - void QtClipboard::handleChanged(enum QClipboard::Mode) -vcl/inc/qt5/QtClipboard.hxx:60 - void QtClipboard::handleClearClipboard() -vcl/inc/qt5/QtClipboard.hxx:63 - void QtClipboard::clearClipboard() vcl/inc/qt5/QtDragAndDrop.hxx:49 void QtDragSource::deinitialize() vcl/inc/qt5/QtDragAndDrop.hxx:80 void QtDropTarget::deinitialize() -vcl/inc/qt5/QtFilePicker.hxx:60 - void QtFilePicker::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtFilePicker.hxx:169 - class QString QtFilePicker::getResString(struct TranslateId) -vcl/inc/qt5/QtFilePicker.hxx:170 - class com::sun::star::uno::Any QtFilePicker::handleGetListValue(const class QComboBox *,short) -vcl/inc/qt5/QtFilePicker.hxx:171 - void QtFilePicker::handleSetListValue(class QComboBox *,short,const class com::sun::star::uno::Any &) -vcl/inc/qt5/QtFilePicker.hxx:174 - void QtFilePicker::prepareExecute() -vcl/inc/qt5/QtFilePicker.hxx:178 - void QtFilePicker::filterSelected(const class QString &) -vcl/inc/qt5/QtFilePicker.hxx:180 - void QtFilePicker::currentChanged(const class QString &) -vcl/inc/qt5/QtFilePicker.hxx:183 - void QtFilePicker::finished(int) vcl/inc/qt5/QtFontFace.hxx:43 - class QtFontFace * QtFontFace::fromQFont(const class QFont &) + QtFontFace * QtFontFace::fromQFont(const QFont &) vcl/inc/qt5/QtFontFace.hxx:54 int QtFontFace::GetFontTable(const char *,unsigned char *) const vcl/inc/qt5/QtFontFace.hxx:58 _Bool QtFontFace::HasChar(unsigned int) const -vcl/inc/qt5/QtFrame.hxx:69 - void QtFrame::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtFrame.hxx:112 - void QtFrame::SetDefaultPos() -vcl/inc/qt5/QtFrame.hxx:113 - class Size QtFrame::CalcDefaultSize() -vcl/inc/qt5/QtFrame.hxx:114 - void QtFrame::SetDefaultSize() -vcl/inc/qt5/QtFrame.hxx:116 - _Bool QtFrame::isChild(_Bool,_Bool) const -vcl/inc/qt5/QtFrame.hxx:126 - _Bool QtFrame::isWindow() const -vcl/inc/qt5/QtFrame.hxx:127 - class QWindow * QtFrame::windowHandle() const -vcl/inc/qt5/QtFrame.hxx:128 - class QScreen * QtFrame::screen() const -vcl/inc/qt5/QtFrame.hxx:129 - _Bool QtFrame::isMinimized() const -vcl/inc/qt5/QtFrame.hxx:130 - _Bool QtFrame::isMaximized() const -vcl/inc/qt5/QtFrame.hxx:131 - void QtFrame::SetWindowStateImpl(class QFlags<enum Qt::WindowState>) -vcl/inc/qt5/QtFrame.hxx:132 - int QtFrame::menuBarOffset() const -vcl/inc/qt5/QtFrame.hxx:134 - void QtFrame::fixICCCMwindowGroup() -vcl/inc/qt5/QtFrame.hxx:135 - void QtFrame::modalReparent(_Bool) -vcl/inc/qt5/QtFrame.hxx:146 - void QtFrame::Damage(int,int,int,int) const -vcl/inc/qt5/QtFrame.hxx:160 - void QtFrame::deregisterDragSource(const class QtDragSource *) -vcl/inc/qt5/QtFrame.hxx:162 - void QtFrame::deregisterDropTarget(const class QtDropTarget *) +vcl/inc/qt5/QtFrame.hxx:149 + QPoint QtFrame::mapFromParent(const QPoint &) const +vcl/inc/qt5/QtFrame.hxx:164 + void QtFrame::deregisterDragSource(const QtDragSource *) +vcl/inc/qt5/QtFrame.hxx:166 + void QtFrame::deregisterDropTarget(const QtDropTarget *) vcl/inc/qt5/QtGraphics.hxx:180 - void QtGraphics::drawScaledImage(const struct SalTwoRect &,const class QImage &) + void QtGraphics::drawScaledImage(const struct SalTwoRect &,const QImage &) vcl/inc/qt5/QtGraphics_Controls.hxx:96 - class QPoint QtGraphics_Controls::upscale(const class QPoint &,enum QtGraphics_Controls::Round) -vcl/inc/qt5/QtInstance.hxx:54 - void QtInstance::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtInstance.hxx:70 - void QtInstance::LinkStubupdateStyleHdl(void *,class Timer *) -vcl/inc/qt5/QtInstance.hxx:70 - void QtInstance::updateStyleHdl(class Timer *) -vcl/inc/qt5/QtInstance.hxx:74 - _Bool QtInstance::ImplYield(_Bool,_Bool) -vcl/inc/qt5/QtInstance.hxx:75 - void QtInstance::deleteObjectLater(class QObject *) -vcl/inc/qt5/QtInstance.hxx:76 - void QtInstance::localeChanged() -vcl/inc/qt5/QtInstance.hxx:79 - _Bool QtInstance::ImplYieldSignal(_Bool,_Bool) -vcl/inc/qt5/QtInstance.hxx:80 - void QtInstance::deleteObjectLaterSignal(class QObject *) -vcl/inc/qt5/QtMainWindow.hxx:29 - void QtMainWindow::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtMenu.hxx:40 - void QtMenu::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtMenu.hxx:55 - void QtMenu::DoFullMenuUpdate(class Menu *) -vcl/inc/qt5/QtMenu.hxx:56 - void QtMenu::NativeItemText(class rtl::OUString &) -vcl/inc/qt5/QtMenu.hxx:58 - void QtMenu::InsertMenuItem(class QtMenuItem *,unsigned int) -vcl/inc/qt5/QtMenu.hxx:60 - void QtMenu::ReinitializeActionGroup(unsigned int) -vcl/inc/qt5/QtMenu.hxx:61 - void QtMenu::ResetAllActionGroups() -vcl/inc/qt5/QtMenu.hxx:62 - void QtMenu::UpdateActionGroupItem(const class QtMenuItem *) -vcl/inc/qt5/QtMenu.hxx:73 - const class QtFrame * QtMenu::GetFrame() const -vcl/inc/qt5/QtMenu.hxx:77 - class QtMenu * QtMenu::GetTopLevel() -vcl/inc/qt5/QtMenu.hxx:92 - class Menu * QtMenu::GetMenu() -vcl/inc/qt5/QtMenu.hxx:93 - unsigned int QtMenu::GetItemCount() const -vcl/inc/qt5/QtMenu.hxx:94 - class QtMenuItem * QtMenu::GetItemAtPos(unsigned int) -vcl/inc/qt5/QtMenu.hxx:97 - void QtMenu::slotMenuTriggered(class QtMenuItem *) -vcl/inc/qt5/QtMenu.hxx:98 - void QtMenu::slotMenuAboutToShow(class QtMenuItem *) -vcl/inc/qt5/QtMenu.hxx:99 - void QtMenu::slotMenuAboutToHide(class QtMenuItem *) -vcl/inc/qt5/QtMenu.hxx:100 - void QtMenu::slotCloseDocument() -vcl/inc/qt5/QtMenu.hxx:108 - class QAction * QtMenuItem::getAction() const -vcl/inc/qt5/QtObject.hxx:34 - void QtObject::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtObject.hxx:46 - class QtFrame * QtObject::frame() const -vcl/inc/qt5/QtObject.hxx:47 - class QWidget * QtObject::widget() const -vcl/inc/qt5/QtObject.hxx:78 - QtObjectWindow::QtObjectWindow(class QtObject &) -vcl/inc/qt5/QtPainter.hxx:61 + QPoint QtGraphics_Controls::upscale(const QPoint &,enum QtGraphics_Controls::Round) +vcl/inc/qt5/QtMenu.hxx:67 + void QtMenu::adjustButtonSizes() +vcl/inc/qt5/QtMenu.hxx:80 + const QtFrame * QtMenu::GetFrame() const +vcl/inc/qt5/QtObject.hxx:48 + QWidget * QtObject::widget() const +vcl/inc/qt5/QtPainter.hxx:53 void QtPainter::update() -vcl/inc/qt5/QtTimer.hxx:27 - void QtTimer::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtTimer.hxx:32 - void QtTimer::timeoutActivated() -vcl/inc/qt5/QtTimer.hxx:33 - void QtTimer::startTimer(int) -vcl/inc/qt5/QtTimer.hxx:34 - void QtTimer::stopTimer() -vcl/inc/qt5/QtTimer.hxx:37 - void QtTimer::startTimerSignal(int) -vcl/inc/qt5/QtTimer.hxx:38 - void QtTimer::stopTimerSignal() -vcl/inc/qt5/QtTools.hxx:58 - class QRect toQRect(const class tools::Rectangle &,const double) -vcl/inc/qt5/QtWidget.hxx:35 - void QtWidget::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) -vcl/inc/qt5/QtWidget.hxx:48 - void QtWidget::commitText(class QtFrame &,const class QString &) -vcl/inc/qt5/QtWidget.hxx:51 - void QtWidget::fillSalAbstractMouseEvent(const class QtFrame &,const class QInputEvent *,const class QPoint &,class QFlags<enum Qt::MouseButton>,int,struct SalAbstractMouseEvent &) -vcl/inc/qt5/QtWidget.hxx:78 - void QtWidget::closePopup() -vcl/inc/qt5/QtXAccessible.hxx:27 - void QtXAccessible::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) +vcl/inc/qt5/QtX11Support.hxx:23 + void QtX11Support::fetchAtoms() +vcl/inc/qt5/QtX11Support.hxx:26 + _Bool QtX11Support::fixICCCMwindowGroup(unsigned int) vcl/inc/regionband.hxx:27 const char * ImplDbgTestRegionBand(const void *) -vcl/inc/salgdi.hxx:672 - void SalGraphics::FillFontSubsetInfo(const struct vcl::TTGlobalFontInfo_ &,const class rtl::OUString &,class FontSubsetInfo &) -vcl/inc/salmenu.hxx:46 +vcl/inc/salframe.hxx:159 + rtl::OUString SalFrame::DumpSetPosSize(long,long,long,long,unsigned short) +vcl/inc/salgdi.hxx:691 + void SalGraphics::FillFontSubsetInfo(const struct vcl::TTGlobalFontInfo_ &,const rtl::OUString &,FontSubsetInfo &) +vcl/inc/salgeom.hxx:69 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SalFrameGeometry &) +vcl/inc/salmenu.hxx:47 SalMenuButtonItem::SalMenuButtonItem() vcl/inc/salobj.hxx:73 _Bool SalObject::IsEraseBackgroundEnabled() const @@ -2246,64 +3124,76 @@ vcl/inc/saltimer.hxx:90 _Bool VersionedEvent::ExistsValidEvent() const vcl/inc/saltimer.hxx:95 _Bool VersionedEvent::IsValidEventVersion(const int) const -vcl/inc/salwtype.hxx:129 +vcl/inc/salwtype.hxx:132 SalMenuEvent::SalMenuEvent() vcl/inc/schedulerimpl.hxx:49 const char * ImplSchedulerData::GetDebugName() const vcl/inc/skia/gdiimpl.hxx:49 - const class vcl::Region & SkiaSalGraphicsImpl::getClipRegion() const + const vcl::Region & SkiaSalGraphicsImpl::getClipRegion() const vcl/inc/skia/gdiimpl.hxx:204 void SkiaSalGraphicsImpl::dump(const char *) const vcl/inc/skia/salbmp.hxx:99 void SkiaSalBitmap::dump(const char *) const -vcl/inc/skia/utils.hxx:56 - class sk_sp<class SkSurface> SkiaHelper::createSkSurface(int,int,enum SkAlphaType) -vcl/inc/skia/utils.hxx:119 - void SkiaHelper::removeCachedImage(class sk_sp<class SkImage>) -vcl/inc/skia/utils.hxx:129 +vcl/inc/skia/utils.hxx:58 + sk_sp<SkSurface> SkiaHelper::createSkSurface(int,int,enum SkAlphaType) +vcl/inc/skia/utils.hxx:121 + void SkiaHelper::removeCachedImage(sk_sp<SkImage>) +vcl/inc/skia/utils.hxx:131 void SkiaHelper::setPixelGeometry(enum SkPixelGeometry) -vcl/inc/skia/utils.hxx:243 - void SkiaHelper::dump(const class SkBitmap &,const char *) +vcl/inc/skia/utils.hxx:249 + void SkiaHelper::dump(const SkBitmap &,const char *) vcl/inc/skia/zone.hxx:25 void SkiaZone::relaxWatchdogTimings() vcl/inc/unx/fontmanager.hxx:179 void psp::PrintFontManager::fillPrintFontInfo(struct psp::PrintFontManager::PrintFont &,struct psp::PrintFontInfo &) const -vcl/inc/unx/gtk/gtkframe.hxx:296 +vcl/inc/unx/gtk/gtkframe.hxx:298 void GtkSalFrame::DrawingAreaFocusInOut(enum SalEvent) vcl/inc/unx/gtk/gtksalmenu.hxx:81 - const class GtkSalFrame * GtkSalMenu::GetFrame() const -vcl/inc/unx/printergfx.hxx:94 - _Bool psp::PrinterColor::operator!=(const class psp::PrinterColor &) const + const GtkSalFrame * GtkSalMenu::GetFrame() const +vcl/inc/unx/printergfx.hxx:93 + _Bool psp::PrinterColor::operator!=(const psp::PrinterColor &) const vcl/inc/unx/saldisp.hxx:377 - class SalXLib * SalDisplay::GetXLib() const -vcl/inc/unx/salframe.h:185 + SalXLib * SalDisplay::GetXLib() const +vcl/inc/unx/salframe.h:186 enum SalFrameStyleFlags X11SalFrame::GetStyle() const vcl/qa/cppunit/lifecycle.cxx:197 (anonymous namespace)::LeakTestClass::LeakTestClass(_Bool &,type-parameter-?-? &&...) -vcl/skia/salbmp.cxx:638 +vcl/skia/salbmp.cxx:639 void ::operator()(void *,void *) const vcl/source/app/scheduler.cxx:83 - basic_ostream<type-parameter-?-?, type-parameter-?-?> & (anonymous namespace)::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const class Idle &) + basic_ostream<type-parameter-?-?, type-parameter-?-?> & (anonymous namespace)::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const Idle &) vcl/source/bitmap/BitmapColorQuantizationFilter.cxx:105 int ::operator()(const void *,const void *) const vcl/source/edit/textdat2.hxx:86 - class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class TETextPortion *, class std::__cxx1998::vector<class TETextPortion> >, class std::vector<class TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::begin() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::begin() const vcl/source/edit/textdat2.hxx:88 - class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class TETextPortion *, class std::__cxx1998::vector<class TETextPortion> >, class std::vector<class TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::end() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::end() const vcl/source/filter/FilterConfigCache.hxx:71 - class rtl::OUString FilterConfigCache::GetImportFormatMediaType(unsigned short) -vcl/source/fontsubset/xlat.hxx:31 + rtl::OUString FilterConfigCache::GetImportFormatMediaType(unsigned short) +vcl/source/fontsubset/xlat.hxx:30 unsigned short vcl::TranslateChar12(unsigned short) -vcl/source/fontsubset/xlat.hxx:32 +vcl/source/fontsubset/xlat.hxx:31 unsigned short vcl::TranslateChar13(unsigned short) -vcl/source/fontsubset/xlat.hxx:33 +vcl/source/fontsubset/xlat.hxx:32 unsigned short vcl::TranslateChar14(unsigned short) -vcl/source/fontsubset/xlat.hxx:34 +vcl/source/fontsubset/xlat.hxx:33 unsigned short vcl::TranslateChar15(unsigned short) -vcl/source/fontsubset/xlat.hxx:35 +vcl/source/fontsubset/xlat.hxx:34 unsigned short vcl::TranslateChar16(unsigned short) -vcl/source/window/menuitemlist.hxx:122 +vcl/source/opengl/GLMHelper.hxx:17 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::mat<4, 4, float, glm::packed_highp> &) +vcl/source/opengl/GLMHelper.hxx:18 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<4, float, glm::packed_highp> &) +vcl/source/opengl/GLMHelper.hxx:19 + std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<3, float, glm::packed_highp> &) +vcl/source/window/menuitemlist.hxx:123 void MenuItemList::Clear() +vcl/unx/generic/dtrans/X11_clipboard.hxx:106 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::X11Clipboard_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) +vcl/unx/generic/dtrans/X11_selection.hxx:487 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::Xdnd_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) +vcl/unx/generic/dtrans/X11_selection.hxx:491 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::Xdnd_dropTarget_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) vcl/unx/gtk3/customcellrenderer.hxx:29 int CUSTOM_IS_CELL_RENDERER(void *) vcl/unx/gtk3/customcellrenderer.hxx:29 @@ -2326,19 +3216,27 @@ vcl/unx/gtk3/customcellrenderer.hxx:29 void glib_slistautoptr_cleanup_CustomCellRendererClass(struct _GSList **) vcl/unx/gtk3/gloactiongroup.cxx:51 void * g_lo_action_get_instance_private(struct (anonymous namespace)::GLOAction *) -vcl/unx/gtk3/glomenu.cxx:30 +vcl/unx/gtk3/glomenu.cxx:32 void * g_lo_menu_get_instance_private(struct GLOMenu *) -vcl/unx/kf5/KF5FilePicker.hxx:29 - void KF5FilePicker::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void **) +writerfilter/source/dmapper/DomainMapper.hxx:111 + writerfilter::dmapper::GraphicNamingHelper & writerfilter::dmapper::DomainMapper::GetGraphicNamingHelper() +writerfilter/source/dmapper/GraphicHelpers.hxx:75 + rtl::OUString writerfilter::dmapper::GraphicNamingHelper::NameGraphic(const rtl::OUString &) +writerfilter/source/dmapper/PropertyMap.hxx:380 + int writerfilter::dmapper::SectionPropertyMap::GetBreakType() const writerfilter/source/dmapper/SettingsTable.hxx:81 - const class rtl::OUString & writerfilter::dmapper::SettingsTable::GetDecimalSymbol() const + const rtl::OUString & writerfilter::dmapper::SettingsTable::GetDecimalSymbol() const writerfilter/source/ooxml/OOXMLPropertySet.hxx:183 - class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class tools::SvRef<class writerfilter::ooxml::OOXMLProperty> *, class std::__cxx1998::vector<class tools::SvRef<class writerfilter::ooxml::OOXMLProperty> > >, class std::vector<class tools::SvRef<class writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::begin() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::begin() const writerfilter/source/ooxml/OOXMLPropertySet.hxx:184 - class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class tools::SvRef<class writerfilter::ooxml::OOXMLProperty> *, class std::__cxx1998::vector<class tools::SvRef<class writerfilter::ooxml::OOXMLProperty> > >, class std::vector<class tools::SvRef<class writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::end() const + __gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::end() const writerfilter/source/ooxml/OOXMLPropertySet.hxx:187 - class std::basic_string<char> writerfilter::ooxml::OOXMLPropertySet::toString() + std::basic_string<char> writerfilter::ooxml::OOXMLPropertySet::toString() +xmlsecurity/inc/framework/xmlsignaturetemplateimpl.hxx:92 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> XMLSignatureTemplateImpl::impl_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) +xmlsecurity/inc/gpg/xmlsignature_gpgimpl.hxx:74 + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> XMLSignature_GpgImpl::impl_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &) xmlsecurity/source/gpg/XMLEncryption.hxx:24 XMLEncryptionGpg::XMLEncryptionGpg() xmlsecurity/source/xmlsec/nss/nssinitializer.hxx:45 - ONSSInitializer::ONSSInitializer(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &) + ONSSInitializer::ONSSInitializer(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>) diff --git a/compilerplugins/clang/unusedmethods.unused-returns.results b/compilerplugins/clang/unusedmethods.unused-returns.results index 71a3f452938c..e2faddb1ee39 100644 --- a/compilerplugins/clang/unusedmethods.unused-returns.results +++ b/compilerplugins/clang/unusedmethods.unused-returns.results @@ -1,11 +1,11 @@ connectivity/source/inc/java/lang/Object.hxx:109 int connectivity::java_lang_Object::callIntMethodWithIntArg_ThrowRuntime(const char *,struct _jmethodID *&,int) const connectivity/source/inc/odbc/OConnection.hxx:74 - short connectivity::odbc::OConnection::Construct(const class rtl::OUString &,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &) + short connectivity::odbc::OConnection::Construct(const rtl::OUString &,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &) connectivity/source/inc/odbc/OStatement.hxx:113 - _Bool connectivity::odbc::OStatement_Base::lockIfNecessary(const class rtl::OUString &) -cui/source/inc/iconcdlg.hxx:70 - _Bool IconChoicePage::FillItemSet(class SfxItemSet *) + _Bool connectivity::odbc::OStatement_Base::lockIfNecessary(const rtl::OUString &) +cui/source/inc/iconcdlg.hxx:71 + _Bool IconChoicePage::FillItemSet(SfxItemSet *) dbaccess/source/ui/app/AppSwapWindow.hxx:84 _Bool dbaui::OApplicationSwapWindow::onContainerSelected(enum dbaui::ElementType) extensions/source/scanner/sane.hxx:105 @@ -21,31 +21,23 @@ extensions/source/scanner/sanedlg.hxx:87 extensions/source/scanner/sanedlg.hxx:101 _Bool SaneDlg::SetAdjustedNumericalValue(const char *,double,int) framework/source/fwe/classes/addonsoptions.cxx:282 - _Bool framework::AddonsOptions_Impl::ReadToolBarItemSet(const class rtl::OUString &,class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &) + _Bool framework::AddonsOptions_Impl::ReadToolBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &) framework/source/fwe/classes/addonsoptions.cxx:284 - _Bool framework::AddonsOptions_Impl::ReadNotebookBarItemSet(const class rtl::OUString &,class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &) + _Bool framework::AddonsOptions_Impl::ReadNotebookBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &) i18nlangtag/source/languagetag/languagetag.cxx:298 - const class rtl::OUString & LanguageTagImpl::getBcp47() const -idlc/inc/aststack.hxx:38 - class AstStack * AstStack::push(class AstScope *) + const rtl::OUString & LanguageTagImpl::getBcp47() const include/basegfx/range/b2dconnectedranges.hxx:215 type-parameter-?-? basegfx::B2DConnectedRanges::forEachAggregate(type-parameter-?-?) const -include/basegfx/vector/b2dvector.hxx:113 - class basegfx::B2DVector & basegfx::B2DVector::setLength(double) -include/basegfx/vector/b2ivector.hxx:98 - class basegfx::B2IVector & basegfx::B2IVector::setLength(double) include/basegfx/vector/b3dvector.hxx:144 - class basegfx::B3DVector & basegfx::B3DVector::setLength(double) + basegfx::B3DVector & basegfx::B3DVector::setLength(double) include/basegfx/vector/b3dvector.hxx:169 - class basegfx::B3DVector & basegfx::B3DVector::normalize() + basegfx::B3DVector & basegfx::B3DVector::normalize() include/comphelper/backupfilehelper.hxx:205 - _Bool comphelper::BackupFileHelper::tryPush_extensionInfo(class std::basic_string_view<char16_t>) -include/comphelper/multiinterfacecontainer4.hxx:94 - int comphelper::OMultiTypeInterfaceContainerHelperVar4::addInterface(const type-parameter-?-? &,const Reference<type-parameter-?-?> &) -include/editeng/editview.hxx:264 - class ErrCode EditView::Read(class SvStream &,enum EETextFormat,class SvKeyValueIterator *) + _Bool comphelper::BackupFileHelper::tryPush_extensionInfo(std::basic_string_view<char16_t>) +include/editeng/editview.hxx:263 + ErrCode EditView::Read(SvStream &,enum EETextFormat,SvKeyValueIterator *) include/editeng/outliner.hxx:279 - _Bool OutlinerView::Command(const class CommandEvent &) + _Bool OutlinerView::Command(const CommandEvent &) include/oox/crypto/AgileEngine.hxx:120 _Bool oox::crypto::AgileEngine::decryptHmacKey() include/oox/crypto/AgileEngine.hxx:121 @@ -53,336 +45,346 @@ include/oox/crypto/AgileEngine.hxx:121 include/oox/crypto/AgileEngine.hxx:136 _Bool oox::crypto::AgileEngine::encryptHmacValue() include/oox/crypto/CryptoEngine.hxx:46 - _Bool oox::crypto::CryptoEngine::decrypt(class oox::BinaryXInputStream &,class oox::BinaryXOutputStream &) + _Bool oox::crypto::CryptoEngine::decrypt(oox::BinaryXInputStream &,oox::BinaryXOutputStream &) include/oox/crypto/CryptTools.hxx:111 - _Bool oox::crypto::CryptoHash::update(class std::vector<unsigned char> &,unsigned int) + _Bool oox::crypto::CryptoHash::update(std::vector<unsigned char> &,unsigned int) include/oox/dump/dumperbase.hxx:640 long oox::dump::FlagsList::getIgnoreFlags() const include/oox/dump/dumperbase.hxx:1410 - type-parameter-?-? oox::dump::InputObjectBase::dumpName(const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpName(const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1416 - type-parameter-?-? oox::dump::InputObjectBase::dumpBin(const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpBin(const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1418 - type-parameter-?-? oox::dump::InputObjectBase::dumpFix(const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpFix(const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1422 type-parameter-?-? oox::dump::InputObjectBase::dumpValue(const struct oox::dump::ItemFormat &) include/oox/dump/dumperbase.hxx:1425 - type-parameter-?-? oox::dump::InputObjectBase::dumpName(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpName(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1427 - type-parameter-?-? oox::dump::InputObjectBase::dumpDec(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpDec(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1431 - type-parameter-?-? oox::dump::InputObjectBase::dumpBin(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpBin(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1433 - type-parameter-?-? oox::dump::InputObjectBase::dumpFix(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpFix(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1435 - type-parameter-?-? oox::dump::InputObjectBase::dumpBool(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) + type-parameter-?-? oox::dump::InputObjectBase::dumpBool(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &) include/oox/dump/dumperbase.hxx:1437 type-parameter-?-? oox::dump::InputObjectBase::dumpValue(_Bool,const struct oox::dump::ItemFormat &) -include/oox/dump/oledumper.hxx:310 - _Bool oox::dump::AxPropertyObjectBase::dumpBoolProperty() include/oox/dump/oledumper.hxx:311 - int oox::dump::AxPropertyObjectBase::dumpHmmProperty() + _Bool oox::dump::AxPropertyObjectBase::dumpBoolProperty() include/oox/dump/oledumper.hxx:312 + int oox::dump::AxPropertyObjectBase::dumpHmmProperty() +include/oox/dump/oledumper.hxx:313 unsigned char oox::dump::AxPropertyObjectBase::dumpMousePtrProperty() -include/oox/dump/oledumper.hxx:314 +include/oox/dump/oledumper.hxx:315 type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpBorderStyleProperty(type-parameter-?-?) -include/oox/dump/oledumper.hxx:316 - type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpSpecialEffectProperty(type-parameter-?-?) include/oox/dump/oledumper.hxx:317 - unsigned int oox::dump::AxPropertyObjectBase::dumpEnabledProperty() + type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpSpecialEffectProperty(type-parameter-?-?) include/oox/dump/oledumper.hxx:318 - int oox::dump::AxPropertyObjectBase::dumpOrientationProperty() + unsigned int oox::dump::AxPropertyObjectBase::dumpEnabledProperty() include/oox/dump/oledumper.hxx:319 - int oox::dump::AxPropertyObjectBase::dumpDelayProperty() + int oox::dump::AxPropertyObjectBase::dumpOrientationProperty() include/oox/dump/oledumper.hxx:320 - unsigned int oox::dump::AxPropertyObjectBase::dumpImagePosProperty() + int oox::dump::AxPropertyObjectBase::dumpDelayProperty() include/oox/dump/oledumper.hxx:321 - unsigned char oox::dump::AxPropertyObjectBase::dumpImageSizeModeProperty() + unsigned int oox::dump::AxPropertyObjectBase::dumpImagePosProperty() include/oox/dump/oledumper.hxx:322 + unsigned char oox::dump::AxPropertyObjectBase::dumpImageSizeModeProperty() +include/oox/dump/oledumper.hxx:323 unsigned char oox::dump::AxPropertyObjectBase::dumpImageAlignProperty() -include/oox/dump/oledumper.hxx:325 - unsigned int oox::dump::AxPropertyObjectBase::dumpColorProperty(unsigned int) include/oox/dump/oledumper.hxx:326 + unsigned int oox::dump::AxPropertyObjectBase::dumpColorProperty(unsigned int) +include/oox/dump/oledumper.hxx:327 char16_t oox::dump::AxPropertyObjectBase::dumpUnicodeProperty() include/oox/export/shapes.hxx:137 - class oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteNonVisualDrawingProperties(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,const char *) + oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteNonVisualDrawingProperties(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,const char *) include/oox/export/shapes.hxx:185 - class oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteTextBox(const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,int,_Bool) + oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteTextBox(const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &,int,_Bool) include/oox/helper/binaryoutputstream.hxx:78 - class oox::BinaryOutputStream & oox::BinaryOutputStream::WriteInt16(short) + oox::BinaryOutputStream & oox::BinaryOutputStream::WriteInt16(short) include/oox/helper/binaryoutputstream.hxx:79 - class oox::BinaryOutputStream & oox::BinaryOutputStream::WriteUInt16(unsigned short) + oox::BinaryOutputStream & oox::BinaryOutputStream::WriteUInt16(unsigned short) include/oox/helper/propertyset.hxx:110 - _Bool oox::PropertySet::setProperty(int,class Color) + _Bool oox::PropertySet::setProperty(int,Color) include/oox/ole/axbinarywriter.hxx:115 - _Bool oox::ole::AxBinaryPropertyWriter::ComplexProperty::writeProperty(class oox::ole::AxAlignedOutputStream &) + _Bool oox::ole::AxBinaryPropertyWriter::ComplexProperty::writeProperty(oox::ole::AxAlignedOutputStream &) include/oox/ole/olehelper.hxx:176 - _Bool oox::ole::MSConvertOCXControls::importControlFromStream(class oox::BinaryInputStream &,class com::sun::star::uno::Reference<class com::sun::star::form::XFormComponent> &,const class rtl::OUString &) + _Bool oox::ole::MSConvertOCXControls::importControlFromStream(oox::BinaryInputStream &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,std::basic_string_view<char16_t>) include/oox/ole/olehelper.hxx:187 - _Bool oox::ole::MSConvertOCXControls::ReadOCXCtlsStream(const class tools::SvRef<class SotStorageStream> &,class com::sun::star::uno::Reference<class com::sun::star::form::XFormComponent> &,int,int) + _Bool oox::ole::MSConvertOCXControls::ReadOCXCtlsStream(const tools::SvRef<SotStorageStream> &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,int,int) include/sax/fshelper.hxx:136 - class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int) + sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int) include/sax/fshelper.hxx:137 - class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long) + sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long) include/sax/fshelper.hxx:138 - class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(double) + sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(double) include/sax/fshelper.hxx:140 - class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(const char *) + sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(const char *) include/sfx2/linkmgr.hxx:65 - _Bool sfx2::LinkManager::InsertLink(class sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const class rtl::OUString *) + _Bool sfx2::LinkManager::InsertLink(sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const rtl::OUString *) include/sfx2/lnkbase.hxx:112 - class sfx2::SvLinkSource * sfx2::SvBaseLink::GetRealObject() -include/svl/macitem.hxx:88 - class SvStream & SvxMacroTableDtor::Write(class SvStream &) const -include/svtools/ctrlbox.hxx:377 + sfx2::SvLinkSource * sfx2::SvBaseLink::GetRealObject() +include/svl/macitem.hxx:89 + SvStream & SvxMacroTableDtor::Write(SvStream &) const +include/svtools/ctrlbox.hxx:378 _Bool FontNameBox::get_entry_selection_bounds(int &,int &) include/svx/autoformathelper.hxx:212 - _Bool AutoFormatBase::LoadBlockA(class SvStream &,const struct AutoFormatVersions &,unsigned short) + _Bool AutoFormatBase::LoadBlockA(SvStream &,const struct AutoFormatVersions &,unsigned short) include/svx/autoformathelper.hxx:213 - _Bool AutoFormatBase::LoadBlockB(class SvStream &,const struct AutoFormatVersions &,unsigned short) + _Bool AutoFormatBase::LoadBlockB(SvStream &,const struct AutoFormatVersions &,unsigned short) include/svx/autoformathelper.hxx:215 - _Bool AutoFormatBase::SaveBlockA(class SvStream &,unsigned short) const + _Bool AutoFormatBase::SaveBlockA(SvStream &,unsigned short) const include/svx/autoformathelper.hxx:216 - _Bool AutoFormatBase::SaveBlockB(class SvStream &,unsigned short) const + _Bool AutoFormatBase::SaveBlockB(SvStream &,unsigned short) const include/svx/dlgctrl.hxx:101 - class Point SvxRectCtl::SetActualRPWithoutInvalidate(enum RectPoint) + Point SvxRectCtl::SetActualRPWithoutInvalidate(enum RectPoint) include/svx/framelink.hxx:159 - class svx::frame::Style & svx::frame::Style::MirrorSelf() + svx::frame::Style & svx::frame::Style::MirrorSelf() include/svx/gallerybinaryengine.hxx:105 - class SvStream & GalleryBinaryEngine::writeGalleryTheme(class SvStream &,const class GalleryTheme &,const class GalleryThemeEntry *) + SvStream & GalleryBinaryEngine::writeGalleryTheme(SvStream &,const GalleryTheme &,const GalleryThemeEntry *) include/svx/gallerybinaryengineentry.hxx:57 - class std::unique_ptr<class GalleryTheme> & GalleryBinaryEngineEntry::getCachedTheme(class std::unique_ptr<class GalleryTheme> &) + std::unique_ptr<GalleryTheme> & GalleryBinaryEngineEntry::getCachedTheme(std::unique_ptr<GalleryTheme> &) +include/test/a11y/AccessibilityTools.hxx:62 + rtl::OUString AccessibilityTools::getStateName(const short) include/test/helper/shape.hxx:41 - class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> apitest::helper::shape::createEllipse(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + com::sun::star::uno::Reference<com::sun::star::drawing::XShape> apitest::helper::shape::createEllipse(const com::sun::star::uno::Reference<com::sun::star::lang::XComponent> &,const int,const int,const int,const int) include/test/sheet/xdocumentauditing.hxx:28 - class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XDocumentAuditing::getXMSF() + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> apitest::XDocumentAuditing::getXMSF() include/test/sheet/xnamedrange.hxx:22 - class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XNamedRange::init() + com::sun::star::uno::Reference<com::sun::star::uno::XInterface> apitest::XNamedRange::init() include/test/sheet/xspreadsheets2.hxx:41 - class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> apitest::XSpreadsheets2::getComponent() + com::sun::star::uno::Reference<com::sun::star::lang::XComponent> apitest::XSpreadsheets2::getComponent() include/tools/config.hxx:38 _Bool Config::ImplUpdateConfig() const -include/tools/multisel.hxx:93 +include/tools/multisel.hxx:94 _Bool StringRangeEnumerator::insertRange(int,int,_Bool) -include/tools/urlobj.hxx:739 - _Bool INetURLObject::SetParam(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short) +include/tools/urlobj.hxx:738 + _Bool INetURLObject::SetParam(std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short) include/unotools/localedatawrapper.hxx:159 - const class com::sun::star::uno::Sequence<struct com::sun::star::lang::Locale> & LocaleDataWrapper::getAllInstalledLocaleNames() const + const com::sun::star::uno::Sequence<struct com::sun::star::lang::Locale> & LocaleDataWrapper::getAllInstalledLocaleNames() const include/vcl/bitmapex.hxx:226 - _Bool BitmapEx::Rotate(struct o3tl::strong_int<short, struct FractionTag<10> >,const class Color &) -include/vcl/filter/PngImageReader.hxx:42 - _Bool vcl::PngImageReader::read(class BitmapEx &) + _Bool BitmapEx::Rotate(struct o3tl::strong_int<short, struct FractionTag<10> >,const Color &) include/vcl/filter/SvmReader.hxx:36 - class SvStream & SvmReader::Read(class GDIMetaFile &,struct ImplMetaReadData *) + SvStream & SvmReader::Read(GDIMetaFile &,struct ImplMetaReadData *) include/vcl/filter/SvmWriter.hxx:37 - class SvStream & SvmWriter::Write(const class GDIMetaFile &) + SvStream & SvmWriter::Write(const GDIMetaFile &) include/vcl/formatter.hxx:218 - _Bool Formatter::SetFormat(const class rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>) -include/vcl/graphicfilter.hxx:290 - class ErrCode GraphicFilter::ExportGraphic(const class Graphic &,const class INetURLObject &,unsigned short,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *) -include/vcl/GraphicNativeMetadata.hxx:35 - _Bool GraphicNativeMetadata::read(class SvStream &) + _Bool Formatter::SetFormat(const rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>) +include/vcl/graphicfilter.hxx:256 + ErrCode GraphicFilter::ExportGraphic(const Graphic &,const INetURLObject &,unsigned short,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *) +include/vcl/GraphicNativeMetadata.hxx:34 + _Bool GraphicNativeMetadata::read(SvStream &) include/vcl/GraphicNativeTransform.hxx:33 _Bool GraphicNativeTransform::rotateBitmapOnly(struct o3tl::strong_int<short, struct FractionTag<10> >) include/vcl/GraphicNativeTransform.hxx:35 - _Bool GraphicNativeTransform::rotateGeneric(struct o3tl::strong_int<short, struct FractionTag<10> >,class std::basic_string_view<char16_t>) -include/vcl/menu.hxx:385 - _Bool Menu::HandleMenuActivateEvent(class Menu *) const -include/vcl/menu.hxx:386 - _Bool Menu::HandleMenuDeActivateEvent(class Menu *) const + _Bool GraphicNativeTransform::rotateGeneric(struct o3tl::strong_int<short, struct FractionTag<10> >,std::basic_string_view<char16_t>) +include/vcl/menu.hxx:387 + _Bool Menu::HandleMenuActivateEvent(Menu *) const +include/vcl/menu.hxx:388 + _Bool Menu::HandleMenuDeActivateEvent(Menu *) const include/vcl/texteng.hxx:271 - _Bool TextEngine::Read(class SvStream &,const class TextSelection *) -include/vcl/window.hxx:1398 - _Bool vcl::Window::set_font_attribute(const class rtl::OString &,const class rtl::OUString &) + _Bool TextEngine::Read(SvStream &,const TextSelection *) +include/vcl/window.hxx:1401 + _Bool vcl::Window::set_font_attribute(const rtl::OString &,std::basic_string_view<char16_t>) include/xmloff/unointerfacetouniqueidentifiermapper.hxx:65 - _Bool comphelper::UnoInterfaceToUniqueIdentifierMapper::registerReservedReference(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &) -include/xmloff/xmluconv.hxx:281 - _Bool SvXMLUnitConverter::convertNumFormat(short &,const class rtl::OUString &,class std::basic_string_view<char16_t>,_Bool) const -linguistic/source/lngsvcmgr.hxx:118 - _Bool LngSvcMgr::SaveCfgSvcs(class std::basic_string_view<char16_t>) + _Bool comphelper::UnoInterfaceToUniqueIdentifierMapper::registerReservedReference(const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &) +include/xmloff/xmluconv.hxx:279 + _Bool SvXMLUnitConverter::convertNumFormat(short &,const rtl::OUString &,std::basic_string_view<char16_t>,_Bool) const +linguistic/source/lngsvcmgr.hxx:117 + _Bool LngSvcMgr::SaveCfgSvcs(std::basic_string_view<char16_t>) lotuswordpro/inc/lwpsvstream.hxx:80 - class LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &) + LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &) lotuswordpro/inc/lwpsvstream.hxx:81 - class LwpSvStream & LwpSvStream::ReadUInt16(unsigned short &) + LwpSvStream & LwpSvStream::ReadUInt16(unsigned short &) lotuswordpro/inc/lwpsvstream.hxx:82 - class LwpSvStream & LwpSvStream::ReadUInt32(unsigned int &) + LwpSvStream & LwpSvStream::ReadUInt32(unsigned int &) +sc/inc/column.hxx:677 + _Bool ScColumn::DeleteSparkline(int) sc/inc/orcusfilters.hxx:44 - _Bool ScOrcusFilters::importODS_Styles(class ScDocument &,class rtl::OUString &) const -sc/inc/scabstdlg.hxx:56 + _Bool ScOrcusFilters::importODS_Styles(ScDocument &,rtl::OUString &) const +sc/inc/scabstdlg.hxx:55 _Bool ScAsyncTabController::StartExecuteAsync(struct VclAbstractDialog::AsyncContext &) -sc/source/core/opencl/formulagroupcl.cxx:1095 - unsigned long sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenReductionLoopHeader(class std::basic_stringstream<char> &,_Bool &) -sc/source/core/opencl/formulagroupcl.cxx:1366 - unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenReductionLoopHeader(class std::basic_stringstream<char> &,int,_Bool &) +sc/source/core/opencl/formulagroupcl.cxx:1096 + unsigned long sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenReductionLoopHeader(std::basic_stringstream<char> &,_Bool &) +sc/source/core/opencl/formulagroupcl.cxx:1367 + unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenReductionLoopHeader(std::basic_stringstream<char> &,int,_Bool &) sc/source/filter/inc/workbookhelper.hxx:262 - _Bool oox::xls::WorkbookHelper::importOoxFragment(const class rtl::Reference<class oox::core::FragmentHandler> &,class oox::core::FastParser &) + _Bool oox::xls::WorkbookHelper::importOoxFragment(const rtl::Reference<oox::core::FragmentHandler> &,oox::core::FastParser &) sc/source/filter/xml/XMLStylesExportHelper.hxx:174 - _Bool ScFormatRangeStyles::AddStyleName(const class rtl::OUString &,int &,const _Bool) + _Bool ScFormatRangeStyles::AddStyleName(const rtl::OUString &,int &,const _Bool) sc/source/ui/inc/anyrefdg.hxx:95 _Bool ScRefHandler::DoClose(unsigned short) -sc/source/ui/inc/docfunc.hxx:113 - _Bool ScDocFunc::SetFormulaCells(const class ScAddress &,class std::vector<class ScFormulaCell *> &,_Bool) -sc/source/ui/inc/docfunc.hxx:161 - _Bool ScDocFunc::Protect(short,const class rtl::OUString &) +sc/source/ui/inc/docfunc.hxx:117 + _Bool ScDocFunc::SetFormulaCells(const ScAddress &,std::vector<ScFormulaCell *> &,_Bool) +sc/source/ui/inc/docfunc.hxx:165 + _Bool ScDocFunc::Protect(short,const rtl::OUString &) +sc/source/ui/inc/docfunc.hxx:246 + _Bool ScDocFunc::ChangeSparklineGroupAttributes(const std::shared_ptr<sc::SparklineGroup> &,const sc::SparklineAttributes &) sc/source/ui/inc/drawview.hxx:159 - _Bool ScDrawView::calculateGridOffsetForSdrObject(class SdrObject &,class basegfx::B2DVector &) const + _Bool ScDrawView::calculateGridOffsetForSdrObject(SdrObject &,basegfx::B2DVector &) const sc/source/ui/inc/drawview.hxx:162 - _Bool ScDrawView::calculateGridOffsetForB2DRange(const class basegfx::B2DRange &,class basegfx::B2DVector &) const + _Bool ScDrawView::calculateGridOffsetForB2DRange(const basegfx::B2DRange &,basegfx::B2DVector &) const sc/source/ui/inc/select.hxx:71 _Bool ScViewFunctionSet::SetCursorAtCell(short,int,_Bool) sc/source/ui/vba/vbaformat.hxx:69 - class com::sun::star::uno::Any ScVbaFormat::getAddIndent() + com::sun::star::uno::Any ScVbaFormat::getAddIndent() sc/source/ui/vba/vbaformat.hxx:73 - class com::sun::star::uno::Any ScVbaFormat::Borders(const class com::sun::star::uno::Any &) + com::sun::star::uno::Any ScVbaFormat::Borders(const com::sun::star::uno::Any &) sc/source/ui/vba/vbaformat.hxx:76 - class com::sun::star::uno::Reference<class ooo::vba::excel::XFont> ScVbaFormat::Font() + com::sun::star::uno::Reference<ooo::vba::excel::XFont> ScVbaFormat::Font() sc/source/ui/vba/vbaformat.hxx:79 - class com::sun::star::uno::Reference<class ooo::vba::excel::XInterior> ScVbaFormat::Interior() + com::sun::star::uno::Reference<ooo::vba::excel::XInterior> ScVbaFormat::Interior() sc/source/ui/vba/vbaformat.hxx:85 - class com::sun::star::uno::Any ScVbaFormat::getNumberFormat() + com::sun::star::uno::Any ScVbaFormat::getNumberFormat() sc/source/ui/vba/vbaformat.hxx:91 - class com::sun::star::uno::Any ScVbaFormat::getNumberFormatLocal() + com::sun::star::uno::Any ScVbaFormat::getNumberFormatLocal() sc/source/ui/vba/vbaformat.hxx:97 - class com::sun::star::uno::Any ScVbaFormat::getIndentLevel() + com::sun::star::uno::Any ScVbaFormat::getIndentLevel() sc/source/ui/vba/vbaformat.hxx:103 - class com::sun::star::uno::Any ScVbaFormat::getHorizontalAlignment() + com::sun::star::uno::Any ScVbaFormat::getHorizontalAlignment() sc/source/ui/vba/vbaformat.hxx:109 - class com::sun::star::uno::Any ScVbaFormat::getVerticalAlignment() + com::sun::star::uno::Any ScVbaFormat::getVerticalAlignment() sc/source/ui/vba/vbaformat.hxx:115 - class com::sun::star::uno::Any ScVbaFormat::getOrientation() + com::sun::star::uno::Any ScVbaFormat::getOrientation() sc/source/ui/vba/vbaformat.hxx:121 - class com::sun::star::uno::Any ScVbaFormat::getShrinkToFit() + com::sun::star::uno::Any ScVbaFormat::getShrinkToFit() sc/source/ui/vba/vbaformat.hxx:127 - class com::sun::star::uno::Any ScVbaFormat::getWrapText() + com::sun::star::uno::Any ScVbaFormat::getWrapText() sc/source/ui/vba/vbaformat.hxx:133 - class com::sun::star::uno::Any ScVbaFormat::getLocked() + com::sun::star::uno::Any ScVbaFormat::getLocked() sc/source/ui/vba/vbaformat.hxx:139 - class com::sun::star::uno::Any ScVbaFormat::getFormulaHidden() + com::sun::star::uno::Any ScVbaFormat::getFormulaHidden() sc/source/ui/vba/vbaformat.hxx:145 - class com::sun::star::uno::Any ScVbaFormat::getMergeCells() + com::sun::star::uno::Any ScVbaFormat::getMergeCells() sc/source/ui/vba/vbaformat.hxx:151 - class com::sun::star::uno::Any ScVbaFormat::getReadingOrder() + com::sun::star::uno::Any ScVbaFormat::getReadingOrder() sd/source/filter/eppt/pptx-epptooxml.cxx:132 - class oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,enum PageType,_Bool) + oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,enum PageType,_Bool) sd/source/ui/inc/DrawViewShell.hxx:252 _Bool sd::DrawViewShell::SelectPage(unsigned short,unsigned short) sd/source/ui/inc/navigatr.hxx:120 - _Bool SdNavigatorWin::InsertFile(const class rtl::OUString &) + _Bool SdNavigatorWin::InsertFile(const rtl::OUString &) sd/source/ui/inc/OutlineViewShell.hxx:114 - class ErrCode sd::OutlineViewShell::ReadRtf(class SvStream &) + ErrCode sd::OutlineViewShell::ReadRtf(SvStream &) sd/source/ui/remotecontrol/IBluetoothSocket.hxx:36 int sd::IBluetoothSocket::write(const void *,unsigned int) sdext/source/pdfimport/tree/style.hxx:155 - int pdfi::StyleContainer::getStandardStyleId(class std::basic_string_view<char>) -sfx2/inc/autoredactdialog.hxx:135 - _Bool SfxAutoRedactDialog::getTargets(class std::vector<struct std::pair<struct RedactionTarget, class rtl::OUString> > &) + int pdfi::StyleContainer::getStandardStyleId(std::basic_string_view<char>) +sfx2/inc/autoredactdialog.hxx:140 + _Bool SfxAutoRedactDialog::getTargets(std::vector<struct std::pair<struct RedactionTarget, rtl::OUString> > &) slideshow/source/engine/animationnodes/animationbasenode.hxx:62 _Bool slideshow::internal::AnimationBaseNode::enqueueActivity() const -sw/inc/calc.hxx:122 - class SwSbxValue & SwSbxValue::MakeDouble() -sw/inc/docary.hxx:265 - _Bool SwRedlineTable::isMoved(unsigned long) const +sw/inc/calc.hxx:124 + SwSbxValue & SwSbxValue::MakeDouble() +sw/inc/docary.hxx:299 + _Bool SwExtraRedlineTable::DeleteAllTableRedlines(SwDoc &,const SwTable &,_Bool,enum RedlineType) sw/inc/docary.hxx:300 - _Bool SwExtraRedlineTable::DeleteAllTableRedlines(class SwDoc &,const class SwTable &,_Bool,enum RedlineType) + _Bool SwExtraRedlineTable::DeleteTableRowRedline(SwDoc *,const SwTableLine &,_Bool,enum RedlineType) sw/inc/docary.hxx:301 - _Bool SwExtraRedlineTable::DeleteTableRowRedline(class SwDoc *,const class SwTableLine &,_Bool,enum RedlineType) -sw/inc/docary.hxx:302 - _Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,enum RedlineType) -sw/inc/editsh.hxx:634 - const class GraphicAttr * SwEditShell::GetGraphicAttr(class GraphicAttr &) const + _Bool SwExtraRedlineTable::DeleteTableCellRedline(SwDoc *,const SwTableBox &,_Bool,enum RedlineType) +sw/inc/editsh.hxx:635 + const GraphicAttr * SwEditShell::GetGraphicAttr(GraphicAttr &) const +sw/inc/editsh.hxx:648 + _Bool SwEditShell::GetGrfSize(Size &) const +sw/inc/editsh.hxx:813 + unsigned short SwEditShell::GetRefMarks(std::vector<rtl::OUString> *) const sw/inc/IDocumentUndoRedo.hxx:100 _Bool IDocumentUndoRedo::Undo() sw/inc/IDocumentUndoRedo.hxx:181 - _Bool IDocumentUndoRedo::Repeat(class sw::RepeatContext &,const unsigned short) -sw/inc/tblafmt.hxx:269 - _Bool SwTableAutoFormatTable::Load(class SvStream &) + _Bool IDocumentUndoRedo::Repeat(sw::RepeatContext &,const unsigned short) +sw/inc/tblafmt.hxx:267 + _Bool SwTableAutoFormatTable::Load(SvStream &) +sw/qa/inc/swmodeltestbase.hxx:386 + SwDoc * SwModelTestBase::createSwWebDoc(std::basic_string_view<char16_t>,const char *) sw/source/core/inc/laycache.hxx:64 - _Bool SwLayoutCache::CompareLayout(const class SwDoc &) const + _Bool SwLayoutCache::CompareLayout(const SwDoc &) const sw/source/core/inc/scriptinfo.hxx:237 _Bool SwScriptInfo::GetBoundsOfHiddenRange(struct o3tl::strong_int<int, struct Tag_TextFrameIndex>,struct o3tl::strong_int<int, struct Tag_TextFrameIndex> &,struct o3tl::strong_int<int, struct Tag_TextFrameIndex> &) const sw/source/filter/ww8/ww8toolbar.hxx:337 - _Bool Tcg::ImportCustomToolBar(class SfxObjectShell &) + _Bool Tcg::ImportCustomToolBar(SfxObjectShell &) sw/source/uibase/inc/drawbase.hxx:54 - _Bool SwDrawBase::MouseMove(const class MouseEvent &) -sw/source/uibase/inc/fldmgr.hxx:116 - const class com::sun::star::uno::Reference<class com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const + _Bool SwDrawBase::MouseMove(const MouseEvent &) +sw/source/uibase/inc/fldmgr.hxx:118 + const com::sun::star::uno::Reference<com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const sw/source/uibase/inc/mailmergewizard.hxx:79 _Bool SwMailMergeWizard::skipUntil(unsigned short) sw/source/uibase/inc/numpara.hxx:61 - _Bool SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const class rtl::OUString &,enum SfxStyleFamily) -ucb/source/ucp/webdav-curl/ContentProperties.hxx:159 - _Bool http_dav_ucp::CachableContentProperties::containsAllNames(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,class std::vector<class rtl::OUString> &) const + _Bool SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const rtl::OUString &,enum SfxStyleFamily) +sw/source/uibase/inc/wrtsh.hxx:431 + _Bool SwWrtShell::GotoContentControl(const SwFormatContentControl &) +ucb/source/ucp/webdav-curl/ContentProperties.hxx:160 + _Bool http_dav_ucp::CachableContentProperties::containsAllNames(const com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,std::vector<rtl::OUString> &) const vcl/inc/font/FeatureCollector.hxx:45 _Bool vcl::font::FeatureCollector::collect() vcl/inc/impgraph.hxx:186 - _Bool ImpGraphic::swapOutGraphic(class SvStream &) -vcl/inc/pdf/pdfwriter_impl.hxx:1253 + _Bool ImpGraphic::swapOutGraphic(SvStream &) +vcl/inc/pdf/pdfwriter_impl.hxx:1265 _Bool vcl::PDFWriterImpl::setCurrentStructureElement(int) -vcl/inc/pdf/pdfwriter_impl.hxx:1254 +vcl/inc/pdf/pdfwriter_impl.hxx:1266 _Bool vcl::PDFWriterImpl::setStructureAttribute(enum vcl::PDFWriter::StructAttribute,enum vcl::PDFWriter::StructAttributeValue) -vcl/inc/pdf/pdfwriter_impl.hxx:1255 +vcl/inc/pdf/pdfwriter_impl.hxx:1267 _Bool vcl::PDFWriterImpl::setStructureAttributeNumerical(enum vcl::PDFWriter::StructAttribute,int) vcl/inc/qt5/QtAccessibleWidget.hxx:48 - class QString QtAccessibleWidget::tr(const char *,const char *,int) + QString QtAccessibleWidget::tr(const char *,const char *,int) vcl/inc/qt5/QtAccessibleWidget.hxx:48 - class QString QtAccessibleWidget::trUtf8(const char *,const char *,int) + QString QtAccessibleWidget::trUtf8(const char *,const char *,int) vcl/inc/qt5/QtClipboard.hxx:36 - class QString QtClipboard::tr(const char *,const char *,int) + QString QtClipboard::tr(const char *,const char *,int) vcl/inc/qt5/QtClipboard.hxx:36 - class QString QtClipboard::trUtf8(const char *,const char *,int) + QString QtClipboard::trUtf8(const char *,const char *,int) vcl/inc/qt5/QtFilePicker.hxx:60 - class QString QtFilePicker::tr(const char *,const char *,int) + QString QtFilePicker::tr(const char *,const char *,int) vcl/inc/qt5/QtFilePicker.hxx:60 - class QString QtFilePicker::trUtf8(const char *,const char *,int) -vcl/inc/qt5/QtFrame.hxx:69 - class QString QtFrame::tr(const char *,const char *,int) -vcl/inc/qt5/QtFrame.hxx:69 - class QString QtFrame::trUtf8(const char *,const char *,int) -vcl/inc/qt5/QtInstance.hxx:54 - class QString QtInstance::tr(const char *,const char *,int) -vcl/inc/qt5/QtInstance.hxx:54 - class QString QtInstance::trUtf8(const char *,const char *,int) + QString QtFilePicker::trUtf8(const char *,const char *,int) +vcl/inc/qt5/QtFrame.hxx:70 + QString QtFrame::tr(const char *,const char *,int) +vcl/inc/qt5/QtFrame.hxx:70 + QString QtFrame::trUtf8(const char *,const char *,int) +vcl/inc/qt5/QtInstance.hxx:55 + QString QtInstance::tr(const char *,const char *,int) +vcl/inc/qt5/QtInstance.hxx:55 + QString QtInstance::trUtf8(const char *,const char *,int) vcl/inc/qt5/QtMainWindow.hxx:29 - class QString QtMainWindow::tr(const char *,const char *,int) + QString QtMainWindow::tr(const char *,const char *,int) vcl/inc/qt5/QtMainWindow.hxx:29 - class QString QtMainWindow::trUtf8(const char *,const char *,int) -vcl/inc/qt5/QtMenu.hxx:40 - class QString QtMenu::tr(const char *,const char *,int) -vcl/inc/qt5/QtMenu.hxx:40 - class QString QtMenu::trUtf8(const char *,const char *,int) -vcl/inc/qt5/QtObject.hxx:34 - class QString QtObject::tr(const char *,const char *,int) -vcl/inc/qt5/QtObject.hxx:34 - class QString QtObject::trUtf8(const char *,const char *,int) + QString QtMainWindow::trUtf8(const char *,const char *,int) +vcl/inc/qt5/QtMenu.hxx:42 + QString QtMenu::tr(const char *,const char *,int) +vcl/inc/qt5/QtMenu.hxx:42 + QString QtMenu::trUtf8(const char *,const char *,int) +vcl/inc/qt5/QtObject.hxx:35 + QString QtObject::tr(const char *,const char *,int) +vcl/inc/qt5/QtObject.hxx:35 + QString QtObject::trUtf8(const char *,const char *,int) vcl/inc/qt5/QtTimer.hxx:27 - class QString QtTimer::tr(const char *,const char *,int) + QString QtTimer::tr(const char *,const char *,int) vcl/inc/qt5/QtTimer.hxx:27 - class QString QtTimer::trUtf8(const char *,const char *,int) -vcl/inc/qt5/QtWidget.hxx:35 - class QString QtWidget::tr(const char *,const char *,int) -vcl/inc/qt5/QtWidget.hxx:35 - class QString QtWidget::trUtf8(const char *,const char *,int) -vcl/inc/qt5/QtXAccessible.hxx:27 - class QString QtXAccessible::tr(const char *,const char *,int) -vcl/inc/qt5/QtXAccessible.hxx:27 - class QString QtXAccessible::trUtf8(const char *,const char *,int) -vcl/inc/salgdi.hxx:404 - _Bool SalGraphics::UpdateSettings(class AllSettings &) -vcl/inc/salgdi.hxx:406 - _Bool SalGraphics::BlendBitmap(const struct SalTwoRect &,const class SalBitmap &,const class OutputDevice &) -vcl/inc/salgdi.hxx:515 - _Bool SalGraphics::implDrawGradient(const class basegfx::B2DPolyPolygon &,const struct SalGradient &) -vcl/inc/salinst.hxx:176 + QString QtTimer::trUtf8(const char *,const char *,int) +vcl/inc/salgdi.hxx:414 + _Bool SalGraphics::UpdateSettings(AllSettings &) +vcl/inc/salgdi.hxx:416 + _Bool SalGraphics::BlendBitmap(const struct SalTwoRect &,const SalBitmap &,const OutputDevice &) +vcl/inc/salgdi.hxx:525 + _Bool SalGraphics::implDrawGradient(const basegfx::B2DPolyPolygon &,const struct SalGradient &) +vcl/inc/salinst.hxx:177 _Bool SalInstance::CallEventCallback(const void *,int) vcl/inc/salprn.hxx:113 _Bool SalPrinter::EndJob() -vcl/inc/salvtables.hxx:1603 - _Bool SalInstanceTreeView::get_iter_abs_pos(class weld::TreeIter &,int) const +vcl/inc/salvtables.hxx:1621 + _Bool SalInstanceTreeView::get_iter_abs_pos(weld::TreeIter &,int) const vcl/inc/unx/gtk/gtkdata.hxx:335 - int GtkSalDisplay::CaptureMouse(class SalFrame *) -vcl/inc/unx/salframe.h:167 + int GtkSalDisplay::CaptureMouse(SalFrame *) +vcl/inc/unx/salframe.h:168 _Bool X11SalFrame::Dispatch(union _XEvent *) -vcl/unx/kf5/KF5FilePicker.hxx:29 - class QString KF5FilePicker::tr(const char *,const char *,int) -vcl/unx/kf5/KF5FilePicker.hxx:29 - class QString KF5FilePicker::trUtf8(const char *,const char *,int) +workdir/../vcl/inc/qt5/QtWidget.hxx:36 + QString QtWidget::tr(const char *,const char *,int) +workdir/../vcl/inc/qt5/QtWidget.hxx:36 + QString QtWidget::trUtf8(const char *,const char *,int) +workdir/../vcl/inc/qt5/QtXAccessible.hxx:27 + QString QtXAccessible::tr(const char *,const char *,int) +workdir/../vcl/inc/qt5/QtXAccessible.hxx:27 + QString QtXAccessible::trUtf8(const char *,const char *,int) +workdir/../vcl/unx/kf5/KF5FilePicker.hxx:29 + QString KF5FilePicker::tr(const char *,const char *,int) +workdir/../vcl/unx/kf5/KF5FilePicker.hxx:29 + QString KF5FilePicker::trUtf8(const char *,const char *,int) |