basctl/source/basicide/basobj2.cxx | 2 basctl/source/basicide/macrodlg.cxx | 5 basctl/source/basicide/macrodlg.hxx | 2 compilerplugins/clang/constantparam.bitmask.results | 12 compilerplugins/clang/constantparam.booleans.results | 1268 ++++++------ compilerplugins/clang/constantparam.constructors.results | 306 +-- compilerplugins/clang/constantparam.cxx | 5 compilerplugins/clang/constantparam.numbers.results | 1524 ++++++--------- cui/source/customize/SvxMenuConfigPage.cxx | 2 cui/source/customize/SvxToolbarConfigPage.cxx | 2 cui/source/customize/cfg.cxx | 4 cui/source/inc/cfg.hxx | 5 include/sfx2/templatelocalview.hxx | 2 sal/osl/unx/mutex.cxx | 20 sfx2/source/control/templatedefaultview.cxx | 2 sfx2/source/control/templatelocalview.cxx | 4 svx/source/tbxctrls/tbcontrl.cxx | 6 sw/source/filter/basflt/fltshell.cxx | 10 sw/source/filter/inc/fltshell.hxx | 9 sw/source/filter/ww8/writerhelper.cxx | 9 ucb/source/ucp/file/filrset.cxx | 3 ucb/source/ucp/file/filtask.cxx | 5 ucb/source/ucp/file/filtask.hxx | 3 vcl/inc/bitmap/Octree.hxx | 2 vcl/source/bitmap/Octree.cxx | 9 25 files changed, 1533 insertions(+), 1688 deletions(-)
New commits: commit 8a08eaedfb2c9a6c002220a61c5b1f8ce1130f54 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Thu Jul 18 12:08:29 2019 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Fri Jul 19 09:06:12 2019 +0200 coverity concurrency annotation attempt Let us see what happens if we annotate our mutex code, https://scan.coverity.com/models Change-Id: I7baf44d1a252f19b4ae47f3a6b318f7ccd9629d7 Reviewed-on: https://gerrit.libreoffice.org/75851 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/sal/osl/unx/mutex.cxx b/sal/osl/unx/mutex.cxx index 72bcc370eebb..8cdc2a071376 100644 --- a/sal/osl/unx/mutex.cxx +++ b/sal/osl/unx/mutex.cxx @@ -85,6 +85,12 @@ void SAL_CALL osl_destroyMutex(oslMutex pMutex) } } +#ifdef __COVERITY__ + extern void __coverity_recursive_lock_acquire__(void*); + extern void __coverity_recursive_lock_release__(void*); + extern void __coverity_assert_locked__(void*); +#endif + sal_Bool SAL_CALL osl_acquireMutex(oslMutex pMutex) { SAL_WARN_IF(!pMutex, "sal.osl.mutex", "null pMutex"); @@ -97,6 +103,9 @@ sal_Bool SAL_CALL osl_acquireMutex(oslMutex pMutex) SAL_WARN("sal.osl.mutex", "pthread_mutex_lock failed: " << UnixErrnoString(nRet)); return false; } +#ifdef __COVERITY__ + __coverity_recursive_lock_acquire__(pMutex); +#endif return true; } @@ -114,7 +123,12 @@ sal_Bool SAL_CALL osl_tryToAcquireMutex(oslMutex pMutex) { int nRet = pthread_mutex_trylock(&(pMutex->mutex)); if ( nRet == 0 ) + { +#ifdef __COVERITY__ + __coverity_recursive_lock_acquire__(pMutex); +#endif result = true; + } } return result; @@ -122,6 +136,9 @@ sal_Bool SAL_CALL osl_tryToAcquireMutex(oslMutex pMutex) sal_Bool SAL_CALL osl_releaseMutex(oslMutex pMutex) { +#ifdef __COVERITY__ + __coverity_assert_locked__(pMutex); +#endif SAL_WARN_IF(!pMutex, "sal.osl.mutex", "null pMutex"); if ( pMutex ) @@ -133,6 +150,9 @@ sal_Bool SAL_CALL osl_releaseMutex(oslMutex pMutex) return false; } +#ifdef __COVERITY__ + __coverity_recursive_lock_release__(pMutex); +#endif return true; } commit cdbe8a8700d5460e41d80b00310c6ff8977bc492 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Thu Jul 18 11:34:32 2019 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Fri Jul 19 09:05:58 2019 +0200 loplugin:constantparam and tweak the plugin to handle a crash seen with clang-9 Change-Id: Ie1ccf80c16a20dbca58e5bd081af13f75cf5ac8f Reviewed-on: https://gerrit.libreoffice.org/75850 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/basctl/source/basicide/basobj2.cxx b/basctl/source/basicide/basobj2.cxx index 29c1ff6d5598..4131f7a6453d 100644 --- a/basctl/source/basicide/basobj2.cxx +++ b/basctl/source/basicide/basobj2.cxx @@ -249,7 +249,7 @@ OUString ChooseMacro(weld::Window* pParent, OUString aScriptURL; SbMethod* pMethod = nullptr; - MacroChooser aChooser(pParent, xDocFrame, true); + MacroChooser aChooser(pParent, xDocFrame); if ( bChooseOnly || !SvtModuleOptions::IsBasicIDE() ) aChooser.SetMode(MacroChooser::ChooseOnly); diff --git a/basctl/source/basicide/macrodlg.cxx b/basctl/source/basicide/macrodlg.cxx index 019a87801ad7..1c0b620d42ff 100644 --- a/basctl/source/basicide/macrodlg.cxx +++ b/basctl/source/basicide/macrodlg.cxx @@ -52,7 +52,7 @@ using std::map; using namespace ::com::sun::star; using namespace ::com::sun::star::uno; -MacroChooser::MacroChooser(weld::Window* pParnt, const Reference< frame::XFrame >& xDocFrame, bool bCreateEntries) +MacroChooser::MacroChooser(weld::Window* pParnt, const Reference< frame::XFrame >& xDocFrame) : SfxDialogController(pParnt, "modules/BasicIDE/ui/basicmacrodialog.ui", "BasicMacroDialog") , m_xDocumentFrame(xDocFrame) // the Sfx doesn't ask the BasicManager whether modified or not @@ -109,8 +109,7 @@ MacroChooser::MacroChooser(weld::Window* pParnt, const Reference< frame::XFrame if (SfxDispatcher* pDispatcher = GetDispatcher()) pDispatcher->Execute( SID_BASICIDE_STOREALLMODULESOURCES ); - if (bCreateEntries) - m_xBasicBox->ScanAllEntries(); + m_xBasicBox->ScanAllEntries(); } MacroChooser::~MacroChooser() diff --git a/basctl/source/basicide/macrodlg.hxx b/basctl/source/basicide/macrodlg.hxx index ceacc143c890..9ab71acc13fa 100644 --- a/basctl/source/basicide/macrodlg.hxx +++ b/basctl/source/basicide/macrodlg.hxx @@ -89,7 +89,7 @@ private: std::unique_ptr<weld::Button> m_xNewLibButton; std::unique_ptr<weld::Button> m_xNewModButton; public: - MacroChooser(weld::Window *pParent, const ::css::uno::Reference< ::css::frame::XFrame >& xDocFrame, bool bCreateEntries); + MacroChooser(weld::Window *pParent, const ::css::uno::Reference< ::css::frame::XFrame >& xDocFrame); virtual ~MacroChooser() override; SbMethod* GetMacro(); diff --git a/compilerplugins/clang/constantparam.bitmask.results b/compilerplugins/clang/constantparam.bitmask.results index d77b358f39db..2686f7b15969 100644 --- a/compilerplugins/clang/constantparam.bitmask.results +++ b/compilerplugins/clang/constantparam.bitmask.results @@ -13,7 +13,7 @@ include/basegfx/polygon/b2dpolygontools.hxx:144 include/framework/framelistanalyzer.hxx:184 void framework::FrameListAnalyzer::FrameListAnalyzer(const class com::sun::star::uno::Reference<class com::sun::star::frame::XFramesSupplier> &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,enum FrameAnalyzerFlags) enum FrameAnalyzerFlags eDetectMode setBits=0x4 -include/sfx2/objsh.hxx:457 +include/sfx2/objsh.hxx:451 void SfxObjectShell::FinishedLoading(enum SfxLoadedFlags) enum SfxLoadedFlags nWhich setBits=0x1 include/svtools/brwbox.hxx:431 @@ -34,19 +34,19 @@ sc/inc/rangeutl.hxx:162 sc/inc/xmlwrap.hxx:89 _Bool ScXMLImportWrapper::Import(enum ImportFlags,class ErrCode &) enum ImportFlags nMode setBits=0x1 -sc/source/ui/view/cellsh1.cxx:114 +sc/source/ui/view/cellsh1.cxx:115 enum InsertDeleteFlags FlagsFromString(const class rtl::OUString &,enum InsertDeleteFlags) enum InsertDeleteFlags nFlagsMask setBits=0x87f clearBits=0x700 -sc/source/ui/view/cellsh1.cxx:137 +sc/source/ui/view/cellsh1.cxx:138 class rtl::OUString FlagsToString(enum InsertDeleteFlags,enum InsertDeleteFlags) enum InsertDeleteFlags nFlagsMask setBits=0x87f clearBits=0x700 -sw/source/core/view/viewsh.cxx:728 +sw/source/core/view/viewsh.cxx:727 void lcl_InvalidateAllContent(class SwViewShell &,enum SwInvalidateFlags) enum SwInvalidateFlags nInv setBits=0x2 -sw/source/filter/html/swhtml.hxx:671 +sw/source/filter/html/swhtml.hxx:670 void SwHTMLParser::SetFrameFormatAttrs(class SfxItemSet &,enum HtmlFrameFormatFlags,class SfxItemSet &) enum HtmlFrameFormatFlags nFlags setBits=0x1 -sw/source/filter/ww8/wrtw8esh.cxx:1526 +sw/source/filter/ww8/wrtw8esh.cxx:1557 enum ShapeFlag AddMirrorFlags(enum ShapeFlag,const class SwMirrorGrf &) enum ShapeFlag nFlags setBits=0xa00 clearBits=0x5ef xmloff/inc/MetaExportComponent.hxx:32 diff --git a/compilerplugins/clang/constantparam.booleans.results b/compilerplugins/clang/constantparam.booleans.results index 52cd8c28a324..39637cd6b887 100644 --- a/compilerplugins/clang/constantparam.booleans.results +++ b/compilerplugins/clang/constantparam.booleans.results @@ -6,14 +6,14 @@ accessibility/source/standard/vclxaccessibletoolbox.cxx:99 void (anonymous namespace)::OToolBoxWindowItem::OToolBoxWindowItem(int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &) int _nIndexInParent 0 -basctl/source/basicide/moduldlg.hxx:153 +basctl/source/basicide/macrodlg.hxx:92 + void basctl::MacroChooser::MacroChooser(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,_Bool) + _Bool bCreateEntries + 1 +basctl/source/basicide/moduldlg.hxx:103 void basctl::LibDialog::EnableReference(_Bool) _Bool b 0 -basctl/source/basicide/moduldlg.hxx:250 - class SbModule * createModImpl(class weld::Window *,const class basctl::ScriptDocument &,class basctl::TreeListBox &,const class rtl::OUString &,_Bool) - _Bool bMain - 1 basctl/source/inc/scriptdocument.hxx:89 void basctl::ScriptDocument::ScriptDocument(enum basctl::ScriptDocument::SpecialDocument) enum basctl::ScriptDocument::SpecialDocument _eType @@ -50,7 +50,7 @@ chart2/qa/extras/chart2dump/chart2dump.cxx:97 void Chart2DumpTest::Chart2DumpTest(_Bool) _Bool bDumpMode 0 -chart2/qa/extras/chart2export.cxx:328 +chart2/qa/extras/chart2export.cxx:346 void checkCommonTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,double,double,_Bool,double,_Bool,_Bool) _Bool aExpectedShowEquation 1 @@ -106,15 +106,15 @@ chart2/source/controller/dialogs/ChartTypeDialogController.hxx:54 void chart::ChartTypeParameter::ChartTypeParameter(int,_Bool,_Bool,enum chart::GlobalStackMode,_Bool,_Bool,enum com::sun::star::chart2::CurveStyle) enum com::sun::star::chart2::CurveStyle eCurveStyle 0 -chart2/source/controller/dialogs/DialogModel.cxx:171 +chart2/source/controller/dialogs/DialogModel.cxx:170 struct (anonymous namespace)::lcl_DataSeriesContainerAppend & (anonymous namespace)::lcl_DataSeriesContainerAppend::operator++(int) int 0 -chart2/source/controller/dialogs/DialogModel.cxx:230 +chart2/source/controller/dialogs/DialogModel.cxx:229 struct (anonymous namespace)::lcl_RolesWithRangeAppend & (anonymous namespace)::lcl_RolesWithRangeAppend::operator++(int) int 0 -chart2/source/controller/inc/ChartController.hxx:367 +chart2/source/controller/inc/ChartController.hxx:372 class chart::ChartController::TheModelRef & chart::ChartController::TheModelRef::operator=(class chart::ChartController::TheModel *) ###1 0 @@ -130,7 +130,7 @@ chart2/source/model/template/ColumnLineChartTypeTemplate.hxx:38 void chart::ColumnLineChartTypeTemplate::ColumnLineChartTypeTemplate(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,enum chart::StackMode,int) int nNumberOfLines 1 -chart2/source/tools/InternalDataProvider.cxx:245 +chart2/source/tools/InternalDataProvider.cxx:244 void chart::(anonymous namespace)::lcl_setAnyAtLevelFromStringSequence::lcl_setAnyAtLevelFromStringSequence(int) int nLevel 0 @@ -178,7 +178,7 @@ comphelper/source/misc/backupfilehelper.cxx:78 unsigned int createCrc32(const class std::shared_ptr<class osl::File> &,unsigned int) unsigned int nOffset 0 -connectivity/source/drivers/postgresql/pq_connection.cxx:413 +connectivity/source/drivers/postgresql/pq_connection.cxx:414 void pq_sdbc_driver::cstr_vector::push_back(const char *,enum __sal_NoAcquire) enum __sal_NoAcquire 0 @@ -202,7 +202,7 @@ connectivity/source/inc/odbc/OTools.hxx:219 void connectivity::odbc::OTools::bindValue(const class connectivity::odbc::OConnection *,void *,int,short,short,const void *,void *,long *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,unsigned short,_Bool) short _nMaxLen 0 -cppcanvas/source/mtfrenderer/mtftools.cxx:295 +cppcanvas/source/mtfrenderer/mtftools.cxx:292 void appendRect(class basegfx::B2DPolyPolygon &,const class basegfx::B2DPoint &,const double,const double,const double,const double) const double nX1 0 @@ -218,31 +218,39 @@ cppu/qa/test_unotype.cxx:74 void (anonymous namespace)::DerivedInterface2::dummy(struct (anonymous namespace)::DerivedInterface2 *) struct (anonymous namespace)::DerivedInterface2 * p 0 -cui/source/inc/acccfg.hxx:65 +cui/source/inc/acccfg.hxx:49 void TAccInfo::TAccInfo(int,int,const class vcl::KeyCode &) int nListPos 0 -cui/source/inc/cfgutil.hxx:122 - class rtl::OUString SfxConfigFunctionListBox::GetHelpText(_Bool) - _Bool bConsiderParent +cui/source/inc/cfg.hxx:344 + void SvxMenuEntriesListBox::set_toggle(int,enum TriState,int) + int col + 0 +cui/source/inc/cfg.hxx:446 + void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(class rtl::OUString &,class rtl::OUString &,class rtl::OUString &,int,int) + int nStartCol + 1 +cui/source/inc/cfg.hxx:462 + int SvxConfigPage::AddFunction(int,_Bool,_Bool) + _Bool bFront 0 -cui/source/inc/cfgutil.hxx:146 +cui/source/inc/cfgutil.hxx:128 + void CuiConfigFunctionListBox::append(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,class weld::TreeIter *) + class weld::TreeIter * pParent + 0 +cui/source/inc/cfgutil.hxx:142 class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > CuiConfigFunctionListBox::make_iterator(const class weld::TreeIter *) const const class weld::TreeIter * pOrig 0 -cui/source/inc/cfgutil.hxx:165 - class rtl::OUString CuiConfigFunctionListBox::GetHelpText(_Bool) - _Bool bConsiderParent - 1 -cui/source/inc/cuitabarea.hxx:760 +cui/source/inc/cuitabarea.hxx:761 void SvxColorTabPage::SetPropertyList(enum XPropertyListType,const class rtl::Reference<class XPropertyList> &) enum XPropertyListType t 0 -cui/source/inc/hangulhanjadlg.hxx:63 +cui/source/inc/hangulhanjadlg.hxx:56 void svx::SuggestionDisplay::SelectEntryPos(unsigned short) unsigned short nPos 0 -cui/source/inc/hangulhanjadlg.hxx:67 +cui/source/inc/hangulhanjadlg.hxx:60 class rtl::OUString svx::SuggestionDisplay::GetEntry(unsigned short) const unsigned short nPos 0 @@ -250,21 +258,17 @@ cui/source/inc/radiobtnbox.hxx:40 void svx::SvxRadioButtonListBox::SvxRadioButtonListBox(class SvSimpleTableContainer &,long) long nBits 0 -cui/source/inc/scriptdlg.hxx:126 - void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool) - class weld::TreeIter * pParent - 0 -cui/source/inc/scriptdlg.hxx:126 - void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool) - _Bool bSelect - 0 -cui/source/inc/scriptdlg.hxx:126 - void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool) +cui/source/inc/scriptdlg.hxx:122 + void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool) _Bool bChildrenOnDemand 1 -cui/source/inc/SpellDialog.hxx:86 - void svx::SentenceEditWindow_Impl::SetAttrib(const class TextAttrib &,unsigned int,int,int) - unsigned int nPara +cui/source/inc/scriptdlg.hxx:122 + void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool) + _Bool bSelect + 0 +cui/source/inc/scriptdlg.hxx:122 + void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool) + const class weld::TreeIter * pParent 0 cui/source/options/optjsearch.hxx:65 void SvxJSearchOptionsPage::EnableSaveOptions(_Bool) @@ -298,7 +302,7 @@ dbaccess/source/ui/app/AppSwapWindow.hxx:58 class SvxIconChoiceCtrlEntry * dbaui::OApplicationSwapWindow::GetEntry(unsigned long) const unsigned long nPos 0 -dbaccess/source/ui/control/tabletree.cxx:221 +dbaccess/source/ui/control/tabletree.cxx:295 class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > lcl_getMetaDataStrings_throw(const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XResultSet> &,int) int _nColumnIndex 1 @@ -310,27 +314,39 @@ dbaccess/source/ui/inc/charsets.hxx:47 class dbaui::OCharsetDisplay::ExtendedCharsetIterator dbaui::OCharsetDisplay::findEncoding(const unsigned short) const const unsigned short _eEncoding 0 +dbaccess/source/ui/inc/imageprovider.hxx:81 + class rtl::OUString dbaui::ImageProvider::getImageId(const class rtl::OUString &,const int) + const int _nDatabaseObjectType + 0 +dbaccess/source/ui/inc/imageprovider.hxx:87 + class com::sun::star::uno::Reference<class com::sun::star::graphic::XGraphic> dbaui::ImageProvider::getXGraphic(const class rtl::OUString &,const int) + const int _nDatabaseObjectType + 0 +dbaccess/source/ui/inc/imageprovider.hxx:132 + class rtl::OUString dbaui::ImageProvider::getFolderImageId(int) + int _nDatabaseObjectType + 0 dbaccess/source/ui/inc/IUpdateHelper.hxx:33 void dbaui::IUpdateHelper::updateInt(int,int) int _nPos 1 +dbaccess/source/ui/inc/tabletree.hxx:202 + class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > dbaui::TableTreeListBox::GetEntryPosByName(const class rtl::OUString &,class weld::TreeIter *,const class dbaui::IEntryFilter *) const + const class dbaui::IEntryFilter * _pFilter + 0 dbaccess/source/ui/inc/WTypeSelect.hxx:112 void dbaui::OWizTypeSelect::EnableAuto(_Bool) _Bool bEnable 0 -desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:181 +desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:182 void dp_gui::ExtensionCmd::ExtensionCmd(const enum dp_gui::ExtensionCmd::E_CMD_TYPE,const class rtl::OUString &,const class rtl::OUString &,const _Bool) const enum dp_gui::ExtensionCmd::E_CMD_TYPE eCommand 0 -desktop/source/deployment/gui/dp_gui_theextmgr.hxx:90 - void dp_gui::TheExtensionManager::ToTop(enum ToTopFlags) - enum ToTopFlags nFlags - 1 desktop/source/deployment/gui/dp_gui_updatedialog.hxx:103 void dp_gui::UpdateDialog::addAdditional(struct dp_gui::UpdateDialog::Index *,_Bool) _Bool bEnableCheckBox 0 -desktop/source/lib/init.cxx:4633 +desktop/source/lib/init.cxx:5185 struct _LibreOfficeKit * libreofficekit_hook_2(const char *,const char *) const char * user_profile_url 0 @@ -342,7 +358,7 @@ editeng/source/editeng/editstt2.hxx:32 void InternalEditStatus::TurnOffFlags(enum EEControlBits) enum EEControlBits nFlags 1 -editeng/source/editeng/impedit.hxx:835 +editeng/source/editeng/impedit.hxx:838 unsigned short ImpEditEngine::GetLineHeight(int,int) int nLine 0 @@ -442,11 +458,11 @@ filter/source/graphicfilter/icgm/cgm.hxx:91 unsigned char CGM::ImplGetByte(unsigned int,unsigned int) unsigned int nPrecision 1 -filter/source/svg/svgfilter.hxx:260 +filter/source/svg/svgfilter.hxx:252 _Bool SVGFilter::implExportMasterPages(const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > > &,int,int) int nFirstPage 0 -filter/source/svg/svgfilter.hxx:262 +filter/source/svg/svgfilter.hxx:254 void SVGFilter::implExportDrawPages(const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > > &,int,int) int nFirstPage 0 @@ -466,15 +482,15 @@ forms/source/inc/featuredispatcher.hxx:50 void frm::IFeatureDispatcher::dispatchWithArgument(short,const char *,const class com::sun::star::uno::Any &) const short _nFeatureId 1 -formula/source/ui/dlg/structpg.hxx:85 - class SvTreeListEntry * formula::StructPage::InsertEntry(const class rtl::OUString &,class SvTreeListEntry *,unsigned short,unsigned long,const class formula::FormulaToken *) - unsigned long nPos +formula/source/ui/dlg/structpg.hxx:60 + _Bool formula::StructPage::InsertEntry(const class rtl::OUString &,class weld::TreeIter *,unsigned short,int,const class formula::FormulaToken *,class weld::TreeIter &) + int nPos 0 framework/inc/uielement/uicommanddescription.hxx:83 void framework::UICommandDescription::UICommandDescription(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,_Bool) _Bool 1 -helpcompiler/inc/HelpCompiler.hxx:68 +helpcompiler/inc/HelpCompiler.hxx:59 void fs::path::path(const class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,enum fs::convert) enum fs::convert 0 @@ -486,7 +502,7 @@ hwpfilter/source/hwpfile.h:146 void HWPFile::Read4b(void *,unsigned long) unsigned long nmemb 1 -i18npool/source/localedata/LocaleNode.hxx:79 +i18npool/source/localedata/LocaleNode.hxx:73 const class rtl::OUString & Attr::getValueByIndex(int) const int idx 0 @@ -498,7 +514,7 @@ idlc/source/errorhandler.cxx:399 void errorHeader(enum ErrorCode,unsigned int) enum ErrorCode eCode 0 -include/avmedia/mediaplayer.hxx:51 +include/avmedia/mediaplayer.hxx:50 void avmedia::MediaFloater::setURL(const class rtl::OUString &,const class rtl::OUString &,_Bool) _Bool bPlayImmediately 1 @@ -670,15 +686,15 @@ include/comphelper/unique_disposing_ptr.hxx:169 void comphelper::unique_disposing_solar_mutex_reset_ptr::reset(type-parameter-?-? *) type-parameter-?-? * p 0 -include/connectivity/dbexception.hxx:317 +include/connectivity/dbexception.hxx:318 void throwSQLException(const class rtl::OUString &,enum dbtools::StandardSQLState,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const int) const int _nErrorCode 0 -include/connectivity/dbtools.hxx:329 +include/connectivity/dbtools.hxx:324 _Bool isDataSourcePropertyEnabled(const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class rtl::OUString &,_Bool) _Bool _bDefault 1 -include/connectivity/dbtools.hxx:620 +include/connectivity/dbtools.hxx:615 class rtl::OUString createStandardCreateStatement(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,class dbtools::ISQLStatementHelper *,const class rtl::OUString &) class dbtools::ISQLStatementHelper * _pHelper 0 @@ -686,11 +702,11 @@ include/connectivity/FValue.hxx:469 void connectivity::TSetBound::TSetBound(_Bool) _Bool _bBound 0 -include/connectivity/sdbcx/VIndex.hxx:68 +include/connectivity/sdbcx/VIndex.hxx:65 void connectivity::sdbcx::OIndex::OIndex(_Bool) _Bool _bCase 1 -include/connectivity/sdbcx/VIndex.hxx:69 +include/connectivity/sdbcx/VIndex.hxx:66 void connectivity::sdbcx::OIndex::OIndex(const class rtl::OUString &,const class rtl::OUString &,_Bool,_Bool,_Bool,_Bool) _Bool _bCase 1 @@ -702,15 +718,15 @@ include/connectivity/sdbcx/VKey.hxx:81 void connectivity::sdbcx::OKey::OKey(const class rtl::OUString &,const class std::shared_ptr<struct connectivity::sdbcx::KeyProperties> &,_Bool) _Bool _bCase 1 -include/connectivity/sdbcx/VUser.hxx:65 +include/connectivity/sdbcx/VUser.hxx:64 void connectivity::sdbcx::OUser::OUser(_Bool) _Bool _bCase 1 -include/connectivity/sdbcx/VUser.hxx:66 +include/connectivity/sdbcx/VUser.hxx:65 void connectivity::sdbcx::OUser::OUser(const class rtl::OUString &,_Bool) _Bool _bCase 1 -include/connectivity/sqlscan.hxx:52 +include/connectivity/sqlscan.hxx:51 void connectivity::OSQLScanner::prepareScan(const class rtl::OUString &,const class connectivity::IParseContext *,_Bool) _Bool bInternational 1 @@ -722,55 +738,59 @@ include/drawinglayer/processor2d/hittestprocessor2d.hxx:80 void drawinglayer::processor2d::HitTestProcessor2D::collectHitStack(_Bool) _Bool bCollect 1 -include/drawinglayer/XShapeDumper.hxx:49 +include/drawinglayer/XShapeDumper.hxx:25 class rtl::OUString XShapeDumper::dump(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShapes> &,_Bool) _Bool bDumpInteropProperties 0 -include/drawinglayer/XShapeDumper.hxx:50 +include/drawinglayer/XShapeDumper.hxx:26 class rtl::OUString XShapeDumper::dump(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,_Bool) _Bool bDumpInteropProperties 0 -include/editeng/borderline.hxx:166 +include/editeng/borderline.hxx:168 class Color editeng::SvxBorderLine::GetColorOut(_Bool) const _Bool bLeftOrTop 1 -include/editeng/borderline.hxx:167 +include/editeng/borderline.hxx:169 class Color editeng::SvxBorderLine::GetColorIn(_Bool) const _Bool bLeftOrTop 1 -include/editeng/boxitem.hxx:117 +include/editeng/boxitem.hxx:114 _Bool SvxBoxItem::HasBorder(_Bool) const _Bool bTreatPaddingAsBorder 1 -include/editeng/colritem.hxx:81 +include/editeng/colritem.hxx:69 void SvxBackgroundColorItem::SvxBackgroundColorItem(const unsigned short) const unsigned short nId 0 -include/editeng/editeng.hxx:547 +include/editeng/editeng.hxx:539 void EditEngine::dumpAsXmlEditDoc(struct _xmlTextWriter *) const struct _xmlTextWriter * pWriter 0 -include/editeng/editeng.hxx:572 +include/editeng/editeng.hxx:564 class EditPaM EditEngine::CursorLeft(const class EditPaM &,unsigned short) unsigned short nCharacterIteratorMode 0 -include/editeng/editobj.hxx:117 +include/editeng/editobj.hxx:115 const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const int nType 1 -include/editeng/editobj.hxx:117 +include/editeng/editobj.hxx:115 const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const int nPara 0 -include/editeng/editobj.hxx:117 +include/editeng/editobj.hxx:115 const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const unsigned long nPos 0 -include/editeng/outliner.hxx:253 +include/editeng/edtdlg.hxx:79 + enum editeng::HangulHanjaConversion::ConversionDirection AbstractHangulHanjaConversionDialog::GetDirection(enum editeng::HangulHanjaConversion::ConversionDirection) const + enum editeng::HangulHanjaConversion::ConversionDirection _eDefaultDirection + 0 +include/editeng/outliner.hxx:239 void OutlinerView::SelectRange(int,int) int nFirst 0 -include/editeng/outliner.hxx:640 +include/editeng/outliner.hxx:623 _Bool Outliner::ImpCanDeleteSelectedPages(class OutlinerView *,int,int) int nPages 1 @@ -810,15 +830,15 @@ include/filter/msfilter/msdffimp.hxx:765 void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short) unsigned short nSeqId 0 -include/formula/FormulaCompiler.hxx:328 +include/formula/FormulaCompiler.hxx:326 void formula::FormulaCompiler::PushTokenArray(class formula::FormulaTokenArray *,_Bool) _Bool 1 -include/formula/token.hxx:235 +include/formula/token.hxx:234 void formula::FormulaByteToken::FormulaByteToken(enum OpCode,unsigned char,enum formula::StackVar,enum formula::ParamClass) enum formula::ParamClass c 0 -include/formula/tokenarray.hxx:166 +include/formula/tokenarray.hxx:168 void formula::FormulaTokenArrayReferencesIterator::FormulaTokenArrayReferencesIterator(const class formula::FormulaTokenArrayStandardRange &,enum formula::FormulaTokenArrayReferencesIterator::Dummy) enum formula::FormulaTokenArrayReferencesIterator::Dummy 0 @@ -846,7 +866,7 @@ include/oox/export/vmlexport.hxx:140 const class rtl::OString & oox::vml::VMLExport::AddInlineSdrObject(const class SdrObject &,const _Bool) const _Bool bOOxmlExport 1 -include/oox/helper/attributelist.hxx:151 +include/oox/helper/attributelist.hxx:153 long oox::AttributeList::getHyper(int,long) const long nDefault 0 @@ -858,7 +878,7 @@ include/oox/helper/containerhelper.hxx:114 typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_reference oox::Matrix::operator()(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type) const typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type nY 0 -include/oox/helper/helper.hxx:107 +include/oox/helper/helper.hxx:105 type-parameter-?-? getIntervalValue(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) type-parameter-?-? nBegin 0 @@ -886,7 +906,7 @@ include/opencl/openclwrapper.hxx:61 _Bool buildProgramFromBinary(const char *,struct openclwrapper::GPUEnv *,const char *,int) int idx 0 -include/opencl/openclwrapper.hxx:84 +include/opencl/openclwrapper.hxx:86 void setOpenCLCmdQueuePosition(int) int nPos 0 @@ -894,63 +914,63 @@ include/package/Deflater.hxx:42 int ZipUtils::Deflater::doDeflateBytes(class com::sun::star::uno::Sequence<signed char> &,int,int) int nNewOffset 0 -include/sfx2/dispatch.hxx:167 +include/sfx2/dispatch.hxx:149 enum ToolbarId SfxDispatcher::GetObjectBarId(unsigned short) const unsigned short nPos 1 -include/sfx2/docfile.hxx:105 +include/sfx2/docfile.hxx:97 void SfxMedium::SfxMedium(const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,const class rtl::OUString &,const class rtl::OUString &,const class SfxItemSet *) const class SfxItemSet * pSet 0 -include/sfx2/docfile.hxx:181 +include/sfx2/docfile.hxx:174 void SfxMedium::DisableFileSync(_Bool) _Bool bDisableFileSync 1 -include/sfx2/event.hxx:240 +include/sfx2/event.hxx:239 void SfxPrintingHint::SfxPrintingHint(enum com::sun::star::view::PrintableState,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,class SfxObjectShell *,const class com::sun::star::uno::Reference<class com::sun::star::frame::XController2> &) enum com::sun::star::view::PrintableState nState 0 -include/sfx2/fcontnr.hxx:112 +include/sfx2/fcontnr.hxx:109 void SfxFilterMatcherIter::SfxFilterMatcherIter(const class SfxFilterMatcher &,enum SfxFilterFlags,enum SfxFilterFlags) enum SfxFilterFlags nMask 0 -include/sfx2/filedlghelper.hxx:107 +include/sfx2/filedlghelper.hxx:109 void sfx2::FileDialogHelper::FileDialogHelper(short,enum FileDialogFlags,const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags,class weld::Window *) enum SfxFilterFlags nDont 0 -include/sfx2/notebookbar/SfxNotebookBar.hxx:50 +include/sfx2/notebookbar/SfxNotebookBar.hxx:55 void sfx2::SfxNotebookBar::ShowMenubar(const class SfxViewFrame *,_Bool) _Bool bShow 1 -include/sfx2/opengrf.hxx:47 +include/sfx2/opengrf.hxx:49 void SvxOpenGraphicDialog::EnableLink(_Bool) _Bool 0 -include/sfx2/passwd.hxx:126 +include/sfx2/passwd.hxx:125 void SfxPasswordDialog::ShowMinLengthText(_Bool) _Bool bShow 0 -include/sfx2/request.hxx:65 +include/sfx2/request.hxx:62 void SfxRequest::SfxRequest(const class SfxSlot *,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,enum SfxCallMode,class SfxItemPool &) enum SfxCallMode nCallMode 1 -include/sfx2/request.hxx:68 +include/sfx2/request.hxx:65 void SfxRequest::SfxRequest(unsigned short,enum SfxCallMode,const class SfxAllItemSet &,const class SfxAllItemSet &) enum SfxCallMode nCallMode 1 -include/sfx2/request.hxx:103 +include/sfx2/request.hxx:100 void SfxRequest::AllowRecording(_Bool) _Bool 1 -include/sfx2/sfxdlg.hxx:139 +include/sfx2/sfxdlg.hxx:132 class VclPtr<class VclAbstractDialog> SfxAbstractDialogFactory::CreateEditObjectDialog(class weld::Window *,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::embed::XEmbeddedObject> &) class weld::Window * pParent 0 -include/sfx2/sidebar/FocusManager.hxx:117 +include/sfx2/sidebar/FocusManager.hxx:116 _Bool sfx2::sidebar::FocusManager::IsPanelTitleVisible(const int) const const int nPanelIndex 0 -include/sfx2/sidebar/SidebarToolBox.hxx:55 +include/sfx2/sidebar/SidebarToolBox.hxx:54 void sfx2::sidebar::SidebarToolBox::SetController(const unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XToolbarController> &) const unsigned short nItemId 1 @@ -958,6 +978,10 @@ include/sfx2/thumbnailview.hxx:225 void ThumbnailView::ShowTooltips(_Bool) _Bool bShowTooltips 1 +include/sfx2/thumbnailview.hxx:360 + void SfxThumbnailView::ShowTooltips(_Bool) + _Bool bShowTooltips + 1 include/sot/stg.hxx:158 void Storage::Storage(const class rtl::OUString &,enum StreamMode,_Bool) _Bool bDirect @@ -990,7 +1014,7 @@ include/store/store.hxx:104 storeError store::OStoreStream::writeAt(unsigned int,const void *,unsigned int,unsigned int &) unsigned int nOffset 0 -include/svl/adrparse.hxx:41 +include/svl/adrparse.hxx:42 const class rtl::OUString & SvAddressParser::GetEmailAddress(int) const int nIndex 0 @@ -998,7 +1022,11 @@ include/svl/gridprinter.hxx:29 void svl::GridPrinter::GridPrinter(unsigned long,unsigned long,_Bool) _Bool bPrint 0 -include/svl/itemset.hxx:169 +include/svl/itempool.hxx:151 + const type-parameter-?-? & SfxItemPool::Put(unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> >,unsigned short) + unsigned short nWhich + 0 +include/svl/itemset.hxx:172 const type-parameter-?-? * SfxItemSet::GetItem(const class SfxItemSet *,TypedWhichId<type-parameter-?-?>,_Bool) _Bool bSearchInParent 0 @@ -1018,7 +1046,7 @@ include/svl/urihelper.hxx:148 class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short) enum INetURLObject::EncodeMechanism eEncodeMechanism 1 -include/svl/zforlist.hxx:874 +include/svl/zforlist.hxx:879 const class NfKeywordTable & SvNumberFormatter::GetKeywords(unsigned int) unsigned int nKey 0 @@ -1048,6 +1076,10 @@ include/svtools/HtmlWriter.hxx:38 0 include/svtools/inettbc.hxx:63 void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool) + enum INetProtocol eSmart + 0 +include/svtools/inettbc.hxx:63 + void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool) _Bool bSetDefaultHelpID 1 include/svtools/ruler.hxx:732 @@ -1074,75 +1106,71 @@ include/svtools/valueset.hxx:378 class Size ValueSet::CalcWindowSizePixel(const class Size &,unsigned short,unsigned short) const unsigned short nCalcLines 0 -include/svx/algitem.hxx:41 - void SvxOrientationItem::SvxOrientationItem(int,_Bool,const unsigned short) +include/svx/algitem.hxx:35 + void SvxOrientationItem::SvxOrientationItem(const enum SvxCellOrientation,const unsigned short) const unsigned short nId 0 -include/svx/checklbx.hxx:60 - void SvxCheckListBox::InsertEntry(const class rtl::OUString &,unsigned long,void *,enum SvLBoxButtonKind) - enum SvLBoxButtonKind eButtonKind +include/svx/algitem.hxx:39 + void SvxOrientationItem::SvxOrientationItem(int,_Bool,const unsigned short) + const unsigned short nId 0 -include/svx/checklbx.hxx:60 - void SvxCheckListBox::InsertEntry(const class rtl::OUString &,unsigned long,void *,enum SvLBoxButtonKind) - void * pUserData +include/svx/checklbx.hxx:55 + void SvxCheckListBox::SelectEntryPos(unsigned long) + unsigned long nPos 0 -include/svx/colorwindow.hxx:146 +include/svx/colorwindow.hxx:147 void ColorWindow::ColorWindow(const class std::shared_ptr<class PaletteManager> &,class ColorStatus &,unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,class weld::Window *,class weld::MenuButton *,_Bool,const class std::function<void (const class rtl::OUString &, const struct std::pair<class Color, class rtl::OUString> &)> &) _Bool bInterimBuilder 0 -include/svx/ctredlin.hxx:254 +include/svx/ctredlin.hxx:211 void SvxTPFilter::SelectedAuthorPos(int) int nPos 0 -include/svx/ctredlin.hxx:277 +include/svx/ctredlin.hxx:234 void SvxTPFilter::CheckAction(_Bool) _Bool bFlag 0 -include/svx/dlgctrl.hxx:142 +include/svx/dlgctrl.hxx:138 void SvxRectCtl::DoCompletelyDisable(_Bool) _Bool bNew 1 -include/svx/fmtools.hxx:98 +include/svx/fmtools.hxx:76 void CursorWrapper::CursorWrapper(const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XRowSet> &,_Bool) _Bool bUseCloned 0 -include/svx/fmtools.hxx:163 +include/svx/fmtools.hxx:141 void FmXDisposeListener::disposing(const struct com::sun::star::lang::EventObject &,short) short _nId 0 -include/svx/fmview.hxx:89 +include/svx/fmview.hxx:88 void FmFormView::createControlLabelPair(const class OutputDevice *,int,int,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormats> &,unsigned short,enum SdrInventor,unsigned short,class SdrModel &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &) int _nYOffsetMM 0 -include/svx/framelink.hxx:153 +include/svx/framelink.hxx:146 void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double) double nD 0 -include/svx/framelink.hxx:153 +include/svx/framelink.hxx:146 void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double) enum SvxBorderLineStyle nType 0 -include/svx/framelink.hxx:153 +include/svx/framelink.hxx:146 void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double) double nS 0 -include/svx/frmsel.hxx:150 +include/svx/frmsel.hxx:144 void svx::FrameSelector::SelectAllBorders(_Bool) _Bool bSelect 0 -include/svx/gridctrl.hxx:394 +include/svx/gridctrl.hxx:392 void DbGridControl::RemoveRows(_Bool) _Bool bNewCursor 0 -include/svx/IAccessibleParent.hxx:77 +include/svx/IAccessibleParent.hxx:80 _Bool accessibility::IAccessibleParent::ReplaceChild(class accessibility::AccessibleShape *,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,const long,const class accessibility::AccessibleShapeTreeInfo &) const long _nIndex 0 -include/svx/langbox.hxx:60 - void SvxLanguageBoxBase::SetLanguageList(enum SvxLanguageListFlags,_Bool,_Bool,_Bool) - _Bool bLangNoneIsLangAll - 0 -include/svx/langbox.hxx:97 +include/svx/langbox.hxx:90 void SvxLanguageBoxBase::ImplSelectEntryPos(int,_Bool) _Bool bSelect 1 @@ -1158,19 +1186,19 @@ include/svx/nbdtmg.hxx:133 class rtl::OUString svx::sidebar::NBOTypeMgrBase::GetDescription(unsigned short,_Bool) _Bool isDefault 1 -include/svx/postattr.hxx:34 +include/svx/postattr.hxx:33 void SvxPostItAuthorItem::SvxPostItAuthorItem(unsigned short) unsigned short nWhich 0 -include/svx/postattr.hxx:54 +include/svx/postattr.hxx:53 void SvxPostItDateItem::SvxPostItDateItem(unsigned short) unsigned short nWhich 0 -include/svx/postattr.hxx:73 +include/svx/postattr.hxx:72 void SvxPostItTextItem::SvxPostItTextItem(unsigned short) unsigned short nWhich 0 -include/svx/postattr.hxx:94 +include/svx/postattr.hxx:93 void SvxPostItIdItem::SvxPostItIdItem(unsigned short) unsigned short nWhich 0 @@ -1198,7 +1226,7 @@ include/svx/sdginitm.hxx:36 void SdrGrafInvertItem::SdrGrafInvertItem(_Bool) _Bool bInvert 0 -include/svx/sdr/overlay/overlayobject.hxx:127 +include/svx/sdr/overlay/overlayobject.hxx:126 void sdr::overlay::OverlayObject::allowAntiAliase(_Bool) _Bool bNew 0 @@ -1214,23 +1242,23 @@ include/svx/svdhlpln.hxx:43 void SdrHelpLine::SdrHelpLine(enum SdrHelpLineKind) enum SdrHelpLineKind eNewKind 0 -include/svx/svditer.hxx:52 +include/svx/svditer.hxx:51 void SdrObjListIter::SdrObjListIter(const class SdrObjList *,_Bool,enum SdrIterMode,_Bool) enum SdrIterMode eMode 0 -include/svx/svditer.hxx:52 +include/svx/svditer.hxx:51 void SdrObjListIter::SdrObjListIter(const class SdrObjList *,_Bool,enum SdrIterMode,_Bool) _Bool bReverse 0 -include/svx/svditer.hxx:56 +include/svx/svditer.hxx:55 void SdrObjListIter::SdrObjListIter(const class SdrObject &,enum SdrIterMode,_Bool) _Bool bReverse 0 -include/svx/svdundo.hxx:101 +include/svx/svdundo.hxx:100 class SdrUndoAction * SdrUndoGroup::GetAction(int) const int nNum 0 -include/svx/svdview.hxx:179 +include/svx/svdview.hxx:178 void SdrView::EnableExtendedKeyInputDispatcher(_Bool) _Bool bOn 0 @@ -1242,27 +1270,27 @@ include/svx/SvxColorValueSet.hxx:52 void ColorValueSet::addEntriesForXColorList(const class XColorList &,unsigned int) unsigned int nStartIndex 1 -include/svx/svxdlg.hxx:90 +include/svx/svxdlg.hxx:93 void AbstractSvxZoomDialog::HideButton(enum ZoomButtonId) enum ZoomButtonId nBtnId 1 -include/svx/SvxPresetListBox.hxx:60 +include/svx/SvxPresetListBox.hxx:57 void SvxPresetListBox::FillPresetListBox(class XGradientList &,unsigned int) unsigned int nStartIndex 1 -include/svx/SvxPresetListBox.hxx:61 +include/svx/SvxPresetListBox.hxx:58 void SvxPresetListBox::FillPresetListBox(class XHatchList &,unsigned int) unsigned int nStartIndex 1 -include/svx/SvxPresetListBox.hxx:62 +include/svx/SvxPresetListBox.hxx:59 void SvxPresetListBox::FillPresetListBox(class XBitmapList &,unsigned int) unsigned int nStartIndex 1 -include/svx/SvxPresetListBox.hxx:63 +include/svx/SvxPresetListBox.hxx:60 void SvxPresetListBox::FillPresetListBox(class XPatternList &,unsigned int) unsigned int nStartIndex 1 -include/svx/sxcaitm.hxx:38 +include/svx/sxcaitm.hxx:37 void SdrCaptionAngleItem::SdrCaptionAngleItem(long) long nAngle 0 @@ -1302,7 +1330,7 @@ include/svx/xftshtit.hxx:34 void XFormTextShadowTranspItem::XFormTextShadowTranspItem(unsigned short) unsigned short nShdwTransparence 0 -include/svx/xtable.hxx:221 +include/svx/xtable.hxx:217 class rtl::Reference<class XPropertyList> XPropertyList::CreatePropertyListFromURL(enum XPropertyListType,const class rtl::OUString &) enum XPropertyListType t 0 @@ -1334,7 +1362,7 @@ include/tools/datetime.hxx:43 void DateTime::DateTime(enum DateTime::DateTimeInitSystem) enum DateTime::DateTimeInitSystem 0 -include/tools/fract.hxx:44 +include/tools/fract.hxx:45 void Fraction::Fraction(type-parameter-?-?,type-parameter-?-?,typename enable_if<std::is_integral<T1>::value && std::is_integral<T2>::value, int>::type) typename enable_if<std::is_integral<T1>::value && std::is_integral<T2>::value, int>::type 0 @@ -1378,10 +1406,18 @@ include/tools/urlobj.hxx:351 class rtl::OUString INetURLObject::GetRelURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle) enum INetURLObject::EncodeMechanism eEncodeMechanism 1 -include/tools/urlobj.hxx:840 +include/tools/urlobj.hxx:846 class rtl::OUString INetURLObject::encode(const class rtl::OUString &,enum INetURLObject::Part,enum INetURLObject::EncodeMechanism,unsigned short) enum INetURLObject::EncodeMechanism eMechanism 0 +include/unotools/calendarwrapper.hxx:71 + void CalendarWrapper::loadDefaultCalendar(const struct com::sun::star::lang::Locale &,_Bool) + _Bool bTimeZoneUTC + 1 +include/unotools/calendarwrapper.hxx:73 + void CalendarWrapper::loadCalendar(const class rtl::OUString &,const struct com::sun::star::lang::Locale &,_Bool) + _Bool bTimeZoneUTC + 1 include/unotools/charclass.hxx:135 class rtl::OUString CharClass::titlecase(const class rtl::OUString &,int,int) const int nPos @@ -1466,22 +1502,22 @@ include/vcl/alpha.hxx:58 void AlphaMask::Replace(unsigned char,unsigned char) unsigned char cSearchTransparency 0 -include/vcl/bitmapex.hxx:407 - class BitmapEx BitmapEx::getTransformed(const class basegfx::B2DHomMatrix &,const class basegfx::B2DRange &,double,_Bool) const - _Bool bSmooth - 1 include/vcl/button.hxx:87 void Button::EnableImageDisplay(_Bool) _Bool bEnable 1 -include/vcl/combobox.hxx:81 - void ComboBox::EnableDDAutoWidth(_Bool) - _Bool b - 0 -include/vcl/combobox.hxx:122 +include/vcl/button.hxx:88 + void Button::EnableTextDisplay(_Bool) + _Bool bEnable + 1 +include/vcl/combobox.hxx:120 void ComboBox::EnableMultiSelection(_Bool) _Bool bMulti 0 +include/vcl/dialog.hxx:92 + void Dialog::Dialog(class vcl::Window *,const class rtl::OUString &,const class rtl::OUString &,enum WindowType,enum Dialog::InitFlag,_Bool) + enum Dialog::InitFlag eFlag + 0 include/vcl/dibtools.hxx:40 _Bool ReadDIB(class Bitmap &,class SvStream &,_Bool,_Bool) _Bool bMSOFormat @@ -1506,6 +1542,10 @@ include/vcl/errcode.hxx:66 void ErrCode::ErrCode(enum WarningFlag,enum ErrCodeArea,enum ErrCodeClass,unsigned short) enum WarningFlag 0 +include/vcl/field.hxx:82 + void FormatterBase::EnableEmptyFieldValue(_Bool) + _Bool bEnable + 1 include/vcl/field.hxx:505 double MetricField::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit) long nBaseValue @@ -1534,34 +1574,38 @@ include/vcl/mtfxmldump.hxx:34 void MetafileXmlDump::filterActionType(const enum MetaActionType,_Bool) _Bool bShouldFilter 0 -include/vcl/outdev.hxx:530 +include/vcl/outdev.hxx:529 _Bool OutputDevice::SupportsOperation(enum OutDevSupportType) const enum OutDevSupportType 0 -include/vcl/outdev.hxx:1175 +include/vcl/outdev.hxx:1185 void OutputDevice::ImplDrawWaveTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool) long nY 0 -include/vcl/outdev.hxx:1176 +include/vcl/outdev.hxx:1186 void OutputDevice::ImplDrawStraightTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool) long nY 0 -include/vcl/outdev.hxx:1177 +include/vcl/outdev.hxx:1187 void OutputDevice::ImplDrawStrikeoutLine(long,long,long,long,long,enum FontStrikeout,class Color) long nY 0 -include/vcl/outdev.hxx:1178 +include/vcl/outdev.hxx:1188 void OutputDevice::ImplDrawStrikeoutChar(long,long,long,long,long,enum FontStrikeout,class Color) long nY 0 -include/vcl/outdev.hxx:1200 +include/vcl/outdev.hxx:1210 void OutputDevice::RefreshFontData(const _Bool) const _Bool bNewFontLists 1 -include/vcl/outdev.hxx:1336 +include/vcl/outdev.hxx:1349 _Bool OutputDevice::GetTextIsRTL(const class rtl::OUString &,int,int) const int nIndex 0 +include/vcl/outdev/ScopedStates.hxx:25 + void vcl::ScopedAntialiasing::ScopedAntialiasing(class OutputDevice &,_Bool) + _Bool bAAState + 1 include/vcl/splitwin.hxx:137 void SplitWindow::InsertItem(unsigned short,long,unsigned short,unsigned short,enum SplitWindowItemFlags) unsigned short nIntoSetId @@ -1570,11 +1614,15 @@ include/vcl/splitwin.hxx:159 long SplitWindow::GetItemSize(unsigned short,enum SplitWindowItemFlags) const enum SplitWindowItemFlags nBits 1 -include/vcl/svimpbox.hxx:186 +include/vcl/status.hxx:36 + void DrawProgress(class vcl::Window *,class OutputDevice &,const class Point &,long,long,long,unsigned short,unsigned short,unsigned short,const class tools::Rectangle &) + unsigned short nPercent1 + 0 +include/vcl/svimpbox.hxx:187 void SvImpLBox::FindMostRight(class SvTreeListEntry *,class SvTreeListEntry *) class SvTreeListEntry * EntryToIgnore 0 -include/vcl/svimpbox.hxx:279 +include/vcl/svimpbox.hxx:280 void SvImpLBox::SelectEntry(class SvTreeListEntry *,_Bool) _Bool bSelect 0 @@ -1586,47 +1634,39 @@ include/vcl/syschild.hxx:50 void SystemChildWindow::EnableEraseBackground(_Bool) _Bool bEnable 0 -include/vcl/texteng.hxx:286 - void TextEngine::RemoveAttribs(unsigned int,unsigned short) - unsigned int nPara +include/vcl/texteng.hxx:263 + void TextEngine::UndoActionStart(unsigned short) + unsigned short nId 0 -include/vcl/textview.hxx:215 - void TextView::SupportProtectAttribute(_Bool) - _Bool bSupport - 1 include/vcl/timer.hxx:56 void Timer::Invoke(class Timer *) class Timer * arg 0 -include/vcl/toolbox.hxx:311 - void ToolBox::InsertItem(unsigned short,const class Image &,enum ToolBoxItemBits,unsigned long) - enum ToolBoxItemBits nBits - 0 -include/vcl/toolbox.hxx:321 +include/vcl/toolbox.hxx:327 void ToolBox::InsertWindow(unsigned short,class vcl::Window *,enum ToolBoxItemBits,unsigned long) enum ToolBoxItemBits nBits 0 -include/vcl/toolbox.hxx:431 +include/vcl/toolbox.hxx:433 class Size ToolBox::CalcWindowSizePixel(unsigned long,enum WindowAlign) unsigned long nCalcLines 1 -include/vcl/toolbox.hxx:455 +include/vcl/toolbox.hxx:457 void ToolBox::EnableCustomize(_Bool) _Bool bEnable 1 -include/vcl/treelistbox.hxx:603 +include/vcl/treelistbox.hxx:596 class SvTreeListEntry * SvTreeListBox::InsertEntry(const class rtl::OUString &,const class Image &,const class Image &,class SvTreeListEntry *,_Bool,unsigned long,void *,enum SvLBoxButtonKind) enum SvLBoxButtonKind eButtonKind 0 -include/vcl/treelistbox.hxx:679 +include/vcl/treelistbox.hxx:671 void SvTreeListBox::MakeVisible(class SvTreeListEntry *,_Bool) _Bool bMoveToTop 1 -include/vcl/treelistbox.hxx:705 +include/vcl/treelistbox.hxx:697 unsigned long SvTreeListBox::SelectChildren(class SvTreeListEntry *,_Bool) _Bool bSelect 0 -include/vcl/treelistbox.hxx:729 +include/vcl/treelistbox.hxx:721 void SvTreeListBox::EnableAsyncDrag(_Bool) _Bool b 1 @@ -1662,143 +1702,147 @@ include/vcl/vectorgraphicdata.hxx:84 void VectorGraphicData::VectorGraphicData(const class rtl::OUString &,enum VectorGraphicDataType) enum VectorGraphicDataType eVectorDataType 0 -include/vcl/weld.hxx:238 - void weld::ScrolledWindow::vadjustment_configure(int,int,int,int,int,int) - int step_increment - 1 -include/vcl/weld.hxx:238 +include/vcl/weld.hxx:283 void weld::ScrolledWindow::vadjustment_configure(int,int,int,int,int,int) int lower 0 -include/vcl/weld.hxx:576 - void weld::TreeView::set_sensitive(int,_Bool,int) - _Bool bSensitive - 0 -include/vcl/weld.hxx:683 - int weld::TreeView::get_column_width(int) const - int nCol +include/vcl/weld.hxx:294 + void weld::ScrolledWindow::vadjustment_set_lower(int) + int upper 0 -include/vcl/weld.hxx:839 - void weld::Scale::set_range(int,int) - int min +include/vcl/weld.hxx:715 + void weld::TreeView::set_text_emphasis(int,_Bool,int) + _Bool bOn 1 -include/vcl/weld.hxx:1449 - void weld::Menu::show(const class rtl::OString &,_Bool) - _Bool bShow +include/vcl/weld.hxx:716 + _Bool weld::TreeView::get_text_emphasis(int,int) const + int col + 0 +include/vcl/weld.hxx:789 + void weld::TreeView::set_toggle(const class weld::TreeIter &,enum TriState,int) + int col + 0 +include/vcl/weld.hxx:790 + enum TriState weld::TreeView::get_toggle(const class weld::TreeIter &,int) const + int col + 0 +include/vcl/weld.hxx:1705 + void weld::Menu::set_visible(const class rtl::OString &,_Bool) + _Bool bVisible 0 -include/vcl/weld.hxx:1496 +include/vcl/weld.hxx:1777 class std::unique_ptr<class weld::MessageDialog, struct std::default_delete<class weld::MessageDialog> > weld::Builder::weld_message_dialog(const class rtl::OString &,_Bool) _Bool bTakeOwnership 1 -include/vcl/weld.hxx:1499 +include/vcl/weld.hxx:1780 class std::unique_ptr<class weld::Dialog, struct std::default_delete<class weld::Dialog> > weld::Builder::weld_dialog(const class rtl::OString &,_Bool) _Bool bTakeOwnership 1 -include/vcl/weld.hxx:1501 +include/vcl/weld.hxx:1781 + class std::unique_ptr<class weld::AboutDialog, struct std::default_delete<class weld::AboutDialog> > weld::Builder::weld_about_dialog(const class rtl::OString &,_Bool) + _Bool bTakeOwnership + 1 +include/vcl/weld.hxx:1785 class std::unique_ptr<class weld::Widget, struct std::default_delete<class weld::Widget> > weld::Builder::weld_widget(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1502 +include/vcl/weld.hxx:1786 class std::unique_ptr<class weld::Container, struct std::default_delete<class weld::Container> > weld::Builder::weld_container(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1505 +include/vcl/weld.hxx:1789 class std::unique_ptr<class weld::Button, struct std::default_delete<class weld::Button> > weld::Builder::weld_button(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1506 +include/vcl/weld.hxx:1790 class std::unique_ptr<class weld::MenuButton, struct std::default_delete<class weld::MenuButton> > weld::Builder::weld_menu_button(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1510 +include/vcl/weld.hxx:1794 class std::unique_ptr<class weld::ScrolledWindow, struct std::default_delete<class weld::ScrolledWindow> > weld::Builder::weld_scrolled_window(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1513 +include/vcl/weld.hxx:1797 class std::unique_ptr<class weld::Notebook, struct std::default_delete<class weld::Notebook> > weld::Builder::weld_notebook(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1515 - class std::unique_ptr<class weld::ToggleButton, struct std::default_delete<class weld::ToggleButton> > weld::Builder::weld_toggle_button(const class rtl::OString &,_Bool) - _Bool bTakeOwnership - 0 -include/vcl/weld.hxx:1518 +include/vcl/weld.hxx:1802 class std::unique_ptr<class weld::RadioButton, struct std::default_delete<class weld::RadioButton> > weld::Builder::weld_radio_button(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1521 +include/vcl/weld.hxx:1805 class std::unique_ptr<class weld::CheckButton, struct std::default_delete<class weld::CheckButton> > weld::Builder::weld_check_button(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1524 +include/vcl/weld.hxx:1808 class std::unique_ptr<class weld::LinkButton, struct std::default_delete<class weld::LinkButton> > weld::Builder::weld_link_button(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1531 +include/vcl/weld.hxx:1815 class std::unique_ptr<class weld::MetricSpinButton, struct std::default_delete<class weld::MetricSpinButton> > weld::Builder::weld_metric_spin_button(const class rtl::OString &,enum FieldUnit,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1533 +include/vcl/weld.hxx:1817 class std::unique_ptr<class weld::FormattedSpinButton, struct std::default_delete<class weld::FormattedSpinButton> > weld::Builder::weld_formatted_spin_button(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1535 - class std::unique_ptr<class weld::TimeSpinButton, struct std::default_delete<class weld::TimeSpinButton> > weld::Builder::weld_time_spin_button(const class rtl::OString &,enum TimeFieldFormat,_Bool) - enum TimeFieldFormat eFormat - 1 -include/vcl/weld.hxx:1535 +include/vcl/weld.hxx:1819 class std::unique_ptr<class weld::TimeSpinButton, struct std::default_delete<class weld::TimeSpinButton> > weld::Builder::weld_time_spin_button(const class rtl::OString &,enum TimeFieldFormat,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1537 +include/vcl/weld.hxx:1821 class std::unique_ptr<class weld::ComboBox, struct std::default_delete<class weld::ComboBox> > weld::Builder::weld_combo_box(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1541 +include/vcl/weld.hxx:1825 class std::unique_ptr<class weld::Label, struct std::default_delete<class weld::Label> > weld::Builder::weld_label(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1542 +include/vcl/weld.hxx:1826 class std::unique_ptr<class weld::TextView, struct std::default_delete<class weld::TextView> > weld::Builder::weld_text_view(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1544 +include/vcl/weld.hxx:1828 class std::unique_ptr<class weld::Expander, struct std::default_delete<class weld::Expander> > weld::Builder::weld_expander(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1547 +include/vcl/weld.hxx:1831 class std::unique_ptr<class weld::Scale, struct std::default_delete<class weld::Scale> > weld::Builder::weld_scale(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1548 +include/vcl/weld.hxx:1832 class std::unique_ptr<class weld::ProgressBar, struct std::default_delete<class weld::ProgressBar> > weld::Builder::weld_progress_bar(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1551 +include/vcl/weld.hxx:1835 class std::unique_ptr<class weld::Spinner, struct std::default_delete<class weld::Spinner> > weld::Builder::weld_spinner(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1553 +include/vcl/weld.hxx:1837 class std::unique_ptr<class weld::Image, struct std::default_delete<class weld::Image> > weld::Builder::weld_image(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1554 +include/vcl/weld.hxx:1838 class std::unique_ptr<class weld::Calendar, struct std::default_delete<class weld::Calendar> > weld::Builder::weld_calendar(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1557 +include/vcl/weld.hxx:1841 class std::unique_ptr<class weld::DrawingArea, struct std::default_delete<class weld::DrawingArea> > weld::Builder::weld_drawing_area(const class rtl::OString &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class std::function<class std::unique_ptr<class UIObject, struct std::default_delete<class UIObject> > (class vcl::Window *)>,void *,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1562 +include/vcl/weld.hxx:1846 class std::unique_ptr<class weld::EntryTreeView, struct std::default_delete<class weld::EntryTreeView> > weld::Builder::weld_entry_tree_view(const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1565 +include/vcl/weld.hxx:1849 class std::unique_ptr<class weld::Menu, struct std::default_delete<class weld::Menu> > weld::Builder::weld_menu(const class rtl::OString &,_Bool) _Bool bTakeOwnership 1 -include/vcl/window.hxx:603 +include/vcl/weld.hxx:1850 + class std::unique_ptr<class weld::Toolbar, struct std::default_delete<class weld::Toolbar> > weld::Builder::weld_toolbar(const class rtl::OString &,_Bool) + _Bool bTakeOwnership + 1 +include/vcl/window.hxx:604 void vcl::Window::ImplSetMouseTransparent(_Bool) _Bool bTransparent 1 @@ -1882,6 +1926,10 @@ lotuswordpro/inc/xfilter/xfutil.hxx:92 class rtl::OUString GetColorMode(enum enumXFColorMode) enum enumXFColorMode mode 0 +lotuswordpro/source/filter/bento.hxx:205 + class OpenStormBento::CBenObject * OpenStormBento::LtcBenContainer::FindNextObjectWithProperty(class OpenStormBento::CBenObject *,unsigned int) + class OpenStormBento::CBenObject * pCurrObject + 0 lotuswordpro/source/filter/clone.hxx:26 char & detail::has_clone::check_sig(type-parameter-?-? *,test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> *) type-parameter-?-? * @@ -1920,15 +1968,15 @@ oox/source/ppt/timenodelistcontext.cxx:103 0 oox/source/ppt/timenodelistcontext.cxx:103 void oox::ppt::AnimColor::AnimColor(short,int,int,int) - int t + int o 0 oox/source/ppt/timenodelistcontext.cxx:103 void oox::ppt::AnimColor::AnimColor(short,int,int,int) - int th + int t 0 oox/source/ppt/timenodelistcontext.cxx:103 void oox::ppt::AnimColor::AnimColor(short,int,int,int) - int o + int th 0 oox/source/vml/vmlformatting.cxx:543 long lclGetEmu(const class oox::GraphicHelper &,const class oox::OptValue<class rtl::OUString> &,long) @@ -1938,27 +1986,27 @@ oox/source/vml/vmlshapecontext.cxx:129 _Bool lclDecodeVmlxBool(const class rtl::OUString &,_Bool) _Bool bDefaultForEmpty 1 -opencl/source/opencl_device.cxx:116 +opencl/source/opencl_device.cxx:114 double random(double,double) double min 0 -opencl/source/openclwrapper.cxx:534 +opencl/source/openclwrapper.cxx:530 _Bool initOpenCLRunEnv(int) int argc 0 -pyuno/inc/pyuno.hxx:90 +pyuno/inc/pyuno.hxx:92 void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire) enum __sal_NoAcquire 0 -pyuno/inc/pyuno.hxx:92 +pyuno/inc/pyuno.hxx:94 void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull) enum __sal_NoAcquire 0 -pyuno/inc/pyuno.hxx:92 +pyuno/inc/pyuno.hxx:94 void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull) enum pyuno::NotNull 0 -pyuno/source/module/pyuno_impl.hxx:166 +pyuno/source/module/pyuno_impl.hxx:165 void log(struct pyuno::RuntimeCargo *,int,const class rtl::OUString &) int level 1 @@ -1994,7 +2042,7 @@ reportdesign/source/ui/report/SectionWindow.cxx:363 void lcl_setOrigin(class vcl::Window &,long,long) long _nY 0 -sal/osl/unx/file.cxx:95 +sal/osl/unx/file.cxx:97 void FileHandle_Impl::FileHandle_Impl(int,enum FileHandle_Impl::Kind,const char *) enum FileHandle_Impl::Kind kind 1 @@ -2018,18 +2066,30 @@ sal/qa/rtl/random/rtl_random.cxx:170 void rtl_random::Statistics::addValue(unsigned char,int) int _nValue 1 -sc/inc/address.hxx:330 +sc/inc/address.hxx:331 void ScAddress::Format(class rtl::OStringBuffer &,enum ScRefFlags,const class ScDocument *,const struct ScAddress::Details &) const const class ScDocument * pDocument 0 -sc/inc/address.hxx:496 +sc/inc/address.hxx:504 void ScRange::ScRange(enum ScAddress::Uninitialized) enum ScAddress::Uninitialized eUninitialized 0 -sc/inc/address.hxx:499 +sc/inc/address.hxx:507 void ScRange::ScRange(enum ScAddress::InitializeInvalid) enum ScAddress::InitializeInvalid eInvalid 0 +sc/inc/attarray.hxx:143 + const class ScPatternAttr * ScAttrArray::SetPattern(int,class std::unique_ptr<class ScPatternAttr, struct std::default_delete<class ScPatternAttr> >,_Bool) + _Bool bPutToPool + 1 +sc/inc/attarray.hxx:145 + void ScAttrArray::SetPatternArea(int,int,class std::unique_ptr<class ScPatternAttr, struct std::default_delete<class ScPatternAttr> >,_Bool,class ScEditDataArray *) + class ScEditDataArray * pDataArray + 0 +sc/inc/attarray.hxx:145 + void ScAttrArray::SetPatternArea(int,int,class std::unique_ptr<class ScPatternAttr, struct std::default_delete<class ScPatternAttr> >,_Bool,class ScEditDataArray *) + _Bool bPutToPool + 1 sc/inc/cellform.hxx:41 class rtl::OUString ScCellFormat::GetString(class ScDocument &,const class ScAddress &,unsigned int,class Color **,class SvNumberFormatter &,_Bool,_Bool) _Bool bFormula @@ -2050,16 +2110,40 @@ sc/inc/chgtrack.hxx:711 void ScChangeActionContent::PutOldValueToDoc(class ScDocument *,short,int) const int nDy 0 -sc/inc/column.hxx:243 +sc/inc/column.hxx:220 + _Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const + _Bool bConsiderCellDrawObjects + 0 +sc/inc/column.hxx:220 + _Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const + _Bool bConsiderCellNotes + 0 +sc/inc/column.hxx:222 + _Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool) + _Bool bConsiderCellDrawObjects + 0 +sc/inc/column.hxx:222 + _Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool) + _Bool bConsiderCellNotes + 0 +sc/inc/column.hxx:249 void ScColumn::GetUnprotectedCells(int,int,class ScRangeList &) const int nStartRow 0 -sc/inc/column.hxx:330 +sc/inc/column.hxx:336 class ScFormulaCell * ScColumn::SetFormulaCell(int,class ScFormulaCell *,enum sc::StartListeningType,_Bool) _Bool bInheritNumFormatIfNeeded 1 -sc/inc/column.hxx:698 - void ScColumn::AttachNewFormulaCell(const class mdds::detail::mtv::iterator_base<struct mdds::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> >, class sc::CellStoreEvent>::iterator_trait, struct mdds::detail::mtv::private_data_forward_update<struct mdds::detail::mtv::iterator_value_node<unsigned long, struct mdds::mtv::base_element_block> > > &,int,class ScFormulaCell &,_Bool,enum sc::StartListeningType) +sc/inc/column.hxx:366 + void ScColumn::GetString(struct sc::ColumnBlockConstPosition &,int,class rtl::OUString &,const struct ScInterpreterContext *) const + const struct ScInterpreterContext * pContext + 0 +sc/inc/column.hxx:667 + void ScColumn::DetachFormulaCells(class sc::EndListeningContext &,int,int,class std::__debug::vector<int, class std::allocator<int> > *) + class std::__debug::vector<int, class std::allocator<int> > * pNewSharedRows + 0 +sc/inc/column.hxx:723 + void ScColumn::AttachNewFormulaCell(const class mdds::detail::mtv::iterator_base<struct mdds::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> >, class sc::CellStoreEvent>::iterator_trait, struct mdds::detail::mtv::private_data_forward_update<struct mdds::detail::mtv::iterator_value_node<unsigned long, struct mdds::mtv::base_element_block> > > &,int,class ScFormulaCell &,const class std::__debug::vector<int, class std::allocator<int> > &,_Bool,enum sc::StartListeningType) _Bool bJoin 1 sc/inc/columnspanset.hxx:59 @@ -2086,23 +2170,23 @@ sc/inc/columnspanset.hxx:102 void sc::ColumnSpanSet::scan(const class ScDocument &,short,short,int,short,int,_Bool) _Bool bVal 1 -sc/inc/compiler.hxx:349 +sc/inc/compiler.hxx:350 void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *) - const struct ScInterpreterContext * pContext + _Bool bMatrixFlag 0 -sc/inc/compiler.hxx:349 +sc/inc/compiler.hxx:350 void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *) - _Bool bComputeII + const struct ScInterpreterContext * pContext 0 -sc/inc/compiler.hxx:349 +sc/inc/compiler.hxx:350 void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *) - _Bool bMatrixFlag + _Bool bComputeII 0 -sc/inc/compiler.hxx:355 +sc/inc/compiler.hxx:356 void ScCompiler::ScCompiler(class ScDocument *,const class ScAddress &,enum formula::FormulaGrammar::Grammar,_Bool,_Bool,const struct ScInterpreterContext *) const struct ScInterpreterContext * pContext 0 -sc/inc/compiler.hxx:385 +sc/inc/compiler.hxx:386 char16_t ScCompiler::GetNativeAddressSymbol(enum ScCompiler::Convention::SpecialSymbolType) const enum ScCompiler::Convention::SpecialSymbolType eType 0 @@ -2118,139 +2202,139 @@ sc/inc/dapiuno.hxx:307 void ScFieldIdentifier::ScFieldIdentifier(const class rtl::OUString &,_Bool) _Bool bDataLayout 1 -sc/inc/dociter.hxx:536 +sc/inc/dociter.hxx:538 void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument *,short,short,int,short,int) - int nRow1 + short nCol1 0 -sc/inc/dociter.hxx:536 +sc/inc/dociter.hxx:538 void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument *,short,short,int,short,int) - short nCol1 + int nRow1 0 -sc/inc/document.hxx:929 +sc/inc/document.hxx:940 void ScDocument::SetPendingRowHeights(short,_Bool) _Bool bSet 0 -sc/inc/document.hxx:933 +sc/inc/document.hxx:944 void ScDocument::SetScenario(short,_Bool) _Bool bFlag 1 -sc/inc/document.hxx:1129 +sc/inc/document.hxx:1140 class rtl::OUString ScDocument::GetString(short,int,short,const struct ScInterpreterContext *) const const struct ScInterpreterContext * pContext 0 -sc/inc/document.hxx:1269 +sc/inc/document.hxx:1280 void ScDocument::GetBorderLines(short,int,short,const class editeng::SvxBorderLine **,const class editeng::SvxBorderLine **,const class editeng::SvxBorderLine **,const class editeng::SvxBorderLine **) const short nTab 0 -sc/inc/document.hxx:1495 +sc/inc/document.hxx:1506 void ScDocument::EnableUserInteraction(_Bool) _Bool bVal 0 -sc/inc/document.hxx:1582 +sc/inc/document.hxx:1593 void ScDocument::CopyMultiRangeFromClip(const class ScAddress &,const class ScMarkData &,enum InsertDeleteFlags,class ScDocument *,_Bool,_Bool,_Bool,_Bool) _Bool bResetCut 1 -sc/inc/document.hxx:1631 +sc/inc/document.hxx:1642 void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &) - _Bool bMarked + short nCol1 0 -sc/inc/document.hxx:1631 +sc/inc/document.hxx:1642 void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &) - short nCol1 + _Bool bMarked 0 -sc/inc/document.hxx:1638 +sc/inc/document.hxx:1649 void ScDocument::UndoToDocument(const class ScRange &,enum InsertDeleteFlags,_Bool,class ScDocument &) _Bool bMarked 0 -sc/inc/document.hxx:1683 +sc/inc/document.hxx:1694 const class ScPatternAttr * ScDocument::GetMostUsedPattern(short,int,int,short) const int nStartRow 0 -sc/inc/document.hxx:1827 +sc/inc/document.hxx:1845 unsigned long ScDocument::GetColWidth(short,short,short) const short nStartCol 0 -sc/inc/document.hxx:1868 +sc/inc/document.hxx:1886 void ScDocument::ShowRow(int,short,_Bool) _Bool bShow 0 -sc/inc/document.hxx:1871 +sc/inc/document.hxx:1889 void ScDocument::SetRowFlags(int,int,short,enum CRFlags) int nStartRow 0 -sc/inc/document.hxx:1876 - void ScDocument::GetAllRowBreaks(class std::__debug::set<int, struct std::less<int>, class std::allocator<int> > &,short,_Bool,_Bool) const - _Bool bPage - 0 -sc/inc/document.hxx:1876 +sc/inc/document.hxx:1894 void ScDocument::GetAllRowBreaks(class std::__debug::set<int, struct std::less<int>, class std::allocator<int> > &,short,_Bool,_Bool) const _Bool bManual 1 -sc/inc/document.hxx:1877 - void ScDocument::GetAllColBreaks(class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,short,_Bool,_Bool) const - _Bool bManual - 1 -sc/inc/document.hxx:1877 +sc/inc/document.hxx:1894 + void ScDocument::GetAllRowBreaks(class std::__debug::set<int, struct std::less<int>, class std::allocator<int> > &,short,_Bool,_Bool) const + _Bool bPage + 0 +sc/inc/document.hxx:1895 void ScDocument::GetAllColBreaks(class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,short,_Bool,_Bool) const _Bool bPage 0 -sc/inc/document.hxx:1880 - void ScDocument::SetRowBreak(int,short,_Bool,_Bool) +sc/inc/document.hxx:1895 + void ScDocument::GetAllColBreaks(class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,short,_Bool,_Bool) const _Bool bManual 1 -sc/inc/document.hxx:1880 +sc/inc/document.hxx:1898 void ScDocument::SetRowBreak(int,short,_Bool,_Bool) _Bool bPage 0 -sc/inc/document.hxx:1881 - void ScDocument::SetColBreak(short,short,_Bool,_Bool) - _Bool bPage - 0 -sc/inc/document.hxx:1881 - void ScDocument::SetColBreak(short,short,_Bool,_Bool) +sc/inc/document.hxx:1898 + void ScDocument::SetRowBreak(int,short,_Bool,_Bool) _Bool bManual 1 -sc/inc/document.hxx:1882 - void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool) +sc/inc/document.hxx:1899 + void ScDocument::SetColBreak(short,short,_Bool,_Bool) _Bool bManual 1 -sc/inc/document.hxx:1882 +sc/inc/document.hxx:1899 + void ScDocument::SetColBreak(short,short,_Bool,_Bool) + _Bool bPage + 0 +sc/inc/document.hxx:1900 void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool) _Bool bPage 0 -sc/inc/document.hxx:1883 +sc/inc/document.hxx:1900 + void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool) + _Bool bManual + 1 +sc/inc/document.hxx:1901 void ScDocument::RemoveColBreak(short,short,_Bool,_Bool) _Bool bPage 0 -sc/inc/document.hxx:1883 +sc/inc/document.hxx:1901 void ScDocument::RemoveColBreak(short,short,_Bool,_Bool) _Bool bManual 1 -sc/inc/document.hxx:2206 +sc/inc/document.hxx:2223 void ScDocument::UpdateBroadcastAreas(enum UpdateRefMode,const class ScRange &,short,int,short) enum UpdateRefMode eUpdateRefMode 0 -sc/inc/document.hxx:2219 - void ScDocument::CollectAllAreaListeners(class std::__debug::vector<class SvtListener *, class std::allocator<class SvtListener *> > &,const class ScRange &,enum sc::AreaOverlapType) - enum sc::AreaOverlapType eType - 1 -sc/inc/document.hxx:2238 +sc/inc/document.hxx:2253 void ScDocument::CalcFormulaTree(_Bool,_Bool,_Bool) _Bool bSetAllDirty 1 -sc/inc/document.hxx:2459 +sc/inc/document.hxx:2475 void ScDocument::StoreTabToCache(short,class SvStream &) const short nTab 0 -sc/inc/document.hxx:2460 +sc/inc/document.hxx:2476 void ScDocument::RestoreTabFromCache(short,class SvStream &) short nTab 0 -sc/inc/document.hxx:2554 +sc/inc/document.hxx:2552 + void ScDocument::EndListeningIntersectedGroup(class sc::EndListeningContext &,const class ScAddress &,class std::__debug::vector<class ScAddress, class std::allocator<class ScAddress> > *) + class std::__debug::vector<class ScAddress, class std::allocator<class ScAddress> > * pGroupPos + 0 +sc/inc/document.hxx:2571 void ScMutationDisable::ScMutationDisable(class ScDocument *,enum ScMutationGuardFlags) enum ScMutationGuardFlags nFlags 1 -sc/inc/document.hxx:2586 +sc/inc/document.hxx:2603 void ScMutationGuard::ScMutationGuard(class ScDocument *,enum ScMutationGuardFlags) enum ScMutationGuardFlags nFlags 1 @@ -2302,19 +2386,19 @@ sc/inc/filter.hxx:84 void ScFormatFilterPlugin::ScExportRTF(class SvStream &,class ScDocument *,const class ScRange &,const unsigned short) const unsigned short eDest 0 -sc/inc/formulacell.hxx:186 +sc/inc/formulacell.hxx:188 void ScFormulaCell::ScFormulaCell(class ScDocument *,const class ScAddress &,class std::unique_ptr<class ScTokenArray, struct std::default_delete<class ScTokenArray> >,const enum formula::FormulaGrammar::Grammar,enum ScMatrixMode) enum ScMatrixMode cMatInd 0 -sc/inc/formulacell.hxx:220 +sc/inc/formulacell.hxx:222 class rtl::OUString ScFormulaCell::GetFormula(class sc::CompileFormulaContext &,const struct ScInterpreterContext *) const const struct ScInterpreterContext * pContext 0 -sc/inc/miscuno.hxx:134 +sc/inc/miscuno.hxx:133 short ScUnoHelpFunctions::GetShortProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,short) short nDefault 0 -sc/inc/miscuno.hxx:139 +sc/inc/miscuno.hxx:138 type-parameter-?-? ScUnoHelpFunctions::GetEnumProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,type-parameter-?-?) type-parameter-?-? nDefault 0 @@ -2362,7 +2446,7 @@ sc/inc/rangeutl.hxx:210 void ScRangeStringConverter::GetStringFromRangeList(class rtl::OUString &,const class com::sun::star::uno::Sequence<struct com::sun::star::table::CellRangeAddress> &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t) enum formula::FormulaGrammar::AddressConvention eConv 0 -sc/inc/scabstdlg.hxx:454 +sc/inc/scabstdlg.hxx:453 class VclPtr<class AbstractScMetricInputDlg> ScAbstractDialogFactory::CreateScMetricInputDlg(class weld::Window *,const class rtl::OString &,long,long,enum FieldUnit,unsigned short,long,long) long nMinimum 0 @@ -2390,15 +2474,15 @@ sc/inc/scmatrix.hxx:373 unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const unsigned long nCol1 0 -sc/inc/scopetools.hxx:47 +sc/inc/scopetools.hxx:46 void sc::UndoSwitch::UndoSwitch(class ScDocument &,_Bool) _Bool bUndo 1 -sc/inc/scopetools.hxx:56 +sc/inc/scopetools.hxx:55 void sc::IdleSwitch::IdleSwitch(class ScDocument &,_Bool) _Bool bEnableIdle 0 -sc/inc/scopetools.hxx:74 +sc/inc/scopetools.hxx:65 void sc::DelayFormulaGroupingSwitch::DelayFormulaGroupingSwitch(class ScDocument &,_Bool) _Bool delay 1 @@ -2406,31 +2490,31 @@ sc/inc/stringutil.hxx:154 class rtl::OUString ScStringUtil::GetQuotedToken(const class rtl::OUString &,int,const class rtl::OUString &,char16_t,int &) int nToken 0 -sc/inc/table.hxx:774 +sc/inc/table.hxx:775 void ScTable::SetOptimalHeightOnly(class sc::RowHeightContext &,int,int,class ScProgress *,unsigned long) int nStartRow 0 -sc/inc/table.hxx:889 +sc/inc/table.hxx:890 _Bool ScTable::RowHiddenLeaf(int,int *,int *) const int * pFirstRow 0 -sc/inc/table.hxx:894 +sc/inc/table.hxx:895 void ScTable::CopyColHidden(const class ScTable &,short,short) short nStartCol 0 -sc/inc/table.hxx:895 +sc/inc/table.hxx:896 void ScTable::CopyRowHidden(const class ScTable &,int,int) int nStartRow 0 -sc/inc/table.hxx:905 +sc/inc/table.hxx:906 _Bool ScTable::ColFiltered(short,short *,short *) const short * pFirstCol 0 -sc/inc/table.hxx:907 +sc/inc/table.hxx:908 void ScTable::CopyColFiltered(const class ScTable &,short,short) short nStartCol 0 -sc/inc/table.hxx:908 +sc/inc/table.hxx:909 void ScTable::CopyRowFiltered(const class ScTable &,int,int) int nStartRow 0 @@ -2438,7 +2522,7 @@ sc/inc/token.hxx:265 void ScRefListToken::ScRefListToken(_Bool) _Bool bArrayResult 1 -sc/inc/types.hxx:108 +sc/inc/types.hxx:107 void sc::MultiDataCellState::MultiDataCellState(enum sc::MultiDataCellState::StateType) enum sc::MultiDataCellState::StateType eState 1 @@ -2446,19 +2530,23 @@ sc/qa/extras/new_cond_format.cxx:185 void testShowValue(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool) _Bool bShowVal 1 +sc/qa/extras/scpdfexport.cxx:53 + void ScPDFExportTest::setFont(class ScFieldEditEngine &,int,int,const class rtl::OUString &) + int nStart + 0 sc/qa/unit/helper/qahelper.hxx:220 void testFormats(class ScBootstrapFixture *,class ScDocument *,int) int nFormat 0 -sc/qa/unit/subsequent_export-test.cxx:1236 +sc/qa/unit/subsequent_export-test.cxx:1270 void setAttribute(class ScFieldEditEngine &,int,int,int,unsigned short,class Color) int nPara 0 -sc/qa/unit/subsequent_export-test.cxx:1293 +sc/qa/unit/subsequent_export-test.cxx:1327 void setFont(class ScFieldEditEngine &,int,int,int,const class rtl::OUString &) int nPara 0 -sc/qa/unit/subsequent_export-test.cxx:1306 +sc/qa/unit/subsequent_export-test.cxx:1340 void setEscapement(class ScFieldEditEngine &,int,int,int,short,unsigned char) int nPara 0 @@ -2466,23 +2554,19 @@ sc/qa/unit/ucalc.hxx:49 void Test::clearSheet(class ScDocument *,short) short nTab 0 -sc/qa/unit/ucalc.hxx:50 - class ScUndoCut * Test::cutToClip(class ScDocShell &,const class ScRange &,class ScDocument *,_Bool) - _Bool bCreateUndo - 1 -sc/source/core/data/dociter.cxx:1266 +sc/source/core/data/dociter.cxx:1276 void BoolResetter::BoolResetter(_Bool &,_Bool) _Bool b 1 -sc/source/core/data/drwlayer.cxx:1991 +sc/source/core/data/drwlayer.cxx:2002 void DeleteFirstUserDataOfType(class SdrObject *,unsigned short) unsigned short nId 1 -sc/source/core/data/postit.cxx:405 +sc/source/core/data/postit.cxx:410 void (anonymous namespace)::ScNoteCaptionCreator::ScNoteCaptionCreator(class ScDocument &,const class ScAddress &,class ScCaptionPtr &,_Bool) _Bool bShown 1 -sc/source/core/opencl/formulagroupcl.cxx:1063 +sc/source/core/opencl/formulagroupcl.cxx:1061 class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowDeclRef(_Bool) const _Bool nested 0 @@ -2494,31 +2578,31 @@ sc/source/core/opencl/opbase.hxx:132 class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::DynamicKernelArgument::GenStringSlidingWindowDeclRef(_Bool) const _Bool 0 -sc/source/core/tool/compiler.cxx:751 +sc/source/core/tool/compiler.cxx:755 void ConventionOOO_A1::ConventionOOO_A1(enum formula::FormulaGrammar::AddressConvention) enum formula::FormulaGrammar::AddressConvention eConv 1 -sc/source/core/tool/scmatrix.cxx:3309 +sc/source/core/tool/scmatrix.cxx:3303 double matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const - type-parameter-?-? aOp + double b 0 -sc/source/core/tool/scmatrix.cxx:3309 +sc/source/core/tool/scmatrix.cxx:3303 double matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const - double b + type-parameter-?-? aOp 0 -sc/source/filter/excel/xeformula.cxx:387 +sc/source/filter/excel/xeformula.cxx:388 void XclExpFmlaCompImpl::ConvertRefData(struct ScComplexRefData &,struct XclRange &,_Bool) const _Bool bNatLangRef 0 -sc/source/filter/excel/xeformula.cxx:405 +sc/source/filter/excel/xeformula.cxx:406 void XclExpFmlaCompImpl::Append(unsigned char,unsigned long) unsigned char nData 0 -sc/source/filter/excel/xeformula.cxx:407 +sc/source/filter/excel/xeformula.cxx:408 void XclExpFmlaCompImpl::Append(unsigned int) unsigned int nData 0 -sc/source/filter/excel/xeformula.cxx:447 +sc/source/filter/excel/xeformula.cxx:448 void XclExpFmlaCompImpl::AppendExt(unsigned char,unsigned long) unsigned char nData 0 @@ -2526,7 +2610,7 @@ sc/source/filter/excel/xihelper.cxx:141 class std::unique_ptr<class EditTextObject, struct std::default_delete<class EditTextObject> > lclCreateTextObject(const class XclImpRoot &,const class XclImpString &,enum XclFontItemType,unsigned short) enum XclFontItemType eType 1 -sc/source/filter/html/htmlpars.cxx:1636 +sc/source/filter/html/htmlpars.cxx:1638 type-parameter-?-? getLimitedValue(const type-parameter-?-? &,const type-parameter-?-? &,const type-parameter-?-? &) const type-parameter-?-? & rMin 1 @@ -2562,7 +2646,7 @@ sc/source/filter/inc/excrecds.hxx:180 void XclExpSheetProtection::XclExpSheetProtection(_Bool,short) _Bool bValue 1 -sc/source/filter/inc/formel.hxx:103 +sc/source/filter/inc/formel.hxx:101 enum ConvErr ExcelConverterBase::Convert(class ScRangeListTabs &,class XclImpStream &,unsigned long,short,const enum FORMULA_TYPE) const enum FORMULA_TYPE eFT 1 @@ -2620,13 +2704,13 @@ sc/source/filter/inc/xechart.hxx:338 1 sc/source/filter/inc/xechart.hxx:366 void XclExpChFrame::SetAutoFlags(_Bool,_Bool) - _Bool bAutoPos + _Bool bAutoSize 0 sc/source/filter/inc/xechart.hxx:366 void XclExpChFrame::SetAutoFlags(_Bool,_Bool) - _Bool bAutoSize + _Bool bAutoPos 0 -sc/source/filter/inc/xeextlst.hxx:187 +sc/source/filter/inc/xeextlst.hxx:199 class std::shared_ptr<class XclExpExt> XclExtLst::GetItem(enum XclExpExtType) enum XclExpExtType eType 0 @@ -2658,57 +2742,9 @@ sc/source/filter/inc/xepivot.hxx:269 unsigned short XclExpPTField::GetItemIndex(const class rtl::OUString &,unsigned short) const unsigned short nDefaultIdx 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value5 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value13 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value4 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value14 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value9 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value2 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value10 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value6 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value11 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value8 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value12 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value7 - 0 -sc/source/filter/inc/xestream.hxx:336 - class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t) - const char * value3 +sc/source/filter/inc/xestream.hxx:290 + void XclExpXmlStream::WriteAttributes(int,const type-parameter-?-? &,type-parameter-?-?...) + ###27 0 sc/source/filter/inc/xestring.hxx:74 void XclExpString::Assign(char16_t) @@ -2810,11 +2846,11 @@ sc/source/filter/xml/xmlstyli.hxx:155 void XMLTableStylesContext::XMLTableStylesContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,const _Bool) unsigned short nPrfx 0 -sc/source/ui/dbgui/csvgrid.cxx:51 +sc/source/ui/dbgui/csvgrid.cxx:53 void Func_SetType::Func_SetType(int) int nType 0 -sc/source/ui/dbgui/csvgrid.cxx:59 +sc/source/ui/dbgui/csvgrid.cxx:61 void Func_Select::Func_Select(_Bool) _Bool bSelect 0 @@ -2822,18 +2858,22 @@ sc/source/ui/inc/AccessibleDocument.hxx:250 void ScAccessibleDocument::RemoveChild(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,_Bool) _Bool bFireEvent 1 -sc/source/ui/inc/acredlin.hxx:115 - class SvTreeListEntry * ScAcceptChgDlg::AppendFilteredAction(const class ScChangeAction *,enum ScChangeActionState,class SvTreeListEntry *,_Bool,_Bool) +sc/source/ui/inc/acredlin.hxx:119 + class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > ScAcceptChgDlg::AppendFilteredAction(const class ScChangeAction *,enum ScChangeActionState,_Bool,const class weld::TreeIter *,_Bool,_Bool) _Bool bDelMaster 0 -sc/source/ui/inc/acredlin.hxx:115 - class SvTreeListEntry * ScAcceptChgDlg::AppendFilteredAction(const class ScChangeAction *,enum ScChangeActionState,class SvTreeListEntry *,_Bool,_Bool) +sc/source/ui/inc/acredlin.hxx:119 + class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > ScAcceptChgDlg::AppendFilteredAction(const class ScChangeAction *,enum ScChangeActionState,_Bool,const class weld::TreeIter *,_Bool,_Bool) _Bool bDisabled 0 -sc/source/ui/inc/anyrefdg.hxx:86 +sc/source/ui/inc/anyrefdg.hxx:74 void ScFormulaReferenceHelper::EnableSpreadsheets(_Bool) _Bool bFlag 1 +sc/source/ui/inc/anyrefdg.hxx:147 + void ScRefHdlrControllerImpl::ScRefHdlrControllerImpl<TBase, bBindRef>(class weld::Window *,const class rtl::OUString &,const class rtl::OString &,const class SfxItemSet *,class SfxBindings *) + class SfxBindings * pB + 0 sc/source/ui/inc/dbdocfun.hxx:85 _Bool ScDBDocFunc::RepeatDB(const class rtl::OUString &,_Bool,_Bool,short) _Bool bApi @@ -2843,30 +2883,34 @@ sc/source/ui/inc/docfunc.hxx:100 _Bool bInteraction 1 sc/source/ui/inc/docfunc.hxx:111 + _Bool ScDocFunc::SetFormulaCells(const class ScAddress &,class std::__debug::vector<class ScFormulaCell *, class std::allocator<class ScFormulaCell *> > &,_Bool) + _Bool bInteraction + 1 +sc/source/ui/inc/docfunc.hxx:112 void ScDocFunc::PutData(const class ScAddress &,class ScEditEngineDefaulter &,_Bool) _Bool bApi 1 -sc/source/ui/inc/docfunc.hxx:112 +sc/source/ui/inc/docfunc.hxx:113 _Bool ScDocFunc::SetCellText(const class ScAddress &,const class rtl::OUString &,_Bool,_Bool,_Bool,const enum formula::FormulaGrammar::Grammar) _Bool bApi 1 -sc/source/ui/inc/docfunc.hxx:118 +sc/source/ui/inc/docfunc.hxx:119 void ScDocFunc::SetNoteText(const class ScAddress &,const class rtl::OUString &,_Bool) _Bool bApi 0 -sc/source/ui/inc/docfunc.hxx:140 +sc/source/ui/inc/docfunc.hxx:141 _Bool ScDocFunc::SetTabBgColor(class std::__debug::vector<struct ScUndoTabColorInfo, class std::allocator<struct ScUndoTabColorInfo> > &,_Bool) _Bool bApi 0 -sc/source/ui/inc/docfunc.hxx:142 +sc/source/ui/inc/docfunc.hxx:143 void ScDocFunc::SetTableVisible(short,_Bool,_Bool) _Bool bApi 1 -sc/source/ui/inc/docfunc.hxx:175 +sc/source/ui/inc/docfunc.hxx:176 _Bool ScDocFunc::FillSimple(const class ScRange &,const class ScMarkData *,enum FillDir,_Bool) _Bool bApi 0 -sc/source/ui/inc/docfunc.hxx:184 +sc/source/ui/inc/docfunc.hxx:185 _Bool ScDocFunc::FillAuto(class ScRange &,const class ScMarkData *,enum FillDir,enum FillCmd,enum FillDateCmd,unsigned long,double,double,_Bool,_Bool) _Bool bRecord 1 @@ -2878,15 +2922,11 @@ sc/source/ui/inc/drawutil.hxx:32 void ScDrawUtil::CalcScale(const class ScDocument *,short,short,int,short,int,const class OutputDevice *,const class Fraction &,const class Fraction &,double,double,class Fraction &,class Fraction &) int nStartRow 0 -sc/source/ui/inc/namemgrtable.hxx:121 - void RangeManagerTable::addEntry(const struct ScRangeNameLine &,_Bool) - _Bool bSetCurEntry - 0 sc/source/ui/inc/pvfundlg.hxx:143 int ScDPSubtotalOptDlg::FindListBoxEntry(const class weld::ComboBox &,const class rtl::OUString &,int) const int nStartPos 1 -sc/source/ui/inc/RegressionDialog.hxx:57 +sc/source/ui/inc/RegressionDialog.hxx:56 class rtl::OUString ScRegressionDialog::GetYVariableNameFormula(_Bool) _Bool bWithLog 0 @@ -2896,16 +2936,16 @@ sc/source/ui/inc/spellparam.hxx:37 0 sc/source/ui/inc/spellparam.hxx:40 void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool) + int nOptions + 0 +sc/source/ui/inc/spellparam.hxx:40 + void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool) _Bool bIsInteractive 1 sc/source/ui/inc/spellparam.hxx:40 void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool) enum ScConversionType eConvType 1 -sc/source/ui/inc/spellparam.hxx:40 - void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool) - int nOptions - 0 sc/source/ui/inc/spellparam.hxx:47 void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,const class vcl::Font &,int,_Bool) _Bool bIsInteractive @@ -2938,19 +2978,19 @@ sc/source/ui/inc/viewdata.hxx:146 void ScPositionHelper::invalidateByPosition(long) long nPos 0 -sc/source/ui/inc/viewdata.hxx:601 +sc/source/ui/inc/viewdata.hxx:600 class Point ScViewData::GetScrPos(short,int,enum ScHSplitPos) const int nWhereY 0 -sc/source/ui/inc/viewdata.hxx:602 +sc/source/ui/inc/viewdata.hxx:601 class Point ScViewData::GetScrPos(short,int,enum ScVSplitPos) const short nWhereX 0 -sc/source/ui/inc/viewdata.hxx:661 +sc/source/ui/inc/viewdata.hxx:660 void ScViewData::AddPixelsWhileBackward(long &,long,int &,int,double,const class ScDocument *,short) int nStartRow 0 -sc/source/ui/inc/viewfunc.hxx:164 +sc/source/ui/inc/viewfunc.hxx:174 void ScViewFunc::ApplyAttributes(const class SfxItemSet *,const class SfxItemSet *,_Bool) _Bool bAdjustBlockHeight 1 @@ -3002,23 +3042,23 @@ sc/source/ui/view/prevloc.cxx:262 struct ScPreviewLocationEntry * lcl_GetEntryByAddress(const class std::__debug::list<class std::unique_ptr<struct ScPreviewLocationEntry, struct std::default_delete<struct ScPreviewLocationEntry> >, class std::allocator<class std::unique_ptr<struct ScPreviewLocationEntry, struct std::default_delete<struct ScPreviewLocationEntry> > > > &,const class ScAddress &,const enum ScPreviewLocationType) const enum ScPreviewLocationType eType 0 -scaddins/source/analysis/analysishelper.hxx:77 +scaddins/source/analysis/analysishelper.hxx:70 int GetDiffDate360(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,int,int,_Bool) _Bool bUSAMethod 1 -scaddins/source/analysis/analysishelper.hxx:91 +scaddins/source/analysis/analysishelper.hxx:84 int GetDaysInYear(int,int,int) - int nNullDate + int nDate 0 -scaddins/source/analysis/analysishelper.hxx:91 ... etc. - the rest is truncated _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits