diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-03 10:05:12 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-03 10:53:01 +0100 |
commit | 0528012fd0dc4b93645ef7790b0db9d1cecbae66 (patch) | |
tree | e3adb8f0200fc95c06f62205b346244c79ae88ca | |
parent | f612839ed9200a3900ae5c3a2e12beccfa37b11e (diff) |
loplugin:constantparam
Change-Id: If2dee122bf07dc179fd8f6e766442ec1891a5f3d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87845
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
47 files changed, 1789 insertions, 1562 deletions
diff --git a/basegfx/source/polygon/b2dlinegeometry.cxx b/basegfx/source/polygon/b2dlinegeometry.cxx index 72c25f0c0593..0f602eb6241e 100644 --- a/basegfx/source/polygon/b2dlinegeometry.cxx +++ b/basegfx/source/polygon/b2dlinegeometry.cxx @@ -848,8 +848,7 @@ namespace basegfx css::drawing::LineCap eCap, double fMaxAllowedAngle, double fMaxPartOfEdge, - double fMiterMinimumAngle, - basegfx::triangulator::B2DTriangleVector* pTriangles) + double fMiterMinimumAngle) { if(fMaxAllowedAngle > F_PI2) { @@ -959,7 +958,7 @@ namespace basegfx fHalfLineWidth, eJoin, fMiterMinimumAngle, - pTriangles)); + nullptr)); } else if(aOrientation == B2VectorOrientation::Negative) { @@ -976,7 +975,7 @@ namespace basegfx fHalfLineWidth, eJoin, fMiterMinimumAngle, - pTriangles)); + nullptr)); } } @@ -995,7 +994,7 @@ namespace basegfx bLast && eCap == css::drawing::LineCap_ROUND, bFirst && eCap == css::drawing::LineCap_SQUARE, bLast && eCap == css::drawing::LineCap_SQUARE, - pTriangles)); + nullptr)); } else { @@ -1007,7 +1006,7 @@ namespace basegfx false, false, false, - pTriangles)); + nullptr)); } // prepare next step @@ -1030,17 +1029,7 @@ namespace basegfx aCandidate.getB2DPoint(0), fHalfLineWidth)); - if(nullptr != pTriangles) - { - const basegfx::triangulator::B2DTriangleVector aResult( - basegfx::triangulator::triangulate( - aCircle)); - pTriangles->insert(pTriangles->end(), aResult.begin(), aResult.end()); - } - else - { - aRetval.append(aCircle); - } + aRetval.append(aCircle); } return aRetval; diff --git a/chart2/source/controller/dialogs/ChartResourceGroups.cxx b/chart2/source/controller/dialogs/ChartResourceGroups.cxx index 2ba46bbad5c8..199606abef69 100644 --- a/chart2/source/controller/dialogs/ChartResourceGroups.cxx +++ b/chart2/source/controller/dialogs/ChartResourceGroups.cxx @@ -122,12 +122,12 @@ StackingResourceGroup::StackingResourceGroup(weld::Builder* pBuilder) m_xRB_Stack_Z->connect_toggled(LINK(this, StackingResourceGroup, StackingChangeHdl)); } -void StackingResourceGroup::showControls(bool bShow, bool bShowDeepStacking) +void StackingResourceGroup::showControls(bool bShow) { m_xCB_Stacked->set_visible(bShow); m_xRB_Stack_Y->set_visible(bShow); m_xRB_Stack_Y_Percent->set_visible(bShow); - m_xRB_Stack_Z->set_visible(bShow && bShowDeepStacking); + m_xRB_Stack_Z->set_visible(false); } void StackingResourceGroup::fillControls(const ChartTypeParameter& rParameter) diff --git a/chart2/source/controller/dialogs/tp_ChartType.cxx b/chart2/source/controller/dialogs/tp_ChartType.cxx index 6c603c344270..97fbb5bf878f 100644 --- a/chart2/source/controller/dialogs/tp_ChartType.cxx +++ b/chart2/source/controller/dialogs/tp_ChartType.cxx @@ -266,7 +266,7 @@ void ChartTypeTabPage::showAllControls( ChartTypeDialogController& rTypeControll bool bShow = rTypeController.shouldShow_3DLookControl(); m_pDim3DLookResourceGroup->showControls( bShow ); bShow = rTypeController.shouldShow_StackingControl(); - m_pStackingResourceGroup->showControls( bShow, false ); + m_pStackingResourceGroup->showControls( bShow ); bShow = rTypeController.shouldShow_SplineControl(); m_pSplineResourceGroup->showControls( bShow ); bShow = rTypeController.shouldShow_GeometryControl(); @@ -344,7 +344,7 @@ void ChartTypeTabPage::initializePage() { m_xSubTypeList->Hide(); m_pDim3DLookResourceGroup->showControls( false ); - m_pStackingResourceGroup->showControls( false, false ); + m_pStackingResourceGroup->showControls( false ); m_pSplineResourceGroup->showControls( false ); m_pGeometryResourceGroup->showControls( false ); m_pSortByXValuesResourceGroup->showControls( false ); diff --git a/chart2/source/controller/inc/ObjectHierarchy.hxx b/chart2/source/controller/inc/ObjectHierarchy.hxx index 10b95b951949..5b8240a9a103 100644 --- a/chart2/source/controller/inc/ObjectHierarchy.hxx +++ b/chart2/source/controller/inc/ObjectHierarchy.hxx @@ -42,15 +42,13 @@ class ObjectHierarchy public: typedef std::vector< ObjectIdentifier > tChildContainer; - /** @param bFlattenDiagram - If <TRUE/>, the content of the diagram (data series, wall, floor, - etc.) is treated as being at the same level as the diagram. (This is - used for keyboard navigation). + /** The content of the diagram (data series, wall, floor, + etc.) is treated as being at the same level as the diagram. (This is + used for keyboard navigation). */ explicit ObjectHierarchy( const css::uno::Reference< css::chart2::XChartDocument > & xChartDocument, ExplicitValueProvider * pExplicitValueProvider, - bool bFlattenDiagram = false, bool bOrderingForElementSelector = false ); ~ObjectHierarchy(); diff --git a/chart2/source/controller/main/ElementSelector.cxx b/chart2/source/controller/main/ElementSelector.cxx index 4cc61cc1d1b0..30cc4102c3e2 100644 --- a/chart2/source/controller/main/ElementSelector.cxx +++ b/chart2/source/controller/main/ElementSelector.cxx @@ -105,7 +105,7 @@ void SelectorListBox::UpdateChartElementsListAndSelection() if( xFact.is() ) xChartView = xFact->createInstance( CHART_VIEW_SERVICE_NAME ); ExplicitValueProvider* pExplicitValueProvider = nullptr; //ExplicitValueProvider::getExplicitValueProvider(xChartView); this creates all visible data points, that's too much - ObjectHierarchy aHierarchy( xChartDoc, pExplicitValueProvider, true /*bFlattenDiagram*/, true /*bOrderingForElementSelector*/ ); + ObjectHierarchy aHierarchy( xChartDoc, pExplicitValueProvider, true /*bOrderingForElementSelector*/ ); lcl_addObjectsToList( aHierarchy, ::chart::ObjectHierarchy::getRootNodeOID(), m_aEntries, 0, xChartDoc ); if( bAddSelectionToList ) diff --git a/chart2/source/controller/main/ObjectHierarchy.cxx b/chart2/source/controller/main/ObjectHierarchy.cxx index 429d9ad7e272..2096ab4d6cce 100644 --- a/chart2/source/controller/main/ObjectHierarchy.cxx +++ b/chart2/source/controller/main/ObjectHierarchy.cxx @@ -611,9 +611,8 @@ ObjectIdentifier ImplObjectHierarchy::getParent( ObjectHierarchy::ObjectHierarchy( const Reference< XChartDocument > & xChartDocument, ExplicitValueProvider * pExplicitValueProvider /* = 0 */, - bool bFlattenDiagram /* = false */, bool bOrderingForElementSelector /* = false */) : - m_apImpl( new impl::ImplObjectHierarchy( xChartDocument, pExplicitValueProvider, bFlattenDiagram, bOrderingForElementSelector )) + m_apImpl( new impl::ImplObjectHierarchy( xChartDocument, pExplicitValueProvider, /*bFlattenDiagram*/false, bOrderingForElementSelector )) {} ObjectHierarchy::~ObjectHierarchy() diff --git a/chart2/source/controller/sidebar/ChartTypePanel.cxx b/chart2/source/controller/sidebar/ChartTypePanel.cxx index 846dbed13570..f6334864b049 100644 --- a/chart2/source/controller/sidebar/ChartTypePanel.cxx +++ b/chart2/source/controller/sidebar/ChartTypePanel.cxx @@ -217,7 +217,7 @@ void ChartTypePanel::Initialize() { m_xSubTypeList->Hide(); m_pDim3DLookResourceGroup->showControls(false); - m_pStackingResourceGroup->showControls(false, false); + m_pStackingResourceGroup->showControls(false); m_pSplineResourceGroup->showControls(false); m_pGeometryResourceGroup->showControls(false); m_pSortByXValuesResourceGroup->showControls(false); @@ -314,7 +314,7 @@ void ChartTypePanel::showAllControls(ChartTypeDialogController& rTypeController) bool bShow = rTypeController.shouldShow_3DLookControl(); m_pDim3DLookResourceGroup->showControls(bShow); bShow = rTypeController.shouldShow_StackingControl(); - m_pStackingResourceGroup->showControls(bShow, false); + m_pStackingResourceGroup->showControls(bShow); bShow = rTypeController.shouldShow_SplineControl(); m_pSplineResourceGroup->showControls(bShow); bShow = rTypeController.shouldShow_GeometryControl(); diff --git a/chart2/source/inc/ChartResourceGroups.hxx b/chart2/source/inc/ChartResourceGroups.hxx index 3317f83acd09..f3b3e2f4b2c5 100644 --- a/chart2/source/inc/ChartResourceGroups.hxx +++ b/chart2/source/inc/ChartResourceGroups.hxx @@ -80,7 +80,7 @@ class StackingResourceGroup : public ChangingResource public: explicit StackingResourceGroup(weld::Builder* pBuilder); - void showControls(bool bShow, bool bShowDeepStacking); + void showControls(bool bShow); void fillControls(const ChartTypeParameter& rParameter); void fillParameter(ChartTypeParameter& rParameter); diff --git a/compilerplugins/clang/constantparam.bitmask.results b/compilerplugins/clang/constantparam.bitmask.results index f18bbf6b392a..f12ee3564820 100644 --- a/compilerplugins/clang/constantparam.bitmask.results +++ b/compilerplugins/clang/constantparam.bitmask.results @@ -4,7 +4,7 @@ codemaker/source/javamaker/classfile.hxx:153 codemaker/source/javamaker/classfile.hxx:168 void codemaker::javamaker::ClassFile::addField(enum codemaker::javamaker::ClassFile::AccessFlags,const class rtl::OString &,const class rtl::OString &,unsigned short,const class rtl::OString &) enum codemaker::javamaker::ClassFile::AccessFlags accessFlags setBits=0x1 -dbaccess/source/filter/xml/xmlExport.hxx:172 +dbaccess/source/filter/xml/xmlExport.hxx:170 void dbaxml::ODBExport::ODBExport(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,enum SvXMLExportFlags) enum SvXMLExportFlags nExportFlag setBits=0x400 clearBits=0x200 include/basegfx/polygon/b2dpolygontools.hxx:144 @@ -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:456 +include/sfx2/objsh.hxx:461 void SfxObjectShell::FinishedLoading(enum SfxLoadedFlags) enum SfxLoadedFlags nWhich setBits=0x1 include/svtools/brwbox.hxx:431 @@ -23,7 +23,7 @@ include/vcl/wizardmachine.hxx:140 void vcl::WizardMachine::WizardMachine(class weld::Window *,enum WizardButtonFlags) enum WizardButtonFlags _nButtonFlags setBits=0xf sc/inc/rangelst.hxx:48 - void ScRangeList::Format(class rtl::OUString &,enum ScRefFlags,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool) const + void ScRangeList::Format(class rtl::OUString &,enum ScRefFlags,const class ScDocument &,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool) const enum ScRefFlags nFlags setBits=0x8000 clearBits=0x7f80 sc/inc/rangeutl.hxx:162 void ScRangeStringConverter::GetStringFromAddress(class rtl::OUString &,const class ScAddress &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags) @@ -37,13 +37,13 @@ sc/source/ui/view/cellsh1.cxx:102 sc/source/ui/view/cellsh1.cxx:125 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:715 void lcl_InvalidateAllContent(class SwViewShell &,enum SwInvalidateFlags) enum SwInvalidateFlags nInv setBits=0x2 -sw/source/filter/html/swhtml.hxx:670 +sw/source/filter/html/swhtml.hxx:672 void SwHTMLParser::SetFrameFormatAttrs(class SfxItemSet &,enum HtmlFrameFormatFlags,class SfxItemSet &) enum HtmlFrameFormatFlags nFlags setBits=0x1 -sw/source/filter/ww8/wrtw8esh.cxx:1557 +sw/source/filter/ww8/wrtw8esh.cxx:1544 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 4288e3b07453..0e3c7a722d44 100644 --- a/compilerplugins/clang/constantparam.booleans.results +++ b/compilerplugins/clang/constantparam.booleans.results @@ -1,12 +1,12 @@ -accessibility/inc/standard/vclxaccessiblemenuitem.hxx:59 +accessibility/inc/standard/vclxaccessiblemenuitem.hxx:57 void VCLXAccessibleMenuItem::VCLXAccessibleMenuItem(class Menu *,unsigned short,class Menu *) class Menu * pMenu 0 -accessibility/source/standard/vclxaccessibletoolbox.cxx:100 +accessibility/source/standard/vclxaccessibletoolbox.cxx:101 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:103 +basctl/source/basicide/moduldlg.hxx:102 void basctl::LibDialog::EnableReference(_Bool) _Bool b 0 @@ -14,39 +14,39 @@ basctl/source/inc/scriptdocument.hxx:89 void basctl::ScriptDocument::ScriptDocument(enum basctl::ScriptDocument::SpecialDocument) enum basctl::ScriptDocument::SpecialDocument _eType 0 -basegfx/source/polygon/b2dpolygon.cxx:60 - void CoordinateDataArray2D::CoordinateDataArray2D(unsigned int) +basegfx/source/polygon/b2dpolygon.cxx:62 + void (anonymous namespace)::CoordinateDataArray2D::CoordinateDataArray2D(unsigned int) unsigned int nCount 0 -basegfx/source/polygon/b3dpolygon.cxx:74 - void CoordinateDataArray3D::CoordinateDataArray3D(unsigned int) +basegfx/source/polygon/b3dpolygon.cxx:76 + void (anonymous namespace)::CoordinateDataArray3D::CoordinateDataArray3D(unsigned int) unsigned int nCount 0 -basic/source/inc/runtime.hxx:322 +basic/source/inc/runtime.hxx:323 void SbiRuntime::StepRESUME(unsigned int) unsigned int 1 -basic/source/runtime/iosys.cxx:71 - void SbiInputDialog::SbiInputDialog(class weld::Window *,const class rtl::OUString &) +basic/source/runtime/iosys.cxx:62 + void (anonymous namespace)::SbiInputDialog::SbiInputDialog(class weld::Window *,const class rtl::OUString &) class weld::Window * 0 -canvas/source/cairo/cairo_canvashelper.hxx:252 +canvas/source/cairo/cairo_canvashelper.hxx:249 void cairocanvas::CanvasHelper::useStates(const struct com::sun::star::rendering::ViewState &,const struct com::sun::star::rendering::RenderState &,_Bool) _Bool setColor 1 -canvas/source/vcl/spritecanvashelper.hxx:46 +canvas/source/vcl/spritecanvashelper.hxx:45 void vclcanvas::SpriteCanvasHelper::init(const class std::shared_ptr<class vclcanvas::OutDevProvider> &,class vclcanvas::SpriteCanvas &,class canvas::SpriteRedrawManager &,_Bool,_Bool) - _Bool bHaveAlpha + _Bool bProtect 0 -canvas/source/vcl/spritecanvashelper.hxx:46 +canvas/source/vcl/spritecanvashelper.hxx:45 void vclcanvas::SpriteCanvasHelper::init(const class std::shared_ptr<class vclcanvas::OutDevProvider> &,class vclcanvas::SpriteCanvas &,class canvas::SpriteRedrawManager &,_Bool,_Bool) - _Bool bProtect + _Bool bHaveAlpha 0 chart2/qa/extras/chart2dump/chart2dump.cxx:97 void Chart2DumpTest::Chart2DumpTest(_Bool) _Bool bDumpMode 0 -chart2/qa/extras/chart2export.cxx:356 +chart2/qa/extras/chart2export.cxx:379 void checkCommonTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,double,double,_Bool,double,_Bool,_Bool) _Bool aExpectedShowEquation 1 @@ -98,10 +98,6 @@ chart2/qa/extras/PivotChartTest.cxx:219 class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotTables> lclGetDataPilotTables(int,const class com::sun::star::uno::Reference<class com::sun::star::sheet::XSpreadsheetDocument> &) int nIndex 0 -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:170 struct (anonymous namespace)::lcl_DataSeriesContainerAppend & (anonymous namespace)::lcl_DataSeriesContainerAppend::operator++(int) int @@ -110,14 +106,14 @@ chart2/source/controller/dialogs/DialogModel.cxx:229 struct (anonymous namespace)::lcl_RolesWithRangeAppend & (anonymous namespace)::lcl_RolesWithRangeAppend::operator++(int) int 0 -chart2/source/controller/dialogs/tp_ChartType.cxx:167 - void chart::StackingResourceGroup::showControls(_Bool,_Bool) - _Bool bShowDeepStacking - 0 chart2/source/controller/inc/ChartController.hxx:372 class chart::ChartController::TheModelRef & chart::ChartController::TheModelRef::operator=(class chart::ChartController::TheModel *) ###1 0 +chart2/source/controller/inc/ObjectHierarchy.hxx:50 + void chart::ObjectHierarchy::ObjectHierarchy(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,class chart::ExplicitValueProvider *,_Bool,_Bool) + _Bool bFlattenDiagram + 1 chart2/source/controller/inc/ViewElementListProvider.hxx:51 class Graphic chart::ViewElementListProvider::GetSymbolGraphic(int,const class SfxItemSet *) const int nStandardSymbol @@ -126,6 +122,14 @@ chart2/source/inc/AxisHelper.hxx:194 class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartType> chart::AxisHelper::getChartTypeByIndex(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XCoordinateSystem> &,int) int nIndex 0 +chart2/source/inc/ChartResourceGroups.hxx:83 + void chart::StackingResourceGroup::showControls(_Bool,_Bool) + _Bool bShowDeepStacking + 0 +chart2/source/inc/ChartTypeDialogController.hxx:101 + 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/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 @@ -138,6 +142,10 @@ chart2/source/view/axes/VAxisProperties.hxx:150 struct chart::TickmarkProperties chart::AxisProperties::makeTickmarkPropertiesForComplexCategories(int,int) const int nTickStartDistanceToAxis 0 +chart2/source/view/axes/VCartesianAxis.hxx:32 + void chart::VCartesianAxis::VCartesianAxis(const struct chart::AxisProperties &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormatsSupplier> &,int,int,class chart::PlottingPositionHelper *) + int nDimensionIndex + 1 chart2/source/view/charttypes/CategoryPositionHelper.hxx:29 void chart::CategoryPositionHelper::CategoryPositionHelper(double,double) double fSeriesCount @@ -154,14 +162,6 @@ chart2/source/view/inc/Stripe.hxx:53 void chart::Stripe::InvertNormal(_Bool) _Bool bInvertNormal 1 -chart2/source/view/inc/VSeriesPlotter.hxx:61 - _Bool chart::AxesNumberFormats::hasFormat(int,int) const - int nDimIndex - 1 -chart2/source/view/inc/VSeriesPlotter.hxx:65 - int chart::AxesNumberFormats::getFormat(int,int) const - int nDimIndex - 1 chart2/source/view/main/ShapeFactory.cxx:702 void appendAndCloseBezierCoords(struct com::sun::star::drawing::PolyPolygonBezierCoords &,const struct com::sun::star::drawing::PolyPolygonBezierCoords &,_Bool) _Bool bAppendInverse @@ -174,19 +174,19 @@ codemaker/source/javamaker/classfile.hxx:120 void codemaker::javamaker::ClassFile::Code::storeLocalReference(unsigned short) unsigned short index 1 -comphelper/source/misc/backupfilehelper.cxx:78 +comphelper/source/misc/backupfilehelper.cxx:57 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 - void pq_sdbc_driver::cstr_vector::push_back(const char *,enum __sal_NoAcquire) +connectivity/source/drivers/postgresql/pq_connection.cxx:415 + void pq_sdbc_driver::(anonymous namespace)::cstr_vector::push_back(const char *,enum __sal_NoAcquire) enum __sal_NoAcquire 0 connectivity/source/drivers/postgresql/pq_resultsetmetadata.hxx:89 _Bool pq_sdbc_driver::ResultSetMetaData::getBoolColumnProperty(const class rtl::OUString &,int,_Bool) _Bool def 0 -connectivity/source/inc/dbase/DIndex.hxx:116 +connectivity/source/inc/dbase/DIndex.hxx:115 _Bool connectivity::dbase::ODbaseIndex::Find(unsigned int,const class connectivity::ORowSetValue &) unsigned int nRec 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:292 +cppcanvas/source/mtfrenderer/mtftools.cxx:284 void appendRect(class basegfx::B2DPolyPolygon &,const class basegfx::B2DPoint &,const double,const double,const double,const double) const double nX1 0 @@ -218,31 +218,35 @@ 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:42 +cui/source/inc/acccfg.hxx:43 void TAccInfo::TAccInfo(int,int,const class vcl::KeyCode &) int nListPos 0 -cui/source/inc/cfg.hxx:336 +cui/source/inc/cfg.hxx:340 void SvxMenuEntriesListBox::set_toggle(int,enum TriState,int) int col 0 -cui/source/inc/cfg.hxx:429 - int SvxConfigPage::InsertEntry(class SvxConfigEntry *,int,_Bool) - _Bool bFront +cui/source/inc/cfg.hxx:458 + void SvxConfigPage::InsertEntryIntoUI(class SvxConfigEntry *,class weld::TreeView &,class weld::TreeIter &,int) + int nStartCol 0 -cui/source/inc/cfg.hxx:438 - void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int) +cui/source/inc/cfg.hxx:462 + void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,class weld::TreeView &,class weld::TreeIter &,int) int nStartCol 1 -cui/source/inc/cfgutil.hxx:127 +cui/source/inc/cfgutil.hxx:128 void CuiConfigFunctionListBox::append(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *) const class weld::TreeIter * pParent 0 -cui/source/inc/cfgutil.hxx:141 +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/cuitabarea.hxx:727 +cui/source/inc/cfgutil.hxx:260 + void SvxScriptSelectorDialog::SvxScriptSelectorDialog(class weld::Window *,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &) + _Bool bShowSlots + 0 +cui/source/inc/cuitabarea.hxx:726 void SvxColorTabPage::SetPropertyList(enum XPropertyListType,const class rtl::Reference<class XPropertyList> &) enum XPropertyListType t 0 @@ -266,7 +270,7 @@ cui/source/inc/scriptdlg.hxx:123 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/options/optjsearch.hxx:66 +cui/source/options/optjsearch.hxx:65 void SvxJSearchOptionsPage::EnableSaveOptions(_Bool) _Bool bVal 0 @@ -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:295 +dbaccess/source/ui/control/tabletree.cxx:294 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 @@ -306,7 +310,7 @@ 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/FieldDescControl.hxx:129 +dbaccess/source/ui/inc/FieldDescControl.hxx:127 void dbaui::OFieldDescControl::InitializeControl(class dbaui::OPropListBoxCtrl *,const class rtl::OString &,_Bool) _Bool _bAddChangeHandler 1 @@ -326,10 +330,6 @@ dbaccess/source/ui/inc/IUpdateHelper.hxx:33 void dbaui::IUpdateHelper::updateInt(int,int) int _nPos 1 -dbaccess/source/ui/inc/opendoccontrols.hxx:76 - struct std::pair<class rtl::OUString, class rtl::OUString> dbaui::OpenDocumentListBox::impl_getDocumentAtIndex(unsigned short,_Bool) const - _Bool _bSystemNotation - 0 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 &,const class weld::TreeIter *,const class dbaui::IEntryFilter *) const const class dbaui::IEntryFilter * _pFilter @@ -342,103 +342,115 @@ dbaccess/source/ui/inc/WTypeSelect.hxx:124 void dbaui::OWizTypeSelect::EnableAuto(_Bool) _Bool bEnable 0 -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_updatedialog.hxx:103 void dp_gui::UpdateDialog::addAdditional(struct dp_gui::UpdateDialog::Index *,_Bool) _Bool bEnableCheckBox 0 -desktop/source/lib/init.cxx:5737 +desktop/source/lib/init.cxx:6004 struct _LibreOfficeKit * libreofficekit_hook_2(const char *,const char *) const char * user_profile_url 0 -editeng/source/editeng/editstt2.hxx:29 +editeng/source/editeng/editstt2.hxx:28 void InternalEditStatus::TurnOnFlags(enum EEControlBits) enum EEControlBits nFlags 1 -editeng/source/editeng/editstt2.hxx:32 +editeng/source/editeng/editstt2.hxx:31 void InternalEditStatus::TurnOffFlags(enum EEControlBits) enum EEControlBits nFlags 1 -editeng/source/editeng/impedit.hxx:838 +editeng/source/editeng/impedit.hxx:834 unsigned short ImpEditEngine::GetLineHeight(int,int) int nLine 0 -extensions/source/propctrlr/browserline.cxx:326 - void implEnable(class vcl::Window *,_Bool) - _Bool _bEnable +extensions/source/propctrlr/browserline.cxx:241 + void implEnable(class weld::Widget *,_Bool) + _Bool bEnable + 0 +extensions/source/propctrlr/browserline.hxx:96 + void pcr::OBrowserLine::Show(_Bool) + _Bool bFlag 0 extensions/source/propctrlr/newdatatype.hxx:40 void pcr::NewDataTypeDialog::NewDataTypeDialog(class weld::Window *,const class rtl::OUString &,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &) class weld::Window * _pParent 0 -extensions/source/propctrlr/propertyhandler.hxx:189 +extensions/source/propctrlr/propertyhandler.hxx:188 void pcr::PropertyHandler::addDoublePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const short _nAttribs 1 -extensions/source/propctrlr/propertyhandler.hxx:197 +extensions/source/propctrlr/propertyhandler.hxx:196 void pcr::PropertyHandler::addDatePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const short _nAttribs 1 -extensions/source/propctrlr/propertyhandler.hxx:205 +extensions/source/propctrlr/propertyhandler.hxx:204 void pcr::PropertyHandler::addTimePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const short _nAttribs 1 -extensions/source/propctrlr/propertyhandler.hxx:213 +extensions/source/propctrlr/propertyhandler.hxx:212 void pcr::PropertyHandler::addDateTimePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const short _nAttribs 1 +extensions/source/propctrlr/usercontrol.hxx:43 + void pcr::OFormatSampleControl::OFormatSampleControl(class std::unique_ptr<class weld::Container, struct std::default_delete<class weld::Container> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool) + _Bool bReadOnly + 0 +extensions/source/propctrlr/usercontrol.hxx:92 + void pcr::OFormattedNumericControl::OFormattedNumericControl(class std::unique_ptr<class weld::FormattedSpinButton, struct std::default_delete<class weld::FormattedSpinButton> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool) + _Bool bReadOnly + 0 +extensions/source/propctrlr/usercontrol.hxx:122 + void pcr::OFileUrlControl::OFileUrlControl(class std::unique_ptr<class URLBox, struct std::default_delete<class URLBox> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool) + _Bool bReadOnly + 0 extensions/source/scanner/grid.cxx:130 void GridWindow::Init(double *,double *,int,_Bool,const class BitmapEx &) _Bool bCutValues 1 -extensions/source/scanner/grid.hxx:48 +extensions/source/scanner/grid.hxx:47 void GridDialog::setBoundings(double,double,double,double) double fMinX 0 -filter/qa/cppunit/filters-dxf-test.cxx:22 +filter/qa/cppunit/filters-dxf-test.cxx:19 _Bool idxGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-eps-test.cxx:22 +filter/qa/cppunit/filters-eps-test.cxx:19 _Bool ipsGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-met-test.cxx:22 +filter/qa/cppunit/filters-met-test.cxx:19 _Bool imeGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-pcd-test.cxx:22 +filter/qa/cppunit/filters-pcd-test.cxx:19 _Bool icdGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-pcx-test.cxx:22 +filter/qa/cppunit/filters-pcx-test.cxx:19 _Bool ipxGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-pict-test.cxx:27 +filter/qa/cppunit/filters-pict-test.cxx:24 _Bool iptGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-ppm-test.cxx:22 +filter/qa/cppunit/filters-ppm-test.cxx:19 _Bool ipbGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-psd-test.cxx:22 +filter/qa/cppunit/filters-psd-test.cxx:19 _Bool ipdGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-ras-test.cxx:22 +filter/qa/cppunit/filters-ras-test.cxx:19 _Bool iraGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-tga-test.cxx:22 +filter/qa/cppunit/filters-tga-test.cxx:19 _Bool itgGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 -filter/qa/cppunit/filters-tiff-test.cxx:22 +filter/qa/cppunit/filters-tiff-test.cxx:19 _Bool itiGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *) class FilterConfigItem * 0 @@ -450,35 +462,39 @@ filter/source/flash/swfwriter.hxx:322 void swf::Writer::Impl_writePolygon(const class tools::Polygon &,_Bool,const class Color &,const class Color &) _Bool bFilled 1 -filter/source/graphicfilter/eps/eps.cxx:214 - void PSWriter::ImplWriteLineColor(unsigned long) - unsigned long nMode +filter/source/graphicfilter/eps/eps.cxx:91 + enum (anonymous namespace)::NMode operator|(enum (anonymous namespace)::NMode,enum (anonymous namespace)::NMode) + enum (anonymous namespace)::NMode a 1 -filter/source/graphicfilter/eps/eps.cxx:215 - void PSWriter::ImplWriteFillColor(unsigned long) - unsigned long nMode +filter/source/graphicfilter/eps/eps.cxx:212 + void (anonymous namespace)::PSWriter::ImplWriteLineColor(enum (anonymous namespace)::NMode) + enum (anonymous namespace)::NMode nMode 1 -filter/source/graphicfilter/icgm/cgm.hxx:91 +filter/source/graphicfilter/eps/eps.cxx:213 + void (anonymous namespace)::PSWriter::ImplWriteFillColor(enum (anonymous namespace)::NMode) + enum (anonymous namespace)::NMode nMode + 1 +filter/source/graphicfilter/icgm/cgm.hxx:89 unsigned char CGM::ImplGetByte(unsigned int,unsigned int) unsigned int nPrecision 1 -filter/source/svg/svgfilter.hxx:252 +filter/source/svg/svgfilter.hxx:240 _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:254 +filter/source/svg/svgfilter.hxx:242 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 -filter/source/svg/svgwriter.hxx:273 +filter/source/svg/svgwriter.hxx:253 void SVGTextWriter::startTextPosition(_Bool,_Bool) _Bool bExportY 1 -forms/source/component/DatabaseForm.hxx:237 +forms/source/component/DatabaseForm.hxx:236 void frm::ODatabaseForm::fire(int *,const class com::sun::star::uno::Any *,const class com::sun::star::uno::Any *,int) int nCount 1 -forms/source/component/GroupManager.hxx:149 +forms/source/component/GroupManager.hxx:148 const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> & frm::OGroup::GetObject(unsigned short) const unsigned short nP 0 @@ -486,19 +502,23 @@ 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:60 +formula/source/ui/dlg/structpg.hxx:59 _Bool formula::StructPage::InsertEntry(const class rtl::OUString &,const class weld::TreeIter *,unsigned short,int,const class formula::FormulaToken *,class weld::TreeIter &) int nPos 0 -fpicker/source/office/fileview.hxx:166 +fpicker/source/office/autocmpledit.hxx:40 + void AutocompleteEdit::select_region(int,int) + int nStartPos + 0 +fpicker/source/office/fileview.hxx:163 void SvtFileView::EnableDelete(_Bool) _Bool bEnable 1 -framework/inc/uielement/uicommanddescription.hxx:83 +framework/inc/uielement/uicommanddescription.hxx:82 void framework::UICommandDescription::UICommandDescription(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,_Bool) _Bool 1 -helpcompiler/inc/HelpCompiler.hxx:59 +helpcompiler/inc/HelpCompiler.hxx:58 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 @@ -526,6 +546,14 @@ include/avmedia/mediaplayer.hxx:50 void avmedia::MediaFloater::setURL(const class rtl::OUString &,const class rtl::OUString &,_Bool) _Bool bPlayImmediately 1 +include/basegfx/DrawCommands.hxx:58 + void gfx::GradientInfo::GradientInfo(enum gfx::GradientType) + enum gfx::GradientType eType + 0 +include/basegfx/polygon/b2dlinegeometry.hxx:135 + class basegfx::B2DPolyPolygon createAreaGeometry(const class basegfx::B2DPolygon &,double,enum basegfx::B2DLineJoin,enum com::sun::star::drawing::LineCap,double,double,double,class std::__debug::vector<class basegfx::triangulator::B2DTriangle, class std::allocator<class basegfx::triangulator::B2DTriangle> > *) + class std::__debug::vector<class basegfx::triangulator::B2DTriangle, class std::allocator<class basegfx::triangulator::B2DTriangle> > * pTriangles + 0 include/basegfx/polygon/b2dpolygon.hxx:84 void basegfx::B2DPolygon::insert(unsigned int,const class basegfx::B2DPoint &,unsigned int) unsigned int nCount @@ -568,11 +596,11 @@ include/basegfx/polygon/b2dpolypolygon.hxx:103 1 include/basegfx/polygon/b2dpolypolygon.hxx:138 shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const - ###2 + ###3 0 include/basegfx/polygon/b2dpolypolygon.hxx:138 shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const - ###3 + ###4 0 include/basegfx/polygon/b3dpolygon.hxx:72 void basegfx::B3DPolygon::append(const class basegfx::B3DPoint &,unsigned int) @@ -606,15 +634,11 @@ include/basegfx/polygon/b3dpolypolygon.hxx:89 void basegfx::B3DPolyPolygon::remove(unsigned int,unsigned int) unsigned int nCount 1 -include/basegfx/range/b2dpolyrange.hxx:73 - void basegfx::B2DPolyRange::appendElement(const class basegfx::B2DRange &,enum basegfx::B2VectorOrientation,unsigned int) - unsigned int nCount - 1 -include/basegfx/range/b2ibox.hxx:72 +include/basegfx/range/b2ibox.hxx:71 void basegfx::B2IBox::B2IBox(int,int,int,int) int x1 0 -include/basegfx/range/b2ibox.hxx:72 +include/basegfx/range/b2ibox.hxx:71 void basegfx::B2IBox::B2IBox(int,int,int,int) int y1 0 @@ -622,7 +646,7 @@ include/basegfx/utils/tools.hxx:118 class basegfx::B2DPolyPolygon number2PolyPolygon(double,int,int,_Bool) _Bool bLitSegments 1 -include/basic/basrdll.hxx:38 +include/basic/basrdll.hxx:37 void BasicDLL::EnableBreak(_Bool) _Bool bEnable 1 @@ -642,7 +666,7 @@ include/canvas/parametricpolypolygon.hxx:139 void canvas::ParametricPolyPolygon::ParametricPolyPolygon(const class com::sun::star::uno::Reference<class com::sun::star::rendering::XGraphicDevice> &,enum canvas::ParametricPolyPolygon::GradientType,const class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<double> > &,const class com::sun::star::uno::Sequence<double> &) enum canvas::ParametricPolyPolygon::GradientType eType 0 -include/canvas/spriteredrawmanager.hxx:111 +include/canvas/spriteredrawmanager.hxx:109 void canvas::SpriteRedrawManager::SpriteInfo::SpriteInfo(const class rtl::Reference<class canvas::Sprite> &,const class basegfx::B2DRange &,_Bool,_Bool) _Bool bNeedsUpdate 1 @@ -686,6 +710,10 @@ include/comphelper/lok.hxx:89 _Bool isCompatFlagSet(enum comphelper::LibreOfficeKit::Compat) enum comphelper::LibreOfficeKit::Compat flag 1 +include/comphelper/lok.hxx:98 + void setLanguageTag(const class rtl::OUString &,_Bool) + _Bool bCanonicalize + 1 include/comphelper/parallelsort.hxx:286 void s3sort(const type-parameter-?-?,const type-parameter-?-?,type-parameter-?-?,_Bool) _Bool bThreaded @@ -754,15 +782,19 @@ include/cppcanvas/color.hxx:61 int makeColorARGB(unsigned char,unsigned char,unsigned char,unsigned char) unsigned char nAlpha 0 +include/cui/cuicharmap.hxx:146 + void SvxCharacterMap::SvxCharacterMap(class weld::Widget *,const class SfxItemSet *,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &) + const class SfxItemSet * pSet + 0 include/drawinglayer/processor2d/hittestprocessor2d.hxx:80 void drawinglayer::processor2d::HitTestProcessor2D::collectHitStack(_Bool) _Bool bCollect 1 -include/drawinglayer/XShapeDumper.hxx:25 +include/drawinglayer/XShapeDumper.hxx:23 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:26 +include/drawinglayer/XShapeDumper.hxx:24 class rtl::OUString XShapeDumper::dump(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,_Bool) _Bool bDumpInteropProperties 0 @@ -782,23 +814,23 @@ include/editeng/colritem.hxx:69 void SvxBackgroundColorItem::SvxBackgroundColorItem(const unsigned short) const unsigned short nId 0 -include/editeng/editeng.hxx:539 +include/editeng/editeng.hxx:544 void EditEngine::dumpAsXmlEditDoc(struct _xmlTextWriter *) const struct _xmlTextWriter * pWriter 0 -include/editeng/editeng.hxx:564 +include/editeng/editeng.hxx:569 class EditPaM EditEngine::CursorLeft(const class EditPaM &,unsigned short) unsigned short nCharacterIteratorMode 0 -include/editeng/editobj.hxx:115 - const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const - int nPara - 0 -include/editeng/editobj.hxx:115 +include/editeng/editobj.hxx:120 const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const int nType 1 -include/editeng/editobj.hxx:115 +include/editeng/editobj.hxx:120 + const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const + int nPara + 0 +include/editeng/editobj.hxx:120 const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const unsigned long nPos 0 @@ -806,11 +838,11 @@ 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 +include/editeng/outliner.hxx:240 void OutlinerView::SelectRange(int,int) int nFirst 0 -include/editeng/outliner.hxx:625 +include/editeng/outliner.hxx:626 _Bool Outliner::ImpCanDeleteSelectedPages(class OutlinerView *,int,int) int nPages 1 @@ -818,35 +850,47 @@ include/editeng/pmdlitem.hxx:40 void SvxPageModelItem::SvxPageModelItem(unsigned short) unsigned short nWh 0 -include/editeng/splwrap.hxx:74 - void SvxSpellWrapper::SvxSpellWrapper(class vcl::Window *,const _Bool,const _Bool) +include/editeng/splwrap.hxx:73 + void SvxSpellWrapper::SvxSpellWrapper(class weld::Window *,const _Bool,const _Bool) const _Bool bIsAllRight 0 +include/editeng/txtrange.hxx:63 + void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool) + _Bool bVert + 0 +include/editeng/txtrange.hxx:63 + void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool) + _Bool bInner + 1 include/filter/msfilter/escherex.hxx:493 void EscherExAtom::EscherExAtom(class SvStream &,const unsigned short,const unsigned short,const unsigned char) const unsigned char nVersion 0 -include/filter/msfilter/escherex.hxx:588 +include/filter/msfilter/escherex.hxx:585 void EscherGraphicProvider::WriteBlibStoreEntry(class SvStream &,unsigned int,unsigned int) unsigned int nBlipId 1 -include/filter/msfilter/escherex.hxx:798 +include/filter/msfilter/escherex.hxx:795 void EscherPropertyContainer::CreateFillProperties(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &) _Bool bEdge 1 -include/filter/msfilter/escherex.hxx:1143 +include/filter/msfilter/escherex.hxx:1140 void EscherEx::EndAtom(unsigned short,int,int) int nRecVersion 0 -include/filter/msfilter/msdffimp.hxx:711 +include/filter/msfilter/msdffimp.hxx:710 void SvxMSDffManager::ExchangeInShapeOrder(const class SdrObject *,unsigned long,class SdrObject *) const unsigned long nTxBx 0 -include/filter/msfilter/msdffimp.hxx:764 +include/filter/msfilter/msdffimp.hxx:763 + void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short) + unsigned int nId + 0 +include/filter/msfilter/msdffimp.hxx:763 void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short) unsigned short nSeqId 0 -include/filter/msfilter/msdffimp.hxx:764 +include/filter/msfilter/msdffimp.hxx:763 void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short) unsigned short nBoxId 0 @@ -882,6 +926,10 @@ include/o3tl/strong_int.hxx:110 strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> o3tl::strong_int::operator++(int) ###1 0 +include/oox/drawingml/shape.hxx:105 + void oox::drawingml::Shape::Shape(const char *,_Bool) + _Bool bDefaultHeight + 1 include/oox/export/vmlexport.hxx:140 const class rtl::OString & oox::vml::VMLExport::AddInlineSdrObject(const class SdrObject &,const _Bool) const _Bool bOOxmlExport @@ -898,7 +946,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:101 +include/oox/helper/helper.hxx:116 type-parameter-?-? getIntervalValue(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) type-parameter-?-? nBegin 0 @@ -906,6 +954,10 @@ include/oox/mathml/importutils.hxx:210 void oox::formulaimport::XmlStream::skipElementInternal(int,_Bool) _Bool silent 0 +include/oox/ole/olestorage.hxx:47 + void oox::ole::OleStorage::OleStorage(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,_Bool) + _Bool bBaseStreamAccess + 0 include/oox/ole/olestorage.hxx:60 void oox::ole::OleStorage::OleStorage(const class oox::ole::OleStorage &,const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> &,const class rtl::OUString &,_Bool) _Bool bReadOnly @@ -918,6 +970,14 @@ include/oox/ole/vbaexport.hxx:90 void VBACompressionChunk::SetFlagBit(unsigned long,_Bool,unsigned char &) _Bool bVal 1 +include/oox/vml/vmldrawing.hxx:70 + void oox::vml::OleObjectInfo::OleObjectInfo(_Bool) + _Bool bDmlShape + 0 +include/oox/vml/vmldrawing.hxx:97 + void oox::vml::Drawing::Drawing(class oox::core::XmlFilterBase &,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> &,enum oox::vml::DrawingType) + enum oox::vml::DrawingType eType + 1 include/oox/vml/vmlformatting.hxx:123 int decodeMeasureToHmm(const class oox::GraphicHelper &,const class rtl::OUString &,int,_Bool,_Bool) int nRefValue @@ -934,18 +994,18 @@ 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:149 +include/sfx2/dispatch.hxx:151 enum ToolbarId SfxDispatcher::GetObjectBarId(unsigned short) const unsigned short nPos 1 -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:174 +include/sfx2/docfile.hxx:163 void SfxMedium::DisableFileSync(_Bool) _Bool bDisableFileSync 1 +include/sfx2/docfilt.hxx:65 + void SfxFilter::SfxFilter(const class rtl::OUString &,const class rtl::OUString &,enum SfxFilterFlags,enum SotClipboardFormatId,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,_Bool) + _Bool bEnabled + 1 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 @@ -958,7 +1018,7 @@ 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/lokhelper.hxx:53 +include/sfx2/lokhelper.hxx:76 void SfxLokHelper::notifyDocumentSizeChangedAllViews(class vcl::ITiledRenderable *,_Bool) _Bool bInvalidateAll 1 @@ -966,6 +1026,14 @@ include/sfx2/notebookbar/SfxNotebookBar.hxx:55 void sfx2::SfxNotebookBar::ShowMenubar(const class SfxViewFrame *,_Bool) _Bool bShow 1 +include/sfx2/objsh.hxx:664 + void SfxObjectShell::AppendInfoBarWhenReady(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,_Bool) + _Bool bShowCloseButton + 1 +include/sfx2/opengrf.hxx:44 + void SvxOpenGraphicDialog::SetPath(const class rtl::OUString &,_Bool) + _Bool bLinkState + 1 include/sfx2/opengrf.hxx:49 void SvxOpenGraphicDialog::EnableLink(_Bool) _Bool @@ -1006,35 +1074,35 @@ include/sfx2/thumbnailview.hxx:360 void SfxThumbnailView::ShowTooltips(_Bool) _Bool bShowTooltips 1 -include/sot/stg.hxx:158 +include/sot/stg.hxx:157 void Storage::Storage(const class rtl::OUString &,enum StreamMode,_Bool) _Bool bDirect 1 -include/sot/stg.hxx:250 +include/sot/stg.hxx:249 void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool) enum StreamMode nMode 1 -include/sot/stg.hxx:250 +include/sot/stg.hxx:249 void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool) _Bool bIsRoot 1 -include/sot/stg.hxx:250 +include/sot/stg.hxx:249 void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool) _Bool bDirect 0 -include/sot/stg.hxx:256 +include/sot/stg.hxx:255 void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool) _Bool bDirect 1 -include/sot/stg.hxx:256 +include/sot/stg.hxx:255 void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool) _Bool bIsRoot 1 -include/sot/stg.hxx:261 +include/sot/stg.hxx:260 void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::ucb::XProgressHandler> &) _Bool bIsRoot 0 -include/sot/stg.hxx:271 +include/sot/stg.hxx:270 void UCBStorage::UCBStorage(class SvStream &,_Bool) _Bool bDirect 0 @@ -1098,15 +1166,19 @@ include/svtools/HtmlWriter.hxx:38 void HtmlWriter::prettyPrint(_Bool) _Bool b 0 -include/svtools/inettbc.hxx:63 +include/svtools/inettbc.hxx:56 void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool) enum INetProtocol eSmart 0 -include/svtools/inettbc.hxx:63 +include/svtools/inettbc.hxx:56 void SvtURLBox::SvtURLBox(class vcl::Window *,enum INetProtocol,_Bool) _Bool bSetDefaultHelpID 1 -include/svtools/ruler.hxx:732 +include/svtools/inettbc.hxx:114 + void URLBox::select_entry_region(int,int) + int nStartPos + 0 +include/svtools/ruler.hxx:733 void Ruler::SetWinPos(long,long) long nWidth 0 @@ -1114,22 +1186,26 @@ include/svtools/stringtransfer.hxx:65 void svt::OStringTransfer::StartStringDrag(const class rtl::OUString &,class vcl::Window *,signed char) signed char _nDragSourceActions 1 -include/svtools/svmedit2.hxx:37 - void ExtMultiLineEdit::SetAttrib(const class TextAttrib &,unsigned int,int,int) - int nStart +include/svtools/unitconv.hxx:39 + void SetFieldUnit(class MetricField &,enum FieldUnit,_Bool) + _Bool bAll 0 -include/svtools/valueset.hxx:322 - void ValueSet::EnableFullItemMode(_Bool) - _Bool bFullMode +include/svtools/valueset.hxx:297 + void ValueSet::InsertItem(unsigned short,const class Image &,const class rtl::OUString &,unsigned long,_Bool) + _Bool bShowLegend 0 -include/svtools/valueset.hxx:356 - void ValueSet::SetItemColor(unsigned short,const class Color &) - unsigned short nItemId - 1 -include/svtools/valueset.hxx:379 +include/svtools/valueset.hxx:354 class Size ValueSet::CalcWindowSizePixel(const class Size &,unsigned short,unsigned short) const unsigned short nCalcLines 0 +include/svtools/valueset.hxx:496 + void SvtValueSet::EnableFullItemMode(_Bool) + _Bool bFullMode + 0 +include/svtools/valueset.hxx:534 + void SvtValueSet::SetItemColor(unsigned short,const class Color &) + unsigned short nItemId + 1 include/svx/algitem.hxx:35 void SvxOrientationItem::SvxOrientationItem(const enum SvxCellOrientation,const unsigned short) const unsigned short nId @@ -1138,15 +1214,15 @@ include/svx/algitem.hxx:39 void SvxOrientationItem::SvxOrientationItem(int,_Bool,const unsigned short) const unsigned short nId 0 -include/svx/colorbox.hxx:60 - void SvxColorListBox::SetSlotId(unsigned short,_Bool) - _Bool bShowNoneButton +include/svx/colorbox.hxx:50 + void SvxColorListBox::SvxColorListBox(class vcl::Window *,long) + long nStyle 0 -include/svx/ctredlin.hxx:193 +include/svx/ctredlin.hxx:210 void SvxTPFilter::SelectedAuthorPos(int) int nPos 0 -include/svx/ctredlin.hxx:216 +include/svx/ctredlin.hxx:233 void SvxTPFilter::CheckAction(_Bool) _Bool bFlag 0 @@ -1182,7 +1258,7 @@ include/svx/frmsel.hxx:144 void svx::FrameSelector::SelectAllBorders(_Bool) _Bool bSelect 0 -include/svx/gridctrl.hxx:392 +include/svx/gridctrl.hxx:391 void DbGridControl::RemoveRows(_Bool) _Bool bNewCursor 0 @@ -1190,10 +1266,6 @@ 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:88 - void SvxLanguageBoxBase::ImplSelectEntryPos(int,_Bool) - _Bool bSelect - 1 include/svx/nbdtmg.hxx:130 unsigned short svx::sidebar::NBOTypeMgrBase::GetNBOIndexForNumRule(class SvxNumRule &,unsigned short,unsigned short) unsigned short nFromIndex @@ -1226,19 +1298,15 @@ include/svx/relfld.hxx:50 void RelativeField::EnableRelativeMode(unsigned short,unsigned short) unsigned short nMin 0 -include/svx/relfld.hxx:56 - void RelativeField::set_value(int,enum FieldUnit) - enum FieldUnit eValueUnit - 0 include/svx/relfld.hxx:58 int RelativeField::get_min(enum FieldUnit) const enum FieldUnit eValueUnit 0 -include/svx/relfld.hxx:70 +include/svx/relfld.hxx:73 void RelativeField::SetFieldUnit(enum FieldUnit,_Bool) _Bool bAll 0 -include/svx/rulritem.hxx:129 +include/svx/rulritem.hxx:123 void SvxColumnDescription::SvxColumnDescription(long,long,_Bool) _Bool bVis 1 @@ -1250,13 +1318,13 @@ include/svx/sdr/overlay/overlayobject.hxx:126 void sdr::overlay::OverlayObject::allowAntiAliase(_Bool) _Bool bNew 0 -include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:107 +include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:106 void drawinglayer::primitive2d::SdrFrameBorderPrimitive2D::SdrFrameBorderPrimitive2D(class std::shared_ptr<class std::__debug::vector<class drawinglayer::primitive2d::SdrFrameBorderData, class std::allocator<class drawinglayer::primitive2d::SdrFrameBorderData> > > &,_Bool,_Bool) - _Bool bForceToSingleDiscreteUnit + _Bool bMergeResult 1 -include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:107 +include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:106 void drawinglayer::primitive2d::SdrFrameBorderPrimitive2D::SdrFrameBorderPrimitive2D(class std::shared_ptr<class std::__debug::vector<class drawinglayer::primitive2d::SdrFrameBorderData, class std::allocator<class drawinglayer::primitive2d::SdrFrameBorderData> > > &,_Bool,_Bool) - _Bool bMergeResult + _Bool bForceToSingleDiscreteUnit 1 include/svx/svdhlpln.hxx:43 void SdrHelpLine::SdrHelpLine(enum SdrHelpLineKind) @@ -1294,19 +1362,19 @@ include/svx/svxdlg.hxx:93 void AbstractSvxZoomDialog::HideButton(enum ZoomButtonId) enum ZoomButtonId nBtnId 1 -include/svx/SvxPresetListBox.hxx:57 +include/svx/SvxPresetListBox.hxx:56 void SvxPresetListBox::FillPresetListBox(class XGradientList &,unsigned int) unsigned int nStartIndex 1 -include/svx/SvxPresetListBox.hxx:58 +include/svx/SvxPresetListBox.hxx:57 void SvxPresetListBox::FillPresetListBox(class XHatchList &,unsigned int) unsigned int nStartIndex 1 -include/svx/SvxPresetListBox.hxx:59 +include/svx/SvxPresetListBox.hxx:58 void SvxPresetListBox::FillPresetListBox(class XBitmapList &,unsigned int) unsigned int nStartIndex 1 -include/svx/SvxPresetListBox.hxx:60 +include/svx/SvxPresetListBox.hxx:59 void SvxPresetListBox::FillPresetListBox(class XPatternList &,unsigned int) unsigned int nStartIndex 1 @@ -1334,22 +1402,26 @@ include/svx/sxmtritm.hxx:42 void SdrMeasureTextUpsideDownItem::SdrMeasureTextUpsideDownItem(_Bool) _Bool bOn 0 -include/svx/textchain.hxx:139 - void TextChain::SetPendingOverflowCheck(const class SdrTextObj *,_Bool) - _Bool - 1 -include/svx/txencbox.hxx:124 - void SvxTextEncodingTreeView::FillFromTextEncodingTable(_Bool,unsigned int,unsigned int) - unsigned int nButIncludeInfoFlags - 0 include/svx/unopool.hxx:44 void SvxUnoDrawPool::SvxUnoDrawPool(class SdrModel *,int) int nServiceId 1 +include/svx/unoshtxt.hxx:54 + void SvxTextEditSource::SvxTextEditSource(class SdrObject &,class SdrText *,class SdrView &,const class OutputDevice &) + class SdrText * pText + 0 +include/svx/verttexttbxctrl.hxx:33 + void SvxVertCTLTextTbxCtrl_Base::ImplInheritanceHelper(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,nullptr_t &&,class rtl::OUString &&) + nullptr_t && + 0 include/svx/xflbmsli.hxx:29 void XFillBmpSizeLogItem::XFillBmpSizeLogItem(_Bool) _Bool bLog 1 +include/svx/xflftrit.hxx:40 + void XFillFloatTransparenceItem::XFillFloatTransparenceItem(const class rtl::OUString &,const class XGradient &,_Bool) + _Bool bEnable + 1 include/svx/xftshtit.hxx:34 void XFormTextShadowTranspItem::XFormTextShadowTranspItem(unsigned short) unsigned short nShdwTransparence @@ -1362,7 +1434,7 @@ include/test/sheet/xactivationbroadcaster.hxx:24 class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XActivationBroadcaster::getXSpreadsheet(const short) const short nNumber 1 -include/test/sheet/xdocumentauditing.hxx:37 +include/test/sheet/xdocumentauditing.hxx:36 _Bool apitest::XDocumentAuditing::hasRightAmountOfShapes(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> &,int,int) int nShapes 1 @@ -1370,6 +1442,22 @@ include/test/sheet/xnamedranges.hxx:39 class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XNamedRanges::getXNamedRanges(int) int nSheet 1 +include/test/text/textcontent.hxx:25 + void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode) + const enum com::sun::star::text::TextContentAnchorType aExpectedTCAT + 1 +include/test/text/textcontent.hxx:25 + void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode) + const enum com::sun::star::text::TextContentAnchorType aNewTCAT + 1 +include/test/text/textcontent.hxx:25 + void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode) + const enum com::sun::star::text::WrapTextMode aExpectedWTM + 0 +include/test/text/textcontent.hxx:25 + void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode) + const enum com::sun::star::text::WrapTextMode aNewWTM + 0 include/tools/date.hxx:71 void Date::Date(enum Date::DateInitEmpty) enum Date::DateInitEmpty @@ -1390,23 +1478,7 @@ 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 -include/tools/stream.hxx:585 - _Bool SvFileStream::LockRange(unsigned long,unsigned long) - unsigned long nBytes - 0 -include/tools/stream.hxx:585 - _Bool SvFileStream::LockRange(unsigned long,unsigned long) - unsigned long nByteOffset - 0 -include/tools/stream.hxx:586 - _Bool SvFileStream::UnlockRange(unsigned long,unsigned long) - unsigned long nBytes - 0 -include/tools/stream.hxx:586 - _Bool SvFileStream::UnlockRange(unsigned long,unsigned long) - unsigned long nByteOffset - 0 -include/tools/stream.hxx:665 +include/tools/stream.hxx:662 void SvMemoryStream::ObjectOwnsMemory(_Bool) _Bool bOwn 1 @@ -1458,7 +1530,7 @@ include/unotools/cmdoptions.hxx:88 _Bool SvtCommandOptions::Lookup(enum SvtCommandOptions::CmdOption,const class rtl::OUString &) const enum SvtCommandOptions::CmdOption eOption 0 -include/unotools/confignode.hxx:260 +include/unotools/confignode.hxx:254 class utl::OConfigurationTreeRoot utl::OConfigurationTreeRoot::tryCreateWithComponentContext(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,int,enum utl::OConfigurationTreeRoot::CREATION_MODE) enum utl::OConfigurationTreeRoot::CREATION_MODE _eMode 1 @@ -1466,10 +1538,14 @@ include/unotools/fontdefs.hxx:50 void ConvertChar::RecodeString(class rtl::OUString &,int,int) const int nIndex 0 -include/unotools/historyoptions.hxx:92 +include/unotools/historyoptions.hxx:93 void SvtHistoryOptions::DeleteItem(enum EHistoryType,const class rtl::OUString &) enum EHistoryType eHistory 0 +include/unotools/localedatawrapper.hxx:280 + double LocaleDataWrapper::stringToDouble(const class rtl::OUString &,_Bool,enum rtl_math_ConversionStatus *,int *) const + _Bool bUseGroupSep + 1 include/unotools/localedatawrapper.hxx:310 double LocaleDataWrapper::stringToDouble(const char16_t *,const char16_t *,_Bool,enum rtl_math_ConversionStatus *,const char16_t **) const _Bool bUseGroupSep @@ -1526,23 +1602,19 @@ include/vcl/alpha.hxx:58 void AlphaMask::Replace(unsigned char,unsigned char) unsigned char cSearchTransparency 0 -include/vcl/bitmapex.hxx:324 - class tools::Polygon BitmapEx::GetContour(_Bool,_Bool,const class tools::Rectangle *) - _Bool bContourVert - 0 include/vcl/dibtools.hxx:40 _Bool ReadDIB(class Bitmap &,class SvStream &,_Bool,_Bool) _Bool bMSOFormat 0 include/vcl/dibtools.hxx:46 _Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool) - _Bool bFileHeader - 1 -include/vcl/dibtools.hxx:46 - _Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool) _Bool bMSOFormat 0 -include/vcl/edit.hxx:102 +include/vcl/dibtools.hxx:46 + _Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool) + _Bool bFileHeader + 1 +include/vcl/edit.hxx:101 void Edit::ImplClearBackground(class OutputDevice &,const class tools::Rectangle &,long,long) long nXStart 0 @@ -1558,27 +1630,35 @@ include/vcl/field.hxx:82 void FormatterBase::EnableEmptyFieldValue(_Bool) _Bool bEnable 1 -include/vcl/field.hxx:507 +include/vcl/field.hxx:223 + _Bool MetricFormatter::TextToValue(const class rtl::OUString &,double &,long,unsigned short,const class LocaleDataWrapper &,enum FieldUnit) + long nBaseValue + 0 +include/vcl/field.hxx:467 double MetricField::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit) long nBaseValue 0 -include/vcl/field.hxx:507 +include/vcl/field.hxx:467 double MetricField::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit) unsigned short nDecDigits 0 -include/vcl/graphicfilter.hxx:290 +include/vcl/fmtfield.hxx:122 + void FormattedField::EnableEmptyField(_Bool) + _Bool bEnable + 1 +include/vcl/graphicfilter.hxx:298 class ErrCode GraphicFilter::ImportGraphic(class Graphic &,const class rtl::OUString &,class SvStream &,unsigned short,unsigned short *,enum GraphicFilterImportFlags,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *,const struct WmfExternal *) const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> * pFilterData 0 -include/vcl/lstbox.hxx:152 - void ListBox::EnableDDAutoWidth(_Bool) - _Bool b +include/vcl/image.hxx:48 + void Image::Image(enum StockImage,const class rtl::OUString &,class Size) + enum StockImage 0 -include/vcl/lstbox.hxx:235 +include/vcl/lstbox.hxx:232 void ListBox::EnableUserDraw(_Bool) _Bool bUserDraw 1 -include/vcl/lstbox.hxx:280 +include/vcl/lstbox.hxx:277 void ListBox::EnableQuickSelection(_Bool) _Bool b 0 @@ -1586,10 +1666,6 @@ include/vcl/mtfxmldump.hxx:34 void MetafileXmlDump::filterActionType(const enum MetaActionType,_Bool) _Bool bShouldFilter 0 -include/vcl/oldprintadaptor.hxx:38 - void vcl::OldStylePrintAdaptor::OldStylePrintAdaptor(const class VclPtr<class Printer> &,class weld::Window *) - class weld::Window * - 0 include/vcl/outdev.hxx:529 _Bool OutputDevice::SupportsOperation(enum OutDevSupportType) const enum OutDevSupportType @@ -1630,6 +1706,10 @@ include/vcl/pdfread.hxx:41 _Bool ImportPDF(class SvStream &,class Bitmap &,unsigned long,class std::__debug::vector<signed char, class std::allocator<signed char> > &,unsigned long,unsigned long,double) unsigned long nPageIndex 0 +include/vcl/settings.hxx:675 + void AllSettings::SetLanguageTag(const class rtl::OUString &,_Bool) + _Bool bCanonicalize + 1 include/vcl/splitwin.hxx:137 void SplitWindow::InsertItem(unsigned short,long,unsigned short,unsigned short,enum SplitWindowItemFlags) unsigned short nIntoSetId @@ -1642,15 +1722,7 @@ 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:283 - void SvImpLBox::SelectEntry(class SvTreeListEntry *,_Bool) - _Bool bSelect - 0 -include/vcl/syschild.hxx:50 +include/vcl/syschild.hxx:51 void SystemChildWindow::EnableEraseBackground(_Bool) _Bool bEnable 0 @@ -1658,39 +1730,35 @@ include/vcl/TaskStopwatch.hxx:76 void TaskStopwatch::TaskStopwatch(_Bool) _Bool bConciderLastIterTime 1 -include/vcl/texteng.hxx:263 +include/vcl/texteng.hxx:262 void TextEngine::UndoActionStart(unsigned short) unsigned short nId 0 -include/vcl/texteng.hxx:288 - void TextEngine::SetAttrib(const class TextAttrib &,unsigned int,int,int,_Bool) - _Bool bIdleFormatAndUpdate - 1 include/vcl/timer.hxx:55 void Timer::Invoke(class Timer *) class Timer * arg 0 -include/vcl/toolbox.hxx:317 +include/vcl/toolbox.hxx:316 void ToolBox::InsertWindow(unsigned short,class vcl::Window *,enum ToolBoxItemBits,unsigned long) enum ToolBoxItemBits nBits 0 -include/vcl/toolbox.hxx:423 +include/vcl/toolbox.hxx:420 class Size ToolBox::CalcWindowSizePixel(unsigned long,enum WindowAlign) unsigned long nCalcLines 1 -include/vcl/toolbox.hxx:447 +include/vcl/toolbox.hxx:444 void ToolBox::EnableCustomize(_Bool) _Bool bEnable 1 -include/vcl/treelistbox.hxx:658 +include/vcl/treelistbox.hxx:655 void SvTreeListBox::MakeVisible(class SvTreeListEntry *,_Bool) _Bool bMoveToTop 1 -include/vcl/treelistbox.hxx:684 +include/vcl/treelistbox.hxx:681 unsigned long SvTreeListBox::SelectChildren(class SvTreeListEntry *,_Bool) _Bool bSelect 0 -include/vcl/treelistbox.hxx:708 +include/vcl/treelistbox.hxx:705 void SvTreeListBox::EnableAsyncDrag(_Bool) _Bool b 1 @@ -1730,155 +1798,155 @@ include/vcl/vectorgraphicdata.hxx:84 void VectorGraphicData::VectorGraphicData(const class rtl::OUString &,enum VectorGraphicDataType) enum VectorGraphicDataType eVectorDataType 0 -include/vcl/weld.hxx:288 +include/vcl/weld.hxx:300 void weld::ScrolledWindow::hadjustment_configure(int,int,int,int,int,int) int step_increment 1 -include/vcl/weld.hxx:306 +include/vcl/weld.hxx:319 void weld::ScrolledWindow::vadjustment_configure(int,int,int,int,int,int) int lower 0 -include/vcl/weld.hxx:317 +include/vcl/weld.hxx:331 void weld::ScrolledWindow::vadjustment_set_lower(int) int upper 0 -include/vcl/weld.hxx:799 +include/vcl/weld.hxx:829 void weld::TreeView::set_text_emphasis(int,_Bool,int) _Bool bOn 1 -include/vcl/weld.hxx:800 +include/vcl/weld.hxx:830 _Bool weld::TreeView::get_text_emphasis(int,int) const int col 0 -include/vcl/weld.hxx:875 - void weld::TreeView::set_toggle(const class weld::TreeIter &,enum TriState,int) - int col - 0 -include/vcl/weld.hxx:1805 - void weld::Menu::set_visible(const class rtl::OString &,_Bool) - _Bool bVisible +include/vcl/weld.hxx:1082 + class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > weld::IconView::make_iterator(const class weld::TreeIter *) const + const class weld::TreeIter * pOrig 0 -include/vcl/weld.hxx:1878 +include/vcl/weld.hxx:2042 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:1881 +include/vcl/weld.hxx:2045 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:1882 +include/vcl/weld.hxx:2046 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:1885 +include/vcl/weld.hxx:2049 class std::unique_ptr<class weld::Assistant, struct std::default_delete<class weld::Assistant> > weld::Builder::weld_assistant(const class rtl::OString &,_Bool) _Bool bTakeOwnership 1 -include/vcl/weld.hxx:1888 +include/vcl/weld.hxx:2052 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:1889 +include/vcl/weld.hxx:2053 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:1892 +include/vcl/weld.hxx:2056 class std::unique_ptr<class weld::Box, struct std::default_delete<class weld::Box> > weld::Builder::weld_box(const class rtl::OString &,_Bool) _Bool bTakeOwnership 0 -include/vcl/weld.hxx:1893 +include/vcl/weld.hxx:2057 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:1894 +include/vcl/weld.hxx:2058 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:1898 +include/vcl/weld.hxx:2062 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:1901 +include/vcl/weld.hxx:2065 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:1906 +include/vcl/weld.hxx:2070 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:1909 +include/vcl/weld.hxx:2073 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:1912 +include/vcl/weld.hxx:2076 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:1919 +include/vcl/weld.hxx:2083 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:1921 +include/vcl/weld.hxx:2085 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:1923 +include/vcl/weld.hxx:2087 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:1925 +include/vcl/weld.hxx:2089 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:1929 +include/vcl/weld.hxx:2093 + class std::unique_ptr<class weld::IconView, struct std::default_delete<class weld::IconView> > weld::Builder::weld_icon_view(const class rtl::OString &,_Bool) + _Bool bTakeOwnership + 0 +include/vcl/weld.hxx:2095 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:1930 +include/vcl/weld.hxx:2096 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:1932 +include/vcl/weld.hxx:2098 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:1935 +include/vcl/weld.hxx:2101 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:1936 +include/vcl/weld.hxx:2102 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:1939 +include/vcl/weld.hxx:2105 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:1941 +include/vcl/weld.hxx:2107 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:1942 +include/vcl/weld.hxx:2108 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:1945 +include/vcl/weld.hxx:2111 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:1950 +include/vcl/weld.hxx:2116 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:1953 +include/vcl/weld.hxx:2119 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/weld.hxx:1954 +include/vcl/weld.hxx:2120 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:606 +include/vcl/window.hxx:607 void vcl::Window::ImplSetMouseTransparent(_Bool) _Bool bTransparent 1 @@ -1886,6 +1954,10 @@ include/xmloff/numehelp.hxx:92 void XMLNumberFormatAttributesExportHelper::SetNumberFormatAttributes(class SvXMLExport &,const class rtl::OUString &,const class rtl::OUString &,_Bool,_Bool) _Bool bExportTypeAttribute 1 +include/xmloff/ProgressBarHelper.hxx:47 + void ProgressBarHelper::ProgressBarHelper(const class com::sun::star::uno::Reference<class com::sun::star::task::XStatusIndicator> &,const _Bool) + const _Bool bStrict + 1 include/xmloff/SchXMLImportHelper.hxx:129 class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> SchXMLImportHelper::GetNewDataSeries(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,const class rtl::OUString &,_Bool) int nCoordinateSystemIndex @@ -1898,14 +1970,30 @@ include/xmloff/txtparae.hxx:222 void XMLTextParagraphExport::exportText(const class com::sun::star::uno::Reference<class com::sun::star::text::XText> &,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextSection> &,_Bool,_Bool,_Bool) _Bool bExportParagraph 1 +include/xmloff/XMLCharContext.hxx:45 + void XMLCharContext::XMLCharContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,short) + short nControl + 1 include/xmloff/XMLEventExport.hxx:89 void XMLEventExport::Export(const class com::sun::star::uno::Reference<class com::sun::star::document::XEventsSupplier> &,_Bool) _Bool bUseWhitespace 1 -include/xmloff/xmlnumi.hxx:79 +include/xmloff/xmlnumi.hxx:60 + void SvxXMLListStyleContext::SvxXMLListStyleContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,_Bool) + _Bool bOutl + 1 +include/xmloff/xmlnumi.hxx:83 void SvxXMLListStyleContext::SetDefaultStyle(const class com::sun::star::uno::Reference<class com::sun::star::container::XIndexReplace> &,short,_Bool) _Bool bOrdered 0 +include/xmloff/xmlstyle.hxx:94 + void SvXMLStyleContext::SvXMLStyleContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,unsigned short,_Bool) + _Bool bDefaultStyle + 0 +include/xmloff/xmlstyle.hxx:197 + void SvXMLStylesContext::SvXMLStylesContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,_Bool) + _Bool bAutomatic + 0 l10ntools/inc/common.hxx:49 void writePoEntry(const class rtl::OString &,class PoOfstream &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const enum PoEntry::TYPE) const enum PoEntry::TYPE eType @@ -1918,7 +2006,15 @@ libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:52 void gtv_main_toolbar_doc_loaded(struct GtvMainToolbar *,LibreOfficeKitDocumentType,_Bool) _Bool bEditMode 1 -libreofficekit/qa/tilebench/tilebench.cxx:139 +libreofficekit/qa/tilebench/tilebench.cxx:71 + void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int) + const int nOffY + 0 +libreofficekit/qa/tilebench/tilebench.cxx:71 + void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int) + const int nOffX + 0 +libreofficekit/qa/tilebench/tilebench.cxx:147 void testTile(class lok::Document *,int,int,_Bool) _Bool dump 1 @@ -1944,11 +2040,11 @@ lotuswordpro/inc/xfilter/xfframestyle.hxx:128 1 lotuswordpro/inc/xfilter/xfframestyle.hxx:128 void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool) - _Bool content + _Bool pos 1 lotuswordpro/inc/xfilter/xfframestyle.hxx:128 void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool) - _Bool pos + _Bool content 1 lotuswordpro/inc/xfilter/xfindex.hxx:101 void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &) @@ -1974,7 +2070,7 @@ lotuswordpro/source/filter/clone.hxx:26 char & detail::has_clone::check_sig(type-parameter-?-? *,test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> *) test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> * 0 -lotuswordpro/source/filter/lwpnumericfmt.hxx:115 +lotuswordpro/source/filter/lwpnumericfmt.hxx:111 void LwpCurrencyInfo::LwpCurrencyInfo(const class rtl::OUString &,_Bool,_Bool) _Bool bShowSpace_ 1 @@ -1994,7 +2090,7 @@ oox/inc/drawingml/textspacing.hxx:44 void oox::drawingml::TextSpacing::TextSpacing(int) int nPoints 0 -oox/source/drawingml/lineproperties.cxx:48 +oox/source/drawingml/lineproperties.cxx:47 void lclSetDashData(struct com::sun::star::drawing::LineDash &,short,int,short,int,int) short nDots 1 @@ -2002,47 +2098,47 @@ oox/source/export/ColorPropertySet.hxx:42 void oox::drawingml::ColorPropertySet::ColorPropertySet(class Color,_Bool) _Bool bFillColor 1 -oox/source/ppt/timenodelistcontext.cxx:103 - void oox::ppt::AnimColor::AnimColor(short,int,int,int) +oox/source/ppt/timenodelistcontext.cxx:105 + void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int) short cs 0 -oox/source/ppt/timenodelistcontext.cxx:103 - void oox::ppt::AnimColor::AnimColor(short,int,int,int) - int o - 0 -oox/source/ppt/timenodelistcontext.cxx:103 - void oox::ppt::AnimColor::AnimColor(short,int,int,int) +oox/source/ppt/timenodelistcontext.cxx:105 + void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int) int t 0 -oox/source/ppt/timenodelistcontext.cxx:103 - void oox::ppt::AnimColor::AnimColor(short,int,int,int) +oox/source/ppt/timenodelistcontext.cxx:105 + void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int) + int o + 0 +oox/source/ppt/timenodelistcontext.cxx:105 + void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int) int th 0 -oox/source/vml/vmlformatting.cxx:543 +oox/source/vml/vmlformatting.cxx:542 long lclGetEmu(const class oox::GraphicHelper &,const class oox::OptValue<class rtl::OUString> &,long) long nDefValue 1 -oox/source/vml/vmlshapecontext.cxx:129 +oox/source/vml/vmlshapecontext.cxx:128 _Bool lclDecodeVmlxBool(const class rtl::OUString &,_Bool) _Bool bDefaultForEmpty 1 -opencl/source/opencl_device.cxx:114 +opencl/source/opencl_device.cxx:115 double random(double,double) double min 0 -opencl/source/openclwrapper.cxx:529 +opencl/source/openclwrapper.cxx:528 _Bool initOpenCLRunEnv(int) int argc 0 -pyuno/inc/pyuno.hxx:92 +pyuno/inc/pyuno.hxx:91 void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire) enum __sal_NoAcquire 0 -pyuno/inc/pyuno.hxx:94 +pyuno/inc/pyuno.hxx:93 void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull) enum __sal_NoAcquire 0 -pyuno/inc/pyuno.hxx:94 +pyuno/inc/pyuno.hxx:93 void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull) enum pyuno::NotNull 0 @@ -2050,15 +2146,23 @@ pyuno/source/module/pyuno_impl.hxx:165 void log(struct pyuno::RuntimeCargo *,int,const class rtl::OUString &) int level 1 +reportdesign/inc/RptModel.hxx:57 + void rptui::OReportModel::OReportModel(class reportdesign::OReportDefinition *) + class reportdesign::OReportDefinition * _pReportDefinition + 0 reportdesign/source/core/inc/Tools.hxx:48 void throwIllegallArgumentException(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short) short ArgumentPosition_ 1 reportdesign/source/filter/xml/xmlFixedContent.cxx:52 - void rptxml::OXMLCharContent::OXMLCharContent(class SvXMLImport &,class rptxml::OXMLFixedContent *,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,short) + void rptxml::(anonymous namespace)::OXMLCharContent::OXMLCharContent(class SvXMLImport &,class rptxml::OXMLFixedContent *,short) short nControl 1 -reportdesign/source/filter/xml/xmlStyleImport.hxx:113 +reportdesign/source/filter/xml/xmlFormattedField.hxx:34 + void rptxml::OXMLFormattedField::OXMLFormattedField(class rptxml::ORptFilter &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,const class com::sun::star::uno::Reference<class com::sun::star::report::XFormattedField> &,class rptxml::OXMLTable *,_Bool) + _Bool _bPageCount + 0 +reportdesign/source/filter/xml/xmlStyleImport.hxx:111 void rptxml::OReportStylesContext::OReportStylesContext(class rptxml::ORptFilter &,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 @@ -2082,11 +2186,11 @@ reportdesign/source/ui/report/SectionWindow.cxx:365 void lcl_setOrigin(class vcl::Window &,long,long) long _nY 0 -sal/osl/unx/file.cxx:97 - void FileHandle_Impl::FileHandle_Impl(int,enum FileHandle_Impl::Kind,const char *) - enum FileHandle_Impl::Kind kind +sal/osl/unx/file.cxx:111 + void (anonymous namespace)::FileHandle_Impl::FileHandle_Impl(int,enum (anonymous namespace)::FileHandle_Impl::Kind,const char *) + enum (anonymous namespace)::FileHandle_Impl::Kind kind 1 -sal/qa/osl/file/osl_File.cxx:420 +sal/qa/osl/file/osl_File.cxx:426 void osl_FileBase::getAbsoluteFileURL::check_getAbsoluteFileURL(const class rtl::OUString &,const class rtl::OString &,enum osl::FileBase::RC,const class rtl::OUString &) enum osl::FileBase::RC _nAssumeError 0 @@ -2094,19 +2198,23 @@ sal/qa/osl/pipe/osl_Pipe.cxx:738 void thread_sleep(unsigned int) unsigned int _nSec 1 -sal/qa/osl/process/osl_Thread.cxx:154 - void ThreadSafeValue::ThreadSafeValue<T>(type-parameter-?-?) +sal/qa/osl/process/osl_Thread.cxx:160 + void (anonymous namespace)::ThreadSafeValue::ThreadSafeValue<T>(type-parameter-?-?) type-parameter-?-? n 0 -sc/inc/address.hxx:325 +sal/qa/rtl/random/rtl_random.cxx:172 + void rtl_random::(anonymous namespace)::Statistics::addValue(unsigned char,int) + int _nValue + 1 +sc/inc/address.hxx:334 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:498 +sc/inc/address.hxx:507 void ScRange::ScRange(enum ScAddress::Uninitialized) enum ScAddress::Uninitialized eUninitialized 0 -sc/inc/address.hxx:501 +sc/inc/address.hxx:510 void ScRange::ScRange(enum ScAddress::InitializeInvalid) enum ScAddress::InitializeInvalid eInvalid 0 @@ -2142,39 +2250,39 @@ sc/inc/chgtrack.hxx:711 void ScChangeActionContent::PutOldValueToDoc(class ScDocument *,short,int) const int nDy 0 -sc/inc/column.hxx:220 - _Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const - _Bool bConsiderCellDrawObjects - 0 -sc/inc/column.hxx:220 +sc/inc/column.hxx:221 _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) +sc/inc/column.hxx:221 + _Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const _Bool bConsiderCellDrawObjects 0 -sc/inc/column.hxx:222 +sc/inc/column.hxx:223 _Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool) _Bool bConsiderCellNotes 0 -sc/inc/column.hxx:249 +sc/inc/column.hxx:223 + _Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool) + _Bool bConsiderCellDrawObjects + 0 +sc/inc/column.hxx:250 void ScColumn::GetUnprotectedCells(int,int,class ScRangeList &) const int nStartRow 0 -sc/inc/column.hxx:336 +sc/inc/column.hxx:337 class ScFormulaCell * ScColumn::SetFormulaCell(int,class ScFormulaCell *,enum sc::StartListeningType,_Bool) _Bool bInheritNumFormatIfNeeded 1 -sc/inc/column.hxx:366 +sc/inc/column.hxx:367 void ScColumn::GetString(struct sc::ColumnBlockConstPosition &,int,class rtl::OUString &,const struct ScInterpreterContext *) const const struct ScInterpreterContext * pContext 0 -sc/inc/column.hxx:668 +sc/inc/column.hxx:669 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:724 +sc/inc/column.hxx:725 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 @@ -2186,39 +2294,43 @@ sc/inc/columnspanset.hxx:84 void sc::ColumnSpanSet::ColumnAction::executeSum(int,int,_Bool,double &) _Bool 1 +sc/inc/columnspanset.hxx:87 + void sc::ColumnSpanSet::ColumnSpanSet(_Bool) + _Bool bInit + 0 sc/inc/columnspanset.hxx:92 - void sc::ColumnSpanSet::set(short,short,int,_Bool) + void sc::ColumnSpanSet::set(const class ScDocument &,short,short,int,_Bool) _Bool bVal 1 sc/inc/columnspanset.hxx:94 - void sc::ColumnSpanSet::set(const class ScRange &,_Bool) + void sc::ColumnSpanSet::set(const class ScDocument &,const class ScRange &,_Bool) _Bool bVal 1 sc/inc/columnspanset.hxx:96 - void sc::ColumnSpanSet::set(short,short,const class sc::SingleColumnSpanSet &,_Bool) + void sc::ColumnSpanSet::set(const class ScDocument &,short,short,const class sc::SingleColumnSpanSet &,_Bool) _Bool bVal 1 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:350 +sc/inc/compiler.hxx:358 void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *) - _Bool bMatrixFlag + const struct ScInterpreterContext * pContext 0 -sc/inc/compiler.hxx:350 +sc/inc/compiler.hxx:358 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:350 +sc/inc/compiler.hxx:358 void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *) _Bool bComputeII 0 -sc/inc/compiler.hxx:356 +sc/inc/compiler.hxx:364 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:386 +sc/inc/compiler.hxx:394 char16_t ScCompiler::GetNativeAddressSymbol(enum ScCompiler::Convention::SpecialSymbolType) const enum ScCompiler::Convention::SpecialSymbolType eType 0 @@ -2234,123 +2346,127 @@ sc/inc/dapiuno.hxx:297 void ScFieldIdentifier::ScFieldIdentifier(const class rtl::OUString &,_Bool) _Bool bDataLayout 1 -sc/inc/dociter.hxx:538 +sc/inc/dociter.hxx:563 void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument *,short,short,int,short,int) - short nCol1 + int nRow1 0 -sc/inc/dociter.hxx:538 +sc/inc/dociter.hxx:563 void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument *,short,short,int,short,int) - int nRow1 + short nCol1 + 0 +sc/inc/dociter.hxx:599 + void ScDocRowHeightUpdater::TabRanges::TabRanges(short,int) + short nTab 0 -sc/inc/document.hxx:944 +sc/inc/document.hxx:955 void ScDocument::SetPendingRowHeights(short,_Bool) _Bool bSet 0 -sc/inc/document.hxx:948 +sc/inc/document.hxx:959 void ScDocument::SetScenario(short,_Bool) _Bool bFlag 1 -sc/inc/document.hxx:1144 +sc/inc/document.hxx:1155 class rtl::OUString ScDocument::GetString(short,int,short,const struct ScInterpreterContext *) const const struct ScInterpreterContext * pContext 0 -sc/inc/document.hxx:1284 +sc/inc/document.hxx:1295 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:1510 +sc/inc/document.hxx:1522 void ScDocument::EnableUserInteraction(_Bool) _Bool bVal 0 -sc/inc/document.hxx:1597 +sc/inc/document.hxx:1609 void ScDocument::CopyMultiRangeFromClip(const class ScAddress &,const class ScMarkData &,enum InsertDeleteFlags,class ScDocument *,_Bool,_Bool,_Bool,_Bool) _Bool bResetCut 1 -sc/inc/document.hxx:1646 +sc/inc/document.hxx:1658 void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &) short nCol1 0 -sc/inc/document.hxx:1646 +sc/inc/document.hxx:1658 void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &) _Bool bMarked 0 -sc/inc/document.hxx:1653 +sc/inc/document.hxx:1665 void ScDocument::UndoToDocument(const class ScRange &,enum InsertDeleteFlags,_Bool,class ScDocument &) _Bool bMarked 0 -sc/inc/document.hxx:1698 +sc/inc/document.hxx:1710 const class ScPatternAttr * ScDocument::GetMostUsedPattern(short,int,int,short) const int nStartRow 0 -sc/inc/document.hxx:1849 +sc/inc/document.hxx:1861 unsigned long ScDocument::GetColWidth(short,short,short) const short nStartCol 0 -sc/inc/document.hxx:1890 +sc/inc/document.hxx:1902 void ScDocument::ShowRow(int,short,_Bool) _Bool bShow 0 -sc/inc/document.hxx:1893 +sc/inc/document.hxx:1905 void ScDocument::SetRowFlags(int,int,short,enum CRFlags) int nStartRow 0 -sc/inc/document.hxx:1902 - void ScDocument::SetRowBreak(int,short,_Bool,_Bool) - _Bool bPage - 0 -sc/inc/document.hxx:1902 +sc/inc/document.hxx:1914 void ScDocument::SetRowBreak(int,short,_Bool,_Bool) _Bool bManual 1 -sc/inc/document.hxx:1903 - void ScDocument::SetColBreak(short,short,_Bool,_Bool) - _Bool bManual - 1 -sc/inc/document.hxx:1903 - void ScDocument::SetColBreak(short,short,_Bool,_Bool) +sc/inc/document.hxx:1914 + void ScDocument::SetRowBreak(int,short,_Bool,_Bool) _Bool bPage 0 -sc/inc/document.hxx:1904 - void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool) +sc/inc/document.hxx:1915 + void ScDocument::SetColBreak(short,short,_Bool,_Bool) _Bool bPage 0 -sc/inc/document.hxx:1904 +sc/inc/document.hxx:1915 + void ScDocument::SetColBreak(short,short,_Bool,_Bool) + _Bool bManual + 1 +sc/inc/document.hxx:1916 void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool) _Bool bManual 1 -sc/inc/document.hxx:1905 - void ScDocument::RemoveColBreak(short,short,_Bool,_Bool) +sc/inc/document.hxx:1916 + void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool) _Bool bPage 0 -sc/inc/document.hxx:1905 +sc/inc/document.hxx:1917 void ScDocument::RemoveColBreak(short,short,_Bool,_Bool) _Bool bManual 1 -sc/inc/document.hxx:2227 +sc/inc/document.hxx:1917 + void ScDocument::RemoveColBreak(short,short,_Bool,_Bool) + _Bool bPage + 0 +sc/inc/document.hxx:2239 void ScDocument::UpdateBroadcastAreas(enum UpdateRefMode,const class ScRange &,short,int,short) enum UpdateRefMode eUpdateRefMode 0 -sc/inc/document.hxx:2257 +sc/inc/document.hxx:2269 void ScDocument::CalcFormulaTree(_Bool,_Bool,_Bool) _Bool bSetAllDirty 1 -sc/inc/document.hxx:2479 +sc/inc/document.hxx:2491 void ScDocument::StoreTabToCache(short,class SvStream &) const short nTab 0 -sc/inc/document.hxx:2480 +sc/inc/document.hxx:2492 void ScDocument::RestoreTabFromCache(short,class SvStream &) short nTab 0 -sc/inc/document.hxx:2556 +sc/inc/document.hxx:2568 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:2575 +sc/inc/document.hxx:2587 void ScMutationDisable::ScMutationDisable(class ScDocument *,enum ScMutationGuardFlags) enum ScMutationGuardFlags nFlags 1 -sc/inc/document.hxx:2607 +sc/inc/document.hxx:2619 void ScMutationGuard::ScMutationGuard(class ScDocument *,enum ScMutationGuardFlags) enum ScMutationGuardFlags nFlags 1 @@ -2362,11 +2478,11 @@ sc/inc/documentimport.hxx:124 void ScDocumentImport::setRowsVisible(short,int,int,_Bool) _Bool bVisible 0 -sc/inc/documentlinkmgr.hxx:66 +sc/inc/documentlinkmgr.hxx:65 _Bool sc::DocumentLinkManager::hasDdeOrOleOrWebServiceLinks(_Bool,_Bool,_Bool) const _Bool bDde 1 -sc/inc/dpdimsave.hxx:170 +sc/inc/dpdimsave.hxx:175 class rtl::OUString ScDPDimensionSaveData::CreateDateGroupDimName(int,const class ScDPObject &,_Bool,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > *) _Bool bAllowSource 1 @@ -2410,6 +2526,10 @@ sc/inc/formulacell.hxx:222 class rtl::OUString ScFormulaCell::GetFormula(class sc::CompileFormulaContext &,const struct ScInterpreterContext *) const const struct ScInterpreterContext * pContext 0 +sc/inc/markarr.hxx:55 + void ScMarkArray::Reset(_Bool,unsigned long) + unsigned long nNeeded + 1 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 @@ -2418,6 +2538,10 @@ 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 +sc/inc/pivot.hxx:124 + void ScPivotField::ScPivotField(short) + short nNewCol + 0 sc/inc/postit.hxx:167 void ScPostIt::ScPostIt(class ScDocument &,const class ScAddress &,unsigned int) unsigned int nPostItId @@ -2466,39 +2590,43 @@ 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 -sc/inc/scmatrix.hxx:333 +sc/inc/scmatrix.hxx:150 + void ScMatrix::IterateResult::IterateResult(double,double,unsigned long) + unsigned long nCount + 0 +sc/inc/scmatrix.hxx:330 _Bool ScMatrix::IsEmptyResult(unsigned long,unsigned long) const unsigned long nC 0 -sc/inc/scmatrix.hxx:333 +sc/inc/scmatrix.hxx:330 _Bool ScMatrix::IsEmptyResult(unsigned long,unsigned long) const unsigned long nR 0 -sc/inc/scmatrix.hxx:372 - unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const - unsigned long nCol2 - 0 -sc/inc/scmatrix.hxx:372 +sc/inc/scmatrix.hxx:369 unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const unsigned long nCol1 0 -sc/inc/scmatrix.hxx:373 - unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const +sc/inc/scmatrix.hxx:369 + unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const unsigned long nCol2 0 -sc/inc/scmatrix.hxx:373 +sc/inc/scmatrix.hxx:370 unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const unsigned long nCol1 0 -sc/inc/scopetools.hxx:46 +sc/inc/scmatrix.hxx:370 + unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const + unsigned long nCol2 + 0 +sc/inc/scopetools.hxx:52 void sc::UndoSwitch::UndoSwitch(class ScDocument &,_Bool) _Bool bUndo 1 -sc/inc/scopetools.hxx:55 +sc/inc/scopetools.hxx:61 void sc::IdleSwitch::IdleSwitch(class ScDocument &,_Bool) _Bool bEnableIdle 0 -sc/inc/scopetools.hxx:65 +sc/inc/scopetools.hxx:71 void sc::DelayFormulaGroupingSwitch::DelayFormulaGroupingSwitch(class ScDocument &,_Bool) _Bool delay 1 @@ -2506,35 +2634,35 @@ 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:777 +sc/inc/table.hxx:781 void ScTable::SetOptimalHeightOnly(class sc::RowHeightContext &,int,int,class ScProgress *,unsigned long) int nStartRow 0 -sc/inc/table.hxx:892 +sc/inc/table.hxx:896 _Bool ScTable::RowHiddenLeaf(int,int *,int *) const int * pFirstRow 0 -sc/inc/table.hxx:897 +sc/inc/table.hxx:901 void ScTable::CopyColHidden(const class ScTable &,short,short) short nStartCol 0 -sc/inc/table.hxx:898 +sc/inc/table.hxx:902 void ScTable::CopyRowHidden(const class ScTable &,int,int) int nStartRow 0 -sc/inc/table.hxx:908 +sc/inc/table.hxx:912 _Bool ScTable::ColFiltered(short,short *,short *) const short * pFirstCol 0 -sc/inc/table.hxx:910 +sc/inc/table.hxx:914 void ScTable::CopyColFiltered(const class ScTable &,short,short) short nStartCol 0 -sc/inc/table.hxx:911 +sc/inc/table.hxx:915 void ScTable::CopyRowFiltered(const class ScTable &,int,int) int nStartRow 0 -sc/inc/token.hxx:265 +sc/inc/token.hxx:268 void ScRefListToken::ScRefListToken(_Bool) _Bool bArrayResult 1 @@ -2550,19 +2678,35 @@ sc/qa/extras/scpdfexport.cxx:51 void ScPDFExportTest::setFont(class ScFieldEditEngine &,int,int,const class rtl::OUString &) int nStart 0 -sc/qa/unit/helper/qahelper.hxx:220 +sc/qa/unit/helper/qahelper.hxx:215 void testFormats(class ScBootstrapFixture *,class ScDocument *,int) int nFormat 0 -sc/qa/unit/subsequent_export-test.cxx:1278 +sc/qa/unit/mark_test.cxx:129 + void Test::testScMarkArraySearch_check(const class ScMarkArray &,int,_Bool,unsigned long) + _Bool expectStatus + 1 +sc/qa/unit/opencl-test.cxx:506 + _Bool ScOpenCLTest::initTestEnv(const class rtl::OUString &,int,_Bool) + _Bool bReadWrite + 0 +sc/qa/unit/parallelism.cxx:76 + class ScUndoCut * ScParallelismTest::cutToClip(class ScDocShell &,const class ScRange &,class ScDocument *,_Bool) + _Bool bCreateUndo + 0 +sc/qa/unit/scshapetest.cxx:51 + class rtl::OUString lcl_compareRectWithTolerance(const class tools::Rectangle &,const class tools::Rectangle &,const int) + const int nTolerance + 1 +sc/qa/unit/subsequent_export-test.cxx:1317 void setAttribute(class ScFieldEditEngine &,int,int,int,unsigned short,class Color) int nPara 0 -sc/qa/unit/subsequent_export-test.cxx:1335 +sc/qa/unit/subsequent_export-test.cxx:1374 void setFont(class ScFieldEditEngine &,int,int,int,const class rtl::OUString &) int nPara 0 -sc/qa/unit/subsequent_export-test.cxx:1348 +sc/qa/unit/subsequent_export-test.cxx:1387 void setEscapement(class ScFieldEditEngine &,int,int,int,short,unsigned char) int nPara 0 @@ -2570,11 +2714,11 @@ sc/qa/unit/ucalc.hxx:49 void Test::clearSheet(class ScDocument *,short) short nTab 0 -sc/source/core/data/dociter.cxx:1276 +sc/source/core/data/dociter.cxx:1273 void BoolResetter::BoolResetter(_Bool &,_Bool) _Bool b 1 -sc/source/core/data/drwlayer.cxx:2004 +sc/source/core/data/drwlayer.cxx:2007 void DeleteFirstUserDataOfType(class SdrObject *,unsigned short) unsigned short nId 1 @@ -2582,8 +2726,8 @@ 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:1061 - class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowDeclRef(_Bool) const +sc/source/core/opencl/formulagroupcl.cxx:1064 + class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenSlidingWindowDeclRef(_Bool) const _Bool nested 0 sc/source/core/opencl/opbase.hxx:129 @@ -2594,31 +2738,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:755 - void ConventionOOO_A1::ConventionOOO_A1(enum formula::FormulaGrammar::AddressConvention) +sc/source/core/tool/compiler.cxx:766 + void (anonymous namespace)::ConventionOOO_A1::ConventionOOO_A1(enum formula::FormulaGrammar::AddressConvention) enum formula::FormulaGrammar::AddressConvention eConv 1 -sc/source/core/tool/scmatrix.cxx:3303 - double matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const - double b - 0 -sc/source/core/tool/scmatrix.cxx:3303 - double matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const +sc/source/core/tool/scmatrix.cxx:3313 + double matop::(anonymous namespace)::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const type-parameter-?-? aOp 0 -sc/source/filter/excel/xeformula.cxx:388 +sc/source/core/tool/scmatrix.cxx:3313 + double matop::(anonymous namespace)::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const + double b + 0 +sc/source/filter/excel/xeformula.cxx:389 void XclExpFmlaCompImpl::ConvertRefData(struct ScComplexRefData &,struct XclRange &,_Bool) const _Bool bNatLangRef 0 -sc/source/filter/excel/xeformula.cxx:406 +sc/source/filter/excel/xeformula.cxx:407 void XclExpFmlaCompImpl::Append(unsigned char,unsigned long) unsigned char nData 0 -sc/source/filter/excel/xeformula.cxx:408 +sc/source/filter/excel/xeformula.cxx:409 void XclExpFmlaCompImpl::Append(unsigned int) unsigned int nData 0 -sc/source/filter/excel/xeformula.cxx:448 +sc/source/filter/excel/xeformula.cxx:449 void XclExpFmlaCompImpl::AppendExt(unsigned char,unsigned long) unsigned char nData 0 @@ -2626,7 +2770,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:1638 +sc/source/filter/html/htmlpars.cxx:1639 type-parameter-?-? getLimitedValue(const type-parameter-?-? &,const type-parameter-?-? &,const type-parameter-?-? &) const type-parameter-?-? & rMin 1 @@ -2694,10 +2838,6 @@ sc/source/filter/inc/htmlpars.hxx:189 void ScHTMLLayoutParser::MakeColNoRef(class o3tl::sorted_vector<unsigned long, struct std::less<unsigned long>, find_unique, true> *,unsigned short,unsigned short,unsigned short,unsigned short) unsigned short nWidthTol 0 -sc/source/filter/inc/pivotcachebuffer.hxx:205 - void oox::xls::PivotCacheField::PivotCacheField(const class oox::xls::WorkbookHelper &,_Bool) - _Bool bIsDatabaseField - 1 sc/source/filter/inc/tool.h:36 void SetFormat(struct LotusContext &,short,int,short,unsigned char,unsigned char) short nTab @@ -2720,11 +2860,11 @@ sc/source/filter/inc/xechart.hxx:338 1 sc/source/filter/inc/xechart.hxx:366 void XclExpChFrame::SetAutoFlags(_Bool,_Bool) - _Bool bAutoSize + _Bool bAutoPos 0 sc/source/filter/inc/xechart.hxx:366 void XclExpChFrame::SetAutoFlags(_Bool,_Bool) - _Bool bAutoPos + _Bool bAutoSize 0 sc/source/filter/inc/xeextlst.hxx:199 class std::shared_ptr<class XclExpExt> XclExtLst::GetItem(enum XclExpExtType) @@ -2774,11 +2914,11 @@ sc/source/filter/inc/xestring.hxx:141 unsigned short XclExpString::GetChar(unsigned short) const unsigned short nCharIdx 0 -sc/source/filter/inc/xestyle.hxx:224 +sc/source/filter/inc/xestyle.hxx:225 unsigned short XclExpFontBuffer::Insert(const class SvxFont &,enum XclExpColorType) enum XclExpColorType eColorType 0 -sc/source/filter/inc/xestyle.hxx:230 +sc/source/filter/inc/xestyle.hxx:231 unsigned short XclExpFontBuffer::Insert(const class SfxItemSet &,short,enum XclExpColorType,_Bool) enum XclExpColorType eColorType 0 @@ -2832,21 +2972,21 @@ sc/source/filter/inc/xlformula.hxx:445 1 sc/source/filter/inc/xltools.hxx:62 void XclGuid::XclGuid(unsigned int,unsigned short,unsigned short,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char) - unsigned char nData43 + unsigned char nData45 0 sc/source/filter/inc/xltools.hxx:62 void XclGuid::XclGuid(unsigned int,unsigned short,unsigned short,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char) - unsigned char nData45 + unsigned char nData43 0 sc/source/filter/inc/xltools.hxx:109 int XclTools::GetScRotation(unsigned short,int) int nRotForStacked 0 -sc/source/filter/oox/formulaparser.cxx:464 +sc/source/filter/oox/formulaparser.cxx:463 struct com::sun::star::sheet::FormulaToken & oox::xls::FormulaParserImpl::getOperandToken(unsigned long,unsigned long) unsigned long nOpIndex 0 -sc/source/filter/oox/formulaparser.cxx:464 +sc/source/filter/oox/formulaparser.cxx:463 struct com::sun::star::sheet::FormulaToken & oox::xls::FormulaParserImpl::getOperandToken(unsigned long,unsigned long) unsigned long nTokenIndex 0 @@ -2858,16 +2998,12 @@ sc/source/filter/xml/XMLExportSharedData.hxx:69 void ScMySharedData::SetDrawPageHasForms(const int,_Bool) _Bool bHasForms 1 -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:55 - void Func_SetType::Func_SetType(int) +sc/source/ui/dbgui/csvgrid.cxx:57 + void (anonymous namespace)::Func_SetType::Func_SetType(int) int nType 0 -sc/source/ui/dbgui/csvgrid.cxx:63 - void Func_Select::Func_Select(_Bool) +sc/source/ui/dbgui/csvgrid.cxx:65 + void (anonymous namespace)::Func_Select::Func_Select(_Bool) _Bool bSelect 0 sc/source/ui/inc/AccessibleDocument.hxx:250 @@ -2890,53 +3026,69 @@ 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/cliputil.hxx:23 + void PasteFromClipboard(class ScViewData *,class ScTabViewShell *,_Bool) + _Bool bShowDialog + 1 +sc/source/ui/inc/datatransformation.hxx:149 + void sc::NumberTransformation::NumberTransformation(const class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,const enum sc::NUMBER_TRANSFORM_TYPE,int) + const enum sc::NUMBER_TRANSFORM_TYPE rType + 0 sc/source/ui/inc/dbdocfun.hxx:85 _Bool ScDBDocFunc::RepeatDB(const class rtl::OUString &,_Bool,_Bool,short) _Bool bApi 1 -sc/source/ui/inc/docfunc.hxx:100 +sc/source/ui/inc/docfunc.hxx:101 void ScDocFunc::SetValueCells(const class ScAddress &,const class std::__debug::vector<double, class std::allocator<double> > &,_Bool) _Bool bInteraction 1 -sc/source/ui/inc/docfunc.hxx:111 +sc/source/ui/inc/docfunc.hxx:112 _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 +sc/source/ui/inc/docfunc.hxx:113 void ScDocFunc::PutData(const class ScAddress &,class ScEditEngineDefaulter &,_Bool) _Bool bApi 1 -sc/source/ui/inc/docfunc.hxx:113 +sc/source/ui/inc/docfunc.hxx:114 _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:119 +sc/source/ui/inc/docfunc.hxx:120 void ScDocFunc::SetNoteText(const class ScAddress &,const class rtl::OUString &,_Bool) _Bool bApi 0 -sc/source/ui/inc/docfunc.hxx:141 +sc/source/ui/inc/docfunc.hxx:122 + class ScPostIt * ScDocFunc::ImportNote(const class ScAddress &,const class rtl::OUString &,const class rtl::OUString *,const class rtl::OUString *) + const class rtl::OUString * pAuthor + 0 +sc/source/ui/inc/docfunc.hxx:122 + class ScPostIt * ScDocFunc::ImportNote(const class ScAddress &,const class rtl::OUString &,const class rtl::OUString *,const class rtl::OUString *) + const class rtl::OUString * pDate + 0 +sc/source/ui/inc/docfunc.hxx:143 _Bool ScDocFunc::SetTabBgColor(class std::__debug::vector<struct ScUndoTabColorInfo, class std::allocator<struct ScUndoTabColorInfo> > &,_Bool) _Bool bApi 0 -sc/source/ui/inc/docfunc.hxx:143 +sc/source/ui/inc/docfunc.hxx:145 void ScDocFunc::SetTableVisible(short,_Bool,_Bool) _Bool bApi 1 -sc/source/ui/inc/docfunc.hxx:176 +sc/source/ui/inc/docfunc.hxx:178 _Bool ScDocFunc::FillSimple(const class ScRange &,const class ScMarkData *,enum FillDir,_Bool) _Bool bApi 0 -sc/source/ui/inc/docfunc.hxx:185 +sc/source/ui/inc/docfunc.hxx:187 _Bool ScDocFunc::FillAuto(class ScRange &,const class ScMarkData *,enum FillDir,enum FillCmd,enum FillDateCmd,unsigned long,double,double,_Bool,_Bool) _Bool bRecord 1 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 + short nStartCol 0 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 &) - short nStartCol + int nStartRow 0 sc/source/ui/inc/pvfundlg.hxx:143 int ScDPSubtotalOptDlg::FindListBoxEntry(const class weld::ComboBox &,const class rtl::OUString &,int) const @@ -2956,12 +3108,12 @@ sc/source/ui/inc/spellparam.hxx:40 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: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 @@ -2980,29 +3132,49 @@ sc/source/ui/inc/tabview.hxx:429 0 sc/source/ui/inc/tabview.hxx:440 void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool) - _Bool bShift + short nMovX 0 sc/source/ui/inc/tabview.hxx:440 void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool) - short nMovX + _Bool bShift 0 sc/source/ui/inc/tabview.hxx:440 void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool) enum ScFollowMode eMode 1 -sc/source/ui/inc/viewdata.hxx:147 +sc/source/ui/inc/undoblk.hxx:323 + void ScUndoSelectionAttr::ScUndoSelectionAttr(class ScDocShell *,const class ScMarkData &,short,int,short,short,int,short,class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> >,_Bool,const class ScPatternAttr *,const class SvxBoxItem *,const class SvxBoxInfoItem *,const class ScRange *) + const class SvxBoxInfoItem * pNewInner + 0 +sc/source/ui/inc/undoblk.hxx:323 + void ScUndoSelectionAttr::ScUndoSelectionAttr(class ScDocShell *,const class ScMarkData &,short,int,short,short,int,short,class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> >,_Bool,const class ScPatternAttr *,const class SvxBoxItem *,const class SvxBoxInfoItem *,const class ScRange *) + const class SvxBoxItem * pNewOuter + 0 +sc/source/ui/inc/undoblk.hxx:323 + void ScUndoSelectionAttr::ScUndoSelectionAttr(class ScDocShell *,const class ScMarkData &,short,int,short,short,int,short,class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> >,_Bool,const class ScPatternAttr *,const class SvxBoxItem *,const class SvxBoxInfoItem *,const class ScRange *) + const class ScRange * pRangeCover + 0 +sc/source/ui/inc/undotab.hxx:120 + void ScUndoRenameTab::ScUndoRenameTab(class ScDocShell *,short,const class rtl::OUString &,const class rtl::OUString &) + short nT + 0 +sc/source/ui/inc/undotab.hxx:200 + void ScUndoTabColor::ScUndoTabColor(class ScDocShell *,short,const class Color &,const class Color &) + short nT + 0 +sc/source/ui/inc/viewdata.hxx:146 void ScPositionHelper::invalidateByPosition(long) long nPos 0 -sc/source/ui/inc/viewdata.hxx:604 +sc/source/ui/inc/viewdata.hxx:599 class Point ScViewData::GetScrPos(short,int,enum ScHSplitPos) const int nWhereY 0 -sc/source/ui/inc/viewdata.hxx:605 +sc/source/ui/inc/viewdata.hxx:600 class Point ScViewData::GetScrPos(short,int,enum ScVSplitPos) const short nWhereX 0 -sc/source/ui/inc/viewdata.hxx:664 +sc/source/ui/inc/viewdata.hxx:663 void ScViewData::AddPixelsWhileBackward(long &,long,int &,int,double,const class ScDocument *,short) int nStartRow 0 @@ -3054,9 +3226,9 @@ sc/source/ui/view/olinewin.cxx:725 _Bool lcl_RotateValue(unsigned long &,unsigned long,unsigned long,_Bool) unsigned long nMin 0 -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 +sc/source/ui/view/prevloc.cxx:266 + 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 (anonymous namespace)::ScPreviewLocationType) + const enum (anonymous namespace)::ScPreviewLocationType eType 0 scaddins/source/analysis/analysishelper.hxx:70 int GetDiffDate360(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,int,int,_Bool) @@ -3070,11 +3242,11 @@ scaddins/source/analysis/analysishelper.hxx:84 int GetDaysInYear(int,int,int) int nNullDate 0 -scaddins/source/analysis/analysishelper.hxx:264 +scaddins/source/analysis/analysishelper.hxx:263 void sca::analysis::SortedIndividualInt32List::InsertHolidayList(const class sca::analysis::ScaAnyConverter &,const class com::sun::star::uno::Any &,int,_Bool) _Bool bInsertOnWeekend 0 -scaddins/source/analysis/analysishelper.hxx:902 +scaddins/source/analysis/analysishelper.hxx:901 int sca::analysis::ScaAnyConverter::getInt32(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Any &,int) int nDefault 0 @@ -3098,15 +3270,15 @@ sd/inc/shapelist.hxx:57 void sd::ShapeList::seekShape(unsigned int) unsigned int nIndex 0 -sd/qa/unit/sdmodeltestbase.hxx:424 +sd/qa/unit/sdmodeltestbase.hxx:423 class com::sun::star::uno::Reference<class com::sun::star::text::XTextField> SdModelTestBase::getTextFieldFromPage(int,int,int,int,class tools::SvRef<class sd::DrawDocShell>) int nRun 0 -sd/qa/unit/sdmodeltestbase.hxx:424 +sd/qa/unit/sdmodeltestbase.hxx:423 class com::sun::star::uno::Reference<class com::sun::star::text::XTextField> SdModelTestBase::getTextFieldFromPage(int,int,int,int,class tools::SvRef<class sd::DrawDocShell>) int nPara 0 -sd/source/filter/eppt/epptbase.hxx:395 +sd/source/filter/eppt/epptbase.hxx:394 unsigned int PPTWriterBase::GetMasterIndex(enum PageType) enum PageType ePageType 0 @@ -3132,12 +3304,20 @@ sd/source/ui/inc/DrawDocShell.hxx:64 0 sd/source/ui/inc/DrawDocShell.hxx:69 void sd::DrawDocShell::DrawDocShell(class SdDrawDocument *,enum SfxObjectCreateMode,_Bool,enum DocumentType) - enum SfxObjectCreateMode eMode - 0 -sd/source/ui/inc/DrawDocShell.hxx:69 - void sd::DrawDocShell::DrawDocShell(class SdDrawDocument *,enum SfxObjectCreateMode,_Bool,enum DocumentType) _Bool bSdDataObj 1 +sd/source/ui/inc/DrawDocShell.hxx:69 + void sd::DrawDocShell::DrawDocShell(class SdDrawDocument *,enum SfxObjectCreateMode,_Bool,enum DocumentType) + enum SfxObjectCreateMode eMode + 0 +sd/source/ui/inc/DrawViewShell.hxx:90 + void sd::DrawViewShell::DrawViewShell(class sd::ViewShellBase &,class vcl::Window *,enum PageKind,class sd::FrameView *) + enum PageKind ePageKind + 0 +sd/source/ui/inc/RemoteServer.hxx:40 + void sd::ClientInfo::ClientInfo(const class rtl::OUString &,const _Bool) + const _Bool bIsAlreadyAuthorised + 0 sd/source/ui/inc/slideshow.hxx:150 void sd::SlideShow::pause(_Bool) _Bool bPause @@ -3162,66 +3342,54 @@ sd/source/ui/slidesorter/cache/SlsBitmapCache.cxx:44 void sd::slidesorter::cache::BitmapCache::CacheEntry::CacheEntry(int,_Bool) _Bool bIsPrecious 1 -sd/source/ui/slidesorter/controller/SlsAnimator.cxx:31 - void sd::slidesorter::controller::Animator::Animation::Animation(const class std::function<void (double)> &,const double,const double,const double,const int,const class std::function<void (void)> &) - const double nStartOffset - 0 -sdext/source/minimizer/configurationaccess.hxx:93 +sdext/source/minimizer/configurationaccess.hxx:90 short ConfigurationAccess::GetConfigProperty(const enum PPPOptimizerTokenEnum,const short) const const short nDefault 0 -sdext/source/minimizer/informationdialog.hxx:39 - class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short) - _Bool bMultiLine - 1 -sdext/source/minimizer/informationdialog.hxx:39 +sdext/source/minimizer/informationdialog.hxx:29 class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short) short nTabIndex 0 -sdext/source/minimizer/informationdialog.hxx:42 +sdext/source/minimizer/informationdialog.hxx:29 + class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short) + _Bool bMultiLine + 1 +sdext/source/minimizer/informationdialog.hxx:32 class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool) _Bool bScale 0 -sdext/source/minimizer/informationdialog.hxx:45 +sdext/source/minimizer/informationdialog.hxx:35 class rtl::OUString InsertCheckBox(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short) short nTabIndex 1 -sdext/source/minimizer/optimizerdialogcontrols.cxx:88 +sdext/source/minimizer/optimizerdialogcontrols.cxx:91 class rtl::OUString InsertButton(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,_Bool,enum PPPOptimizerTokenEnum,enum com::sun::star::awt::PushButtonType) enum com::sun::star::awt::PushButtonType nPushButtonType 0 -sdext/source/minimizer/optimizerdialogcontrols.cxx:197 +sdext/source/minimizer/optimizerdialogcontrols.cxx:200 class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short) double fEffectiveMin 0 -sdext/source/minimizer/optimizerdialogcontrols.cxx:245 +sdext/source/minimizer/optimizerdialogcontrols.cxx:248 class rtl::OUString InsertComboBox(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const _Bool,const class com::sun::star::uno::Sequence<class rtl::OUString> &,int,int,short) const _Bool bEnabled 1 -sdext/source/minimizer/optimizerdialogcontrols.cxx:323 +sdext/source/minimizer/optimizerdialogcontrols.cxx:326 class rtl::OUString InsertListBox(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,const _Bool,const class com::sun::star::uno::Sequence<class rtl::OUString> &,int,int,int,short) const _Bool bEnabled 1 -sdext/source/pdfimport/wrapper/wrapper.cxx:979 - oslFileError pdfi::Buffering::read(char *,short,unsigned long *) +sdext/source/pdfimport/wrapper/wrapper.cxx:968 + oslFileError pdfi::(anonymous namespace)::Buffering::read(char *,short,unsigned long *) short count 1 -sdext/source/presenter/PresenterTextView.hxx:232 +sdext/source/presenter/PresenterTextView.hxx:231 void sdext::presenter::PresenterTextView::SetOffset(const double,const double) const double nLeft 0 -sfx2/source/inc/workwin.hxx:282 +sfx2/source/inc/workwin.hxx:277 void SfxWorkWindow::SetChildWindowVisible_Impl(unsigned int,_Bool,enum SfxVisibilityFlags) _Bool 1 -sfx2/source/sidebar/SidebarController.cxx:77 - class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > UnoNameFromDeckId(const class rtl::OUString &,_Bool) - _Bool isDraw - 0 -slideshow/source/engine/opengl/Operation.hxx:226 - class std::shared_ptr<class SEllipseTranslate> makeSEllipseTranslate(double,double,double,double,_Bool,double,double) - double T0 - 0 slideshow/source/engine/opengl/Operation.hxx:226 class std::shared_ptr<class SEllipseTranslate> makeSEllipseTranslate(double,double,double,double,_Bool,double,double) _Bool bInter @@ -3230,6 +3398,10 @@ slideshow/source/engine/opengl/Operation.hxx:226 class std::shared_ptr<class SEllipseTranslate> makeSEllipseTranslate(double,double,double,double,_Bool,double,double) double T1 1 +slideshow/source/engine/opengl/Operation.hxx:226 + class std::shared_ptr<class SEllipseTranslate> makeSEllipseTranslate(double,double,double,double,_Bool,double,double) + double T0 + 0 slideshow/source/engine/opengl/Operation.hxx:262 class std::shared_ptr<class RotateAndScaleDepthByHeight> makeRotateAndScaleDepthByHeight(const struct glm::detail::tvec3<float> &,const struct glm::detail::tvec3<float> &,double,_Bool,_Bool,double,double) _Bool bScale @@ -3238,15 +3410,19 @@ slideshow/source/engine/opengl/Operation.hxx:262 class std::shared_ptr<class RotateAndScaleDepthByHeight> makeRotateAndScaleDepthByHeight(const struct glm::detail::tvec3<float> &,const struct glm::detail::tvec3<float> &,double,_Bool,_Bool,double,double) _Bool bInter 1 -slideshow/source/engine/slide/layer.hxx:222 +slideshow/source/engine/slide/layer.hxx:221 void slideshow::internal::Layer::Layer(enum slideshow::internal::Layer::Dummy) enum slideshow::internal::Layer::Dummy eFlag 0 -slideshow/source/inc/animationfactory.hxx:107 +slideshow/source/engine/transitions/spiralwipe.hxx:34 + void slideshow::internal::SpiralWipe::SpiralWipe(int,_Bool) + _Bool flipOnYAxis + 0 +slideshow/source/inc/animationfactory.hxx:105 class std::shared_ptr<class slideshow::internal::PairAnimation> createPairPropertyAnimation(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeManager> &,const class basegfx::B2DVector &,short,int) int nFlags 0 -slideshow/source/inc/animationfactory.hxx:125 +slideshow/source/inc/animationfactory.hxx:123 class std::shared_ptr<class slideshow::internal::NumberAnimation> createPathMotionAnimation(const class rtl::OUString &,short,const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeManager> &,const class basegfx::B2DVector &,int) int nFlags 0 @@ -3274,11 +3450,11 @@ svl/source/crypto/cryptosign.cxx:489 struct NSSCMSAttributeStr * my_NSS_CMSAttributeArray_FindAttrByOidTag(struct NSSCMSAttributeStr **,SECOidTag,int) int only 0 -svl/source/crypto/cryptosign.cxx:1717 +svl/source/crypto/cryptosign.cxx:1715 struct NSSCMSAttributeStr * CMSAttributeArray_FindAttrByOidData(struct NSSCMSAttributeStr **,const struct SECOidDataStr *,int) int only 1 -svl/source/crypto/cryptosign.cxx:1756 +svl/source/crypto/cryptosign.cxx:1754 enum _SECStatus StringToOID(struct SECItemStr *,const char *,unsigned int) unsigned int len 0 @@ -3294,31 +3470,43 @@ svl/source/passwordcontainer/passwordcontainer.hxx:150 void NamePassRecord::RemovePasswords(signed char) signed char nStatus 1 -svtools/source/control/valueimp.hxx:349 +svtools/inc/svmedit2.hxx:36 + void ExtMultiLineEdit::SetAttrib(const class TextAttrib &,unsigned int,int,int) + int nStart + 0 +svtools/source/control/valueimp.hxx:348 void ValueItemAcc::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &) short nEventId 1 -svtools/source/control/valueimp.hxx:411 +svtools/source/control/valueimp.hxx:410 void SvtValueItemAcc::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &) short nEventId 1 +svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx:208 + void drawinglayer::primitive2d::SdrBlockTextPrimitive2D::SdrBlockTextPrimitive2D(const class SdrText *,const class OutlinerParaObject &,const class basegfx::B2DHomMatrix &,enum SdrTextHorzAdjust,enum SdrTextVertAdjust,_Bool,_Bool,_Bool,_Bool,_Bool) + _Bool bClipOnBounds + 0 svx/inc/sxmtaitm.hxx:30 void SdrMeasureTextAutoAngleItem::SdrMeasureTextAutoAngleItem(_Bool) _Bool bOn 1 -svx/source/customshapes/EnhancedCustomShape3d.cxx:135 +svx/qa/unit/classicshapes.cxx:34 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> (anonymous namespace)::ClassicshapesTest::getShape(unsigned char,unsigned char) + unsigned char nShapeIndex + 0 +svx/source/customshapes/EnhancedCustomShape3d.cxx:129 enum com::sun::star::drawing::ShadeMode GetShadeMode(const class SdrCustomShapeGeometryItem &,const enum com::sun::star::drawing::ShadeMode) const enum com::sun::star::drawing::ShadeMode eDefault 0 -svx/source/customshapes/EnhancedCustomShape3d.cxx:144 +svx/source/customshapes/EnhancedCustomShape3d.cxx:138 _Bool GetBool(const class SdrCustomShapeGeometryItem &,const class rtl::OUString &,const _Bool) const _Bool bDefault 0 -svx/source/dialog/srchdlg.cxx:726 +svx/source/dialog/srchdlg.cxx:725 void (anonymous namespace)::ToggleSaveToModule::ToggleSaveToModule(class SvxSearchDialog &,_Bool) _Bool bValue 0 -svx/source/gallery2/galbrws1.hxx:124 +svx/source/gallery2/galbrws1.hxx:85 void GalleryBrowser1::SelectTheme(unsigned short) unsigned short nThemePos 0 @@ -3326,19 +3514,19 @@ svx/source/inc/celltypes.hxx:59 void sdr::table::RangeIterator::RangeIterator<T>(const type-parameter-?-? &,const type-parameter-?-? &,_Bool) const type-parameter-?-? & rStart 0 -svx/source/inc/fmexpl.hxx:492 +svx/source/inc/fmexpl.hxx:490 signed char svxform::NavigatorTree::implExecuteDataTransfer(const class svxform::OControlTransferData &,signed char,const class Point &,_Bool) _Bool _bDnD 1 -svx/source/inc/fmshimp.hxx:260 +svx/source/inc/fmshimp.hxx:250 void FmXFormShell::didPrepareClose_Lock(_Bool) _Bool bDid 1 -svx/source/inc/fmvwimp.hxx:266 +svx/source/inc/fmvwimp.hxx:264 _Bool FmXFormView::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,const class rtl::OUString &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDataSource> &,const class rtl::OUString &,const class rtl::OUString &,const int) int _nXOffsetMM 0 -svx/source/svdraw/svdoole2.cxx:635 +svx/source/svdraw/svdoole2.cxx:639 void SdrOle2ObjImpl::SdrOle2ObjImpl(_Bool,const class svt::EmbeddedObjectRef &) _Bool bFrame 0 @@ -3346,10 +3534,6 @@ sw/inc/authfld.hxx:162 class rtl::OUString SwAuthorityField::ExpandCitation(enum ToxAuthorityField,const class SwRootFrame *) const const class SwRootFrame * pLayout 0 -sw/inc/calbck.hxx:192 - void SwModify::SwModify(class SwModify *) - class SwModify * pToRegisterIn - 0 sw/inc/calc.hxx:109 void SwSbxValue::SwSbxValue(long) long n @@ -3358,15 +3542,15 @@ sw/inc/charfmt.hxx:30 void SwCharFormat::SwCharFormat(class SwAttrPool &,const char *,class SwCharFormat *) class SwCharFormat * pDerivedFrom 0 -sw/inc/crsrsh.hxx:563 +sw/inc/crsrsh.hxx:564 _Bool SwCursorShell::GotoMark(const class sw::mark::IMark *const,_Bool) _Bool bAtStart 1 -sw/inc/crsrsh.hxx:824 +sw/inc/crsrsh.hxx:828 void SwCursorShell::FireSectionChangeEvent(unsigned short,unsigned short) unsigned short nNewSection 1 -sw/inc/crsrsh.hxx:825 +sw/inc/crsrsh.hxx:829 void SwCursorShell::FireColumnChangeEvent(unsigned short,unsigned short) unsigned short nNewColumn 1 @@ -3374,35 +3558,35 @@ sw/inc/dbfld.hxx:83 void SwDBField::ChgValue(double,_Bool) _Bool bVal 1 -sw/inc/doc.hxx:988 +sw/inc/doc.hxx:992 void SwDoc::CorrAbs(const class SwNodeIndex &,const struct SwPosition &,const int,_Bool) _Bool bMoveCursor 1 -sw/inc/doc.hxx:1002 +sw/inc/doc.hxx:1006 void SwDoc::CorrAbs(const class SwPaM &,const struct SwPosition &,_Bool) _Bool bMoveCursor 1 -sw/inc/doc.hxx:1008 +sw/inc/doc.hxx:1012 void SwDoc::CorrRel(const class SwNodeIndex &,const struct SwPosition &,const int,_Bool) const int nOffset 0 -sw/inc/doc.hxx:1047 +sw/inc/doc.hxx:1051 void SwDoc::SetCounted(const class SwPaM &,_Bool,const class SwRootFrame *) _Bool bCounted 1 -sw/inc/doc.hxx:1116 +sw/inc/doc.hxx:1120 const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool) const _Bool bForward 0 -sw/inc/doc.hxx:1116 +sw/inc/doc.hxx:1120 const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool) const _Bool bOutline 0 -sw/inc/doc.hxx:1408 +sw/inc/doc.hxx:1412 const class SvNumberFormatter * SwDoc::GetNumberFormatter(_Bool) const _Bool bCreate 1 -sw/inc/doc.hxx:1623 +sw/inc/doc.hxx:1627 void SwDoc::dumpAsXml(struct _xmlTextWriter *) const struct _xmlTextWriter * 0 @@ -3414,27 +3598,31 @@ sw/inc/docary.hxx:399 _Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,enum RedlineType) _Bool bSaveInUndo 1 -sw/inc/docufld.hxx:308 - void SwHiddenTextField::SwHiddenTextField(class SwHiddenTextFieldType *,_Bool,const class rtl::OUString &,const class rtl::OUString &,_Bool,enum SwFieldTypesEnum) - _Bool bConditional +sw/inc/docufld.hxx:283 + void SwHiddenTextFieldType::SwHiddenTextFieldType(_Bool) + _Bool bSetHidden 1 sw/inc/docufld.hxx:308 void SwHiddenTextField::SwHiddenTextField(class SwHiddenTextFieldType *,_Bool,const class rtl::OUString &,const class rtl::OUString &,_Bool,enum SwFieldTypesEnum) _Bool bHidden 0 +sw/inc/docufld.hxx:308 + void SwHiddenTextField::SwHiddenTextField(class SwHiddenTextFieldType *,_Bool,const class rtl::OUString &,const class rtl::OUString &,_Bool,enum SwFieldTypesEnum) + _Bool bConditional + 1 sw/inc/docufld.hxx:525 void SwDocInfoField::SwDocInfoField(class SwDocInfoFieldType *,unsigned short,const class rtl::OUString &,const class rtl::OUString &,unsigned int) unsigned int nFormat 0 -sw/inc/fesh.hxx:416 - const class SwFrameFormat * SwFEShell::GetFlyNum(unsigned long,enum FlyCntType,_Bool) const - enum FlyCntType eType - 1 -sw/inc/fesh.hxx:416 +sw/inc/fesh.hxx:420 const class SwFrameFormat * SwFEShell::GetFlyNum(unsigned long,enum FlyCntType,_Bool) const _Bool bIgnoreTextBoxes 0 -sw/inc/fesh.hxx:418 +sw/inc/fesh.hxx:420 + const class SwFrameFormat * SwFEShell::GetFlyNum(unsigned long,enum FlyCntType,_Bool) const + enum FlyCntType eType + 1 +sw/inc/fesh.hxx:422 class std::__debug::vector<const class SwFrameFormat *, class std::allocator<const class SwFrameFormat *> > SwFEShell::GetFlyFrameFormats(enum FlyCntType,_Bool) _Bool bIgnoreTextBoxes 1 @@ -3454,7 +3642,7 @@ sw/inc/IDocumentMarkAccess.hxx:100 class IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator-(long) const ###1 1 -sw/inc/IDocumentRedlineAccess.hxx:203 +sw/inc/IDocumentRedlineAccess.hxx:189 _Bool IDocumentRedlineAccess::RejectRedline(unsigned long,_Bool) _Bool bCallDelete 1 @@ -3510,15 +3698,15 @@ sw/inc/pam.hxx:158 void SwPaM::SwPaM(const class SwNodeIndex &,int,class SwPaM *) class SwPaM * pRing 0 -sw/inc/shellio.hxx:512 +sw/inc/shellio.hxx:520 void SwWriter::SwWriter(class SvStream &,class SwCursorShell &,_Bool) _Bool bWriteAll 0 -sw/inc/shellio.hxx:514 +sw/inc/shellio.hxx:522 void SwWriter::SwWriter(class SvStream &,class SwPaM &,_Bool) _Bool bWriteAll 0 -sw/inc/shellio.hxx:518 +sw/inc/shellio.hxx:526 void SwWriter::SwWriter(class SfxMedium &,class SwCursorShell &,_Bool) _Bool bWriteAll 1 @@ -3538,34 +3726,46 @@ sw/inc/swmodule.hxx:160 void SwModule::ApplyRulerMetric(enum FieldUnit,_Bool,_Bool) _Bool bWeb 0 -sw/inc/undobj.hxx:332 +sw/inc/undobj.hxx:314 + void SwUndoInsLayFormat::SwUndoInsLayFormat(class SwFrameFormat *,unsigned long,int) + int nCntIdx + 0 +sw/inc/undobj.hxx:314 + void SwUndoInsLayFormat::SwUndoInsLayFormat(class SwFrameFormat *,unsigned long,int) + unsigned long nNodeIdx + 0 +sw/inc/undobj.hxx:337 void SwUndoDelLayFormat::ChgShowSel(_Bool) _Bool bNew 0 -sw/qa/extras/inc/swmodeltestbase.hxx:304 - void SwModelTestBase::executeImportExport(const char *,const char *) - const char * pPassword - 0 -sw/qa/extras/ooxmlimport/ooxmlimport.cxx:85 +sw/qa/extras/ooxmlimport/ooxmlimport.cxx:86 void FailTest::executeImportTest(const char *,const char *) const char * 0 -sw/qa/extras/ooxmlimport/ooxmlimport.cxx:638 +sw/qa/extras/ooxmlimport/ooxmlimport.cxx:692 void lcl_countTextFrames(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,int) int nExpected 1 -sw/source/core/access/accmap.cxx:443 +sw/qa/inc/swmodeltestbase.hxx:303 + void SwModelTestBase::executeImportExport(const char *,const char *) + const char * pPassword + 0 +sw/qa/uibase/shells/shells.cxx:29 + class SwDoc * SwUibaseShellsTest::createDoc(const char *) + const char * pName + 0 +sw/source/core/access/accmap.cxx:456 void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,class SwAccessibleContext *,const class sw::access::SwAccessibleChild &,const enum AccessibleStates) enum SwAccessibleEvent_Impl::EventType eT 0 -sw/source/core/crsr/swcrsr.cxx:67 - void PercentHdl::PercentHdl(unsigned long,unsigned long,class SwDocShell *) +sw/source/core/crsr/swcrsr.cxx:69 + void (anonymous namespace)::PercentHdl::PercentHdl(unsigned long,unsigned long,class SwDocShell *) unsigned long nStt 0 -sw/source/core/inc/DocumentContentOperationsManager.hxx:171 - _Bool sw::DocumentContentOperationsManager::CopyImpl(class SwPaM &,struct SwPosition &,const _Bool,const _Bool,class SwPaM *const) const - const _Bool MakeNewFrames - 1 +sw/source/core/doc/doccomp.cxx:152 + void (anonymous namespace)::CompareMainText::CompareMainText(class SwDoc &,_Bool) + _Bool bRecordDiff + 0 sw/source/core/inc/drawfont.hxx:107 void SwDrawTextInfo::SwDrawTextInfo(const class SwViewShell *,class OutputDevice &,const class rtl::OUString &,const int,const int,unsigned short,_Bool) unsigned short nWidth @@ -3574,11 +3774,11 @@ sw/source/core/inc/drawfont.hxx:107 void SwDrawTextInfo::SwDrawTextInfo(const class SwViewShell *,class OutputDevice &,const class rtl::OUString &,const int,const int,unsigned short,_Bool) _Bool bBullet 0 -sw/source/core/inc/rolbck.hxx:389 +sw/source/core/inc/rolbck.hxx:393 void SwHistory::CopyAttr(const class SwpHints *,const unsigned long,const int,const int,const _Bool) const int nStart 0 -sw/source/core/inc/scriptinfo.hxx:377 +sw/source/core/inc/scriptinfo.hxx:387 enum SwFontScript SwScriptInfo::WhichFont(int,const class rtl::OUString &) int nIdx 0 @@ -3590,50 +3790,70 @@ sw/source/core/inc/txmsrt.hxx:113 class rtl::OUString SwTOXInternational::ToUpper(const class rtl::OUString &,int) const int nPos 0 +sw/source/core/inc/UndoDelete.hxx:67 + void SwUndoDelete::SwUndoDelete(class SwPaM &,_Bool,_Bool) + _Bool bCalledByTableCpy + 0 +sw/source/core/inc/UndoTable.hxx:253 + void SwUndoTableNumFormat::SwUndoTableNumFormat(const class SwTableBox &,const class SfxItemSet *) + const class SfxItemSet * pNewSet + 0 sw/source/core/inc/wrong.hxx:351 void SwWrongList::InsertSubList(int,int,unsigned short,class SwWrongList *) int nNewLen 1 -sw/source/core/txtnode/txtedt.cxx:188 +sw/source/core/txtnode/txtedt.cxx:182 _Bool lcl_MaskRedlinesAndHiddenText(const class SwTextNode &,class rtl::OUStringBuffer &,int,int,const char16_t) int nStt 0 -sw/source/core/undo/untbl.cxx:2191 - void RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags) +sw/source/core/undo/untbl.cxx:2194 + void (anonymous namespace)::RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags) enum RedlineFlags eNewRedlineFlags 0 -sw/source/filter/html/htmltab.cxx:474 +sw/source/filter/html/htmltab.cxx:484 unsigned short HTMLTable::GetBottomCellSpace(unsigned short,unsigned short) const unsigned short nRowSpan 1 -sw/source/filter/html/htmltab.cxx:490 +sw/source/filter/html/htmltab.cxx:500 class SwTableLine * HTMLTable::MakeTableLine(class SwTableBox *,unsigned short,unsigned short,unsigned short,unsigned short) unsigned short nLeftCol 0 -sw/source/filter/html/swhtml.hxx:815 +sw/source/filter/html/swhtml.hxx:817 void SwHTMLParser::BuildTableCell(class HTMLTable *,_Bool,_Bool) _Bool bReadOptions 1 -sw/source/filter/html/wrthtml.hxx:468 +sw/source/filter/html/wrthtml.hxx:470 void SwHTMLWriter::OutBackground(const class SfxItemSet &,_Bool) _Bool bGraphic 0 -sw/source/filter/inc/fltshell.hxx:313 +sw/source/filter/inc/fltshell.hxx:316 void ImportProgress::ImportProgress(class SwDocShell *,long,long) long nStartVal 0 +sw/source/filter/inc/msfilter.hxx:303 + void sw::util::RedlineStack::MoveAttrs(const struct SwPosition &,enum sw::util::RedlineStack::MoveAttrsMode) + enum sw::util::RedlineStack::MoveAttrsMode eMode + 1 sw/source/filter/inc/wrtswtbl.hxx:280 unsigned short SwWriteTable::GetRelWidth(unsigned short,unsigned short) const unsigned short nColSpan 1 +sw/source/filter/ww8/docxattributeoutput.hxx:725 + void DocxAttributeOutput::CmdEndField_Impl(const class SwTextNode *,int,_Bool) + _Bool bWriteRun + 1 sw/source/filter/ww8/needed_cast.hxx:27 type-parameter-?-? checking_cast(type-parameter-?-?,type-parameter-?-?) type-parameter-?-? 0 -sw/source/filter/ww8/writerwordglue.cxx:330 - void myImplHelpers::IfBeforeStart::IfBeforeStart(int) +sw/source/filter/ww8/writerwordglue.cxx:329 + void myImplHelpers::(anonymous namespace)::IfBeforeStart::IfBeforeStart(int) int nStart 0 +sw/source/filter/ww8/wrtww8.hxx:185 + void WW8_SepInfo::WW8_SepInfo(const class SwPageDesc *,const class SwSectionFormat *,unsigned long,class std::optional<unsigned short>,const class SwNode *,_Bool) + _Bool bIsFirstPara + 0 sw/source/filter/ww8/wrtww8.hxx:643 void MSWordExportBase::OutputItemSet(const class SfxItemSet &,_Bool,_Bool,unsigned short,_Bool) unsigned short nScript @@ -3642,19 +3862,19 @@ sw/source/filter/ww8/wrtww8.hxx:893 void MSWordExportBase::NearestAnnotationMark(int &,const int,_Bool) _Bool bNextPositionOnly 0 -sw/source/filter/ww8/wrtww8.hxx:1376 +sw/source/filter/ww8/wrtww8.hxx:1375 void WW8_WrMagicTable::Append(int,unsigned long) - unsigned long nData + int nCp 0 -sw/source/filter/ww8/wrtww8.hxx:1376 +sw/source/filter/ww8/wrtww8.hxx:1375 void WW8_WrMagicTable::Append(int,unsigned long) - int nCp + unsigned long nData 0 -sw/source/filter/ww8/ww8par.cxx:434 - class rtl::OUString Sttb::getStringAtIndex(unsigned int) +sw/source/filter/ww8/ww8par.cxx:438 + class rtl::OUString (anonymous namespace)::Sttb::getStringAtIndex(unsigned int) unsigned int 1 -sw/source/filter/ww8/ww8par.hxx:1681 +sw/source/filter/ww8/ww8par.hxx:1682 _Bool SwWW8ImplReader::SetUpperSpacing(class SwPaM &,int) int nSpace 0 @@ -3678,7 +3898,11 @@ sw/source/filter/ww8/WW8TableInfo.hxx:303 class ww8::WW8TableNodeInfo * ww8::WW8TableInfo::processTableLine(const class SwTable *,const class SwTableLine *,unsigned int,unsigned int,class ww8::WW8TableNodeInfo *,class std::__debug::map<unsigned int, class ww8::WW8TableNodeInfoInner *, struct std::greater<unsigned int>, class std::allocator<struct std::pair<const unsigned int, class ww8::WW8TableNodeInfoInner *> > > &) unsigned int nDepth 1 -sw/source/ui/table/instable.cxx:169 +sw/source/ui/misc/impfnote.hxx:64 + void SwEndNoteOptionPage::SwEndNoteOptionPage(class weld::Container *,class weld::DialogController *,_Bool,const class SfxItemSet &) + _Bool bEndNote + 0 +sw/source/ui/table/instable.cxx:168 void lcl_SetProperties(class SwTableAutoFormat *,_Bool) _Bool bVal 0 @@ -3694,11 +3918,7 @@ sw/source/uibase/inc/dbtree.hxx:58 class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > SwDBTreeList::make_iterator(const class weld::TreeIter *) const const class weld::TreeIter * pOrig 0 -sw/source/uibase/inc/edtwin.hxx:192 - void SwEditWin::ShowAutoCorrectQuickHelp(const class rtl::OUString &,class SvxAutoCorrect &,_Bool) - _Bool bFromIME - 0 -sw/source/uibase/inc/edtwin.hxx:214 +sw/source/uibase/inc/edtwin.hxx:213 void SwEditWin::StdDrawMode(enum SdrObjKind,_Bool) enum SdrObjKind eSdrObjectKind 0 @@ -3708,11 +3928,11 @@ sw/source/uibase/inc/FrameControlsManager.hxx:41 0 sw/source/uibase/inc/frmmgr.hxx:98 void SwFlyFrameAttrMgr::SetLRSpace(long,long) - long nLeft + long nRight 0 sw/source/uibase/inc/frmmgr.hxx:98 void SwFlyFrameAttrMgr::SetLRSpace(long,long) - long nRight + long nLeft 0 sw/source/uibase/inc/frmmgr.hxx:100 void SwFlyFrameAttrMgr::SetULSpace(long,long) @@ -3734,31 +3954,35 @@ sw/source/uibase/inc/prcntfld.hxx:67 int SwPercentField::get_min(enum FieldUnit) const enum FieldUnit eOutUnit 0 -sw/source/uibase/inc/wrtsh.hxx:117 +sw/source/uibase/inc/swuipardlg.hxx:35 + void SwParaDlg::SwParaDlg(class weld::Window *,class SwView &,const class SfxItemSet &,unsigned char,const class rtl::OUString *,_Bool,const class rtl::OString &) + _Bool bDraw + 0 +sw/source/uibase/inc/wrtsh.hxx:119 void SwWrtShell::EndDrag(const class Point *,_Bool) _Bool bProp 0 -sw/source/uibase/inc/wrtsh.hxx:118 +sw/source/uibase/inc/wrtsh.hxx:120 long SwWrtShell::KillSelection(const class Point *,_Bool) _Bool bProp 0 -sw/source/uibase/inc/wrtsh.hxx:118 +sw/source/uibase/inc/wrtsh.hxx:120 long SwWrtShell::KillSelection(const class Point *,_Bool) const class Point * pPt 0 -sw/source/uibase/inc/wrtsh.hxx:412 +sw/source/uibase/inc/wrtsh.hxx:414 _Bool SwWrtShell::GotoMark(const class sw::mark::IMark *const,_Bool) _Bool bSelect 0 -sw/source/uibase/inc/wrtsh.hxx:482 +sw/source/uibase/inc/wrtsh.hxx:484 const class SwRangeRedline * SwWrtShell::GotoRedline(unsigned long,_Bool) _Bool bSelect 1 -test/source/sheet/xdatapilottable2.cxx:238 +test/source/sheet/xdatapilottable2.cxx:237 struct com::sun::star::table::CellAddress getLastUsedCellAddress(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XSpreadsheet> &,int,int) int nRow 0 -test/source/sheet/xdatapilottable2.cxx:238 +test/source/sheet/xdatapilottable2.cxx:237 struct com::sun::star::table::CellAddress getLastUsedCellAddress(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XSpreadsheet> &,int,int) int nCol 0 @@ -3792,12 +4016,12 @@ vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:38 1 vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:45 class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int) - _Bool isVisible - 1 -vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:45 - class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int) int nStyle 0 +vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:45 + class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int) + _Bool isVisible + 1 vcl/backendtest/outputdevice/common.cxx:166 enum vcl::test::TestResult checkDiamondLine(class Bitmap &,int,class Color) int aLayerNumber @@ -3806,54 +4030,50 @@ vcl/backendtest/VisualBackendTest.cxx:53 void drawBitmapScaledAndCentered(const class tools::Rectangle &,class Bitmap,class OutputDevice &,enum BmpScaleFlag) enum BmpScaleFlag aFlag 1 -vcl/inc/listbox.hxx:142 +vcl/inc/listbox.hxx:144 class rtl::OUString ImplEntryList::GetSelectedEntry(int) const int nIndex 0 -vcl/inc/listbox.hxx:334 +vcl/inc/listbox.hxx:337 void ImplListBoxWindow::EnableMouseMoveSelect(_Bool) _Bool bMouseMoveSelect 1 -vcl/inc/opengl/program.hxx:112 - void OpenGLProgram::SetVertexAttrib(unsigned int &,const class rtl::OString &,int,unsigned int,unsigned char,int,const void *) - unsigned char bNormalized - 0 -vcl/inc/opengl/texture.hxx:90 - void OpenGLTexture::OpenGLTexture(int,int,_Bool) - _Bool bAllocate - 1 -vcl/inc/openglgdiimpl.hxx:107 +vcl/inc/opengl/gdiimpl.hxx:107 void OpenGLSalGraphicsImpl::ImplSetClipBit(const class vcl::Region &,unsigned int) unsigned int nMask 1 -vcl/inc/openglgdiimpl.hxx:119 +vcl/inc/opengl/gdiimpl.hxx:119 _Bool OpenGLSalGraphicsImpl::UseLine(class Color,double,float,_Bool) _Bool bUseAA 1 -vcl/inc/openglgdiimpl.hxx:125 +vcl/inc/opengl/gdiimpl.hxx:125 void OpenGLSalGraphicsImpl::DrawConvexPolygon(const class tools::Polygon &,_Bool) _Bool blockAA 1 -vcl/inc/openglgdiimpl.hxx:134 +vcl/inc/opengl/gdiimpl.hxx:134 void OpenGLSalGraphicsImpl::DrawTexture(class OpenGLTexture &,const struct SalTwoRect &,_Bool) _Bool bInverted 0 -vcl/inc/openglgdiimpl.hxx:136 +vcl/inc/opengl/gdiimpl.hxx:136 void OpenGLSalGraphicsImpl::DrawAlphaTexture(class OpenGLTexture &,const struct SalTwoRect &,_Bool,_Bool) _Bool pPremultiplied 1 -vcl/inc/openglgdiimpl.hxx:136 +vcl/inc/opengl/gdiimpl.hxx:136 void OpenGLSalGraphicsImpl::DrawAlphaTexture(class OpenGLTexture &,const struct SalTwoRect &,_Bool,_Bool) _Bool bInverted 1 -vcl/inc/qt5/Qt5FilePicker.hxx:93 - void Qt5FilePicker::Qt5FilePicker(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,enum QFileDialog::FileMode,_Bool,_Bool) - _Bool bUseNativeDialog - 0 -vcl/inc/qt5/Qt5FilePicker.hxx:93 - void Qt5FilePicker::Qt5FilePicker(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,enum QFileDialog::FileMode,_Bool,_Bool) - _Bool bShowFileExtensionInFilterTitle +vcl/inc/opengl/program.hxx:112 + void OpenGLProgram::SetVertexAttrib(unsigned int &,const class rtl::OString &,int,unsigned int,unsigned char,int,const void *) + unsigned char bNormalized 0 +vcl/inc/opengl/texture.hxx:90 + void OpenGLTexture::OpenGLTexture(int,int,_Bool) + _Bool bAllocate + 1 +vcl/inc/qt5/Qt5Instance.hxx:86 + void Qt5Instance::Qt5Instance(class std::unique_ptr<class QApplication, struct std::default_delete<class QApplication> > &,_Bool) + _Bool bUseCairo + 1 vcl/inc/qt5/Qt5VirtualDevice.hxx:42 void Qt5VirtualDevice::Qt5VirtualDevice(enum DeviceFormat,double) double fScale @@ -3862,11 +4082,11 @@ vcl/inc/qt5/Qt5Widget.hxx:47 _Bool Qt5Widget::handleKeyEvent(class Qt5Frame &,const class QWidget &,class QKeyEvent *,const enum Qt5Widget::ButtonKeyState) const enum Qt5Widget::ButtonKeyState 1 -vcl/inc/salgdi.hxx:133 +vcl/inc/salgdi.hxx:134 void SalGraphics::GetFontMetric(class tools::SvRef<class ImplFontMetricData> &,int) int nFallbackLevel 0 -vcl/inc/salgdi.hxx:490 +vcl/inc/salgdi.hxx:501 void SalGraphics::copyArea(long,long,long,long,long,long,_Bool) _Bool bWindowInvalidate 1 @@ -3882,6 +4102,18 @@ vcl/inc/sft.hxx:588 enum vcl::SFErrCodes CreateT3FromTTGlyphs(struct vcl::TrueTypeFont *,struct _IO_FILE *,const char *,const unsigned short *,unsigned char *,int,int) int wmode 0 +vcl/inc/skia/utils.hxx:34 + void disableRenderMethod(enum SkiaHelper::RenderMethod) + enum SkiaHelper::RenderMethod method + 1 +vcl/inc/svimpbox.hxx:184 + void SvImpLBox::FindMostRight(class SvTreeListEntry *,class SvTreeListEntry *) + class SvTreeListEntry * EntryToIgnore + 0 +vcl/inc/svimpbox.hxx:277 + void SvImpLBox::SelectEntry(class SvTreeListEntry *,_Bool) + _Bool bSelect + 0 vcl/inc/unx/gendisp.hxx:45 _Bool SalGenericDisplay::DispatchInternalEvent(_Bool) _Bool bHandleAllCurrentEvent @@ -3898,17 +4130,9 @@ vcl/inc/unx/gtk/glomenu.h:49 void g_lo_menu_new_section(struct GLOMenu *,int,const char *) const char * label 0 -vcl/inc/unx/gtk/gtkdata.hxx:53 - void widget_set_can_focus(struct _GtkWidget *,int) - int can_focus - 1 -vcl/inc/unx/gtk/gtkdata.hxx:58 - void widget_set_can_default(struct _GtkWidget *,int) - int can_default - 1 vcl/inc/unx/gtk/gtkprintwrapper.hxx:41 void vcl::unx::GtkPrintWrapper::print_job_send(struct _GtkPrintJob *,void (*)(struct _GtkPrintJob *, void *, const struct _GError *),void *,void (*)(void *)) const - void (*)(void *) dnotify + void * user_data 0 vcl/inc/unx/gtk/gtkprintwrapper.hxx:41 void vcl::unx::GtkPrintWrapper::print_job_send(struct _GtkPrintJob *,void (*)(struct _GtkPrintJob *, void *, const struct _GError *),void *,void (*)(void *)) const @@ -3916,7 +4140,7 @@ vcl/inc/unx/gtk/gtkprintwrapper.hxx:41 0 vcl/inc/unx/gtk/gtkprintwrapper.hxx:41 void vcl::unx::GtkPrintWrapper::print_job_send(struct _GtkPrintJob *,void (*)(struct _GtkPrintJob *, void *, const struct _GError *),void *,void (*)(void *)) const - void * user_data + void (*)(void *) dnotify 0 vcl/inc/unx/gtk/gtkprintwrapper.hxx:60 void vcl::unx::GtkPrintWrapper::print_unix_dialog_set_support_selection(struct _GtkPrintUnixDialog *,int) const @@ -3982,35 +4206,35 @@ vcl/inc/unx/x11/xrender_peer.hxx:64 void XRenderPeer::CompositeTriangles(int,unsigned long,unsigned long,const XRenderPictFormat *,int,int,const struct _XTriangle *,int) const int nXSrc 0 -vcl/inc/wizdlg.hxx:130 +vcl/inc/wizdlg.hxx:123 _Bool vcl::RoadmapWizard::Finish(long) long nResult 1 -vcl/qa/cppunit/BitmapTest.cxx:67 +vcl/qa/cppunit/BitmapTest.cxx:68 void assertColorsAreSimilar(int,const class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,const class BitmapColor &,const class BitmapColor &) int maxDifference 1 -vcl/source/app/salvtables.cxx:1641 - void SalInstanceAboutDialog::SalInstanceAboutDialog(class vcl::AboutDialog *,class SalInstanceBuilder *,_Bool) +vcl/source/app/salvtables.cxx:1864 + void (anonymous namespace)::SalInstanceAboutDialog::SalInstanceAboutDialog(class vcl::AboutDialog *,class SalInstanceBuilder *,_Bool) _Bool bTakeOwnership 0 -vcl/source/app/salvtables.cxx:1710 - void SalInstanceAssistant::SalInstanceAssistant(class vcl::RoadmapWizard *,class SalInstanceBuilder *,_Bool) +vcl/source/app/salvtables.cxx:1933 + void (anonymous namespace)::SalInstanceAssistant::SalInstanceAssistant(class vcl::RoadmapWizard *,class SalInstanceBuilder *,_Bool) _Bool bTakeOwnership 0 -vcl/source/app/salvtables.cxx:1908 - void SalInstanceFrame::SalInstanceFrame(class VclFrame *,class SalInstanceBuilder *,_Bool) +vcl/source/app/salvtables.cxx:2135 + void (anonymous namespace)::SalInstanceFrame::SalInstanceFrame(class VclFrame *,class SalInstanceBuilder *,_Bool) _Bool bTakeOwnership 0 -vcl/source/control/imivctl.hxx:357 +vcl/source/control/imivctl.hxx:353 const class Size & SvxIconChoiceCtrl_Impl::GetItemSize(enum IcnViewFieldType) const enum IcnViewFieldType 1 -vcl/source/control/imivctl.hxx:404 +vcl/source/control/imivctl.hxx:400 void SvxIconChoiceCtrl_Impl::SetColumn(unsigned short,const class SvxIconChoiceCtrlColumnInfo &) unsigned short nIndex 0 -vcl/source/control/imivctl.hxx:405 +vcl/source/control/imivctl.hxx:401 const class SvxIconChoiceCtrlColumnInfo * SvxIconChoiceCtrl_Impl::GetColumn(unsigned short) const unsigned short nIndex 0 @@ -4026,11 +4250,15 @@ vcl/source/fontsubset/list.h:64 int listSkipForward(struct list_ *,int) int n 1 -vcl/source/gdi/bmpfast.cxx:32 - void BasePixelPtr::BasePixelPtr(unsigned char *) +vcl/source/gdi/bmpfast.cxx:34 + void (anonymous namespace)::BasePixelPtr::BasePixelPtr(unsigned char *) unsigned char * p 0 -vcl/source/uitest/logger.cxx:345 +vcl/source/gdi/FileDefinitionWidgetDraw.cxx:98 + _Bool getSettingValueBool(const class rtl::OString &,_Bool) + _Bool bDefault + 1 +vcl/source/uitest/logger.cxx:346 class rtl::OUString GetKeyInMapWithIndex(const class std::__debug::map<class rtl::OUString, class rtl::OUString, struct std::less<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, class rtl::OUString> > > &,int) int index 0 @@ -4054,14 +4282,22 @@ vcl/unx/generic/print/psputil.hxx:46 _Bool WritePS(class osl::File *,const char *,unsigned long) unsigned long nInLength 1 -vcl/unx/gtk3/gtk3gtkinst.cxx:8393 - void GtkInstanceTreeView::move_before(int,int) - int before +vcl/unx/gtk3/gtk3gtkinst.cxx:4585 + void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool) + _Bool bTakeOwnership + 1 +vcl/unx/gtk3/gtk3gtkinst.cxx:4585 + void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool) + class (anonymous namespace)::GtkInstanceBuilder * pBuilder 0 -vcl/unx/gtk3/gtk3gtkinst.cxx:9392 - int GtkInstanceTreeView::starts_with(const class rtl::OUString &,int,int,_Bool) +vcl/unx/gtk3/gtk3gtkinst.cxx:10149 + int (anonymous namespace)::GtkInstanceTreeView::starts_with(const class rtl::OUString &,int,int,_Bool) int col 0 +vcl/unx/kf5/KF5SalFrame.hxx:36 + void KF5SalFrame::KF5SalFrame(class KF5SalFrame *,enum SalFrameStyleFlags,_Bool) + _Bool bUseCairo + 1 workdir/../vcl/inc/qt5/Qt5Instance.hxx:76 _Bool Qt5Instance::ImplYieldSignal(_Bool,_Bool) _Bool bWait @@ -4082,10 +4318,6 @@ writerfilter/source/dmapper/DomainMapper.hxx:116 void writerfilter::dmapper::DomainMapper::hasControls(const _Bool) const _Bool bSet 1 -writerfilter/source/dmapper/DomainMapper_Impl.hxx:715 - class com::sun::star::uno::Any writerfilter::dmapper::DomainMapper_Impl::GetPropertyFromStyleSheet(enum writerfilter::dmapper::PropertyIds,class tools::SvRef<class writerfilter::dmapper::StyleSheetEntry>,const _Bool) - const _Bool bPara - 1 writerfilter/source/ooxml/OOXMLStreamImpl.hxx:64 void writerfilter::ooxml::OOXMLStreamImpl::OOXMLStreamImpl(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,enum writerfilter::ooxml::OOXMLStream::StreamType_t,_Bool) enum writerfilter::ooxml::OOXMLStream::StreamType_t nType @@ -4118,6 +4350,10 @@ xmloff/source/chart/SchXMLTools.hxx:122 _Bool getXMLRangePropertyFromDataSequence(const class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XDataSequence> &,class rtl::OUString &,_Bool) _Bool bClearProp 1 +xmloff/source/chart/transporttypes.hxx:180 + void DataRowPointStyle::DataRowPointStyle(enum DataRowPointStyle::StyleType,const class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> &,int,int,const class rtl::OUString &,int) + int nPointRepeat + 1 xmloff/source/text/txtflde.cxx:276 _Bool GetOptionalBoolProperty(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySetInfo> &,_Bool) _Bool bDefault @@ -4134,11 +4370,11 @@ xmloff/source/transform/TransformerBase.hxx:170 const class XMLTransformerContext * XMLTransformerBase::GetAncestorContext(unsigned int) const unsigned int i 1 -xmlscript/source/xmldlg_imexp/exp_share.hxx:226 +xmlscript/source/xmldlg_imexp/exp_share.hxx:223 void xmlscript::ElementDescriptor::read(const class rtl::OUString &,const class rtl::OUString &,_Bool) _Bool forceAttribute 0 -xmlsecurity/source/component/documentdigitalsignatures.cxx:91 - void DocumentDigitalSignatures::ImplViewSignatures(const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,enum DocumentSignatureMode,_Bool) +xmlsecurity/source/component/documentdigitalsignatures.cxx:93 + void (anonymous namespace)::DocumentDigitalSignatures::ImplViewSignatures(const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,enum DocumentSignatureMode,_Bool) _Bool bReadOnly 1 diff --git a/compilerplugins/clang/constantparam.constructors.results b/compilerplugins/clang/constantparam.constructors.results index 3b62d1169f09..72b221a626db 100644 --- a/compilerplugins/clang/constantparam.constructors.results +++ b/compilerplugins/clang/constantparam.constructors.results @@ -6,11 +6,11 @@ basctl/source/inc/dlged.hxx:202 void basctl::DlgEditor::printPage(int,class Printer *,const class rtl::OUString &) const class rtl::OUString & CreateQualifiedName() -basic/inc/sbobjmod.hxx:92 +basic/inc/sbobjmod.hxx:90 void SbUserFormModuleInstance::SbUserFormModuleInstance(class SbUserFormModule *,const class rtl::OUString &,const struct com::sun::star::script::ModuleInfo &,_Bool) _Bool bIsVBACompat IsVBACompat() -binaryurp/source/bridge.hxx:104 +binaryurp/source/bridge.hxx:103 class com::sun::star::uno::UnoInterfaceReference binaryurp::Bridge::registerIncomingInterface(const class rtl::OUString &,const class com::sun::star::uno::TypeDescription &) const class rtl::OUString & oid readOid() @@ -19,10 +19,10 @@ bridges/source/jni_uno/nativethreadpool.cxx:40 struct _uno_ThreadPool * thePool uno_threadpool_create() chart2/source/controller/inc/CommandDispatchContainer.hxx:82 - void chart::CommandDispatchContainer::setChartDispatch(const class com::sun::star::uno::Reference<class com::sun::star::frame::XDispatch> &,const class std::__debug::set<class rtl::OUString, struct std::less<class rtl::OUString>, class std::allocator<class rtl::OUString> > &) - const class std::__debug::set<class rtl::OUString, struct std::less<class rtl::OUString>, class std::allocator<class rtl::OUString> > & rChartCommands + void chart::CommandDispatchContainer::setChartDispatch(const class com::sun::star::uno::Reference<class com::sun::star::frame::XDispatch> &,const class o3tl::sorted_vector<class rtl::OUString, struct std::less<class rtl::OUString>, find_unique, true> &) + const class o3tl::sorted_vector<class rtl::OUString, struct std::less<class rtl::OUString>, find_unique, true> & rChartCommands impl_getAvailableCommands() -chart2/source/view/axes/VCartesianAxis.cxx:411 +chart2/source/view/axes/VCartesianAxis.cxx:414 class rtl::OUString getTextLabelString(const class chart::FixedNumberFormatter &,const class com::sun::star::uno::Sequence<class rtl::OUString> *,const struct chart::TickInfo *,_Bool,class Color &,_Bool &) _Bool bComplexCat isComplexCategoryAxis() @@ -34,19 +34,7 @@ configmgr/source/dconf.cxx:201 void configmgr::dconf::(anonymous namespace)::ChangesetHolder::ChangesetHolder(struct _DConfChangeset *) struct _DConfChangeset * changeset dconf_changeset_new() -connectivity/source/commontools/sqlerror.cxx:64 - void connectivity::SQLError_Impl::raiseException(const int,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &) - const class connectivity::SQLError::ParamValue & _rParamValue3 - ParamValue() -connectivity/source/commontools/sqlerror.cxx:64 - void connectivity::SQLError_Impl::raiseException(const int,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &) - const class connectivity::SQLError::ParamValue & _rParamValue2 - ParamValue() -connectivity/source/commontools/sqlerror.cxx:64 - void connectivity::SQLError_Impl::raiseException(const int,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &) - const class connectivity::SQLError::ParamValue & _rParamValue1 - ParamValue() -connectivity/source/commontools/TColumnsHelper.cxx:52 +connectivity/source/commontools/TColumnsHelper.cxx:47 void connectivity::OColumnsHelperImpl::OColumnsHelperImpl(_Bool) _Bool _bCase isCaseSensitive() @@ -58,39 +46,39 @@ connectivity/source/drivers/evoab2/NTable.hxx:37 void connectivity::evoab::OEvoabTable::OEvoabTable(class connectivity::sdbcx::OCollection *,class connectivity::evoab::OEvoabConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & SchemaName "" -connectivity/source/inc/calc/CTable.hxx:58 +connectivity/source/inc/calc/CTable.hxx:57 void connectivity::calc::OCalcTable::OCalcTable(class connectivity::sdbcx::OCollection *,class connectivity::calc::OCalcConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & SchemaName "" -connectivity/source/inc/calc/CTable.hxx:58 +connectivity/source/inc/calc/CTable.hxx:57 void connectivity::calc::OCalcTable::OCalcTable(class connectivity::sdbcx::OCollection *,class connectivity::calc::OCalcConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & Description "" -connectivity/source/inc/calc/CTable.hxx:58 +connectivity/source/inc/calc/CTable.hxx:57 void connectivity::calc::OCalcTable::OCalcTable(class connectivity::sdbcx::OCollection *,class connectivity::calc::OCalcConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & CatalogName "" -connectivity/source/inc/dbase/DTable.hxx:149 +connectivity/source/inc/dbase/DTable.hxx:148 void connectivity::dbase::ODbaseTable::ODbaseTable(class connectivity::sdbcx::OCollection *,class connectivity::dbase::ODbaseConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) - const class rtl::OUString & CatalogName + const class rtl::OUString & SchemaName "" -connectivity/source/inc/dbase/DTable.hxx:149 +connectivity/source/inc/dbase/DTable.hxx:148 void connectivity::dbase::ODbaseTable::ODbaseTable(class connectivity::sdbcx::OCollection *,class connectivity::dbase::ODbaseConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) - const class rtl::OUString & SchemaName + const class rtl::OUString & CatalogName "" -connectivity/source/inc/dbase/DTable.hxx:149 +connectivity/source/inc/dbase/DTable.hxx:148 void connectivity::dbase::ODbaseTable::ODbaseTable(class connectivity::sdbcx::OCollection *,class connectivity::dbase::ODbaseConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & Description "" -connectivity/source/inc/flat/ETable.hxx:80 +connectivity/source/inc/flat/ETable.hxx:79 void connectivity::flat::OFlatTable::OFlatTable(class connectivity::sdbcx::OCollection *,class connectivity::flat::OFlatConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & Description "" -connectivity/source/inc/flat/ETable.hxx:80 +connectivity/source/inc/flat/ETable.hxx:79 void connectivity::flat::OFlatTable::OFlatTable(class connectivity::sdbcx::OCollection *,class connectivity::flat::OFlatConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & SchemaName "" -connectivity/source/inc/flat/ETable.hxx:80 +connectivity/source/inc/flat/ETable.hxx:79 void connectivity::flat::OFlatTable::OFlatTable(class connectivity::sdbcx::OCollection *,class connectivity::flat::OFlatConnection *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & CatalogName "" @@ -103,11 +91,11 @@ connectivity/source/inc/OColumn.hxx:68 const class rtl::OUString & _aTableName "" connectivity/source/manager/mdrivermanager.cxx:144 - const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDriver> & drivermanager::ExtractDriverFromAccess::operator()(const struct drivermanager::DriverAccess &) const + const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDriver> & drivermanager::(anonymous namespace)::ExtractDriverFromAccess::operator()(const struct drivermanager::DriverAccess &) const const struct drivermanager::DriverAccess & _rAccess ExtractDriverFromAccess() connectivity/source/manager/mdrivermanager.cxx:152 - const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDriver> & drivermanager::ExtractDriverFromCollectionElement::operator()(const struct std::pair<const class rtl::OUString, class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDriver> > &) const + const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDriver> & drivermanager::(anonymous namespace)::ExtractDriverFromCollectionElement::operator()(const struct std::pair<const class rtl::OUString, class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDriver> > &) const const struct std::pair<const class rtl::OUString, class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDriver> > & _rElement ExtractDriverFromCollectionElement() dbaccess/source/core/api/RowSetRow.hxx:40 @@ -122,10 +110,6 @@ dbaccess/source/core/inc/View.hxx:41 void dbaccess::View::View(const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,_Bool,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) _Bool _bCaseSensitive isCaseSensitive() -dbaccess/source/ui/inc/adtabdlg.hxx:77 - void dbaui::OAddTableDlg::OAddTableDlg(class weld::Window *,class dbaui::IAddTableDialogContext &) - class dbaui::IAddTableDialogContext & _rContext - impl_getDialogContext() dbaccess/source/ui/inc/indexes.hxx:72 void dbaui::OIndex::flagAsNew(const struct dbaui::GrantIndexAccess &) const struct dbaui::GrantIndexAccess & @@ -134,6 +118,10 @@ dbaccess/source/ui/inc/indexes.hxx:73 void dbaui::OIndex::flagAsCommitted(const struct dbaui::GrantIndexAccess &) const struct dbaui::GrantIndexAccess & GrantIndexAccess() +dbaccess/source/ui/inc/sqlmessage.hxx:89 + void dbaui::OSQLMessageBox::OSQLMessageBox(class weld::Window *,const class dbtools::SQLExceptionInfo &,enum dbaui::MessBoxStyle,const class rtl::OUString &) + const class rtl::OUString & _rHelpURL + "" dbaccess/source/ui/inc/TableCopyHelper.hxx:100 void dbaui::OTableCopyHelper::pasteTable(const class TransferableDataHelper &,const class rtl::OUString &,const class utl::SharedUNOComponent<class com::sun::star::sdbc::XConnection, class utl::DisposableComponent> &) const class utl::SharedUNOComponent<class com::sun::star::sdbc::XConnection, class utl::DisposableComponent> & _xConnection @@ -142,31 +130,31 @@ dbaccess/source/ui/inc/TableWindowData.hxx:66 _Bool dbaui::OTableWindowData::init(const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,_Bool) _Bool _bAllowQueries allowQueries() -dbaccess/source/ui/inc/WCPage.hxx:60 +dbaccess/source/ui/inc/WCPage.hxx:59 void dbaui::OCopyTable::OCopyTable(class weld::Container *,class dbaui::OCopyTableWizard *) class weld::Container * pParent CreatePageContainer() -dbaccess/source/ui/uno/copytablewizard.cxx:204 - void dbaui::CopyTableWizard::impl_dialogToAttributes_nothrow(const class dbaui::OCopyTableWizard &) +dbaccess/source/ui/uno/copytablewizard.cxx:207 + void dbaui::(anonymous namespace)::CopyTableWizard::impl_dialogToAttributes_nothrow(const class dbaui::OCopyTableWizard &) const class dbaui::OCopyTableWizard & _rDialog impl_getDialog_throw() -desktop/source/deployment/gui/dp_gui_dependencydialog.hxx:37 +desktop/source/deployment/gui/dp_gui_dependencydialog.hxx:36 void dp_gui::DependencyDialog::DependencyDialog(class weld::Window *,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &) class weld::Window * parent activeDialog() -desktop/source/deployment/inc/dp_interact.h:58 +desktop/source/deployment/inc/dp_interact.h:57 void dp_misc::ProgressLevel::update(const class com::sun::star::uno::Any &) const const class com::sun::star::uno::Any & status Any() -editeng/source/editeng/impedit3.cxx:155 +editeng/source/editeng/impedit3.cxx:153 void lcl_DrawRedLines(class OutputDevice *,long,const class Point &,unsigned long,unsigned long,const long *,const class WrongList *,short,const class Point &,_Bool,_Bool) _Bool bVertical IsVertical() -editeng/source/misc/svxacorr.cxx:2646 +editeng/source/misc/svxacorr.cxx:2657 _Bool SvxAutocorrWordList::CompareSvxAutocorrWordList::operator()(const class SvxAutocorrWord &,const class SvxAutocorrWord &) const const class SvxAutocorrWord & lhs CompareSvxAutocorrWordList() -emfio/inc/mtftools.hxx:636 +emfio/inc/mtftools.hxx:635 void emfio::MtfTools::ExcludeClipRect(const class tools::Rectangle &) const class tools::Rectangle & rRect ReadRectangle() @@ -182,46 +170,54 @@ extensions/source/dbpilots/controlwizard.hxx:111 void dbp::OControlWizard::setFormConnection(const struct dbp::OAccessRegulator &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,_Bool) const struct dbp::OAccessRegulator & OAccessRegulator() -extensions/source/logging/consolehandler.cxx:90 - void logging::ConsoleHandler::enterMethod(class logging::ComponentMethodGuard<class logging::ConsoleHandler>::Access) - class logging::ComponentMethodGuard<class logging::ConsoleHandler>::Access +extensions/source/logging/consolehandler.cxx:93 + void logging::(anonymous namespace)::ConsoleHandler::enterMethod(class logging::ComponentMethodGuard<class logging::(anonymous namespace)::ConsoleHandler>::Access) + class logging::ComponentMethodGuard<class logging::(anonymous namespace)::ConsoleHandler>::Access Access() -extensions/source/logging/consolehandler.cxx:91 - void logging::ConsoleHandler::leaveMethod(class logging::ComponentMethodGuard<class logging::ConsoleHandler>::Access) - class logging::ComponentMethodGuard<class logging::ConsoleHandler>::Access +extensions/source/logging/consolehandler.cxx:94 + void logging::(anonymous namespace)::ConsoleHandler::leaveMethod(class logging::ComponentMethodGuard<class logging::(anonymous namespace)::ConsoleHandler>::Access) + class logging::ComponentMethodGuard<class logging::(anonymous namespace)::ConsoleHandler>::Access Access() -extensions/source/logging/filehandler.cxx:109 - void logging::FileHandler::enterMethod(class logging::ComponentMethodGuard<class logging::FileHandler>::Access) - class logging::ComponentMethodGuard<class logging::FileHandler>::Access +extensions/source/logging/filehandler.cxx:112 + void logging::(anonymous namespace)::FileHandler::enterMethod(class logging::ComponentMethodGuard<class logging::(anonymous namespace)::FileHandler>::Access) + class logging::ComponentMethodGuard<class logging::(anonymous namespace)::FileHandler>::Access Access() -extensions/source/logging/filehandler.cxx:110 - void logging::FileHandler::leaveMethod(class logging::ComponentMethodGuard<class logging::FileHandler>::Access) - class logging::ComponentMethodGuard<class logging::FileHandler>::Access +extensions/source/logging/filehandler.cxx:113 + void logging::(anonymous namespace)::FileHandler::leaveMethod(class logging::ComponentMethodGuard<class logging::(anonymous namespace)::FileHandler>::Access) + class logging::ComponentMethodGuard<class logging::(anonymous namespace)::FileHandler>::Access Access() -extensions/source/propctrlr/browserlistbox.hxx:109 - void pcr::OBrowserListBox::ActivateListBox(_Bool) - _Bool _bActive - IsVisible() +extensions/source/propctrlr/fontdialog.hxx:36 + void pcr::ControlCharacterDialog::ControlCharacterDialog(class weld::Window *,const class SfxItemSet &) + class weld::Window * pParent + impl_getDefaultDialogFrame_nothrow() +extensions/source/propctrlr/formlinkdialog.hxx:67 + void pcr::FormLinkDialog::FormLinkDialog(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) + class weld::Window * _pParent + impl_getDefaultDialogFrame_nothrow() +extensions/source/propctrlr/formlinkdialog.hxx:67 + void pcr::FormLinkDialog::FormLinkDialog(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) + const class rtl::OUString & _sMasterLabel + "" +extensions/source/propctrlr/formlinkdialog.hxx:67 + void pcr::FormLinkDialog::FormLinkDialog(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) + const class rtl::OUString & _sExplanation + "" +extensions/source/propctrlr/formlinkdialog.hxx:67 + void pcr::FormLinkDialog::FormLinkDialog(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) + const class rtl::OUString & _sDetailLabel + "" extensions/source/propctrlr/listselectiondlg.hxx:38 void pcr::ListSelectionDialog::ListSelectionDialog(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const class rtl::OUString &) class weld::Window * _pParent impl_getDefaultDialogFrame_nothrow() -extensions/source/propctrlr/usercontrol.hxx:63 - void pcr::OFormatSampleControl::OFormatSampleControl(class vcl::Window *) - class vcl::Window * pParent - impl_getDefaultDialogParent_nothrow() -extensions/source/propctrlr/usercontrol.hxx:103 - void pcr::OFormattedNumericControl::OFormattedNumericControl(class vcl::Window *,long) - class vcl::Window * pParent - impl_getDefaultDialogParent_nothrow() -extensions/source/propctrlr/usercontrol.hxx:129 - void pcr::OFileUrlControl::OFileUrlControl(class vcl::Window *) - class vcl::Window * pParent - impl_getDefaultDialogParent_nothrow() -extensions/source/propctrlr/usercontrol.hxx:146 - void pcr::OTimeDurationControl::OTimeDurationControl(class vcl::Window *) - class vcl::Window * pParent - impl_getDefaultDialogParent_nothrow() +extensions/source/propctrlr/taborder.hxx:60 + void pcr::TabOrderDialog::TabOrderDialog(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTabControllerModel> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XControlContainer> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &) + const class com::sun::star::uno::Reference<class com::sun::star::awt::XControlContainer> & _rxControlCont + impl_getContextControlContainer_nothrow() +extensions/source/propctrlr/taborder.hxx:60 + void pcr::TabOrderDialog::TabOrderDialog(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTabControllerModel> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XControlContainer> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &) + class weld::Window * pParent + impl_getDefaultDialogFrame_nothrow() filter/source/flash/swfwriter.hxx:140 void swf::FlashFont::FlashFont(const class vcl::Font &,unsigned short) unsigned short nId @@ -290,22 +286,6 @@ include/connectivity/sdbcx/VView.hxx:67 void connectivity::sdbcx::OView::OView(_Bool,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDatabaseMetaData> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & _rCommand "" -include/connectivity/sqlerror.hxx:157 - void connectivity::SQLError::raiseException(const int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &) const - const class connectivity::SQLError::ParamValue & _rParamValue2 - ParamValue() -include/connectivity/sqlerror.hxx:157 - void connectivity::SQLError::raiseException(const int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &) const - const class connectivity::SQLError::ParamValue & _rParamValue3 - ParamValue() -include/connectivity/sqlerror.hxx:240 - class com::sun::star::sdbc::SQLException connectivity::SQLError::getSQLException(const int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &) const - const class connectivity::SQLError::ParamValue & _rParamValue2 - ParamValue() -include/connectivity/sqlerror.hxx:240 - class com::sun::star::sdbc::SQLException connectivity::SQLError::getSQLException(const int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &,const class connectivity::SQLError::ParamValue &) const - const class connectivity::SQLError::ParamValue & _rParamValue3 - ParamValue() include/drawinglayer/tools/primitive2dxmldump.hxx:41 struct _xmlDoc * drawinglayer::tools::Primitive2dXmlDump::dumpAndParse(const class drawinglayer::primitive2d::Primitive2DContainer &,const class rtl::OUString &) const class rtl::OUString & rStreamName @@ -327,22 +307,22 @@ include/formula/FormulaCompiler.hxx:291 _Bool _bIsEnglish isEnglish() include/i18nlangtag/languagetagicu.hxx:49 - class icu_63::Locale LanguageTagIcu::getIcuLocale(const class LanguageTag &,const class rtl::OUString &,const class rtl::OUString &) + class icu_65::Locale LanguageTagIcu::getIcuLocale(const class LanguageTag &,const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & rVariant "" -include/o3tl/sorted_vector.hxx:302 +include/o3tl/sorted_vector.hxx:312 _Bool o3tl::less_ptr_to::operator()(type-parameter-?-? *const &,type-parameter-?-? *const &) const type-parameter-?-? *const & lhs Compare() -include/o3tl/sorted_vector.hxx:310 +include/o3tl/sorted_vector.hxx:320 _Bool o3tl::less_uniqueptr_to::operator()(const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &,const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &) const const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > & lhs Compare() -include/o3tl/sorted_vector.hxx:324 +include/o3tl/sorted_vector.hxx:334 pair<typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator, _Bool> o3tl::find_unique::operator()(typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,const type-parameter-?-? &) typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_unique, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator first Find_t() -include/o3tl/sorted_vector.hxx:341 +include/o3tl/sorted_vector.hxx:351 pair<typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator, _Bool> o3tl::find_partialorder_ptrequals::operator()(typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator,const type-parameter-?-? &) typename sorted_vector<type-parameter-?-?, type-parameter-?-?, find_partialorder_ptrequals, std::is_copy_constructible<type-parameter-?-?>::value>::const_iterator first Find_t() @@ -366,43 +346,43 @@ include/opencl/openclwrapper.hxx:61 _Bool buildProgramFromBinary(const char *,struct openclwrapper::GPUEnv *,const char *,int) const char * buildOption "" -include/registry/registry.hxx:410 +include/registry/registry.hxx:409 enum RegError RegistryKey::getKeyNames(const class rtl::OUString &,class RegistryKeyNames &) const class rtl::OUString & keyName "" -include/registry/registry.hxx:436 +include/registry/registry.hxx:435 enum RegError RegistryKey::setValue(const class rtl::OUString &,enum RegValueType,void *,unsigned int) const class rtl::OUString & keyName "" -include/registry/registry.hxx:450 +include/registry/registry.hxx:449 enum RegError RegistryKey::setLongListValue(const class rtl::OUString &,const int *,unsigned int) const class rtl::OUString & keyName "" -include/registry/registry.hxx:463 +include/registry/registry.hxx:462 enum RegError RegistryKey::setStringListValue(const class rtl::OUString &,char **,unsigned int) const class rtl::OUString & keyName "" -include/registry/registry.hxx:476 +include/registry/registry.hxx:475 enum RegError RegistryKey::setUnicodeListValue(const class rtl::OUString &,char16_t **,unsigned int) const class rtl::OUString & keyName "" -include/registry/registry.hxx:489 +include/registry/registry.hxx:488 enum RegError RegistryKey::getValueInfo(const class rtl::OUString &,enum RegValueType *,unsigned int *) const class rtl::OUString & keyName "" -include/registry/registry.hxx:501 +include/registry/registry.hxx:500 enum RegError RegistryKey::getValue(const class rtl::OUString &,void *) const class rtl::OUString & keyName "" -include/registry/registry.hxx:512 +include/registry/registry.hxx:511 enum RegError RegistryKey::getLongListValue(const class rtl::OUString &,class RegistryValueList<int> &) const class rtl::OUString & keyName "" -include/registry/registry.hxx:523 +include/registry/registry.hxx:522 enum RegError RegistryKey::getStringListValue(const class rtl::OUString &,class RegistryValueList<char *> &) const class rtl::OUString & keyName "" -include/registry/registry.hxx:534 +include/registry/registry.hxx:533 enum RegError RegistryKey::getUnicodeListValue(const class rtl::OUString &,class RegistryValueList<char16_t *> &) const class rtl::OUString & keyName "" @@ -416,25 +396,33 @@ include/registry/writer.hxx:131 "" include/sfx2/dinfdlg.hxx:84 void SfxDocumentInfoItem::SfxDocumentInfoItem(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::document::XDocumentProperties> &,const class com::sun::star::uno::Sequence<struct com::sun::star::document::CmisProperty> &,_Bool,_Bool) - _Bool bUseThumbnailSave - IsUseThumbnailSave() -include/sfx2/dinfdlg.hxx:84 - void SfxDocumentInfoItem::SfxDocumentInfoItem(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::document::XDocumentProperties> &,const class com::sun::star::uno::Sequence<struct com::sun::star::document::CmisProperty> &,_Bool,_Bool) _Bool bUseUserData IsUseUserData() -include/sfx2/dinfdlg.hxx:389 +include/sfx2/dinfdlg.hxx:84 + void SfxDocumentInfoItem::SfxDocumentInfoItem(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::document::XDocumentProperties> &,const class com::sun::star::uno::Sequence<struct com::sun::star::document::CmisProperty> &,_Bool,_Bool) + _Bool bUseThumbnailSave + IsUseThumbnailSave() +include/sfx2/dinfdlg.hxx:376 void CustomPropertiesWindow::AddLine(const class rtl::OUString &,const class com::sun::star::uno::Any &) const class rtl::OUString & sName "" -include/sfx2/docfile.hxx:264 +include/sfx2/docfile.hxx:253 _Bool SfxMedium::SignContents_Impl(class weld::Window *,_Bool,_Bool,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::security::XCertificate> &,const class com::sun::star::uno::Reference<class com::sun::star::graphic::XGraphic> &,const class com::sun::star::uno::Reference<class com::sun::star::graphic::XGraphic> &,const class rtl::OUString &) _Bool bHasValidDocumentSignature HasValidSignatures() -include/sfx2/docfile.hxx:276 +include/sfx2/docfile.hxx:265 _Bool SfxMedium::SignDocumentContentUsingCertificate(_Bool,const class com::sun::star::uno::Reference<class com::sun::star::security::XCertificate> &) _Bool bHasValidDocumentSignature HasValidSignatures() -include/sfx2/objsh.hxx:629 +include/sfx2/docfilt.hxx:65 + void SfxFilter::SfxFilter(const class rtl::OUString &,const class rtl::OUString &,enum SfxFilterFlags,enum SotClipboardFormatId,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,_Bool) + const class rtl::OUString & rMimeType + "" +include/sfx2/docfilt.hxx:65 + void SfxFilter::SfxFilter(const class rtl::OUString &,const class rtl::OUString &,enum SfxFilterFlags,enum SotClipboardFormatId,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,_Bool) + const class rtl::OUString & rWildCard + "" +include/sfx2/objsh.hxx:637 void SfxObjectShell::DoDraw(class OutputDevice *,const class Point &,const class Size &,const class JobSetup &,unsigned short) const class JobSetup & rSetup JobSetup() @@ -462,9 +450,17 @@ include/svx/charmap.hxx:150 void SvxShowCharSet::DrawChars_Impl(class OutputDevice &,int,int) int n1 FirstInView() -include/svx/DescriptionGenerator.hxx:116 - void accessibility::DescriptionGenerator::AddProperty(const class rtl::OUString &,enum accessibility::DescriptionGenerator::PropertyType,const char *) - const char * pResourceId +include/svx/colorwindow.hxx:173 + void ColorWindow::ColorWindow(const class rtl::OUString &,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 *,const class MenuOrToolMenuButton &,const class std::function<void (const class rtl::OUString &, const struct std::pair<class Color, class rtl::OUString> &)> &) + const class rtl::OUString & rCommand + "" +include/svx/DescriptionGenerator.hxx:125 + void accessibility::DescriptionGenerator::AddColor(const class rtl::OUString &,const class rtl::OUString &) + const class rtl::OUString & sLocalizedName + "" +include/svx/DescriptionGenerator.hxx:130 + void accessibility::DescriptionGenerator::AddInteger(const class rtl::OUString &,const class rtl::OUString &) + const class rtl::OUString & sLocalizedName "" include/svx/svdtrans.hxx:62 void RotateXPoly(class XPolyPolygon &,const class Point &,double,double) @@ -490,14 +486,14 @@ include/vcl/dockwin.hxx:48 void EndDockingData::EndDockingData(const class tools::Rectangle &,_Bool,_Bool) _Bool b IsFloatingMode() -include/vcl/field.hxx:379 - class tools::Time TimeFormatter::SpinTime(_Bool,const class tools::Time &,enum TimeFieldFormat,_Bool,const class rtl::OUString &,int,const class LocaleDataWrapper &) - const class LocaleDataWrapper & rLocaleDataWrapper - ImplGetLocaleDataWrapper() -include/vcl/field.hxx:379 +include/vcl/field.hxx:342 class tools::Time TimeFormatter::SpinTime(_Bool,const class tools::Time &,enum TimeFieldFormat,_Bool,const class rtl::OUString &,int,const class LocaleDataWrapper &) _Bool bDuration IsDuration() +include/vcl/field.hxx:342 + class tools::Time TimeFormatter::SpinTime(_Bool,const class tools::Time &,enum TimeFieldFormat,_Bool,const class rtl::OUString &,int,const class LocaleDataWrapper &) + const class LocaleDataWrapper & rLocaleDataWrapper + ImplGetLocaleDataWrapper() include/vcl/FilterConfigItem.hxx:75 class rtl::OUString FilterConfigItem::ReadString(const class rtl::OUString &,const class rtl::OUString &) const class rtl::OUString & rDefault @@ -526,11 +522,11 @@ include/vcl/print.hxx:682 class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setEditControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const struct vcl::PrinterOptionsHelper::UIControlOptions &) const class rtl::OUString & i_rTitle "" -include/vcl/toolbox.hxx:413 +include/vcl/toolbox.hxx:410 void ToolBox::SetHelpText(unsigned short,const class rtl::OUString &) const class rtl::OUString & rText "" -include/vcl/toolkit/unowrap.hxx:70 +include/vcl/toolkit/unowrap.hxx:74 class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> UnoWrapperBase::CreateAccessible(class Menu *,_Bool) _Bool bIsMenuBar IsMenuBar() @@ -542,15 +538,19 @@ include/vcl/transfer.hxx:357 class com::sun::star::uno::Sequence<signed char> TransferableDataHelper::GetSequence(enum SotClipboardFormatId,const class rtl::OUString &) const class rtl::OUString & rDestDoc "" -include/vcl/treelistbox.hxx:716 +include/vcl/treelistbox.hxx:713 void SvTreeListBox::ShowFocusRect(const class SvTreeListEntry *) const class SvTreeListEntry * pEntry FirstSelected() -include/vcl/virdev.hxx:157 +include/vcl/virdev.hxx:162 _Bool VirtualDevice::SetOutputSizePixelScaleOffsetAndBuffer(const class Size &,const class Fraction &,const class Point &,unsigned char *) const class Point & rNewOffset Point() -include/vcl/weld.hxx:597 +include/vcl/weld.hxx:557 + void weld::ComboBoxEntry::ComboBoxEntry(const class rtl::OUString &) + const class rtl::OUString & rString + "" +include/vcl/weld.hxx:615 void weld::ComboBox::append(const class rtl::OUString &,const class rtl::OUString &,class VirtualDevice &) const class rtl::OUString & rId "" @@ -570,8 +570,8 @@ include/xmloff/xmlexp.hxx:280 void SvXMLExport::SvXMLExport(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XDocumentHandler> &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,const enum FieldUnit,enum SvXMLExportFlags) const class rtl::OUString & implementationName "" -include/xmloff/XMLFontStylesContext.hxx:57 - void XMLFontStylesContext::XMLFontStylesContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,unsigned short) +include/xmloff/XMLFontStylesContext.hxx:54 + void XMLFontStylesContext::XMLFontStylesContext(class SvXMLImport &,unsigned short) unsigned short eDfltEnc osl_getThreadTextEncoding() lotuswordpro/inc/lwpoverride.hxx:189 @@ -618,35 +618,47 @@ lotuswordpro/source/filter/lwpbreaksoverride.hxx:128 void LwpBreaksOverride::OverrideUseNextStyle(_Bool) _Bool bVal IsUseNextStyle() -opencl/source/opencl_device.cxx:430 +opencl/source/opencl_device.cxx:431 void (anonymous namespace)::LogWriter::text(const class rtl::OString &) const class rtl::OString & rText "" -opencl/source/openclwrapper.cxx:707 +opencl/source/openclwrapper.cxx:706 struct _cl_device_id * findDeviceIdByDeviceString(const class rtl::OUString &,const class std::__debug::vector<struct OpenCLPlatformInfo, class std::allocator<struct OpenCLPlatformInfo> > &) const class std::__debug::vector<struct OpenCLPlatformInfo, class std::allocator<struct OpenCLPlatformInfo> > & rPlatforms fillOpenCLInfo() -reportdesign/source/ui/dlg/Condition.hxx:130 +reportdesign/source/ui/dlg/Condition.hxx:128 void rptui::Condition::setConditionIndex(unsigned long,unsigned long) unsigned long _nCondCount impl_getConditionCount() -sal/qa/osl/file/osl_File.cxx:368 +sal/qa/osl/file/osl_File.cxx:379 class rtl::OString outputError(const class rtl::OString &,const class rtl::OString &,const char *) const char * msg "" +sc/inc/table.hxx:781 + void ScTable::SetOptimalHeightOnly(class sc::RowHeightContext &,int,int,class ScProgress *,unsigned long) + int nEndRow + MaxRow() sc/inc/typedstrdata.hxx:43 _Bool ScTypedStrData::LessCaseInsensitive::operator()(const class ScTypedStrData &,const class ScTypedStrData &) const const class ScTypedStrData & left LessCaseInsensitive() -sc/qa/unit/helper/qahelper.hxx:197 +sc/qa/extras/check_xcell_ranges_query.cxx:38 + void sc_apitest::CheckXCellRangesQuery::_queryEmptyCells(const class rtl::OUString &) + const class rtl::OUString & expected + "" +sc/qa/unit/helper/qahelper.hxx:192 class tools::SvRef<class ScDocShell> ScBootstrapFixture::saveAndReload(class ScDocShell *,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum SfxFilterFlags) const class rtl::OUString & rUserData "" -sc/source/core/tool/token.cxx:4815 - void appendTokenByType(struct sc::TokenStringContext &,class rtl::OUStringBuffer &,const class formula::FormulaToken &,const class ScAddress &,_Bool) +sc/source/core/data/documen3.cxx:1721 + _Bool lcl_AddTwipsWhile(long &,long,int &,int,const class ScTable *,_Bool) + int nEndRow + MaxRow() +sc/source/core/tool/token.cxx:4826 + void appendTokenByType(struct ScSheetLimits &,struct sc::TokenStringContext &,class rtl::OUStringBuffer &,const class formula::FormulaToken &,const class ScAddress &,_Bool) _Bool bFromRangeName IsFromRangeName() -sc/source/filter/excel/xeformula.cxx:150 +sc/source/filter/excel/xeformula.cxx:151 void (anonymous namespace)::XclExpFuncData::FinishParam(unsigned short) unsigned short nTokPos PopOperandPos() @@ -670,7 +682,7 @@ sc/source/filter/inc/xestream.hxx:283 void XclExpXmlStream::XclExpXmlStream(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,_Bool,_Bool) _Bool bExportTemplate isExportTemplate() -sc/source/filter/inc/xestyle.hxx:146 +sc/source/filter/inc/xestyle.hxx:147 _Bool CheckItems(const class XclExpRoot &,const class SfxItemSet &,short,_Bool) _Bool bDeep IsStyleXF() @@ -694,7 +706,7 @@ sc/source/filter/inc/xlescher.hxx:424 _Bool XclControlHelper::FillMacroDescriptor(struct com::sun::star::script::ScriptEventDescriptor &,enum XclTbxEventType,const class rtl::OUString &,class SfxObjectShell *) enum XclTbxEventType eEventType DoGetEventType() -sc/source/filter/oox/formulabuffer.cxx:299 +sc/source/filter/oox/formulabuffer.cxx:315 void processSheetFormulaCells(class ScDocumentImport &,struct oox::xls::FormulaBuffer::SheetItem &,class SvNumberFormatter &,const class com::sun::star::uno::Sequence<struct com::sun::star::sheet::ExternalLinkInfo> &,_Bool) _Bool bGeneratorKnownGood isGeneratorKnownGood() @@ -706,8 +718,8 @@ sc/source/ui/vba/vbasheetobject.hxx:175 void ScVbaButton::ScVbaButton(const class com::sun::star::uno::Reference<class ooo::vba::XHelperInterface> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,const class com::sun::star::uno::Reference<class com::sun::star::container::XIndexContainer> &,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> &) const class com::sun::star::uno::Reference<class com::sun::star::container::XIndexContainer> & rxFormIC createForm() -sc/source/ui/vba/vbawindows.cxx:102 - void WindowEnumImpl::WindowEnumImpl(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Any &) +sc/source/ui/vba/vbawindows.cxx:106 + void (anonymous namespace)::WindowEnumImpl::WindowEnumImpl(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Any &) const class com::sun::star::uno::Any & aApplication Application() sd/source/filter/eppt/eppt.hxx:177 @@ -718,12 +730,12 @@ sd/source/filter/eppt/pptx-animations.cxx:552 void (anonymous namespace)::NodeContext::initValid(_Bool,_Bool) _Bool bHasValidChild initChildNodes() -sd/source/filter/xml/sdxmlwrp.cxx:143 - const struct XML_SERVICES * getServices(_Bool,_Bool,unsigned long) +sd/source/filter/xml/sdxmlwrp.cxx:147 + const struct (anonymous namespace)::XML_SERVICES * getServices(_Bool,_Bool,unsigned long) _Bool bDraw IsDraw() -sd/source/ui/annotations/annotationtag.cxx:153 - void sd::AnnotationHdl::AnnotationHdl(const class rtl::Reference<class sd::SmartTag> &,const class com::sun::star::uno::Reference<class com::sun::star::office::XAnnotation> &,const class Point &) +sd/source/ui/annotations/annotationtag.cxx:159 + void sd::(anonymous namespace)::AnnotationHdl::AnnotationHdl(const class rtl::Reference<class sd::SmartTag> &,const class com::sun::star::uno::Reference<class com::sun::star::office::XAnnotation> &,const class Point &) const class Point & rPnt Point() sd/source/ui/slidesorter/cache/SlsRequestFactory.hxx:32 @@ -762,15 +774,15 @@ sfx2/source/inc/versdlg.hxx:51 void SfxVersionDialog::SfxVersionDialog(class weld::Window *,class SfxViewFrame *,_Bool) _Bool IsSaveVersionOnClose() -slideshow/source/engine/opengl/TransitionImpl.cxx:637 +slideshow/source/engine/opengl/TransitionImpl.cxx:636 class std::shared_ptr<class OGLTransitionImpl> makeSimpleTransition(const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const class std::__debug::vector<class std::shared_ptr<class Operation>, class std::allocator<class std::shared_ptr<class Operation> > > &,const struct TransitionSettings &) const struct TransitionSettings & rSettings TransitionSettings() -slideshow/source/engine/opengl/TransitionImpl.cxx:2036 +slideshow/source/engine/opengl/TransitionImpl.cxx:2035 class std::shared_ptr<class OGLTransitionImpl> makeGlitterTransition(const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const struct TransitionSettings &) const struct TransitionSettings & rSettings TransitionSettings() -slideshow/source/inc/transitionfactory.hxx:64 +slideshow/source/inc/transitionfactory.hxx:63 class std::shared_ptr<class slideshow::internal::AnimationActivity> createShapeTransition(const struct slideshow::internal::ActivitiesFactory::CommonParameters &,const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeManager> &,const class basegfx::B2DVector &,const class com::sun::star::uno::Reference<class com::sun::star::animations::XTransitionFilter> &) const struct slideshow::internal::ActivitiesFactory::CommonParameters & rParms fillCommonParameters() @@ -782,23 +794,23 @@ starmath/inc/cursor.hxx:185 void SmCursor::Draw(class OutputDevice &,class Point,_Bool) _Bool isCaretVisible IsCursorVisible() -store/source/lockbyte.cxx:267 - void store::FileHandle::CloseFile::operator()(struct store::FileHandle &) const - struct store::FileHandle & rFile +store/source/lockbyte.cxx:269 + void store::(anonymous namespace)::FileHandle::CloseFile::operator()(struct store::(anonymous namespace)::FileHandle &) const + struct store::(anonymous namespace)::FileHandle & rFile destructor_type() -store/source/lockbyte.cxx:489 - void store::FileMapping::UnmapFile::operator()(struct store::FileMapping &) const - struct store::FileMapping & rMapping +store/source/lockbyte.cxx:495 + void store::(anonymous namespace)::FileMapping::UnmapFile::operator()(struct store::(anonymous namespace)::FileMapping &) const + struct store::(anonymous namespace)::FileMapping & rMapping destructor_type() -store/source/lockbyte.cxx:813 - void store::ResourceHolder::ResourceHolder<T>(const type-parameter-?-? &) +store/source/lockbyte.cxx:827 + void store::(anonymous namespace)::ResourceHolder::ResourceHolder<T>(const type-parameter-?-? &) const type-parameter-?-? & value T() -svx/inc/dragmt3d.hxx:92 +svx/inc/dragmt3d.hxx:91 void E3dDragRotate::E3dDragRotate(class SdrDragView &,const class SdrMarkList &,enum E3dDragConstraint,_Bool) _Bool bFull IsSolidDragging() -svx/inc/dragmt3d.hxx:109 +svx/inc/dragmt3d.hxx:108 void E3dDragMove::E3dDragMove(class SdrDragView &,const class SdrMarkList &,enum SdrHdlKind,enum E3dDragConstraint,_Bool) _Bool bFull IsSolidDragging() @@ -814,11 +826,11 @@ svx/source/inc/xmlxtimp.hxx:43 _Bool SvxXMLXTableImport::load(const class rtl::OUString &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> &,_Bool *) const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> & xTable createInstance() -svx/source/svdraw/svdmodel.cxx:1891 +svx/source/svdraw/svdmodel.cxx:1894 void addPair(class std::__debug::vector<struct std::pair<class rtl::OUString, class com::sun::star::uno::Any>, class std::allocator<struct std::pair<class rtl::OUString, class com::sun::star::uno::Any> > > &,const class rtl::OUString &,const type-parameter-?-?) const type-parameter-?-? val IsAnchoredTextOverflowLegacy() -sw/inc/doc.hxx:917 +sw/inc/doc.hxx:918 const class SwTOXMark & SwDoc::GotoTOXMark(const class SwTOXMark &,enum SwTOXSearch,_Bool) _Bool bInReadOnly IsReadOnlyAvailable() @@ -826,23 +838,23 @@ sw/inc/ftnidx.hxx:38 _Bool CompareSwFootnoteIdxs::operator()(class SwTextFootnote *const &,class SwTextFootnote *const &) const class SwTextFootnote *const & lhs Compare() -sw/inc/ndarr.hxx:74 +sw/inc/ndarr.hxx:73 _Bool CompareSwOutlineNodes::operator()(class SwNode *const &,class SwNode *const &) const class SwNode *const & lhs Compare() -sw/inc/shellio.hxx:164 +sw/inc/shellio.hxx:171 void SwReader::SwReader(class SvStream &,const class rtl::OUString &,const class rtl::OUString &,class SwPaM &) const class rtl::OUString & rFilename "" -sw/inc/shellio.hxx:166 +sw/inc/shellio.hxx:173 void SwReader::SwReader(const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,const class rtl::OUString &,class SwPaM &) const class rtl::OUString & rFilename "" -sw/inc/shellio.hxx:459 +sw/inc/shellio.hxx:467 class SvStream & Writer::OutLong(class SvStream &,long) class SvStream & rStrm Strm() -sw/inc/shellio.hxx:460 +sw/inc/shellio.hxx:468 class SvStream & Writer::OutULong(class SvStream &,unsigned long) class SvStream & rStrm Strm() @@ -850,7 +862,7 @@ sw/inc/tblsel.hxx:47 _Bool CompareSwSelBoxes::operator()(class SwTableBox *const &,class SwTableBox *const &) const class SwTableBox *const & lhs Compare() -sw/source/core/access/acctable.cxx:101 +sw/source/core/access/acctable.cxx:104 void SwAccessibleTableData_Impl::SwAccessibleTableData_Impl(class SwAccessibleMap &,const class SwTabFrame *,_Bool,_Bool) _Bool bIsInPagePreview IsInPagePreview() @@ -858,11 +870,11 @@ sw/source/core/crsr/crstrvl.cxx:648 void lcl_MakeFieldLst(class SetGetExpFields &,const class SwFieldType &,const _Bool,const _Bool) const _Bool bInReadOnly IsReadOnlyAvailable() -sw/source/core/graphic/grfatr.cxx:50 +sw/source/core/graphic/grfatr.cxx:47 _Bool lcl_IsHoriOnEvenPages(enum MirrorGraph,_Bool) _Bool bToggle IsGrfToggle() -sw/source/core/inc/anchoredobjectposition.hxx:188 +sw/source/core/inc/anchoredobjectposition.hxx:183 long objectpositioning::SwAnchoredObjectPosition::AdjustVertRelPos(const long,const _Bool,const _Bool,const class SwFrame &,const long,const _Bool,const _Bool) const const _Bool bFollowTextFlow DoesObjFollowsTextFlow() @@ -890,23 +902,23 @@ sw/source/core/text/inftxt.hxx:408 void SwTextPaintInfo::DrawPostIts(_Bool) const _Bool bScript IsScript() -sw/source/core/text/inftxt.hxx:548 +sw/source/core/text/inftxt.hxx:549 void SwTextFormatInfo::Left(const long) const long nNew Left() -sw/source/core/text/inftxt.hxx:550 +sw/source/core/text/inftxt.hxx:551 void SwTextFormatInfo::Right(const long) const long nNew Right() -sw/source/core/text/inftxt.hxx:552 +sw/source/core/text/inftxt.hxx:553 void SwTextFormatInfo::First(const long) const long nNew FirstLeft() -sw/source/core/text/inftxt.hxx:572 +sw/source/core/text/inftxt.hxx:573 void SwTextFormatInfo::ChkNoHyph(const unsigned char,const unsigned char) const unsigned char bMid CntMidHyph() -sw/source/core/text/inftxt.hxx:572 +sw/source/core/text/inftxt.hxx:573 void SwTextFormatInfo::ChkNoHyph(const unsigned char,const unsigned char) const unsigned char bEnd CntEndHyph() @@ -918,7 +930,7 @@ sw/source/filter/html/swcss1.hxx:78 void SwCSS1Parser::SwCSS1Parser(class SwDoc *,const unsigned int *,const class rtl::OUString &,_Bool) _Bool bNewDoc IsNewDoc() -sw/source/filter/html/swhtml.hxx:896 +sw/source/filter/html/swhtml.hxx:897 void SwHTMLParser::SwHTMLParser(class SwDoc *,class SwPaM &,class SvStream &,const class rtl::OUString &,const class rtl::OUString &,_Bool,class SfxMedium *,_Bool,_Bool,const class rtl::OUString &) _Bool bReadUTF8 IsReadUTF8() @@ -926,7 +938,11 @@ sw/source/filter/inc/wrtswtbl.hxx:203 _Bool SwWriteTableColLess::operator()(const class std::unique_ptr<class SwWriteTableCol, struct std::default_delete<class SwWriteTableCol> > &,const class std::unique_ptr<class SwWriteTableCol, struct std::default_delete<class SwWriteTableCol> > &) const class std::unique_ptr<class SwWriteTableCol, struct std::default_delete<class SwWriteTableCol> > & lhs Compare() -sw/source/filter/ww8/docxexport.hxx:274 +sw/source/filter/ww8/docxattributeoutput.cxx:5773 + _Bool (anonymous namespace)::OUStringIgnoreCase::operator()(const class rtl::OUString &,const class rtl::OUString &) const + const class rtl::OUString & lhs + Compare() +sw/source/filter/ww8/docxexport.hxx:277 void DocxExport::DocxExport(class DocxExportFilter *,class SwDoc *,class std::shared_ptr<class SwUnoCursor> &,class SwPaM *,_Bool,_Bool) _Bool bTemplate isExportTemplate() @@ -938,12 +954,12 @@ sw/source/filter/ww8/ww8scan.hxx:1531 void WW8Fib::Write(class SvStream &) class SvStream & rStrm Strm() -sw/source/filter/xml/xmlimp.hxx:133 +sw/source/filter/xml/xmlimp.hxx:129 void SwXMLImport::InsertStyles(_Bool) _Bool bAuto IsAutomaticStyle() -sw/source/filter/xml/xmltble.cxx:89 - _Bool SwXMLTableColumnCmpWidth_Impl::operator()(class SwXMLTableColumn_Impl *const &,class SwXMLTableColumn_Impl *const &) const +sw/source/filter/xml/xmltble.cxx:87 + _Bool (anonymous namespace)::SwXMLTableColumnCmpWidth_Impl::operator()(class SwXMLTableColumn_Impl *const &,class SwXMLTableColumn_Impl *const &) const class SwXMLTableColumn_Impl *const & lhs Compare() sw/source/filter/xml/xmltexti.hxx:38 @@ -952,33 +968,37 @@ sw/source/filter/xml/xmltexti.hxx:38 IsInsertMode() sw/source/filter/xml/xmltexti.hxx:38 void SwXMLTextImportHelper::SwXMLTextImportHelper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,class SvXMLImport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,_Bool,_Bool,_Bool) - _Bool bBlockM - IsBlockMode() -sw/source/filter/xml/xmltexti.hxx:38 - void SwXMLTextImportHelper::SwXMLTextImportHelper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,class SvXMLImport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,_Bool,_Bool,_Bool) _Bool bStylesOnlyM IsStylesOnlyMode() -sw/source/ui/vba/vbadocuments.cxx:59 - void DocumentEnumImpl::DocumentEnumImpl(const class com::sun::star::uno::Reference<class ooo::vba::XHelperInterface> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::container::XEnumeration> &,const class com::sun::star::uno::Any &) +sw/source/filter/xml/xmltexti.hxx:38 + void SwXMLTextImportHelper::SwXMLTextImportHelper(const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,class SvXMLImport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,_Bool,_Bool,_Bool) + _Bool bBlockM + IsBlockMode() +sw/source/ui/vba/vbadocuments.cxx:51 + void (anonymous namespace)::DocumentEnumImpl::DocumentEnumImpl(const class com::sun::star::uno::Reference<class ooo::vba::XHelperInterface> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::container::XEnumeration> &,const class com::sun::star::uno::Any &) const class com::sun::star::uno::Any & aApplication Application() -sw/source/uibase/docvw/AnnotationWin2.cxx:99 +sw/source/uibase/docvw/AnnotationWin2.cxx:84 void lcl_translateTwips(const class vcl::Window &,class vcl::Window &,class MouseEvent *) const class vcl::Window & rParent EditWin() +sw/source/uibase/inc/swuipardlg.hxx:35 + void SwParaDlg::SwParaDlg(class weld::Window *,class SwView &,const class SfxItemSet &,unsigned char,const class rtl::OUString *,_Bool,const class rtl::OString &) + const class rtl::OString & sDefPage + "" sw/source/uibase/lingu/sdrhhcwrap.hxx:43 void SdrHHCWrapper::SdrHHCWrapper(class SwView *,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,const class vcl::Font *,int,_Bool) _Bool bInteractive IsInteractive() -toolkit/inc/helper/unopropertyarrayhelper.hxx:39 +toolkit/inc/helper/unopropertyarrayhelper.hxx:38 void UnoPropertyArrayHelper::UnoPropertyArrayHelper(const class com::sun::star::uno::Sequence<int> &) const class com::sun::star::uno::Sequence<int> & rIDs ImplGetPropertyIds() -vcl/inc/fontinstance.hxx:74 +vcl/inc/fontinstance.hxx:77 _Bool LogicalFontInstance::GetGlyphBoundRect(unsigned short,class tools::Rectangle &,_Bool) const _Bool IsVertical() -vcl/inc/fontinstance.hxx:75 +vcl/inc/fontinstance.hxx:78 _Bool LogicalFontInstance::GetGlyphOutline(unsigned short,class basegfx::B2DPolyPolygon &,_Bool) const _Bool IsVertical() @@ -990,7 +1010,7 @@ vcl/inc/WidgetDrawInterface.hxx:87 _Bool vcl::WidgetDrawInterface::getNativeControlRegion(enum ControlType,enum ControlPart,const class tools::Rectangle &,enum ControlState,const class ImplControlValue &,const class rtl::OUString &,class tools::Rectangle &,class tools::Rectangle &) const class rtl::OUString & aCaption "" -vcl/qa/cppunit/svm/svmtest.cxx:43 +vcl/qa/cppunit/svm/svmtest.cxx:44 class GDIMetaFile SvmTest::writeAndReadStream(class GDIMetaFile &,const class rtl::OUString &) const class rtl::OUString & rName "" @@ -1018,43 +1038,43 @@ vcl/source/control/field2.cxx:1005 _Bool ImplDateGetValue(const class rtl::OUString &,class Date &,enum ExtDateFieldFormat,const class LocaleDataWrapper &,const class CalendarWrapper &) const class LocaleDataWrapper & rLocaleDataWrapper ImplGetLocaleDataWrapper() -vcl/source/control/field2.cxx:1889 +vcl/source/control/field2.cxx:1883 _Bool ImplTimeProcessKeyInput(const class KeyEvent &,_Bool,_Bool,enum TimeFieldFormat,const class LocaleDataWrapper &) - _Bool bStrictFormat - IsStrictFormat() -vcl/source/control/field2.cxx:1889 + _Bool bDuration + IsDuration() +vcl/source/control/field2.cxx:1883 _Bool ImplTimeProcessKeyInput(const class KeyEvent &,_Bool,_Bool,enum TimeFieldFormat,const class LocaleDataWrapper &) const class LocaleDataWrapper & rLocaleDataWrapper ImplGetLocaleDataWrapper() -vcl/source/control/field2.cxx:1889 +vcl/source/control/field2.cxx:1883 _Bool ImplTimeProcessKeyInput(const class KeyEvent &,_Bool,_Bool,enum TimeFieldFormat,const class LocaleDataWrapper &) - _Bool bDuration - IsDuration() -vcl/source/control/field.cxx:1031 + _Bool bStrictFormat + IsStrictFormat() +vcl/source/control/field.cxx:1015 _Bool ImplMetricProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &) _Bool bUseThousandSep IsUseThousandSep() -vcl/source/control/field.cxx:1031 +vcl/source/control/field.cxx:1015 _Bool ImplMetricProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &) const class LocaleDataWrapper & rWrapper ImplGetLocaleDataWrapper() -vcl/source/control/field.cxx:1855 +vcl/source/control/field.cxx:1815 _Bool ImplCurrencyProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &) const class LocaleDataWrapper & rWrapper ImplGetLocaleDataWrapper() -vcl/source/control/field.cxx:1855 +vcl/source/control/field.cxx:1815 _Bool ImplCurrencyProcessKeyInput(const class KeyEvent &,_Bool,const class LocaleDataWrapper &) _Bool bUseThousandSep IsUseThousandSep() -vcl/source/control/field.cxx:1862 +vcl/source/control/field.cxx:1822 _Bool ImplCurrencyGetValue(const class rtl::OUString &,long &,unsigned short,const class LocaleDataWrapper &) const class LocaleDataWrapper & rWrapper ImplGetLocaleDataWrapper() -vcl/source/control/imivctl.hxx:404 +vcl/source/control/imivctl.hxx:400 void SvxIconChoiceCtrl_Impl::SetColumn(unsigned short,const class SvxIconChoiceCtrlColumnInfo &) const class SvxIconChoiceCtrlColumnInfo & SvxIconChoiceCtrlColumnInfo() -vcl/source/edit/vclmedit.cxx:98 +vcl/source/edit/vclmedit.cxx:99 void ImpVclMEdit::Enable(_Bool) _Bool bEnable IsEnabled() @@ -1066,19 +1086,19 @@ writerperfect/qa/unit/WpftLoader.hxx:71 void writerperfect::test::WpftLoader::WpftLoader(const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,const class com::sun::star::uno::Reference<class com::sun::star::document::XFilter> &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XDesktop2> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &) const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> & rxInputStream createDummyInput() -xmlhelp/source/cxxhelp/provider/urlparameter.cxx:290 - void InputStreamTransformer::InputStreamTransformer(class chelp::URLParameter *,class chelp::Databases *,_Bool) +xmlhelp/source/cxxhelp/provider/urlparameter.cxx:291 + void (anonymous namespace)::InputStreamTransformer::InputStreamTransformer(class chelp::URLParameter *,class chelp::Databases *,_Bool) _Bool isRoot isRoot() xmlhelp/source/cxxhelp/provider/urlparameter.hxx:215 _Bool chelp::URLParameter::name(_Bool) _Bool modulePresent module() -xmloff/source/style/XMLFontAutoStylePool.cxx:116 - _Bool XMLFontAutoStylePoolEntryCmp_Impl::operator()(const class std::unique_ptr<class XMLFontAutoStylePoolEntry_Impl, struct std::default_delete<class XMLFontAutoStylePoolEntry_Impl> > &,const class std::unique_ptr<class XMLFontAutoStylePoolEntry_Impl, struct std::default_delete<class XMLFontAutoStylePoolEntry_Impl> > &) const - const class std::unique_ptr<class XMLFontAutoStylePoolEntry_Impl, struct std::default_delete<class XMLFontAutoStylePoolEntry_Impl> > & r1 +xmloff/source/style/XMLFontAutoStylePool.cxx:121 + _Bool (anonymous namespace)::XMLFontAutoStylePoolEntryCmp_Impl::operator()(const class std::unique_ptr<class (anonymous namespace)::XMLFontAutoStylePoolEntry_Impl, struct std::default_delete<class (anonymous namespace)::XMLFontAutoStylePoolEntry_Impl> > &,const class std::unique_ptr<class (anonymous namespace)::XMLFontAutoStylePoolEntry_Impl, struct std::default_delete<class (anonymous namespace)::XMLFontAutoStylePoolEntry_Impl> > &) const + const class std::unique_ptr<class (anonymous namespace)::XMLFontAutoStylePoolEntry_Impl, struct std::default_delete<class (anonymous namespace)::XMLFontAutoStylePoolEntry_Impl> > & r1 Compare() -xmloff/source/text/XMLTextListAutoStylePool.cxx:120 - _Bool XMLTextListAutoStylePoolEntryCmp_Impl::operator()(const class std::unique_ptr<class XMLTextListAutoStylePoolEntry_Impl, struct std::default_delete<class XMLTextListAutoStylePoolEntry_Impl> > &,const class std::unique_ptr<class XMLTextListAutoStylePoolEntry_Impl, struct std::default_delete<class XMLTextListAutoStylePoolEntry_Impl> > &) const +xmloff/source/text/XMLTextListAutoStylePool.cxx:122 + _Bool (anonymous namespace)::XMLTextListAutoStylePoolEntryCmp_Impl::operator()(const class std::unique_ptr<class XMLTextListAutoStylePoolEntry_Impl, struct std::default_delete<class XMLTextListAutoStylePoolEntry_Impl> > &,const class std::unique_ptr<class XMLTextListAutoStylePoolEntry_Impl, struct std::default_delete<class XMLTextListAutoStylePoolEntry_Impl> > &) const const class std::unique_ptr<class XMLTextListAutoStylePoolEntry_Impl, struct std::default_delete<class XMLTextListAutoStylePoolEntry_Impl> > & r1 Compare() diff --git a/compilerplugins/clang/constantparam.numbers.results b/compilerplugins/clang/constantparam.numbers.results index 79d86a3a9054..fec08affaa4b 100644 --- a/compilerplugins/clang/constantparam.numbers.results +++ b/compilerplugins/clang/constantparam.numbers.results @@ -10,15 +10,19 @@ basctl/source/inc/sbxitem.hxx:49 void basctl::SbxItem::SbxItem(unsigned short,const class basctl::ScriptDocument &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum basctl::ItemType) unsigned short nWhich 30799 -basic/source/classes/sbunoobj.cxx:3183 +basic/source/classes/sbunoobj.cxx:3208 class com::sun::star::uno::Reference<class com::sun::star::reflection::XTypeDescriptionEnumeration> getTypeDescriptorEnumeration(const class rtl::OUString &,const class com::sun::star::uno::Sequence<enum com::sun::star::uno::TypeClass> &,enum com::sun::star::reflection::TypeDescriptionSearchDepth) enum com::sun::star::reflection::TypeDescriptionSearchDepth depth -1 -basic/source/inc/codegen.hxx:38 +basic/source/inc/codegen.hxx:37 void SbiCodeGen::SbiCodeGen(class SbModule &,class SbiParser *,short) short 1024 -basic/source/inc/runtime.hxx:345 +basic/source/inc/expr.hxx:178 + void SbiExpression::SbiExpression(class SbiParser *,double,enum SbxDataType) + enum SbxDataType + 2 +basic/source/inc/runtime.hxx:346 _Bool SbiRuntime::IsImageFlag(enum SbiImageFlags) const enum SbiImageFlags n 2 @@ -27,26 +31,26 @@ basic/source/inc/sbjsmeth.hxx:33 enum SbxDataType 12 canvas/workben/canvasdemo.cxx:146 - void DemoRenderer::drawStringAt(class rtl::OString,double,double) + void (anonymous namespace)::DemoRenderer::drawStringAt(class rtl::OString,double,double) double y 15 canvas/workben/canvasdemo.cxx:485 - void DemoRenderer::drawRegularPolygon(double,double,int,double) - double r - 15 -canvas/workben/canvasdemo.cxx:485 - void DemoRenderer::drawRegularPolygon(double,double,int,double) + void (anonymous namespace)::DemoRenderer::drawRegularPolygon(double,double,int,double) double centery 35 -chart2/qa/extras/chart2export.cxx:426 +canvas/workben/canvasdemo.cxx:485 + void (anonymous namespace)::DemoRenderer::drawRegularPolygon(double,double,int,double) + double r + 15 +chart2/qa/extras/chart2export.cxx:449 void checkPolynomialTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int,double,double,double) int aExpectedDegree 3 -chart2/qa/extras/chart2export.cxx:448 +chart2/qa/extras/chart2export.cxx:471 void checkMovingAverageTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int) int aExpectedPeriod 3 -chart2/qa/extras/chart2export.cxx:924 +chart2/qa/extras/chart2export.cxx:947 void ::change(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,short) short nNumFmtTypeFlag 16 @@ -82,32 +86,32 @@ comphelper/qa/unit/variadictemplates.cxx:57 void extract(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int,optional<type-parameter-?-?> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &) int nArg 4 -connectivity/source/drivers/firebird/StatementCommonBase.hxx:94 +connectivity/source/drivers/firebird/StatementCommonBase.hxx:90 short connectivity::firebird::OStatementCommonBase::getSqlInfoItem(char) char aInfoItem 21 -connectivity/source/drivers/firebird/Util.hxx:126 +connectivity/source/drivers/firebird/Util.hxx:124 class rtl::OUString escapeWith(const class rtl::OUString &,const char,const char) const char aKey 39 -connectivity/source/drivers/firebird/Util.hxx:126 +connectivity/source/drivers/firebird/Util.hxx:124 class rtl::OUString escapeWith(const class rtl::OUString &,const char,const char) const char aEscapeChar 39 -connectivity/source/drivers/mork/MorkParser.hxx:80 +connectivity/source/drivers/mork/MorkParser.hxx:79 struct MorkTableMap * MorkParser::getTables(int) int tableScope 128 -connectivity/source/drivers/mork/MQueryHelper.hxx:171 +connectivity/source/drivers/mork/MQueryHelper.hxx:172 _Bool connectivity::mork::MQueryHelper::getRowValue(class connectivity::ORowSetValue &,int,const class rtl::OUString &,int) int nType 12 -connectivity/source/drivers/postgresql/pq_connection.cxx:429 - void properties2arrays(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,const class com::sun::star::uno::Reference<class com::sun::star::script::XTypeConverter> &,unsigned short,class pq_sdbc_driver::cstr_vector &,class pq_sdbc_driver::cstr_vector &) +connectivity/source/drivers/postgresql/pq_connection.cxx:433 + void properties2arrays(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,const class com::sun::star::uno::Reference<class com::sun::star::script::XTypeConverter> &,unsigned short,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &) unsigned short enc 76 connectivity/source/drivers/postgresql/pq_statics.cxx:80 - void pq_sdbc_driver::PropertyDefEx::PropertyDefEx(const class rtl::OUString &,const class com::sun::star::uno::Type &,int) + void pq_sdbc_driver::(anonymous namespace)::PropertyDefEx::PropertyDefEx(const class rtl::OUString &,const class com::sun::star::uno::Type &,int) int a 16 connectivity/source/inc/java/sql/ConnectionLog.hxx:106 @@ -122,7 +126,7 @@ connectivity/source/inc/java/sql/ConnectionLog.hxx:118 void connectivity::java::sql::ConnectionLog::log(const int,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const const int _nLogLevel 300 -connectivity/source/inc/mysql/YTable.hxx:83 +connectivity/source/inc/mysql/YTable.hxx:82 void connectivity::mysql::OMySQLTable::OMySQLTable(class connectivity::sdbcx::OCollection *,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int) int _nPrivileges 511 @@ -134,15 +138,11 @@ connectivity/source/inc/odbc/OTools.hxx:200 class com::sun::star::uno::Sequence<signed char> connectivity::odbc::OTools::getBytesValue(const class connectivity::odbc::OConnection *,void *,int,short,_Bool &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &) short _fSqlType -2 -cppcanvas/source/inc/implrenderer.hxx:189 +cppcanvas/source/inc/implrenderer.hxx:184 _Bool cppcanvas::internal::ImplRenderer::isActionContained(class GDIMetaFile &,const char *,enum MetaActionType) enum MetaActionType nType 147 -cui/source/dialogs/hangulhanjadlg.cxx:104 - void svx::PseudoRubyText::Paint(class OutputDevice &,const class tools::Rectangle &,enum DrawTextFlags,class tools::Rectangle *,class tools::Rectangle *) - enum DrawTextFlags _nTextStyle - 274 -cui/source/inc/chardlg.hxx:268 +cui/source/inc/chardlg.hxx:269 void SvxCharPositionPage::UpdatePreview_Impl(unsigned char,unsigned char,short) unsigned char nProp 100 @@ -158,19 +158,19 @@ cui/source/inc/SpellDialog.hxx:113 void svx::SentenceEditWindow_Impl::UndoActionStart(unsigned short) unsigned short nId 205 -cui/source/inc/SvxToolbarConfigPage.hxx:61 +cui/source/inc/SvxToolbarConfigPage.hxx:60 void SvxToolbarConfigPage::AddFunction(int) int nTarget -1 -cui/source/options/cfgchart.hxx:90 +cui/source/options/cfgchart.hxx:89 void SvxChartColorTableItem::SvxChartColorTableItem(unsigned short,const class SvxChartColorTable &) unsigned short nWhich 10437 -cui/source/options/connpoolsettings.hxx:76 +cui/source/options/connpoolsettings.hxx:75 void offapp::DriverPoolingSettingsItem::DriverPoolingSettingsItem(unsigned short,const class offapp::DriverPoolingSettings &) unsigned short _nId 17148 -cui/source/options/dbregistersettings.hxx:68 +cui/source/options/dbregistersettings.hxx:67 void svx::DatabaseMapItem::DatabaseMapItem(unsigned short,const class std::__debug::map<class rtl::OUString, struct svx::DatabaseRegistration, struct std::less<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, struct svx::DatabaseRegistration> > > &) unsigned short _nId 17149 @@ -214,51 +214,47 @@ dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx:86 class rtl::Reference<class dbaui::OTableFieldDesc> dbaui::OSelectionBrowseBox::InsertField(const class rtl::Reference<class dbaui::OTableFieldDesc> &,unsigned short,_Bool,_Bool) unsigned short _nColumnPosition 65535 -desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:195 - void dp_gui::ExtensionCmd::ExtensionCmd(const enum dp_gui::ExtensionCmd::E_CMD_TYPE,const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::deployment::XPackage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::deployment::XPackage> > > &) - const enum dp_gui::ExtensionCmd::E_CMD_TYPE eCommand - 4 -drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:113 +drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:111 class drawinglayer::primitive3d::Primitive3DContainer getLineTubeSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &) unsigned int nSegments 8 -drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:191 +drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:189 class drawinglayer::primitive3d::Primitive3DContainer getLineCapSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &) unsigned int nSegments 8 -drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:287 +drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:285 class drawinglayer::primitive3d::Primitive3DContainer getLineCapRoundSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &) unsigned int nSegments 8 -drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:296 +drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:294 class drawinglayer::primitive3d::Primitive3DContainer getLineJoinSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &,double,double,enum basegfx::B2DLineJoin) unsigned int nSegments 8 -editeng/source/editeng/impedit.hxx:644 +editeng/source/editeng/impedit.hxx:637 _Bool ImpEditEngine::HasScriptType(int,unsigned short) const unsigned short nType 3 -editeng/source/editeng/impedit.hxx:959 - void ImpEditEngine::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short) - unsigned short nLangWhichId - 4038 -editeng/source/editeng/impedit.hxx:959 +editeng/source/editeng/impedit.hxx:955 void ImpEditEngine::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short) unsigned short nFontWhichId - 4040 -editeng/source/editeng/textconv.hxx:89 - void TextConvWrapper::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short) + 4041 +editeng/source/editeng/impedit.hxx:955 + void ImpEditEngine::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short) unsigned short nLangWhichId - 4038 -editeng/source/editeng/textconv.hxx:89 + 4039 +editeng/source/editeng/textconv.hxx:88 void TextConvWrapper::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short) unsigned short nFontWhichId - 4040 -editeng/source/outliner/outlundo.hxx:33 + 4041 +editeng/source/editeng/textconv.hxx:88 + void TextConvWrapper::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short) + unsigned short nLangWhichId + 4039 +editeng/source/outliner/outlundo.hxx:32 void OutlinerUndoBase::OutlinerUndoBase(unsigned short,class Outliner *) unsigned short nId 200 -filter/source/config/cache/filtercache.hxx:335 +filter/source/config/cache/filtercache.hxx:332 _Bool filter::config::FilterCache::isFillState(enum filter::config::FilterCache::EFillState) const enum filter::config::FilterCache::EFillState eRequired 2 @@ -266,18 +262,22 @@ filter/source/flash/swfwriter.hxx:301 void swf::Writer::waitOnClick(unsigned short) unsigned short nDepth 10 -filter/source/graphicfilter/eps/eps.cxx:188 - void PSWriter::ImplCurveTo(const class Point &,const class Point &,const class Point &,unsigned int) - unsigned int nMode +filter/source/graphicfilter/eps/eps.cxx:91 + enum (anonymous namespace)::NMode operator|(enum (anonymous namespace)::NMode,enum (anonymous namespace)::NMode) + enum (anonymous namespace)::NMode b 4 -filter/source/graphicfilter/idxf/dxf2mtf.hxx:107 - _Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short) - unsigned short nMaxPercent - 100 -filter/source/graphicfilter/idxf/dxf2mtf.hxx:107 +filter/source/graphicfilter/eps/eps.cxx:186 + void (anonymous namespace)::PSWriter::ImplCurveTo(const class Point &,const class Point &,const class Point &,enum (anonymous namespace)::NMode) + enum (anonymous namespace)::NMode nMode + 4 +filter/source/graphicfilter/idxf/dxf2mtf.hxx:109 _Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short) unsigned short nMinPercent 60 +filter/source/graphicfilter/idxf/dxf2mtf.hxx:109 + _Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short) + unsigned short nMaxPercent + 100 filter/source/msfilter/mscodec.cxx:57 void lclRotateLeft(type-parameter-?-? &,unsigned char,unsigned char) unsigned char nWidth @@ -302,26 +302,26 @@ forms/source/richtext/rtattributes.hxx:52 void frm::AttributeState::AttributeState(enum frm::AttributeCheckState) enum frm::AttributeCheckState _eCheckState 2 -formula/source/core/api/FormulaCompiler.cxx:246 +formula/source/core/api/FormulaCompiler.cxx:243 const char16_t * lcl_UnicodeStrChr(const char16_t *,char16_t) char16_t c 34 -fpicker/source/office/iodlg.hxx:228 +fpicker/source/office/autocmpledit.hxx:40 + void AutocompleteEdit::select_region(int,int) + int nEndPos + -1 +fpicker/source/office/iodlg.hxx:206 void SvtFileDialog::displayIOException(const class rtl::OUString &,enum com::sun::star::ucb::IOErrorCode) enum com::sun::star::ucb::IOErrorCode _eCode 5 -framework/inc/uielement/macrosmenucontroller.hxx:63 +framework/inc/uielement/macrosmenucontroller.hxx:55 void framework::MacrosMenuController::addScriptItems(class PopupMenu *,unsigned short) unsigned short startItemId 4 -framework/source/uielement/thesaurusmenucontroller.cxx:46 - void ThesaurusMenuController::getMeanings(class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &,const class rtl::OUString &,const struct com::sun::star::lang::Locale &,unsigned long) +framework/source/uielement/thesaurusmenucontroller.cxx:48 + void (anonymous namespace)::ThesaurusMenuController::getMeanings(class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &,const class rtl::OUString &,const struct com::sun::star::lang::Locale &,unsigned long) unsigned long nMaxSynonms 7 -helpcompiler/source/HelpCompiler.cxx:35 - void impl_sleep(unsigned int) - unsigned int nSec - 3 hwpfilter/source/hgzip.h:90 int gz_flush(struct gz_stream *,int) int flush @@ -330,8 +330,8 @@ hwpfilter/source/hwpfile.h:254 _Bool HWPFile::already_importing_type(unsigned char) const unsigned char scflag 16 -hwpfilter/source/lexer.cxx:195 - struct yy_buffer_state * yy_create_buffer(struct _IO_FILE *,int) +hwpfilter/source/lexer.cxx:202 + struct (anonymous namespace)::yy_buffer_state * yy_create_buffer(struct _IO_FILE *,int) int size 16384 hwpfilter/source/mzstring.h:123 @@ -378,11 +378,11 @@ include/basegfx/curve/b2dbeziertools.hxx:45 void basegfx::B2DCubicBezierHelper::B2DCubicBezierHelper(const class basegfx::B2DCubicBezier &,unsigned int) unsigned int nDivisions 9 -include/basegfx/range/b2ibox.hxx:72 +include/basegfx/range/b2ibox.hxx:71 void basegfx::B2IBox::B2IBox(int,int,int,int) int y2 10 -include/basegfx/range/b2ibox.hxx:72 +include/basegfx/range/b2ibox.hxx:71 void basegfx::B2IBox::B2IBox(int,int,int,int) int x2 10 @@ -430,23 +430,27 @@ include/comphelper/storagehelper.hxx:117 class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> comphelper::OStorageHelper::GetStorageFromStream(const class com::sun::star::uno::Reference<class com::sun::star::io::XStream> &,int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &) int nStorageMode 7 +include/comphelper/threadpool.hxx:60 + void comphelper::ThreadPool::ThreadPool(int) + int nWorkers + 4 include/connectivity/dbtools.hxx:299 class com::sun::star::sdbc::SQLException prependErrorInfo(const class com::sun::star::sdbc::SQLException &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class rtl::OUString &,const enum dbtools::StandardSQLState) const enum dbtools::StandardSQLState _eSQLState 2147483647 -include/connectivity/sqlerror.hxx:101 +include/connectivity/sqlerror.hxx:82 class rtl::OUString connectivity::SQLError::getErrorMessage(const int) const const int _eCondition 300 -include/connectivity/sqlerror.hxx:112 +include/connectivity/sqlerror.hxx:93 int connectivity::SQLError::getErrorCode(const int) const int _eCondition 550 -include/connectivity/sqlerror.hxx:180 +include/connectivity/sqlerror.hxx:161 void connectivity::SQLError::raiseException(const int) const const int _eCondition 200 -include/connectivity/sqlerror.hxx:205 +include/connectivity/sqlerror.hxx:186 void connectivity::SQLError::raiseTypedException(const int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class com::sun::star::uno::Type &) const const int _eCondition 100 @@ -458,7 +462,7 @@ include/drawinglayer/attribute/fillhatchattribute.hxx:66 void drawinglayer::attribute::FillHatchAttribute::FillHatchAttribute(enum drawinglayer::attribute::HatchStyle,double,double,const class basegfx::BColor &,unsigned int,_Bool) unsigned int nMinimalDiscreteDistance 3 -include/drawinglayer/primitive2d/mediaprimitive2d.hxx:67 +include/drawinglayer/primitive2d/mediaprimitive2d.hxx:66 void drawinglayer::primitive2d::MediaPrimitive2D::MediaPrimitive2D(const class basegfx::B2DHomMatrix &,const class rtl::OUString &,const class basegfx::BColor &,unsigned int,const class Graphic &) unsigned int nDiscreteBorder 4 @@ -477,16 +481,16 @@ include/editeng/AccessibleParaManager.hxx:243 include/editeng/bulletitem.hxx:60 void SvxBulletItem::SvxBulletItem(unsigned short) unsigned short nWhich - 4015 -include/editeng/editeng.hxx:290 + 4016 +include/editeng/editeng.hxx:295 struct ESelection EditEngine::GetWord(const struct ESelection &,unsigned short) const unsigned short nWordType 2 -include/editeng/editeng.hxx:302 +include/editeng/editeng.hxx:307 void EditEngine::InsertParagraph(int,const class EditTextObject &,const _Bool) int nPara 2147483647 -include/editeng/editeng.hxx:335 +include/editeng/editeng.hxx:340 void EditEngine::UndoActionStart(unsigned short,const struct ESelection &) unsigned short nId 111 @@ -501,7 +505,7 @@ include/editeng/editund2.hxx:37 include/editeng/editview.hxx:227 void EditView::RemoveCharAttribs(int,unsigned short) unsigned short nWhich - 4027 + 4028 include/editeng/fhgtitem.hxx:72 void SvxFontHeightItem::SetHeight(unsigned int,unsigned short,enum MapUnit,enum MapUnit) enum MapUnit eUnit @@ -509,19 +513,19 @@ include/editeng/fhgtitem.hxx:72 include/editeng/flditem.hxx:76 void SvxFieldItem::SvxFieldItem(class std::unique_ptr<class SvxFieldData, struct std::default_delete<class SvxFieldData> >,const unsigned short) const unsigned short nId - 4059 + 4060 include/editeng/flditem.hxx:77 void SvxFieldItem::SvxFieldItem(const class SvxFieldData &,const unsigned short) const unsigned short nId - 4059 + 4060 include/editeng/justifyitem.hxx:33 void SvxHorJustifyItem::SvxHorJustifyItem(const unsigned short) const unsigned short nId - 35 + 1059 include/editeng/justifyitem.hxx:60 void SvxVerJustifyItem::SvxVerJustifyItem(const unsigned short) const unsigned short nId - 36 + 1060 include/editeng/legacyitem.hxx:171 void Create(class SvxFormatBreakItem &,class SvStream &,unsigned short) unsigned short nItemVersion @@ -538,19 +542,23 @@ include/editeng/nhypitem.hxx:29 void SvxNoHyphenItem::SvxNoHyphenItem(const unsigned short) const unsigned short nId 19 -include/editeng/outliner.hxx:152 +include/editeng/opaqitem.hxx:36 + void SvxOpaqueItem::SvxOpaqueItem(const unsigned short,const _Bool) + const unsigned short nId + 99 +include/editeng/outliner.hxx:153 void Paragraph::RemoveFlag(enum ParaFlag) enum ParaFlag nFlag 256 -include/editeng/outliner.hxx:845 +include/editeng/outliner.hxx:847 void Outliner::SetParaFlag(class Paragraph *,enum ParaFlag) enum ParaFlag nFlag 256 -include/editeng/outliner.hxx:846 +include/editeng/outliner.hxx:848 _Bool Outliner::HasParaFlag(const class Paragraph *,enum ParaFlag) enum ParaFlag nFlag 256 -include/editeng/outlobj.hxx:106 +include/editeng/outlobj.hxx:112 void OutlinerParaObject::SetStyleSheets(unsigned short,const class rtl::OUString &,const enum SfxStyleFamily &) const enum SfxStyleFamily & rNewFamily 8 @@ -562,6 +570,18 @@ include/editeng/svxrtf.hxx:223 class rtl::OUString & SvxRTFParser::DelCharAtEnd(class rtl::OUString &,const char16_t) const char16_t cDel 59 +include/editeng/txtrange.hxx:63 + void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool) + unsigned short nLeft + 2 +include/editeng/txtrange.hxx:63 + void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool) + unsigned short nRight + 2 +include/editeng/txtrange.hxx:63 + void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool) + unsigned short nCacheSize + 30 include/editeng/unoedhlp.hxx:45 void SvxEditSourceHint::SvxEditSourceHint(enum SfxHintId) enum SfxHintId nId @@ -578,15 +598,15 @@ include/filter/msfilter/dffpropset.hxx:64 class rtl::OUString DffPropSet::GetPropertyString(unsigned int,class SvStream &) const unsigned int nId 896 -include/filter/msfilter/escherex.hxx:729 +include/filter/msfilter/escherex.hxx:726 void EscherPropertyContainer::Commit(class SvStream &,unsigned short,unsigned short) unsigned short nVersion 3 -include/filter/msfilter/msdffimp.hxx:568 +include/filter/msfilter/msdffimp.hxx:567 _Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const unsigned short nRecId2 4000 -include/filter/msfilter/msdffimp.hxx:568 +include/filter/msfilter/msdffimp.hxx:567 _Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const unsigned short nRecId1 4008 @@ -602,10 +622,6 @@ include/filter/msfilter/util.hxx:103 _Bool msfilter::util::WW8ReadFieldParams::GetTokenSttFromTo(int *,int *,int) int _nMax 9 -include/formula/FormulaCompiler.hxx:98 - void formula::FormulaCompiler::OpCodeMap::OpCodeMap(unsigned short,_Bool,enum formula::FormulaGrammar::Grammar) - unsigned short nSymbols - 499 include/formula/tokenarray.hxx:286 unsigned short formula::FormulaTokenArray::RemoveToken(unsigned short,unsigned short) unsigned short nCount @@ -654,7 +670,7 @@ include/oox/drawingml/drawingmltypes.hxx:226 void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long) long nHeight -1 -include/oox/export/drawingml.hxx:207 +include/oox/export/drawingml.hxx:205 void oox::drawingml::DrawingML::WriteBlipFill(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,int) int nXmlNamespace 421 @@ -686,14 +702,14 @@ include/oox/helper/containerhelper.hxx:193 class rtl::OUString oox::ContainerHelper::insertByUnusedName(const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> &,const class rtl::OUString &,char16_t,const class com::sun::star::uno::Any &) char16_t cSeparator 32 -include/oox/helper/helper.hxx:101 +include/oox/helper/helper.hxx:116 type-parameter-?-? getIntervalValue(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) type-parameter-?-? nEnd 360 include/oox/helper/propertyset.hxx:110 _Bool oox::PropertySet::setProperty(int,class Color) int nPropId - 499 + 503 include/oox/helper/textinputstream.hxx:42 void oox::TextInputStream::TextInputStream(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,unsigned short) unsigned short eTextEnc @@ -702,6 +718,10 @@ include/oox/mathml/importutils.hxx:122 class rtl::OUString & oox::formulaimport::XmlStream::AttributeList::operator[](int) ###1 1447390 +include/oox/mathml/importutils.hxx:135 + void oox::formulaimport::XmlStream::Tag::Tag(int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &) + int token + -1 include/oox/mathml/importutils.hxx:150 _Bool oox::formulaimport::XmlStream::Tag::attribute(int,_Bool) const int token @@ -710,7 +730,7 @@ include/oox/mathml/importutils.hxx:154 char16_t oox::formulaimport::XmlStream::Tag::attribute(int,char16_t) const int token 1447390 -include/oox/ole/axcontrol.hxx:950 +include/oox/ole/axcontrol.hxx:948 type-parameter-?-? & oox::ole::EmbeddedControl::createModel(const type-parameter-?-? &) const type-parameter-?-? & rParam 6 @@ -734,7 +754,7 @@ include/sfx2/childwin.hxx:139 void SfxChildWindowContext::RegisterChildWindowContext(class SfxModule *,unsigned short,class std::unique_ptr<struct SfxChildWinContextFactory, struct std::default_delete<struct SfxChildWinContextFactory> >) unsigned short 10366 -include/sfx2/ctrlitem.hxx:84 +include/sfx2/ctrlitem.hxx:83 void SfxStatusForwarder::SfxStatusForwarder(unsigned short,class SfxControllerItem &) unsigned short nSlotId 10930 @@ -774,26 +794,30 @@ include/sfx2/fcontnr.hxx:109 void SfxFilterMatcherIter::SfxFilterMatcherIter(const class SfxFilterMatcher &,enum SfxFilterFlags,enum SfxFilterFlags) enum SfxFilterFlags nNotMask 393216 -include/sfx2/frame.hxx:203 +include/sfx2/frame.hxx:201 void SfxUnoFrameItem::SfxUnoFrameItem(unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &) unsigned short nWhich 6516 -include/sfx2/infobar.hxx:97 - class VclPtr<class SfxInfoBarWindow> SfxInfoBarContainerWindow::appendInfoBar(const class rtl::OUString &,const class rtl::OUString &,enum InfoBarType,long) +include/sfx2/infobar.hxx:108 + class VclPtr<class SfxInfoBarWindow> SfxInfoBarContainerWindow::appendInfoBar(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,long,_Bool) long nMessageStyle 278528 include/sfx2/linkmgr.hxx:63 _Bool sfx2::LinkManager::InsertLink(class sfx2::SvBaseLink *,unsigned short,enum SfxLinkUpdateMode,const class rtl::OUString *) enum SfxLinkUpdateMode nUpdateType 3 -include/sfx2/lokhelper.hxx:73 - void SfxLokHelper::postMouseEventAsync(const class VclPtr<class vcl::Window> &,int,const class Point &,int,enum MouseEventModifiers,int,int) - enum MouseEventModifiers aModifiers +include/sfx2/lokhelper.hxx:32 + void LokMouseEventData::LokMouseEventData(int,class Point,int,enum MouseEventModifiers,int,int) + enum MouseEventModifiers eModifiers 256 include/sfx2/mgetempl.hxx:83 _Bool SfxManageStyleSheetPage::Execute_Impl(unsigned short,const class rtl::OUString &,unsigned short) unsigned short nId 5550 +include/sfx2/objsh.hxx:664 + void SfxObjectShell::AppendInfoBarWhenReady(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,_Bool) + enum InfobarType aInfobarType + 2 include/sfx2/opengrf.hxx:38 void SvxOpenGraphicDialog::SvxOpenGraphicDialog(const class rtl::OUString &,class weld::Window *,short) short nDialogType @@ -814,7 +838,7 @@ include/sfx2/sidebar/Theme.hxx:135 _Bool sfx2::sidebar::Theme::GetBoolean(const enum sfx2::sidebar::Theme::ThemeItem) const enum sfx2::sidebar::Theme::ThemeItem eItem 50 -include/sfx2/tabdlg.hxx:46 +include/sfx2/tabdlg.hxx:47 void SfxTabDialogItem::SfxTabDialogItem(unsigned short,const class SfxItemSet &) unsigned short nId 11022 @@ -836,16 +860,16 @@ include/sfx2/thumbnailview.hxx:210 30 include/sfx2/thumbnailview.hxx:345 void SfxThumbnailView::setItemDimensions(long,long,long,int) - long ThumbnailHeight - 96 -include/sfx2/thumbnailview.hxx:345 - void SfxThumbnailView::setItemDimensions(long,long,long,int) int itemPadding 5 include/sfx2/thumbnailview.hxx:345 void SfxThumbnailView::setItemDimensions(long,long,long,int) long ItemWidth 160 +include/sfx2/thumbnailview.hxx:345 + void SfxThumbnailView::setItemDimensions(long,long,long,int) + long ThumbnailHeight + 96 include/sot/stg.hxx:98 class BaseStorage * BaseStorage::OpenUCBStorage(const class rtl::OUString &,enum StreamMode,_Bool) enum StreamMode @@ -926,19 +950,19 @@ include/svtools/brwbox.hxx:562 void BrowseBox::commitBrowseBoxEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &) short nEventId 7 -include/svtools/ctrlbox.hxx:461 +include/svtools/ctrlbox.hxx:466 void SvtFontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short) - unsigned short nMin - 5 -include/svtools/ctrlbox.hxx:461 + unsigned short nMax + 995 +include/svtools/ctrlbox.hxx:466 void SvtFontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short) unsigned short nStep 5 -include/svtools/ctrlbox.hxx:461 +include/svtools/ctrlbox.hxx:466 void SvtFontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short) - unsigned short nMax - 995 -include/svtools/ctrlbox.hxx:462 + unsigned short nMin + 5 +include/svtools/ctrlbox.hxx:467 void SvtFontSizeBox::EnablePtRelativeMode(short,short,short) short nStep 10 @@ -950,10 +974,10 @@ include/svtools/htmlout.hxx:66 class SvStream & HTMLOutFuncs::Out_Hex(class SvStream &,unsigned long,unsigned char) unsigned char nLen 2 -include/svtools/sampletext.hxx:40 - class rtl::OUString makeMinimalTextForScript(enum UScriptCode) - enum UScriptCode eScript - 19 +include/svtools/ServerDetailsControls.hxx:73 + void HostDetailsContainer::HostDetailsContainer(class PlaceEditDialog *,unsigned short,const class rtl::OUString &) + unsigned short nPort + 80 include/svtools/unitconv.hxx:45 long ControlToItem(long,enum FieldUnit,enum MapUnit) enum FieldUnit eCtrl @@ -978,9 +1002,9 @@ include/svx/chrtitem.hxx:119 void SvxChartIndicateItem::SvxChartIndicateItem(enum SvxChartIndicate,unsigned short) unsigned short nId 22 -include/svx/dbaexchange.hxx:71 - void svx::OColumnTransferable::OColumnTransferable(const class svx::ODataAccessDescriptor &,enum ColumnTransferFormatFlags) - enum ColumnTransferFormatFlags _nFormats +include/svx/dbaexchange.hxx:57 + void svx::OColumnTransferable::OColumnTransferable(enum ColumnTransferFormatFlags) + enum ColumnTransferFormatFlags nFormats 7 include/svx/dbaexchange.hxx:97 void svx::OColumnTransferable::OColumnTransferable(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,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> &,enum ColumnTransferFormatFlags) @@ -988,12 +1012,12 @@ include/svx/dbaexchange.hxx:97 5 include/svx/dlgctrl.hxx:106 void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short) - unsigned short nBorder - 200 -include/svx/dlgctrl.hxx:106 - void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short) enum RectPoint eRpt 4 +include/svx/dlgctrl.hxx:106 + void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short) + unsigned short nBorder + 200 include/svx/dlgctrl.hxx:107 void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short) enum RectPoint eRpt @@ -1002,7 +1026,7 @@ include/svx/dlgctrl.hxx:107 void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short) unsigned short nBorder 240 -include/svx/dlgctrl.hxx:220 +include/svx/dlgctrl.hxx:219 void FillTypeLB::FillTypeLB(class vcl::Window *,long) long aWB 402653448 @@ -1030,7 +1054,7 @@ include/svx/drawitem.hxx:182 void SvxLineEndListItem::SvxLineEndListItem(const class rtl::Reference<class XLineEndList> &,unsigned short) unsigned short nWhich 10185 -include/svx/float3d.hxx:237 +include/svx/float3d.hxx:268 void Svx3DCtrlItem::Svx3DCtrlItem(unsigned short,class SfxBindings *) unsigned short 10645 @@ -1066,11 +1090,7 @@ include/svx/gallery.hxx:117 _Bool GalleryExplorer::GetGraphicObj(unsigned int,unsigned int,class Graphic *) unsigned int nThemeId 3 -include/svx/galmisc.hxx:158 - void GalleryTransferable::StartDrag(class vcl::Window *,signed char) - signed char nDragSourceActions - 5 -include/svx/galmisc.hxx:185 +include/svx/galmisc.hxx:187 void GalleryHint::GalleryHint(enum GalleryHintType,const class rtl::OUString &,const class rtl::OUString &) enum GalleryHintType nType 2 @@ -1078,18 +1098,14 @@ include/svx/grfcrop.hxx:33 void SvxGrfCrop::SvxGrfCrop(unsigned short) unsigned short 132 -include/svx/langbox.hxx:78 - int SvxLanguageBoxBase::ImplInsertLanguage(struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,short) - int nPos - 2147483647 -include/svx/langbox.hxx:78 - int SvxLanguageBoxBase::ImplInsertLanguage(struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,short) - short nType - 4 include/svx/numinf.hxx:33 void SvxNumberInfoItem::SvxNumberInfoItem(const unsigned short) const unsigned short nId 10086 +include/svx/numinf.hxx:38 + void SvxNumberInfoItem::SvxNumberInfoItem(class SvNumberFormatter *,const double &,const unsigned short) + const unsigned short nId + 10086 include/svx/numinf.hxx:41 void SvxNumberInfoItem::SvxNumberInfoItem(class SvNumberFormatter *,const double &,const class rtl::OUString &,const unsigned short) const unsigned short nId @@ -1118,7 +1134,7 @@ include/svx/ruler.hxx:247 _Bool SvxRuler::IsActFirstColumn(_Bool,unsigned short) const unsigned short nAct 65535 -include/svx/sdtaitm.hxx:39 +include/svx/sdtaitm.hxx:38 void SdrTextVertAdjustItem::SdrTextVertAdjustItem(enum SdrTextVertAdjust,unsigned short) unsigned short nWhich 130 @@ -1129,7 +1145,7 @@ include/svx/svdetc.hxx:104 include/svx/svdetc.hxx:104 class std::unique_ptr<unsigned short [], struct std::default_delete<unsigned short []> > RemoveWhichRange(const unsigned short *,unsigned short,unsigned short) unsigned short nRangeEnd - 4059 + 4060 include/svx/svdhdl.hxx:349 void SdrHdlLine::SdrHdlLine(class SdrHdl &,class SdrHdl &,enum SdrHdlKind) enum SdrHdlKind eNewKind @@ -1154,15 +1170,15 @@ include/svx/svdmrkv.hxx:284 _Bool SdrMarkView::PickMarkedObj(const class Point &,class SdrObject *&,class SdrPageView *&,enum SdrSearchOptions) const enum SdrSearchOptions nOptions 128 -include/svx/SvxNumOptionsTabPageHelper.hxx:47 - void SvxNumOptionsTabPageHelper::GetI18nNumbering(class ListBox &,unsigned short) - unsigned short nDoNotRemove - 65535 -include/svx/txencbox.hxx:163 +include/svx/svdpage.hxx:114 + void SdrObjList::InsertObjectThenMakeNameUnique(class SdrObject *,class std::__debug::unordered_set<class rtl::OUString, struct std::hash< ::rtl::OUString>, struct std::equal_to<class rtl::OUString>, class std::allocator<class rtl::OUString> > &,unsigned long) + unsigned long nPos + 18446744073709551615 +include/svx/txencbox.hxx:151 int SvxTextEncodingTreeView::get_height_rows(int) const int nRows 6 -include/svx/txencbox.hxx:167 +include/svx/txencbox.hxx:155 void SvxTextEncodingTreeView::set_size_request(int,int) int nWidth -1 @@ -1170,19 +1186,19 @@ include/svx/unoapi.hxx:43 class SvxShape * CreateSvxShapeByTypeAndInventor(unsigned short,enum SdrInventor,const class rtl::OUString &) enum SdrInventor nInventor 1917081171 -include/svx/xcolit.hxx:45 +include/svx/xcolit.hxx:44 void XColorItem::XColorItem(unsigned short,const class Color &) unsigned short nWhich 1048 -include/svx/xflclit.hxx:38 +include/svx/xflclit.hxx:37 void XFillColorItem::XFillColorItem(int,const class Color &) int nIndex -1 -include/svx/xflgrit.hxx:40 +include/svx/xflgrit.hxx:39 void XFillGradientItem::XFillGradientItem(int,const class XGradient &) int nIndex -1 -include/svx/xlnclit.hxx:34 +include/svx/xlnclit.hxx:33 void XLineColorItem::XLineColorItem(int,const class Color &) int nIndex -1 @@ -1190,10 +1206,46 @@ include/svx/xpoly.hxx:73 void XPolygon::Insert(unsigned short,const class XPolygon &) unsigned short nPos 65535 -include/test/sheet/xsheetconditionalentries.hxx:28 - class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> apitest::XSheetConditionalEntries::createCondition(const int) - const int nr - 4 +include/test/helper/form.hxx:37 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nWidth + 4500 +include/test/helper/form.hxx:37 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nY + 10000 +include/test/helper/form.hxx:37 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nX + 15000 +include/test/helper/form.hxx:37 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nHeight + 3000 +include/test/helper/shape.hxx:52 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nHeight + 3500 +include/test/helper/shape.hxx:52 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nY + 10000 +include/test/helper/shape.hxx:52 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nX + 7500 +include/test/helper/shape.hxx:52 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nWidth + 5000 +include/test/helper/shape.hxx:66 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createRectangle(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nY + 5000 +include/test/helper/shape.hxx:66 + class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createRectangle(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) + const int nWidth + 5000 include/test/unoapi_property_testers.hxx:85 void testLongOptionalProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const int &) const int & nValue @@ -1202,16 +1254,12 @@ include/test/unoapi_property_testers.hxx:166 void testColorProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const int &) const int & rValue 305419896 -include/toolkit/controls/unocontrolbase.hxx:48 +include/toolkit/controls/unocontrolbase.hxx:47 int UnoControlBase::ImplGetPropertyValue_INT32(unsigned short) unsigned short nProp 74 include/tools/b3dtrans.hxx:112 void B3dTransformationSet::SetDeviceRectangle(double,double,double,double) - double fB - -2 -include/tools/b3dtrans.hxx:112 - void B3dTransformationSet::SetDeviceRectangle(double,double,double,double) double fL -2 include/tools/b3dtrans.hxx:112 @@ -1220,6 +1268,10 @@ include/tools/b3dtrans.hxx:112 2 include/tools/b3dtrans.hxx:112 void B3dTransformationSet::SetDeviceRectangle(double,double,double,double) + double fB + -2 +include/tools/b3dtrans.hxx:112 + void B3dTransformationSet::SetDeviceRectangle(double,double,double,double) double fT 2 include/tools/datetime.hxx:87 @@ -1402,7 +1454,7 @@ include/unotools/compatibility.hxx:206 void SvtCompatibilityOptions::SetDefault(enum SvtCompatibilityEntry::Index,_Bool) enum SvtCompatibilityEntry::Index rIdx 12 -include/unotools/confignode.hxx:260 +include/unotools/confignode.hxx:254 class utl::OConfigurationTreeRoot utl::OConfigurationTreeRoot::tryCreateWithComponentContext(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,int,enum utl::OConfigurationTreeRoot::CREATION_MODE) int _nDepth -1 @@ -1434,10 +1486,14 @@ include/vcl/bitmapex.hxx:51 void BitmapEx::BitmapEx(class Size,unsigned short) unsigned short nBitCount 24 -include/vcl/bitmapex.hxx:456 +include/vcl/bitmapex.hxx:455 void BitmapEx::CombineMaskOr(class Color,unsigned char) unsigned char nTol 9 +include/vcl/customweld.hxx:78 + void weld::CustomWidgetController::SetDragDataTransferrable(class rtl::Reference<class TransferDataContainer> &,unsigned char) + unsigned char eDNDConstants + 5 include/vcl/dockwin.hxx:144 void ImplDockingWindowWrapper::ShowTitleButton(enum TitleButton,_Bool) enum TitleButton nButton @@ -1446,11 +1502,11 @@ include/vcl/errinf.hxx:180 void TwoStringErrorInfo::TwoStringErrorInfo(class ErrCode,const class rtl::OUString &,const class rtl::OUString &,enum DialogMask) enum DialogMask nMask 4097 -include/vcl/field.hxx:510 +include/vcl/field.hxx:470 double MetricField::ConvertDoubleValue(long,unsigned short,enum FieldUnit,enum MapUnit) enum MapUnit eOutUnit 9 -include/vcl/field.hxx:513 +include/vcl/field.hxx:473 double MetricField::ConvertDoubleValue(long,unsigned short,enum MapUnit,enum FieldUnit) enum MapUnit eInUnit 9 @@ -1470,6 +1526,10 @@ include/vcl/font/Feature.hxx:77 void vcl::font::FeatureDefinition::FeatureDefinition(unsigned int,const char *,class std::__debug::vector<struct vcl::font::FeatureParameter, class std::allocator<struct vcl::font::FeatureParameter> >) unsigned int nCode 1718772067 +include/vcl/IDialogRenderable.hxx:39 + void vcl::ILibreOfficeKitNotifier::libreOfficeKitViewCallback(int,const char *) const + int nType + 18 include/vcl/imap.hxx:117 unsigned long ImageMap::Read(class SvStream &,unsigned long) unsigned long nFormat @@ -1478,7 +1538,7 @@ include/vcl/lstbox.hxx:116 void ListBox::ListBox(enum WindowType) enum WindowType nType 332 -include/vcl/outdev.hxx:1168 +include/vcl/outdev.hxx:1167 int OutputDevice::GetTextBreak(const class rtl::OUString &,long,char16_t,int &,int,int,long,const class vcl::TextLayoutCache *) const char16_t nExtraChar 45 @@ -1494,19 +1554,23 @@ include/vcl/print.hxx:674 class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &) int i_nMinValue 10 -include/vcl/svapp.hxx:751 +include/vcl/svapp.hxx:750 struct ImplSVEvent * Application::PostGestureEvent(enum VclEventId,class vcl::Window *,const class GestureEvent *) enum VclEventId nEvent - 130 -include/vcl/svtabbx.hxx:70 + 129 +include/vcl/svtabbx.hxx:60 void SvTabListBox::SetTab(unsigned short,long,enum MapUnit) enum MapUnit 10 -include/vcl/svtabbx.hxx:92 +include/vcl/svtabbx.hxx:82 class rtl::OUString SvTabListBox::GetEntryText(unsigned long,unsigned short) const unsigned short nCol 65535 -include/vcl/texteng.hxx:137 +include/vcl/svtabbx.hxx:88 + void SvTabListBox::SetTabJustify(unsigned short,enum SvTabJustify) + enum SvTabJustify + 8 +include/vcl/texteng.hxx:136 class TextPaM TextEngine::ImpInsertText(const class TextSelection &,char16_t,_Bool) char16_t c 9 @@ -1530,47 +1594,55 @@ include/vcl/transfer.hxx:357 class com::sun::star::uno::Sequence<signed char> TransferableDataHelper::GetSequence(enum SotClipboardFormatId,const class rtl::OUString &) enum SotClipboardFormatId nFormat 59 -include/vcl/treelistbox.hxx:522 +include/vcl/treelistbox.hxx:525 class SvLBoxTab * SvTreeListBox::GetFirstTab(enum SvLBoxTabFlags,unsigned short &) enum SvLBoxTabFlags nFlagMask 16 -include/vcl/treelistbox.hxx:523 +include/vcl/treelistbox.hxx:526 void SvTreeListBox::GetLastTab(enum SvLBoxTabFlags,unsigned short &) enum SvLBoxTabFlags nFlagMask 16 -include/vcl/vclevent.hxx:225 +include/vcl/vclevent.hxx:224 void VclAccessibleEvent::VclAccessibleEvent(enum VclEventId,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &) enum VclEventId n 37 -include/vcl/vclmedit.hxx:118 +include/vcl/vclmedit.hxx:115 void VclMultiLineEdit::EnableUpdateData(unsigned long) unsigned long nTimeout 300 -include/vcl/weld.hxx:601 - void weld::ComboBox::insert_separator(int) +include/vcl/weld.hxx:619 + void weld::ComboBox::insert_separator(int,const class rtl::OUString &) int pos -1 -include/vcl/weld.hxx:790 +include/vcl/weld.hxx:820 void weld::TreeView::set_sensitive(int,_Bool,int) int col -1 -include/vcl/weld.hxx:872 +include/vcl/weld.hxx:910 void weld::TreeView::set_image(const class weld::TreeIter &,const class rtl::OUString &,int) int col -1 -include/vcl/weld.hxx:880 - void weld::TreeView::set_image(const class weld::TreeIter &,const class com::sun::star::uno::Reference<class com::sun::star::graphic::XGraphic> &,int) - int col +include/vcl/weld.hxx:1047 + void weld::IconView::insert(int,const class rtl::OUString *,const class rtl::OUString *,const class rtl::OUString *,class weld::TreeIter *) + int pos -1 -include/vcl/weld.hxx:1807 +include/vcl/weld.hxx:1078 + void weld::IconView::select(int) + int pos + -1 +include/vcl/weld.hxx:1079 + void weld::IconView::unselect(int) + int pos + -1 +include/vcl/weld.hxx:1938 void weld::Menu::insert(int,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString *,class VirtualDevice *,_Bool) int pos -1 -include/vcl/weld.hxx:1813 +include/vcl/weld.hxx:1944 void weld::Menu::insert_separator(int,const class rtl::OUString &) int pos -1 -include/vcl/window.hxx:1577 +include/vcl/window.hxx:1569 void vcl::Window::SimulateKeyPress(unsigned short) const unsigned short nKeyCode 1312 @@ -1618,7 +1690,7 @@ include/xmloff/xmlexppr.hxx:135 void SvXMLExportPropertyMapper::exportXML(class SvXMLExport &,const class std::__debug::vector<struct XMLPropertyState, class std::allocator<struct XMLPropertyState> > &,enum SvXmlExportFlags,_Bool) const enum SvXmlExportFlags nFlags 8 -include/xmloff/xmlimp.hxx:476 +include/xmloff/xmlimp.hxx:479 void SvXMLImport::SetError(int,const class rtl::OUString &,const class rtl::OUString &) int nId 268566538 @@ -1637,19 +1709,19 @@ include/xmloff/xmlnumfi.hxx:195 include/xmloff/XMLSettingsExportContext.hxx:37 void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,const class rtl::OUString &) enum xmloff::token::XMLTokenEnum i_eName - 1217 + 1227 include/xmloff/XMLSettingsExportContext.hxx:39 void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum) enum xmloff::token::XMLTokenEnum i_eName - 1870 -libreofficekit/qa/tilebench/tilebench.cxx:273 - _Bool testJoinsAt(class lok::Document *,long,long,const long,const long) + 1880 +libreofficekit/qa/tilebench/tilebench.cxx:71 + void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int) + int nTotalWidth + -1 +libreofficekit/qa/tilebench/tilebench.cxx:344 + int testJoinsAt(class lok::Document *,long,long,const long,const long) const long nTilePixelSize 256 -libreofficekit/qa/tilebench/tilebench.cxx:273 - _Bool testJoinsAt(class lok::Document *,long,long,const long,const long) - const long nTileTwipSize - 1852 lotuswordpro/inc/xfilter/xfdrawstyle.hxx:95 void XFDrawStyle::SetLineDashStyle(enum enumXFLineStyle,double,double,double) enum enumXFLineStyle style @@ -1694,35 +1766,31 @@ o3tl/qa/cow_wrapper_clients.hxx:132 void o3tltests::cow_wrapper_client4::cow_wrapper_client4(int) int 4 -oox/source/core/xmlfilterbase.cxx:597 +oox/source/core/xmlfilterbase.cxx:596 void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class com::sun::star::uno::Sequence<class rtl::OUString> &) int nXmlElement 93522801 -oox/source/core/xmlfilterbase.cxx:614 +oox/source/core/xmlfilterbase.cxx:613 void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class LanguageTag &) int nXmlElement 109972365 -oox/source/drawingml/table/tableproperties.cxx:102 - void SetTableStyleProperties(const class std::unique_ptr<class oox::drawingml::table::TableStyle, struct std::default_delete<class oox::drawingml::table::TableStyle> > &,int,int,int) - int tblTextClr - 1844 oox/source/export/vmlexport.cxx:332 void impl_AddInt(class sax_fastparser::FastAttributeList *,int,unsigned int) int nElement 5721 -package/inc/ThreadedDeflater.hxx:49 +package/inc/ThreadedDeflater.hxx:55 void ZipUtils::ThreadedDeflater::ThreadedDeflater(int) int nSetLevel -1 -reportdesign/source/filter/xml/xmlExport.hxx:133 +reportdesign/source/filter/xml/xmlExport.hxx:131 void rptxml::ORptExport::collectStyleNames(int,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &) int _nFamily 202 -reportdesign/source/filter/xml/xmlExport.hxx:134 +reportdesign/source/filter/xml/xmlExport.hxx:132 void rptxml::ORptExport::collectStyleNames(int,const class std::__debug::vector<int, class std::allocator<int> > &,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &) int _nFamily 203 -reportdesign/source/filter/xml/xmlStyleImport.hxx:72 +reportdesign/source/filter/xml/xmlStyleImport.hxx:70 void rptxml::OControlStyleContext::AddProperty(short,const class com::sun::star::uno::Any &) short nContextID 28673 @@ -1730,11 +1798,11 @@ reportdesign/source/ui/inc/UITools.hxx:143 class SdrObject * isOver(const class tools::Rectangle &,const class SdrPage &,const class SdrView &,_Bool,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> *,int) int _nIgnoreListLength 2 -sal/osl/unx/file_path_helper.cxx:171 - void path_list_iterator::path_list_iterator(const class rtl::OUString &,char16_t) +sal/osl/unx/file_path_helper.cxx:173 + void (anonymous namespace)::path_list_iterator::path_list_iterator(const class rtl::OUString &,char16_t) char16_t list_separator 58 -sal/osl/unx/file_url.cxx:502 +sal/osl/unx/file_url.cxx:503 _Bool _islastchr(char16_t *,char16_t) char16_t Chr 47 @@ -1746,13 +1814,13 @@ sal/osl/unx/nlsupport.cxx:106 char * compose_locale(struct _rtl_Locale *,char *,unsigned long) unsigned long n 64 -sal/osl/unx/profile.cxx:133 +sal/osl/unx/profile.cxx:137 void osl_ProfileGenerateExtension(const char *,const char *,char *,int) int BufferMaxLen 4096 -sal/osl/unx/readwrite_helper.hxx:20 - _Bool safeRead(int,void *,unsigned int) - unsigned int count +sal/osl/unx/readwrite_helper.hxx:22 + _Bool safeRead(int,void *,unsigned long) + unsigned long count 511 sal/osl/unx/socket.cxx:286 struct oslSocketImpl * createSocketImpl(int) @@ -1762,7 +1830,7 @@ sal/osl/unx/uunxapi.hxx:74 int mkdir(const class rtl::OString &,unsigned int) unsigned int aMode 511 -sal/qa/osl/file/osl_File.cxx:105 +sal/qa/osl/file/osl_File.cxx:107 _Bool t_compareTime(struct TimeValue *,struct TimeValue *,int) int nDelta 2000 @@ -1770,15 +1838,15 @@ sax/inc/xml2utf.hxx:96 int sax_expatwrap::XMLFile2UTFConverter::readAndConvert(class com::sun::star::uno::Sequence<signed char> &,int) int nMaxToRead 16384 -sax/source/tools/converter.cxx:985 - enum sax::Result readUnsignedNumberMaxDigits(int,const class rtl::OUString &,int &,int &) +sax/source/tools/converter.cxx:983 + enum sax::(anonymous namespace)::Result readUnsignedNumberMaxDigits(int,const class rtl::OUString &,int &,int &) int maxDigits 9 sc/inc/AccessibleFilterMenu.hxx:41 void ScAccessibleFilterMenu::ScAccessibleFilterMenu(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class ScMenuFloatingWindow *,const class rtl::OUString &,unsigned long) unsigned long nMenuPos 999 -sc/inc/address.hxx:325 +sc/inc/address.hxx:334 void ScAddress::Format(class rtl::OStringBuffer &,enum ScRefFlags,const class ScDocument *,const struct ScAddress::Details &) const enum ScRefFlags nFlags 32768 @@ -1794,7 +1862,7 @@ sc/inc/autoform.hxx:173 _Bool ScAutoFormatData::Save(class SvStream &,unsigned short) unsigned short fileVersion 5050 -sc/inc/cellsuno.hxx:496 +sc/inc/cellsuno.hxx:497 void ScCellRangeObj::SetArrayFormula_Impl(const class rtl::OUString &,const enum formula::FormulaGrammar::Grammar) const enum formula::FormulaGrammar::Grammar eGrammar 16908294 @@ -1810,38 +1878,18 @@ sc/inc/colcontainer.hxx:34 void ScColContainer::ScColContainer(const unsigned long) const unsigned long nSize 64 -sc/inc/column.hxx:249 - void ScColumn::GetUnprotectedCells(int,int,class ScRangeList &) const - int nEndRow - 1048575 -sc/inc/column.hxx:263 +sc/inc/column.hxx:264 void ScColumn::DeleteRanges(const class std::__debug::vector<struct sc::RowSpan, class std::allocator<struct sc::RowSpan> > &,enum InsertDeleteFlags) enum InsertDeleteFlags nDelFlag 2071 -sc/inc/column.hxx:523 +sc/inc/column.hxx:524 unsigned short ScColumn::GetOptimalColWidth(class OutputDevice *,double,double,const class Fraction &,const class Fraction &,_Bool,unsigned short,const class ScMarkData *,const struct ScColWidthParam *) const unsigned short nOldWidth 1167 -sc/inc/column.hxx:610 +sc/inc/column.hxx:611 void ScColumn::BroadcastRows(int,int,enum SfxHintId) enum SfxHintId nHint 51 -sc/inc/columnspanset.hxx:59 - void sc::ColumnSpanSet::ColumnType::ColumnType(int,int,_Bool) - int nEnd - 1048575 -sc/inc/columnspanset.hxx:131 - void sc::SingleColumnSpanSet::scan(struct sc::ColumnBlockConstPosition &,const class ScColumn &,int,int) - int nEnd - 1048575 -sc/inc/compiler.hxx:458 - void ScCompiler::MoveRelWrap(const class ScTokenArray &,const class ScDocument *,const class ScAddress &,short,int) - int nMaxRow - 1048575 -sc/inc/compiler.hxx:458 - void ScCompiler::MoveRelWrap(const class ScTokenArray &,const class ScDocument *,const class ScAddress &,short,int) - short nMaxCol - 1023 sc/inc/compressedarray.hxx:173 void ScBitMaskCompressedArray::AndValue(type-parameter-?-?,const type-parameter-?-? &) const type-parameter-?-? & rValueToAnd @@ -1854,35 +1902,23 @@ sc/inc/compressedarray.hxx:186 type-parameter-?-? ScBitMaskCompressedArray::GetLastAnyBitAccess(const type-parameter-?-? &) const const type-parameter-?-? & rBitMask 15 -sc/inc/document.hxx:1312 +sc/inc/document.hxx:1323 _Bool ScDocument::CompileErrorCells(enum FormulaError) enum FormulaError nErrCode 525 -sc/inc/document.hxx:1646 - void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &) - short nCol2 - 1023 -sc/inc/document.hxx:1646 +sc/inc/document.hxx:1658 void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &) enum InsertDeleteFlags nFlags 2303 -sc/inc/document.hxx:1836 +sc/inc/document.hxx:1848 void ScDocument::DeleteSelectionTab(short,enum InsertDeleteFlags,const class ScMarkData &) enum InsertDeleteFlags nDelFlag 2303 -sc/inc/document.hxx:1893 +sc/inc/document.hxx:1905 void ScDocument::SetRowFlags(int,int,short,enum CRFlags) enum CRFlags nNewFlags 8 -sc/inc/document.hxx:1893 - void ScDocument::SetRowFlags(int,int,short,enum CRFlags) - int nEndRow - 1048575 -sc/inc/document.hxx:1923 - int ScDocument::LastNonFilteredRow(int,int,short) const - int nEndRow - 1048575 -sc/inc/document.hxx:2222 +sc/inc/document.hxx:2234 void ScDocument::BroadcastCells(const class ScRange &,enum SfxHintId,_Bool) enum SfxHintId nHint 31 @@ -1890,7 +1926,7 @@ sc/inc/dpsave.hxx:317 class ScDPSaveDimension * ScDPSaveData::GetFirstDimension(enum com::sun::star::sheet::DataPilotFieldOrientation) enum com::sun::star::sheet::DataPilotFieldOrientation eOrientation 4 -sc/inc/externalrefmgr.hxx:793 +sc/inc/externalrefmgr.hxx:797 void ScExternalRefManager::purgeStaleSrcDocument(int) int nTimeOut 30000 @@ -1986,31 +2022,27 @@ sc/inc/stringutil.hxx:151 _Bool ScStringUtil::parseSimpleNumber(const char *,unsigned long,char,char,double &) char gsep 44 -sc/inc/table.hxx:408 +sc/inc/table.hxx:412 void ScTable::SetFormula(short,int,const class ScTokenArray &,enum formula::FormulaGrammar::Grammar) enum formula::FormulaGrammar::Grammar eGram 65539 -sc/inc/table.hxx:671 +sc/inc/table.hxx:675 _Bool ScTable::HasAttribSelection(const class ScMarkData &,enum HasAttrFlags) const enum HasAttrFlags nMask 8 -sc/inc/table.hxx:777 - void ScTable::SetOptimalHeightOnly(class sc::RowHeightContext &,int,int,class ScProgress *,unsigned long) - int nEndRow - 1048575 -sc/inc/tokenarray.hxx:256 +sc/inc/tokenarray.hxx:262 void ScTokenArray::WrapReference(const class ScAddress &,short,int) short nMaxCol 255 -sc/inc/tokenarray.hxx:256 +sc/inc/tokenarray.hxx:262 void ScTokenArray::WrapReference(const class ScAddress &,short,int) int nMaxRow 65535 -sc/inc/tokenarray.hxx:257 +sc/inc/tokenarray.hxx:263 _Bool ScTokenArray::NeedsWrapReference(const class ScAddress &,short,int) const short nMaxCol 255 -sc/inc/tokenarray.hxx:257 +sc/inc/tokenarray.hxx:263 _Bool ScTokenArray::NeedsWrapReference(const class ScAddress &,short,int) const int nMaxRow 65535 @@ -2026,11 +2058,31 @@ sc/qa/extras/scpdfexport.cxx:51 void ScPDFExportTest::setFont(class ScFieldEditEngine &,int,int,const class rtl::OUString &) int nEnd 4 -sc/qa/unit/subsequent_export-test.cxx:1439 +sc/qa/unit/parallelism.cxx:407 + void lcl_setupCommon(class ScDocument *,unsigned long,unsigned long) + unsigned long nConstCellValue + 20 +sc/qa/unit/parallelism.cxx:407 + void lcl_setupCommon(class ScDocument *,unsigned long,unsigned long) + unsigned long nNumRows + 1048 +sc/qa/unit/parallelism.cxx:537 + void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long) + unsigned long nOffset + 100 +sc/qa/unit/parallelism.cxx:537 + void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long) + unsigned long nNumRowsInBlock + 200 +sc/qa/unit/parallelism.cxx:537 + void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long) + unsigned long nNumFG + 50 +sc/qa/unit/subsequent_export-test.cxx:1478 _Bool ::isOverline(const struct editeng::Section &,enum FontLineStyle) enum FontLineStyle eStyle 2 -sc/qa/unit/subsequent_export-test.cxx:1446 +sc/qa/unit/subsequent_export-test.cxx:1485 _Bool ::isUnderline(const struct editeng::Section &,enum FontLineStyle) enum FontLineStyle eStyle 2 @@ -2046,47 +2098,39 @@ sc/qa/unit/ucalc.hxx:53 void Test::pasteOneCellFromClip(class ScDocument *,const class ScRange &,class ScDocument *,enum InsertDeleteFlags) enum InsertDeleteFlags eFlags 2303 -sc/qa/unit/ucalc_formula.cxx:8205 +sc/qa/unit/ucalc_formula.cxx:8209 void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int) - int nEnd1 - 159 -sc/qa/unit/ucalc_formula.cxx:8205 + int nStart1 + 9 +sc/qa/unit/ucalc_formula.cxx:8209 + void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int) + int nStart2 + 169 +sc/qa/unit/ucalc_formula.cxx:8209 void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int) int nEnd2 319 -sc/qa/unit/ucalc_formula.cxx:8205 +sc/qa/unit/ucalc_formula.cxx:8209 void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int) int nTotalRows 330 -sc/qa/unit/ucalc_formula.cxx:8205 +sc/qa/unit/ucalc_formula.cxx:8209 void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int) - int nStart2 - 169 -sc/qa/unit/ucalc_formula.cxx:8205 - void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int) - int nStart1 - 9 -sc/source/core/data/documen3.cxx:1721 - _Bool lcl_AddTwipsWhile(long &,long,int &,int,const class ScTable *,_Bool) - int nEndRow - 1048575 + int nEnd1 + 159 sc/source/core/data/documen8.cxx:522 void (anonymous namespace)::IdleCalcTextWidthScope::incCol(short) short nInc -1 -sc/source/core/data/dpoutput.cxx:315 +sc/source/core/data/dpoutput.cxx:316 void lcl_SetFrame(class ScDocument *,short,short,int,short,int,unsigned short) unsigned short nWidth 20 -sc/source/core/data/segmenttree.cxx:267 - void ScFlatUInt16SegmentsImpl::ScFlatUInt16SegmentsImpl(int,unsigned short) - int nMax - 1048575 -sc/source/core/tool/compiler.cxx:1245 - void ConventionXL_A1::ConventionXL_A1(enum formula::FormulaGrammar::AddressConvention) +sc/source/core/tool/compiler.cxx:1268 + void (anonymous namespace)::ConventionXL_A1::ConventionXL_A1(enum formula::FormulaGrammar::AddressConvention) enum formula::FormulaGrammar::AddressConvention eConv 4 -sc/source/core/tool/compiler.cxx:1969 +sc/source/core/tool/compiler.cxx:2008 _Bool lcl_isUnicodeIgnoreAscii(const char16_t *,const char *,unsigned long) unsigned long n 4 @@ -2094,7 +2138,7 @@ sc/source/core/tool/editutil.cxx:87 class rtl::OUString lcl_GetDelimitedString(const class EditTextObject &,const char) const char c 10 -sc/source/core/tool/scmatrix.cxx:357 +sc/source/core/tool/scmatrix.cxx:361 unsigned long GetElementsMax(unsigned long) unsigned long nMemory 6442450944 @@ -2110,15 +2154,11 @@ sc/source/filter/excel/xechart.cxx:561 class std::shared_ptr<class XclExpChLineFormat> lclCreateLineFormat(const class XclExpChRoot &,const class ScfPropertySet &,enum XclChObjectType) enum XclChObjectType eObjType 9 -sc/source/filter/excel/xelink.cxx:299 - void XclExpSupbook::XclExpSupbook(const class XclExpRoot &,const class rtl::OUString &,enum XclSupbookType) - enum XclSupbookType - 5 -sc/source/filter/excel/xepage.cxx:341 - void XclExpXmlStartHeaderFooterElementRecord::XclExpXmlStartHeaderFooterElementRecord(const int) +sc/source/filter/excel/xepage.cxx:343 + void (anonymous namespace)::XclExpXmlStartHeaderFooterElementRecord::XclExpXmlStartHeaderFooterElementRecord(const int) const int nElement 2612 -sc/source/filter/excel/xepivotxml.cxx:712 +sc/source/filter/excel/xepivotxml.cxx:713 void WriteGrabBagItemToStream(class XclExpXmlStream &,int,const class com::sun::star::uno::Any &) int tokenId 4008 @@ -2146,6 +2186,10 @@ sc/source/filter/inc/ftools.hxx:46 type-parameter-?-? llimit_cast(type-parameter-?-?,type-parameter-?-?) type-parameter-?-? nMin 8 +sc/source/filter/inc/pivottablebuffer.hxx:119 + void oox::xls::PivotTableField::PivotTableField(class oox::xls::PivotTable &,int) + int nFieldIndex + -2 sc/source/filter/inc/tokstack.hxx:256 _Bool TokenPool::IsSingleOp(const struct TokenId &,const enum OpCode) const const enum OpCode eId @@ -2170,14 +2214,6 @@ sc/source/filter/inc/xeescher.hxx:154 void XclExpImgData::XclExpImgData(const class Graphic &,unsigned short) unsigned short nRecId 233 -sc/source/filter/inc/xeescher.hxx:430 - void XclExpEmbeddedObjectManager::XclExpEmbeddedObjectManager(const class XclExpObjectManager &,const class Size &,int,int) - int nScaleY - 4000 -sc/source/filter/inc/xeescher.hxx:430 - void XclExpEmbeddedObjectManager::XclExpEmbeddedObjectManager(const class XclExpObjectManager &,const class Size &,int,int) - int nScaleX - 4000 sc/source/filter/inc/xeformula.hxx:64 class std::shared_ptr<class XclTokenArray> XclExpFormulaCompiler::CreateFormula(enum XclFormulaType,const class ScAddress &) enum XclFormulaType eType @@ -2218,7 +2254,7 @@ sc/source/filter/inc/xestring.hxx:51 void XclExpString::XclExpString(enum XclStrFlags,unsigned short) unsigned short nMaxLen 32767 -sc/source/filter/inc/xestyle.hxx:586 +sc/source/filter/inc/xestyle.hxx:590 unsigned int XclExpXFBuffer::InsertWithFont(const class ScPatternAttr *,short,unsigned short,_Bool) short nScript 4 @@ -2238,6 +2274,10 @@ sc/source/filter/inc/xiformula.hxx:48 class std::unique_ptr<class ScTokenArray, struct std::default_delete<class ScTokenArray> > XclImpFormulaCompiler::CreateFormula(enum XclFormulaType,const class XclTokenArray &) enum XclFormulaType eType 6 +sc/source/filter/inc/xipivot.hxx:224 + void XclImpPTField::XclImpPTField(const class XclImpPivotTable &,unsigned short) + unsigned short nCacheIdx + 65534 sc/source/filter/inc/xlformula.hxx:518 _Bool XclTokenArrayHelper::GetStringList(class rtl::OUString &,const class ScTokenArray &,char16_t) char16_t cSep @@ -2246,16 +2286,16 @@ sc/source/filter/inc/xlformula.hxx:526 void XclTokenArrayHelper::ConvertStringToList(class ScTokenArray &,class svl::SharedStringPool &,char16_t) char16_t cStringSep 10 -sc/source/filter/xcl97/XclExpChangeTrack.cxx:1373 - void EndXmlElement::EndXmlElement(int) +sc/source/filter/xcl97/XclExpChangeTrack.cxx:1375 + void (anonymous namespace)::EndXmlElement::EndXmlElement(int) int nElement 2620 -sc/source/filter/xml/xmlfonte.cxx:39 - void ScXMLFontAutoStylePool_Impl::AddFontItems(const unsigned short *,unsigned char,const class SfxItemPool *,const _Bool) +sc/source/filter/xml/xmlfonte.cxx:41 + void (anonymous namespace)::ScXMLFontAutoStylePool_Impl::AddFontItems(const unsigned short *,unsigned char,const class SfxItemPool *,const _Bool) unsigned char nIdCount 3 -sc/source/filter/xml/xmlstyli.cxx:267 - void XMLTableCellPropsContext::XMLTableCellPropsContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,unsigned int,class std::__debug::vector<struct XMLPropertyState, class std::allocator<struct XMLPropertyState> > &,const class rtl::Reference<class SvXMLImportPropertyMapper> &) +sc/source/filter/xml/xmlstyli.cxx:269 + void (anonymous namespace)::XMLTableCellPropsContext::XMLTableCellPropsContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,unsigned int,class std::__debug::vector<struct XMLPropertyState, class std::allocator<struct XMLPropertyState> > &,const class rtl::Reference<class SvXMLImportPropertyMapper> &) unsigned int nFamily 196608 sc/source/ui/Accessibility/AccessibleCsvControl.cxx:220 @@ -2274,7 +2314,7 @@ sc/source/ui/inc/AccessibleEditObject.hxx:68 void ScAccessibleEditObject::ScAccessibleEditObject(enum ScAccessibleEditObject::EditObjectType) enum ScAccessibleEditObject::EditObjectType eObjectType 2 -sc/source/ui/inc/AccessibleSpreadsheet.hxx:280 +sc/source/ui/inc/AccessibleSpreadsheet.hxx:85 _Bool ScAccessibleSpreadsheet::CalcScRangeListDifferenceMax(class ScRangeList *,class ScRangeList *,int,class std::__debug::vector<class ScMyAddress, class std::allocator<class ScMyAddress> > &) int nMax 10 @@ -2286,7 +2326,19 @@ sc/source/ui/inc/content.hxx:142 void ScContentTree::SelectEntryByName(const enum ScContentId,const class rtl::OUString &) const enum ScContentId nRoot 8 -sc/source/ui/inc/docfunc.hxx:113 +sc/source/ui/inc/datatransformation.hxx:83 + void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t) + short nCol + 2 +sc/source/ui/inc/datatransformation.hxx:83 + void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t) + char16_t cSeparator + 44 +sc/source/ui/inc/datatransformation.hxx:149 + void sc::NumberTransformation::NumberTransformation(const class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,const enum sc::NUMBER_TRANSFORM_TYPE,int) + int nPrecision + 4 +sc/source/ui/inc/docfunc.hxx:114 _Bool ScDocFunc::SetCellText(const class ScAddress &,const class rtl::OUString &,_Bool,_Bool,_Bool,const enum formula::FormulaGrammar::Grammar) const enum formula::FormulaGrammar::Grammar eGrammar 16908294 @@ -2354,7 +2406,7 @@ sc/source/ui/inc/uiitems.hxx:268 void ScTabOpItem::ScTabOpItem(unsigned short,const struct ScTabOpParam *) unsigned short nWhich 26345 -sc/source/ui/inc/viewdata.hxx:184 +sc/source/ui/inc/viewdata.hxx:185 void ScBoundsProvider::EnlargeBy(long) long nOffset 2 @@ -2366,7 +2418,7 @@ sc/source/ui/pagedlg/tptable.cxx:64 _Bool lcl_PutScaleItem3(unsigned short,class SfxItemSet &,const class SfxItemSet &,const class weld::ComboBox &,unsigned short,const class weld::SpinButton &,unsigned short) unsigned short nLBEntry 2 -sc/source/ui/unoobj/cellsuno.cxx:1230 +sc/source/ui/unoobj/cellsuno.cxx:1235 _Bool lcl_PutFormulaArray(class ScDocShell &,const class ScRange &,const class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<class rtl::OUString> > &,const enum formula::FormulaGrammar::Grammar) const enum formula::FormulaGrammar::Grammar eGrammar 16908294 @@ -2378,7 +2430,7 @@ sc/source/ui/view/printfun.cxx:78 unsigned short lcl_GetUShort(const class SfxItemSet *,unsigned short) unsigned short nWhich 176 -sc/source/ui/view/viewfun3.cxx:834 +sc/source/ui/view/viewfun3.cxx:832 _Bool lcl_SelHasAttrib(const class ScDocument *,short,int,short,int,const class ScMarkData &,enum HasAttrFlags) enum HasAttrFlags nMask 4 @@ -2394,7 +2446,7 @@ scaddins/source/analysis/analysishelper.hxx:105 class rtl::OUString GetString(double,_Bool,unsigned short) unsigned short nMaxNumOfDigits 15 -scaddins/source/analysis/analysishelper.hxx:539 +scaddins/source/analysis/analysishelper.hxx:538 void sca::analysis::ConvertDataLinear::ConvertDataLinear(const char *,double,double,enum sca::analysis::ConvertDataClass,_Bool) enum sca::analysis::ConvertDataClass eClass 8 @@ -2410,11 +2462,15 @@ sd/inc/Annotation.hxx:52 void LOKCommentNotify(enum sd::CommentNotificationType,const class SfxViewShell *,const class com::sun::star::uno::Reference<class com::sun::star::office::XAnnotation> &) enum sd::CommentNotificationType nType 2 +sd/inc/CustomAnimationEffect.hxx:74 + void sd::CustomAnimationEffect::setPresetClassAndId(short,const class rtl::OUString &) + short nPresetClass + 4 sd/inc/sdpage.hxx:349 class SdStyleSheet * SdPage::getPresentationStyle(unsigned int) const unsigned int nHelpId 59865 -sd/qa/unit/tiledrendering/tiledrendering.cxx:249 +sd/qa/unit/tiledrendering/tiledrendering.cxx:250 class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > lcl_convertSeparated(const class rtl::OUString &,char16_t) char16_t nSeparator 59 @@ -2426,7 +2482,7 @@ sd/source/ui/animations/STLPropertySet.hxx:62 void sd::STLPropertySet::setPropertyState(int,enum sd::STLPropertyState) enum sd::STLPropertyState nState 3 -sd/source/ui/inc/animobjs.hxx:153 +sd/source/ui/inc/animobjs.hxx:150 void sd::AnimationControllerItem::AnimationControllerItem(unsigned short,class sd::AnimationWindow *,class SfxBindings *) unsigned short 27112 @@ -2486,7 +2542,7 @@ sd/source/ui/remotecontrol/ImagePreparer.hxx:37 class com::sun::star::uno::Sequence<signed char> sd::ImagePreparer::preparePreview(unsigned int,unsigned int,unsigned int,unsigned long &) unsigned int aHeight 240 -sd/source/ui/sidebar/LayoutMenu.hxx:159 +sd/source/ui/sidebar/LayoutMenu.hxx:158 class SfxRequest sd::sidebar::LayoutMenu::CreateRequest(unsigned short,enum AutoLayout) unsigned short nSlotId 27014 @@ -2506,127 +2562,127 @@ sd/source/ui/slidesorter/view/SlsLayouter.cxx:145 int sd::slidesorter::view::Layouter::Implementation::ResolvePositionInGap(int,enum sd::slidesorter::view::Layouter::Implementation::GapMembership,int,int) int nGap 4 -sdext/source/minimizer/configurationaccess.hxx:93 +sdext/source/minimizer/configurationaccess.hxx:90 short ConfigurationAccess::GetConfigProperty(const enum PPPOptimizerTokenEnum,const short) const const enum PPPOptimizerTokenEnum 38 -sdext/source/minimizer/informationdialog.hxx:39 +sdext/source/minimizer/informationdialog.hxx:29 class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short) int nYPos 6 -sdext/source/minimizer/informationdialog.hxx:39 +sdext/source/minimizer/informationdialog.hxx:29 class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short) int nWidth 199 -sdext/source/minimizer/informationdialog.hxx:39 +sdext/source/minimizer/informationdialog.hxx:29 class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short) int nXPos 35 -sdext/source/minimizer/informationdialog.hxx:39 +sdext/source/minimizer/informationdialog.hxx:29 class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short) int nHeight 24 -sdext/source/minimizer/informationdialog.hxx:42 +sdext/source/minimizer/informationdialog.hxx:32 class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool) - int nPosX + int nPosY 5 -sdext/source/minimizer/informationdialog.hxx:42 +sdext/source/minimizer/informationdialog.hxx:32 class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool) - int nWidth - 25 -sdext/source/minimizer/informationdialog.hxx:42 - class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool) - int nPosY + int nPosX 5 -sdext/source/minimizer/informationdialog.hxx:42 +sdext/source/minimizer/informationdialog.hxx:32 class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool) int nHeight 25 -sdext/source/minimizer/informationdialog.hxx:45 +sdext/source/minimizer/informationdialog.hxx:32 + class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool) + int nWidth + 25 +sdext/source/minimizer/informationdialog.hxx:35 + class rtl::OUString InsertCheckBox(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short) + int nXPos + 35 +sdext/source/minimizer/informationdialog.hxx:35 class rtl::OUString InsertCheckBox(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short) int nYPos 42 -sdext/source/minimizer/informationdialog.hxx:45 +sdext/source/minimizer/informationdialog.hxx:35 class rtl::OUString InsertCheckBox(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short) int nWidth 199 -sdext/source/minimizer/informationdialog.hxx:45 - class rtl::OUString InsertCheckBox(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short) +sdext/source/minimizer/informationdialog.hxx:39 + class rtl::OUString InsertButton(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,const class rtl::OUString &) int nXPos - 35 -sdext/source/minimizer/informationdialog.hxx:49 + 95 +sdext/source/minimizer/informationdialog.hxx:39 class rtl::OUString InsertButton(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,const class rtl::OUString &) int nWidth 50 -sdext/source/minimizer/informationdialog.hxx:49 +sdext/source/minimizer/informationdialog.hxx:39 class rtl::OUString InsertButton(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,const class rtl::OUString &) short nTabIndex 2 -sdext/source/minimizer/informationdialog.hxx:49 - class rtl::OUString InsertButton(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,const class rtl::OUString &) - int nXPos - 95 -sdext/source/minimizer/optimizerdialog.hxx:116 +sdext/source/minimizer/optimizerdialog.hxx:108 void OptimizerDialog::EnablePage(short) short nStep 4 -sdext/source/minimizer/optimizerdialog.hxx:117 +sdext/source/minimizer/optimizerdialog.hxx:109 void OptimizerDialog::DisablePage(short) short nStep 4 -sdext/source/minimizer/optimizerdialogcontrols.cxx:160 +sdext/source/minimizer/optimizerdialogcontrols.cxx:163 class rtl::OUString InsertCheckBox(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short) int nXPos 97 -sdext/source/minimizer/optimizerdialogcontrols.cxx:197 +sdext/source/minimizer/optimizerdialogcontrols.cxx:200 class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short) double fEffectiveMax 100 -sdext/source/minimizer/optimizerdialogcontrols.cxx:197 +sdext/source/minimizer/optimizerdialogcontrols.cxx:200 class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short) int nYPos 46 -sdext/source/minimizer/optimizerdialogcontrols.cxx:197 +sdext/source/minimizer/optimizerdialogcontrols.cxx:200 class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short) int nXPos 197 -sdext/source/minimizer/optimizerdialogcontrols.cxx:245 +sdext/source/minimizer/optimizerdialogcontrols.cxx:248 class rtl::OUString InsertComboBox(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const _Bool,const class com::sun::star::uno::Sequence<class rtl::OUString> &,int,int,short) int nXPos 197 -sfx2/inc/SfxRedactionHelper.hxx:63 +sfx2/inc/SfxRedactionHelper.hxx:62 class rtl::OUString SfxRedactionHelper::getStringParam(const class SfxRequest &,unsigned short) unsigned short nParamId 6734 -sfx2/source/dialog/filedlghelper.cxx:1930 +sfx2/source/dialog/filedlghelper.cxx:1923 void SetToken(class rtl::OUString &,int,char16_t,const class rtl::OUString &) char16_t cTok 32 sfx2/source/doc/oleprops.cxx:100 - void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &) + void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &) int nPropType 30 sfx2/source/doc/oleprops.cxx:103 - void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &,const class rtl::OUString &) + void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &,const class rtl::OUString &) int nPropType 30 sfx2/source/doc/oleprops.cxx:106 - void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short) + void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short) unsigned short eTextEnc 65535 sfx2/source/doc/oleprops.cxx:106 - void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short) + void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short) int nPropType 31 -sfx2/source/doc/oleprops.hxx:305 +sfx2/source/doc/oleprops.hxx:304 void SfxOleSection::SetThumbnailValue(int,const class com::sun::star::uno::Sequence<signed char> &) int nPropId 17 -sfx2/source/doc/syspath.hxx:28 - _Bool SystemPath::GetUserTemplateLocation(char16_t *,int) +sfx2/source/doc/syspath.hxx:27 + _Bool GetUserTemplateLocation(char16_t *,int) int nSize 16000 -slideshow/source/engine/eventmultiplexer.cxx:110 +slideshow/source/engine/eventmultiplexer.cxx:107 void slideshow::internal::ListenerOperations::pruneListeners(type-parameter-?-? &,unsigned long) unsigned long nSizeThreshold 16 @@ -2634,58 +2690,34 @@ slideshow/source/engine/opengl/Operation.hxx:262 class std::shared_ptr<class RotateAndScaleDepthByHeight> makeRotateAndScaleDepthByHeight(const struct glm::detail::tvec3<float> &,const struct glm::detail::tvec3<float> &,double,_Bool,_Bool,double,double) double Angle -120 -slideshow/source/engine/opengl/TransitionImpl.cxx:1828 +slideshow/source/engine/opengl/TransitionImpl.cxx:1827 class std::shared_ptr<class OGLTransitionImpl> makeVortexTransition(const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const struct TransitionSettings &,int,int) - int NX + int NY 96 -slideshow/source/engine/opengl/TransitionImpl.cxx:1828 +slideshow/source/engine/opengl/TransitionImpl.cxx:1827 class std::shared_ptr<class OGLTransitionImpl> makeVortexTransition(const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const struct TransitionSettings &,int,int) - int NY + int NX 96 -slideshow/source/engine/opengl/TransitionImpl.cxx:1942 +slideshow/source/engine/opengl/TransitionImpl.cxx:1941 void createHexagon(class Primitive &,const int,const int,const int,const int) const int NX 80 -slideshow/source/engine/opengl/TransitionImpl.cxx:1942 +slideshow/source/engine/opengl/TransitionImpl.cxx:1941 void createHexagon(class Primitive &,const int,const int,const int,const int) const int NY 106 -slideshow/source/engine/opengl/TransitionImpl.hxx:250 - class std::shared_ptr<class OGLTransitionImpl> makeRevolvingCircles(unsigned short,unsigned short) - unsigned short nPointsOnCircles - 128 -slideshow/source/engine/opengl/TransitionImpl.hxx:250 +slideshow/source/engine/opengl/TransitionImpl.hxx:254 class std::shared_ptr<class OGLTransitionImpl> makeRevolvingCircles(unsigned short,unsigned short) unsigned short nCircles 8 -slideshow/source/engine/opengl/TransitionImpl.hxx:251 +slideshow/source/engine/opengl/TransitionImpl.hxx:254 + class std::shared_ptr<class OGLTransitionImpl> makeRevolvingCircles(unsigned short,unsigned short) + unsigned short nPointsOnCircles + 128 +slideshow/source/engine/opengl/TransitionImpl.hxx:255 class std::shared_ptr<class OGLTransitionImpl> makeHelix(unsigned short) unsigned short nRows 20 -slideshow/source/engine/transitions/checkerboardwipe.hxx:36 - void slideshow::internal::CheckerBoardWipe::CheckerBoardWipe(int) - int unitsPerEdge - 10 -slideshow/source/engine/transitions/combtransition.hxx:42 - void slideshow::internal::CombTransition::CombTransition(const class o3tl::optional<class std::shared_ptr<class slideshow::internal::Slide> > &,const class std::shared_ptr<class slideshow::internal::Slide> &,const class std::shared_ptr<class slideshow::internal::SoundPlayer> &,const class slideshow::internal::UnoViewContainer &,class slideshow::internal::ScreenUpdater &,class slideshow::internal::EventMultiplexer &,const class basegfx::B2DVector &,int) - int nNumStripes - 24 -slideshow/source/engine/transitions/snakewipe.hxx:55 - void slideshow::internal::ParallelSnakesWipe::ParallelSnakesWipe(int,_Bool,_Bool,_Bool) - int nElements - 64 -slideshow/source/engine/transitions/spiralwipe.hxx:50 - void slideshow::internal::BoxSnakesWipe::BoxSnakesWipe(int,_Bool) - int nElements - 64 -slideshow/source/engine/transitions/waterfallwipe.hxx:34 - void slideshow::internal::WaterfallWipe::WaterfallWipe(int,_Bool) - int nElements - 128 -slideshow/source/engine/transitions/zigzagwipe.hxx:45 - void slideshow::internal::BarnZigZagWipe::BarnZigZagWipe(int) - int nZigs - 5 slideshow/source/inc/listenercontainer.hxx:104 void slideshow::internal::ListenerOperations::pruneListeners(type-parameter-?-? &,unsigned long) unsigned long @@ -2746,14 +2778,18 @@ svl/source/numbers/zforscan.hxx:282 _Bool ImpSvNumberformatScan::InsertSymbol(unsigned short &,enum svt::NfSymbolType,const class rtl::OUString &) enum svt::NfSymbolType eType -7 -svtools/inc/table/tablecontrol.hxx:127 +svtools/inc/table/tablecontrol.hxx:126 void svt::table::TableControl::commitCellEventIfAccessibleAlive(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &) const short i_eventID 4 -svtools/inc/table/tablecontrolinterface.hxx:222 +svtools/inc/table/tablecontrolinterface.hxx:221 void svt::table::ITableControl::showTracking(const class tools::Rectangle &,const enum ShowTrackFlags) const enum ShowTrackFlags i_flags 4099 +svtools/source/misc/sampletext.cxx:605 + class rtl::OUString makeMinimalTextForScript(enum UScriptCode) + enum UScriptCode eScript + 19 svtools/source/svhtml/htmlout.cxx:394 unsigned long lcl_FlushContext(struct HTMLOutContext &,char *,unsigned int) unsigned int nFlags @@ -2762,15 +2798,15 @@ svtools/source/svrtf/rtfout.cxx:29 class SvStream & Out_Hex(class SvStream &,unsigned long,unsigned char) unsigned char nLen 2 -svtools/source/table/tablecontrol_impl.hxx:242 +svtools/source/table/tablecontrol_impl.hxx:241 void svt::table::TableControl_Impl::commitAccessibleEvent(const short) const short i_eventID 9 -svtools/source/uno/unoiface.cxx:43 +svtools/source/uno/unoiface.cxx:41 void lcl_setWinBits(class vcl::Window *,long,_Bool) long _nBits 68719476736 -svx/inc/AccessibleTableShape.hxx:127 +svx/inc/AccessibleTableShape.hxx:123 _Bool accessibility::AccessibleTableShape::ResetStateDirectly(short) short aState 11 @@ -2786,15 +2822,15 @@ svx/inc/xpolyimp.hxx:41 void ImpXPolygon::ImpXPolygon(unsigned short,unsigned short) unsigned short nResize 16 -svx/source/dialog/fntctrl.cxx:498 +svx/source/dialog/fntctrl.cxx:494 void SetPrevFontEscapement(class SvxFont &,unsigned char,unsigned char,short) unsigned char nProp 100 -svx/source/inc/AccessibleFrameSelector.hxx:118 +svx/source/inc/AccessibleFrameSelector.hxx:111 void svx::a11y::AccFrameSelectorChild::NotifyAccessibleEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &) const short _nEventId 4 -svx/source/inc/charmapacc.hxx:208 +svx/source/inc/charmapacc.hxx:209 void svx::SvxShowCharSetItemAcc::fireEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &) const short _nEventId 4 @@ -2802,23 +2838,23 @@ svx/source/inc/fmcontrolbordermanager.hxx:72 void svxform::UnderlineDescriptor::UnderlineDescriptor(short,class Color) short _nUnderlineType 10 -svx/source/inc/fmexch.hxx:105 +svx/source/inc/fmexch.hxx:104 void svxform::OLocalExchangeHelper::startDrag(signed char) signed char nDragSourceActions 3 -svx/source/inc/fmshimp.hxx:471 +svx/source/inc/fmshimp.hxx:461 void FmXFormShell::UpdateSlot_Lock(short) short nId 10636 -svx/source/inc/GraphCtlAccessibleContext.hxx:165 +svx/source/inc/GraphCtlAccessibleContext.hxx:158 void SvxGraphCtrlAccessibleContext::CommitChange(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &) short aEventId 7 -svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:69 +svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:68 void textconversiondlgs::DictionaryList::set_size_request(int,int) int nWidth -1 -svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:79 +svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:78 int textconversiondlgs::DictionaryList::get_height_rows(int) const int nRows 8 @@ -2826,11 +2862,11 @@ sw/inc/authfld.hxx:126 void SwAuthorityFieldType::SetSortKeys(unsigned short,const struct SwTOXSortKey *) unsigned short nKeyCount 3 -sw/inc/crsrsh.hxx:824 +sw/inc/crsrsh.hxx:828 void SwCursorShell::FireSectionChangeEvent(unsigned short,unsigned short) unsigned short nOldSection 2 -sw/inc/crsrsh.hxx:825 +sw/inc/crsrsh.hxx:829 void SwCursorShell::FireColumnChangeEvent(unsigned short,unsigned short) unsigned short nOldColumn 2 @@ -2854,7 +2890,7 @@ sw/inc/editsh.hxx:241 class std::__debug::vector<struct std::pair<const class SfxPoolItem *, class std::unique_ptr<class SwPaM, struct std::default_delete<class SwPaM> > >, class std::allocator<struct std::pair<const class SfxPoolItem *, class std::unique_ptr<class SwPaM, struct std::default_delete<class SwPaM> > > > > SwEditShell::GetItemWithPaM(unsigned short) unsigned short nWhich 8 -sw/inc/fesh.hxx:528 +sw/inc/fesh.hxx:532 _Bool SwFEShell::BeginCreate(unsigned short,enum SdrInventor,const class Point &) enum SdrInventor eObjInventor 825249094 @@ -2870,7 +2906,7 @@ sw/inc/frmfmt.hxx:85 void SwFrameFormat::SwFrameFormat(class SwAttrPool &,const char *,class SwFrameFormat *,unsigned short,const unsigned short *) unsigned short nFormatWhich 153 -sw/inc/IDocumentRedlineAccess.hxx:178 +sw/inc/IDocumentRedlineAccess.hxx:164 _Bool IDocumentRedlineAccess::DeleteRedline(const class SwStartNode &,_Bool,enum RedlineType) enum RedlineType nDelType 65535 @@ -2886,7 +2922,7 @@ sw/inc/swfltopt.hxx:31 void SwFilterOptions::SwFilterOptions(unsigned short,const char **,unsigned long *) unsigned short nCnt 13 -sw/inc/tblafmt.hxx:248 +sw/inc/tblafmt.hxx:249 _Bool SwTableAutoFormat::Save(class SvStream &,unsigned short) const unsigned short fileVersion 5050 @@ -2906,63 +2942,59 @@ sw/qa/core/Test-BigPtrArray.cxx:55 void fillBigPtrArray(class BigPtrArray &,unsigned long) unsigned long numEntries 10 -sw/source/core/access/accmap.cxx:407 +sw/source/core/access/accmap.cxx:420 void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,const class sw::access::SwAccessibleChild &) enum SwAccessibleEvent_Impl::EventType eT 5 -sw/source/core/access/accmap.cxx:418 +sw/source/core/access/accmap.cxx:431 void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType) enum SwAccessibleEvent_Impl::EventType eT 4 -sw/source/core/access/accmap.cxx:457 +sw/source/core/access/accmap.cxx:470 void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,const class SwFrame *,const class sw::access::SwAccessibleChild &,const class SwRect &) enum SwAccessibleEvent_Impl::EventType eT 3 -sw/source/core/crsr/bookmrk.cxx:71 - void lcl_AssertFieldMarksSet(const class sw::mark::Fieldmark *const,const char16_t,const char16_t) +sw/source/core/crsr/bookmrk.cxx:154 + void lcl_SetFieldMarks(class sw::mark::Fieldmark *const,class SwDoc *const,const char16_t,const char16_t,const struct SwPosition *const) const char16_t aStartMark 7 -sw/source/core/crsr/bookmrk.cxx:84 - void lcl_SetFieldMarks(class sw::mark::Fieldmark *const,class SwDoc *const,const char16_t,const char16_t) - const char16_t aStartMark - 7 -sw/source/core/crsr/bookmrk.cxx:113 +sw/source/core/crsr/bookmrk.cxx:210 void lcl_RemoveFieldMarks(const class sw::mark::Fieldmark *const,class SwDoc *const,const char16_t,const char16_t) const char16_t aStartMark 7 -sw/source/core/doc/doclay.cxx:111 +sw/source/core/doc/doclay.cxx:93 _Bool lcl_IsItemSet(const class SwContentNode &,unsigned short) unsigned short which 64 -sw/source/core/doc/docredln.cxx:304 +sw/source/core/doc/docredln.cxx:297 void lcl_LOKInvalidateFrames(const class SwModify &,const class SwRootFrame *,const enum SwFrameType,const class Point *) const enum SwFrameType nFrameType 49152 -sw/source/core/doc/DocumentStylePoolManager.cxx:119 +sw/source/core/doc/DocumentStylePoolManager.cxx:117 void lcl_SetDfltFont(enum DefaultFontType,class SfxItemSet &) enum DefaultFontType nFntType 4 -sw/source/core/doc/DocumentStylePoolManager.cxx:142 +sw/source/core/doc/DocumentStylePoolManager.cxx:140 void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &) enum DefaultFontType nCJKFntType 3000 -sw/source/core/doc/DocumentStylePoolManager.cxx:142 +sw/source/core/doc/DocumentStylePoolManager.cxx:140 void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &) enum DefaultFontType nLatinFntType 2000 -sw/source/core/doc/DocumentStylePoolManager.cxx:142 +sw/source/core/doc/DocumentStylePoolManager.cxx:140 void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &) enum DefaultFontType nCTLFntType 4000 -sw/source/core/doc/SwStyleNameMapper.cxx:90 - class std::__debug::unordered_map<class rtl::OUString, unsigned short, struct std::hash< ::rtl::OUString>, struct std::equal_to<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, unsigned short> > > HashFromRange(unsigned short,unsigned short,unsigned short,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &(*)(void),type-parameter-?-?...) - ###17 - 12293 -sw/source/core/doc/SwStyleNameMapper.cxx:90 +sw/source/core/doc/SwStyleNameMapper.cxx:87 class std::__debug::unordered_map<class rtl::OUString, unsigned short, struct std::hash< ::rtl::OUString>, struct std::equal_to<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, unsigned short> > > HashFromRange(unsigned short,unsigned short,unsigned short,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &(*)(void),type-parameter-?-?...) ###16 12288 -sw/source/core/doc/tblafmt.cxx:185 +sw/source/core/doc/SwStyleNameMapper.cxx:87 + class std::__debug::unordered_map<class rtl::OUString, unsigned short, struct std::hash< ::rtl::OUString>, struct std::equal_to<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, unsigned short> > > HashFromRange(unsigned short,unsigned short,unsigned short,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &(*)(void),type-parameter-?-?...) + ###17 + 12293 +sw/source/core/doc/tblafmt.cxx:180 void SwAfVersions::Write(class SvStream &,unsigned short) unsigned short fileVersion 5050 @@ -2970,7 +3002,7 @@ sw/source/core/inc/swcache.hxx:112 void SwCache::DecreaseMax(const unsigned short) const unsigned short nSub 100 -sw/source/core/inc/txtfrm.hxx:487 +sw/source/core/inc/txtfrm.hxx:489 long SwTextFrame::GrowTst(const long) const long nGrow 9223372036854775807 @@ -2986,7 +3018,7 @@ sw/source/core/inc/UndoNumbering.hxx:39 void SwUndoInsNum::SwUndoInsNum(const class SwNumRule &,const class SwNumRule &,const class SwDoc *,enum SwUndoId) enum SwUndoId nUndoId 10 -sw/source/core/layout/dbg_lay.cxx:462 +sw/source/core/layout/dbg_lay.cxx:464 void lcl_Padded(class rtl::OStringBuffer &,const long,unsigned long) unsigned long length 5 @@ -2994,42 +3026,42 @@ sw/source/core/layout/objectformattertxtfrm.hxx:96 class SwAnchoredObject * SwObjectFormatterTextFrame::GetFirstObjWithMovedFwdAnchor(const short,unsigned int &,_Bool &) const short _nWrapInfluenceOnPosition 2 -sw/source/core/txtnode/txtedt.cxx:188 +sw/source/core/txtnode/txtedt.cxx:182 _Bool lcl_MaskRedlinesAndHiddenText(const class SwTextNode &,class rtl::OUStringBuffer &,int,int,const char16_t) const char16_t cChar 65529 -sw/source/core/undo/untbl.cxx:2191 - void RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags) +sw/source/core/undo/untbl.cxx:2194 + void (anonymous namespace)::RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags) enum RedlineFlags eRedlineFlagsMask 2 -sw/source/filter/html/htmlatr.cxx:1149 - _Bool HTMLEndPosLst::IsHTMLMode(unsigned long) const +sw/source/filter/html/htmlatr.cxx:1154 + _Bool (anonymous namespace)::HTMLEndPosLst::IsHTMLMode(unsigned long) const unsigned long nMode 32 sw/source/filter/html/svxcss1.hxx:157 void SvxCSS1PropertyInfo::SetBoxItem(class SfxItemSet &,unsigned short,const class SvxBoxItem *) unsigned short nMinBorderDist 28 -sw/source/filter/html/swhtml.hxx:620 +sw/source/filter/html/swhtml.hxx:622 void SwHTMLParser::NewStdAttr(enum HtmlTokenId) enum HtmlTokenId nToken 414 -sw/source/filter/inc/fltshell.hxx:170 +sw/source/filter/inc/fltshell.hxx:173 class SfxPoolItem * SwFltControlStack::GetFormatStackAttr(unsigned short,unsigned short *) unsigned short nWhich 6 -sw/source/filter/inc/fltshell.hxx:171 +sw/source/filter/inc/fltshell.hxx:174 const class SfxPoolItem * SwFltControlStack::GetOpenStackAttr(const struct SwPosition &,unsigned short) unsigned short nWhich 14 -sw/source/filter/ww8/docxattributeoutput.cxx:3613 - class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char) - int nLen - 4 -sw/source/filter/ww8/docxattributeoutput.cxx:3613 +sw/source/filter/ww8/docxattributeoutput.cxx:3649 class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char) char cFill 48 +sw/source/filter/ww8/docxattributeoutput.cxx:3649 + class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char) + int nLen + 4 sw/source/filter/ww8/docxexport.hxx:194 void DocxExport::WriteOutliner(const class OutlinerParaObject &,unsigned char) unsigned char nTyp @@ -3042,11 +3074,11 @@ sw/source/filter/ww8/writerhelper.hxx:473 const type-parameter-?-? * HasItem(const class std::__debug::map<unsigned short, const class SfxPoolItem *, class sw::util::ItemSort, class std::allocator<struct std::pair<const unsigned short, const class SfxPoolItem *> > > &,unsigned short) unsigned short eType 52 -sw/source/filter/ww8/wrtww8.hxx:1361 +sw/source/filter/ww8/wrtww8.hxx:1360 void WW8_WrPlcField::WW8_WrPlcField(unsigned short,unsigned char) unsigned short nStructSz 2 -sw/source/filter/ww8/wrtww8.hxx:1418 +sw/source/filter/ww8/wrtww8.hxx:1417 void SwWW8WrGrf::WritePICBulletFHeader(class SvStream &,const class Graphic &,unsigned short,unsigned short,unsigned short) unsigned short mm 100 @@ -3054,11 +3086,11 @@ sw/source/filter/ww8/ww8glsy.hxx:63 void WW8Glossary::WW8Glossary(class tools::SvRef<class SotStorageStream> &,unsigned char,class SotStorage *) unsigned char nVersion 8 -sw/source/filter/ww8/ww8par.hxx:1592 +sw/source/filter/ww8/ww8par.hxx:1593 class std::unique_ptr<class OutlinerParaObject, struct std::default_delete<class OutlinerParaObject> > SwWW8ImplReader::ImportAsOutliner(class rtl::OUString &,int,int,enum ManTypes) enum ManTypes eType 4 -sw/source/filter/ww8/ww8scan.cxx:7132 +sw/source/filter/ww8/ww8scan.cxx:7118 _Bool readS16(const unsigned char *,unsigned long,const unsigned char *,short *) unsigned long offset 2 @@ -3098,11 +3130,15 @@ sw/source/uibase/inc/prcntfld.hxx:65 void SwPercentField::set_max(int,enum FieldUnit) enum FieldUnit eInUnit 5 -toolkit/inc/helper/btndlg.hxx:62 +sw/source/uibase/inc/swuipardlg.hxx:35 + void SwParaDlg::SwParaDlg(class weld::Window *,class SwView &,const class SfxItemSet &,unsigned char,const class rtl::OUString *,_Bool,const class rtl::OString &) + unsigned char nDialogMode + 2 +toolkit/inc/helper/btndlg.hxx:61 void ButtonDialog::RemoveButton(unsigned short) unsigned short nId 10 -toolkit/inc/helper/btndlg.hxx:65 +toolkit/inc/helper/btndlg.hxx:64 void ButtonDialog::ButtonDialog(enum WindowType) enum WindowType nType 304 @@ -3110,16 +3146,12 @@ toolkit/source/awt/vclxspinbutton.cxx:40 void lcl_modifyStyle(class vcl::Window *,long,_Bool) long _nStyleBits 4096 -tools/source/inet/inetmime.cxx:232 - _Bool translateUTF8Char(const char *&,const char *,unsigned short,unsigned int &) - unsigned short eEncoding - 65534 -tools/source/stream/strmunx.cxx:160 +tools/source/stream/strmunx.cxx:104 class ErrCode GetSvError(int) int nErrno 21 -ucbhelper/source/provider/resultset.cxx:96 - void ucbhelper_impl::PropertySetInfo::PropertySetInfo(const struct ucbhelper_impl::PropertyInfo *,int) +ucbhelper/source/provider/resultset.cxx:100 + void ucbhelper_impl::(anonymous namespace)::PropertySetInfo::PropertySetInfo(const struct ucbhelper_impl::(anonymous namespace)::PropertyInfo *,int) int nProps 2 unotools/source/config/useroptions.cxx:98 @@ -3130,23 +3162,23 @@ unotools/source/misc/datetime.cxx:72 _Bool convertNumber64(long &,const class rtl::OUString &,long,long) long -1 -vcl/backendtest/VisualBackendTest.cxx:143 - class std::__debug::vector<class tools::Rectangle, class std::allocator<class tools::Rectangle> > VisualBackendTestWindow::setupRegions(int,int,int,int) - int nPartitionsY +vcl/backendtest/outputdevice/rectangle.cxx:24 + void drawInvertOffset(class OutputDevice &,const class tools::Rectangle &,int,enum InvertFlags) + int nOffset 2 vcl/inc/fontsubset.hxx:54 void FontSubsetInfo::LoadFont(enum FontType,const unsigned char *,int) enum FontType eInFontType 32 -vcl/inc/headless/svpgdi.hxx:246 +vcl/inc/headless/svpgdi.hxx:248 void SvpSalGraphics::drawBitmap(const struct SalTwoRect &,const struct BitmapBuffer *,enum _cairo_operator) enum _cairo_operator eOp 2 -vcl/inc/listbox.hxx:493 +vcl/inc/listbox.hxx:496 void ImplListBox::SetMRUEntries(const class rtl::OUString &,char16_t) char16_t cSep 59 -vcl/inc/listbox.hxx:494 +vcl/inc/listbox.hxx:497 class rtl::OUString ImplListBox::GetMRUEntries(char16_t) const char16_t cSep 59 @@ -3162,7 +3194,11 @@ vcl/inc/opengl/program.hxx:108 void OpenGLProgram::DrawElements(unsigned int,unsigned int) unsigned int aMode 4 -vcl/inc/test/outputdevice.hxx:58 +vcl/inc/skia/gdiimpl.hxx:201 + void SkiaSalGraphicsImpl::drawBitmap(const struct SalTwoRect &,const class SkBitmap &,enum SkBlendMode) + enum SkBlendMode eBlendMode + 3 +vcl/inc/test/outputdevice.hxx:68 void vcl::test::OutputDeviceTestCommon::createDiamondPoints(class tools::Rectangle,int,class Point &,class Point &,class Point &,class Point &) int nOffset 4 @@ -3174,7 +3210,7 @@ vcl/inc/unx/gtk/gtkprintwrapper.hxx:55 void vcl::unx::GtkPrintWrapper::print_unix_dialog_set_manual_capabilities(struct _GtkPrintUnixDialog *,GtkPrintCapabilities) const GtkPrintCapabilities capabilities 846 -vcl/inc/unx/saldata.hxx:48 +vcl/inc/unx/saldata.hxx:47 void X11SalData::X11SalData(enum GenericUnixSalDataType,class SalInstance *) enum GenericUnixSalDataType t 3 @@ -3198,11 +3234,11 @@ vcl/inc/WidgetDrawInterface.hxx:47 _Bool vcl::WidgetDrawInterface::hitTestNativeControl(enum ControlType,enum ControlPart,const class tools::Rectangle &,const class Point &,_Bool &) enum ControlType eType 60 -vcl/inc/wizdlg.hxx:89 +vcl/inc/wizdlg.hxx:88 long vcl::RoadmapWizard::LogicalCoordinateToPixel(int) int iCoordinate 6 -vcl/inc/wizdlg.hxx:307 +vcl/inc/wizdlg.hxx:286 void vcl::RoadmapWizard::implConstruct(const enum WizardButtonFlags) const enum WizardButtonFlags _nButtonFlags 31 @@ -3218,16 +3254,16 @@ vcl/qa/cppunit/jpeg/JpegReaderTest.cxx:48 _Bool checkRect(class Bitmap &,int,long,long,class Color,int) long nAreaWidth 8 -vcl/qa/cppunit/timer.cxx:35 - void WatchDog::WatchDog(int) +vcl/qa/cppunit/timer.cxx:37 + void (anonymous namespace)::WatchDog::WatchDog(int) int nSeconds 120 -vcl/qa/cppunit/timer.cxx:328 - void YieldTimer::YieldTimer(unsigned long) +vcl/qa/cppunit/timer.cxx:343 + void (anonymous namespace)::YieldTimer::YieldTimer(unsigned long) unsigned long nMS 5 -vcl/qa/cppunit/timer.cxx:355 - void SlowCallbackTimer::SlowCallbackTimer(unsigned long,_Bool &) +vcl/qa/cppunit/timer.cxx:373 + void (anonymous namespace)::SlowCallbackTimer::SlowCallbackTimer(unsigned long,_Bool &) unsigned long nMS 250 vcl/source/filter/jpeg/Exif.cxx:162 @@ -3258,23 +3294,23 @@ vcl/source/fontsubset/ttcr.hxx:185 void cmapAdd(struct vcl::TrueTypeTable *,unsigned int,unsigned int,unsigned int) unsigned int id 65536 -vcl/source/gdi/pdfwriter_impl.hxx:1000 +vcl/source/gdi/pdfwriter_impl.hxx:993 _Bool vcl::PDFWriterImpl::computeODictionaryValue(const unsigned char *,const unsigned char *,class std::__debug::vector<unsigned char, class std::allocator<unsigned char> > &,int) int i_nKeyLength 16 -vcl/source/gdi/pdfwriter_impl.hxx:1048 +vcl/source/gdi/pdfwriter_impl.hxx:1041 void vcl::PDFWriterImpl::insertError(enum vcl::PDFWriter::ErrorCode) enum vcl::PDFWriter::ErrorCode eErr 3 -vcl/source/graphic/GraphicObject.cxx:136 +vcl/source/graphic/GraphicObject.cxx:134 void lclImplAdjust(class BitmapEx &,const class GraphicAttr &,enum GraphicAdjustmentFlags) enum GraphicAdjustmentFlags nAdjustmentFlags 31 -vcl/source/graphic/GraphicObject.cxx:187 +vcl/source/graphic/GraphicObject.cxx:185 void lclImplAdjust(class GDIMetaFile &,const class GraphicAttr &,enum GraphicAdjustmentFlags) enum GraphicAdjustmentFlags nAdjustmentFlags 31 -vcl/source/graphic/GraphicObject.cxx:238 +vcl/source/graphic/GraphicObject.cxx:236 void lclImplAdjust(class Animation &,const class GraphicAttr &,enum GraphicAdjustmentFlags) enum GraphicAdjustmentFlags nAdjustmentFlags 31 @@ -3282,11 +3318,11 @@ vcl/source/opengl/OpenGLHelper.cxx:170 class rtl::OString getHexString(const unsigned char *,unsigned int) unsigned int nLength 16 -vcl/source/window/menu.cxx:532 +vcl/source/window/menu.cxx:533 void ImplCopyItem(class Menu *,const class Menu &,unsigned short,unsigned short) unsigned short nNewPos 65535 -vcl/unx/generic/app/saldisp.cxx:692 +vcl/unx/generic/app/saldisp.cxx:693 unsigned int GetKeySymMask(struct _XDisplay *,unsigned long) unsigned long nKeySym 65509 @@ -3298,42 +3334,34 @@ vcl/unx/generic/dtrans/X11_selection.hxx:384 unsigned long x11::SelectionManager::createCursor(const unsigned char *,const unsigned char *,int,int,int,int) int height 32 -workdir/../vcl/inc/qt5/Qt5Frame.hxx:214 +workdir/../vcl/inc/qt5/Qt5Frame.hxx:215 _Bool Qt5Frame::CallCallback(enum SalEvent,const void *) const enum SalEvent nEvent 8 -writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:176 +writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:175 void writerfilter::ooxml::OOXMLFastContextHandler::sendPropertiesWithId(unsigned int) unsigned int nId - 92463 + 92464 writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:501 void writerfilter::ooxml::OOXMLFastContextHandlerWrapper::addToken(int) int Element 2102390 -writerfilter/source/ooxml/OOXMLPropertySet.hxx:374 - void writerfilter::ooxml::OOXMLPropertySetEntryToInteger::OOXMLPropertySetEntryToInteger(unsigned int) - unsigned int nId - 92220 -writerfilter/source/ooxml/OOXMLPropertySet.hxx:388 - void writerfilter::ooxml::OOXMLPropertySetEntryToBool::OOXMLPropertySetEntryToBool(unsigned int) - unsigned int nId - 92221 writerfilter/source/rtftok/rtfdocumentimpl.hxx:668 class tools::SvRef<class writerfilter::rtftok::RTFValue> getNestedSprm(class writerfilter::rtftok::RTFSprms &,unsigned int,unsigned int) unsigned int nParent - 92164 + 92165 writerfilter/source/rtftok/rtfsprm.hxx:61 void writerfilter::rtftok::RTFSprms::eraseLast(unsigned int) unsigned int nKeyword - 92677 + 92678 xmloff/inc/txtflde.hxx:254 void XMLTextFieldExport::ProcessIntegerDef(enum xmloff::token::XMLTokenEnum,int,int) enum xmloff::token::XMLTokenEnum eXmlName - 1315 + 1325 xmloff/inc/txtflde.hxx:280 void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,const class rtl::OUString &) enum xmloff::token::XMLTokenEnum eXmlName - 808 + 814 xmloff/inc/txtflde.hxx:280 void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,const class rtl::OUString &) unsigned short nValuePrefix @@ -3341,11 +3369,11 @@ xmloff/inc/txtflde.hxx:280 xmloff/inc/txtflde.hxx:293 void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum) enum xmloff::token::XMLTokenEnum eXmlName - 1447 + 1457 xmloff/inc/txtflde.hxx:293 void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum) enum xmloff::token::XMLTokenEnum eDefault - 1778 + 1788 xmloff/inc/txtflde.hxx:325 void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,double,_Bool,_Bool,_Bool,unsigned short) unsigned short nPrefix @@ -3353,15 +3381,15 @@ xmloff/inc/txtflde.hxx:325 xmloff/inc/txtflde.hxx:341 void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &) enum xmloff::token::XMLTokenEnum eXMLName - 512 + 518 xmloff/inc/txtflde.hxx:346 void XMLTextFieldExport::ProcessTimeOrDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &) enum xmloff::token::XMLTokenEnum eXMLName - 1830 + 1840 xmloff/inc/XMLBase64Export.hxx:40 _Bool XMLBase64Export::exportElement(const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,enum xmloff::token::XMLTokenEnum) enum xmloff::token::XMLTokenEnum eName - 2039 + 2049 xmloff/source/draw/ximpcustomshape.cxx:87 void GetInt32(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum) const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp @@ -3398,12 +3426,12 @@ xmloff/source/draw/ximpcustomshape.cxx:553 void GetEnhancedRectangleSequence(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum) const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp 111 -xmloff/source/draw/ximpstyl.cxx:131 - void SdXMLDrawingPageStyleContext::SdXMLDrawingPageStyleContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,class SvXMLStylesContext &,unsigned short) +xmloff/source/draw/ximpstyl.cxx:136 + void (anonymous namespace)::SdXMLDrawingPageStyleContext::SdXMLDrawingPageStyleContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,class SvXMLStylesContext &,unsigned short) unsigned short nFamily 305 -xmloff/source/forms/elementimport.cxx:1355 - void xmloff::EqualHandle::EqualHandle(int) +xmloff/source/forms/elementimport.cxx:1361 + void xmloff::(anonymous namespace)::EqualHandle::EqualHandle(int) int _nHandle 2 xmloff/source/forms/property_description.hxx:81 @@ -3413,7 +3441,7 @@ xmloff/source/forms/property_description.hxx:81 xmloff/source/style/xmlbahdl.hxx:51 void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char) enum xmloff::token::XMLTokenEnum eZeroString - 407 + 409 xmloff/source/style/xmlbahdl.hxx:51 void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char) signed char nB @@ -3425,7 +3453,7 @@ xmloff/source/style/xmlbahdl.hxx:117 xmloff/source/text/XMLIndexMarkExport.cxx:182 void lcl_ExportPropertyBool(class SvXMLExport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,enum xmloff::token::XMLTokenEnum,class com::sun::star::uno::Any &) enum xmloff::token::XMLTokenEnum eToken - 2149 + 2159 xmloff/source/transform/TransformerContext.hxx:58 _Bool XMLTransformerContext::HasNamespace(unsigned short) const unsigned short nPrefix diff --git a/compilerplugins/clang/constantparam.py b/compilerplugins/clang/constantparam.py index 5a1ae85e1192..a2a8207781be 100755 --- a/compilerplugins/clang/constantparam.py +++ b/compilerplugins/clang/constantparam.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python2 import sys import re diff --git a/cui/source/customize/cfgutil.cxx b/cui/source/customize/cfgutil.cxx index d181470df57f..6cac6c02ee35 100644 --- a/cui/source/customize/cfgutil.cxx +++ b/cui/source/customize/cfgutil.cxx @@ -1064,18 +1064,18 @@ void CuiConfigGroupListBox::SelectMacro( const OUString& rBasic, */ SvxScriptSelectorDialog::SvxScriptSelectorDialog( - weld::Window* pParent, bool bShowSlots, const css::uno::Reference< css::frame::XFrame >& xFrame) + weld::Window* pParent, const css::uno::Reference< css::frame::XFrame >& xFrame) : GenericDialogController(pParent, "cui/ui/macroselectordialog.ui", "MacroSelectorDialog") - , m_bShowSlots(bShowSlots) - , m_xDialogDescription(m_xBuilder->weld_label(bShowSlots ? "helptoolbar" : "helpmacro")) + , m_bShowSlots(false) + , m_xDialogDescription(m_xBuilder->weld_label("helpmacro")) , m_xCategories(new CuiConfigGroupListBox(m_xBuilder->weld_tree_view("categories"))) , m_xCommands(new CuiConfigFunctionListBox(m_xBuilder->weld_tree_view("commands"))) , m_xLibraryFT(m_xBuilder->weld_label("libraryft")) , m_xCategoryFT(m_xBuilder->weld_label("categoryft")) , m_xMacronameFT(m_xBuilder->weld_label("macronameft")) , m_xCommandsFT(m_xBuilder->weld_label("commandsft")) - , m_xOKButton(m_xBuilder->weld_button(bShowSlots ? "add" : "ok")) - , m_xCancelButton(m_xBuilder->weld_button(bShowSlots ? "close" : "cancel")) + , m_xOKButton(m_xBuilder->weld_button("ok")) + , m_xCancelButton(m_xBuilder->weld_button("cancel")) , m_xDescriptionText(m_xBuilder->weld_text_view("description")) { if (m_bShowSlots) @@ -1094,7 +1094,7 @@ SvxScriptSelectorDialog::SvxScriptSelectorDialog( const OUString aModuleName(vcl::CommandInfoProvider::GetModuleIdentifier(xFrame)); m_xCategories->SetFunctionListBox(m_xCommands.get()); - m_xCategories->Init(comphelper::getProcessComponentContext(), xFrame, aModuleName, bShowSlots); + m_xCategories->Init(comphelper::getProcessComponentContext(), xFrame, aModuleName, /*bShowSlots*/false); m_xCategories->connect_changed( LINK( this, SvxScriptSelectorDialog, SelectHdl ) ); diff --git a/cui/source/customize/macropg.cxx b/cui/source/customize/macropg.cxx index 2fb442dbdb24..cdf07498f83e 100644 --- a/cui/source/customize/macropg.cxx +++ b/cui/source/customize/macropg.cxx @@ -460,7 +460,7 @@ void SvxMacroTabPage_::GenericHandler_Impl(SvxMacroTabPage_* pThis, const weld:: else if( bAssEnabled ) { // assign pressed - SvxScriptSelectorDialog aDlg(pThis->GetFrameWeld(), false, pThis->GetFrame()); + SvxScriptSelectorDialog aDlg(pThis->GetFrameWeld(), pThis->GetFrame()); short ret = aDlg.run(); if ( ret ) { diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 0825c040c9e3..d924938ad1d4 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1117,7 +1117,7 @@ VclPtr<VclAbstractDialog> AbstractDialogFactory_Impl::CreateScriptErrorDialog(co VclPtr<AbstractScriptSelectorDialog> AbstractDialogFactory_Impl::CreateScriptSelectorDialog(weld::Window* pParent, const Reference<frame::XFrame>& rxFrame) { - return VclPtr<AbstractScriptSelectorDialog_Impl>::Create(std::make_unique<SvxScriptSelectorDialog>(pParent, false/*bShowSlots*/, rxFrame)); + return VclPtr<AbstractScriptSelectorDialog_Impl>::Create(std::make_unique<SvxScriptSelectorDialog>(pParent, rxFrame)); } OUString AbstractScriptSelectorDialog_Impl::GetScriptURL() const diff --git a/cui/source/inc/cfgutil.hxx b/cui/source/inc/cfgutil.hxx index bfce0d6b13f4..229f5c8b04ed 100644 --- a/cui/source/inc/cfgutil.hxx +++ b/cui/source/inc/cfgutil.hxx @@ -257,7 +257,7 @@ class SvxScriptSelectorDialog : public weld::GenericDialogController void UpdateUI(); public: - SvxScriptSelectorDialog(weld::Window* pParent, bool bShowSlots, + SvxScriptSelectorDialog(weld::Window* pParent, const css::uno::Reference< css::frame::XFrame >& xFrame); virtual ~SvxScriptSelectorDialog() override; diff --git a/include/basegfx/polygon/b2dlinegeometry.hxx b/include/basegfx/polygon/b2dlinegeometry.hxx index d798fff18cd9..c6973c6f161c 100644 --- a/include/basegfx/polygon/b2dlinegeometry.hxx +++ b/include/basegfx/polygon/b2dlinegeometry.hxx @@ -123,10 +123,6 @@ namespace basegfx the usual fallback to bevel is used. Allowed range is cropped to [F_PI .. 0.01 * F_PI]. - @param pTriangles - If given, the method will additionally add the created geometry as - B2DTriangle's - @return The tools::PolyPolygon containing the geometry of the extended line by it's line width. Contains bezier segments and edge roundings as @@ -139,8 +135,7 @@ namespace basegfx css::drawing::LineCap eCap, double fMaxAllowedAngle = basegfx::deg2rad(12.5), double fMaxPartOfEdge = 0.4, - double fMiterMinimumAngle = basegfx::deg2rad(15.0), - basegfx::triangulator::B2DTriangleVector* pTriangles = nullptr); + double fMiterMinimumAngle = basegfx::deg2rad(15.0)); } // end of namespace utils } // end of namespace basegfx diff --git a/include/svtools/valueset.hxx b/include/svtools/valueset.hxx index 66ba3b212f4f..5c6a50ea9694 100644 --- a/include/svtools/valueset.hxx +++ b/include/svtools/valueset.hxx @@ -295,7 +295,7 @@ public: /// Insert @rImage item with @rStr as either a legend or tooltip depending on @bShowLegend. void InsertItem(sal_uInt16 nItemId, const Image& rImage, - const OUString& rStr, size_t nPos = VALUESET_APPEND, bool bShowLegend = false); + const OUString& rStr, size_t nPos = VALUESET_APPEND); /// Insert an @rColor item with @rStr tooltip. void InsertItem(sal_uInt16 nItemId, const Color& rColor, const OUString& rStr); diff --git a/include/svx/DescriptionGenerator.hxx b/include/svx/DescriptionGenerator.hxx index a2526539da02..7ee67c9104ff 100644 --- a/include/svx/DescriptionGenerator.hxx +++ b/include/svx/DescriptionGenerator.hxx @@ -122,13 +122,11 @@ private: /** Add a property value formatted as color to the description string. */ - void AddColor (const OUString& sPropertyName, - const OUString& sLocalizedName); + void AddColor (const OUString& sPropertyName); /** Add a property value formatted as integer to the description string. */ - void AddInteger (const OUString& sPropertyName, - const OUString& sLocalizedName); + void AddInteger (const OUString& sPropertyName); }; diff --git a/sc/inc/columnspanset.hxx b/sc/inc/columnspanset.hxx index 99a99ee935c0..b76664c785c6 100644 --- a/sc/inc/columnspanset.hxx +++ b/sc/inc/columnspanset.hxx @@ -62,7 +62,6 @@ private: typedef std::vector<std::unique_ptr<ColumnType>> TableType; std::vector<std::unique_ptr<TableType>> maTables; - bool const mbInit; ColumnType& getColumn(const ScDocument& rDoc, SCTAB nTab, SCCOL nCol); @@ -84,7 +83,7 @@ public: virtual void executeSum(SCROW, SCROW, bool, double& ) { return; } ; }; - ColumnSpanSet(bool bInit); + ColumnSpanSet(); ColumnSpanSet(const ColumnSpanSet&) = delete; const ColumnSpanSet& operator=(const ColumnSpanSet&) = delete; ~ColumnSpanSet(); diff --git a/sc/source/core/data/bcaslot.cxx b/sc/source/core/data/bcaslot.cxx index af791ccc55ef..efa1ac103e1e 100644 --- a/sc/source/core/data/bcaslot.cxx +++ b/sc/source/core/data/bcaslot.cxx @@ -1085,7 +1085,7 @@ void ScBroadcastAreaSlotMachine::InsertBulkGroupArea( ScBroadcastArea* pArea, co if (it == m_BulkGroupAreas.end() || m_BulkGroupAreas.key_comp()(pArea, it->first)) { // Insert a new one. - it = m_BulkGroupAreas.insert(it, std::make_pair(pArea, std::make_unique<sc::ColumnSpanSet>(false))); + it = m_BulkGroupAreas.insert(it, std::make_pair(pArea, std::make_unique<sc::ColumnSpanSet>())); } sc::ColumnSpanSet *const pSet = it->second.get(); diff --git a/sc/source/core/data/columnspanset.cxx b/sc/source/core/data/columnspanset.cxx index 5d605dc79b2b..8bdd64a55064 100644 --- a/sc/source/core/data/columnspanset.cxx +++ b/sc/source/core/data/columnspanset.cxx @@ -58,7 +58,7 @@ void ColumnSpanSet::Action::startColumn(SCTAB /*nTab*/, SCCOL /*nCol*/) {} ColumnSpanSet::ColumnAction::~ColumnAction() {} -ColumnSpanSet::ColumnSpanSet(bool bInit) : mbInit(bInit) {} +ColumnSpanSet::ColumnSpanSet() {} ColumnSpanSet::~ColumnSpanSet() { @@ -77,7 +77,7 @@ ColumnSpanSet::ColumnType& ColumnSpanSet::getColumn(const ScDocument& rDoc, SCTA rTab.resize(nCol+1); if (!rTab[nCol]) - rTab[nCol].reset(new ColumnType(0, rDoc.MaxRow(), mbInit)); + rTab[nCol].reset(new ColumnType(0, rDoc.MaxRow(), /*bInit*/false)); return *rTab[nCol]; } diff --git a/sc/source/core/data/documen6.cxx b/sc/source/core/data/documen6.cxx index e6d7a315f7bf..c2f2d2b0c4dd 100644 --- a/sc/source/core/data/documen6.cxx +++ b/sc/source/core/data/documen6.cxx @@ -191,7 +191,7 @@ SvtScriptType ScDocument::GetRangeScriptType( SvtScriptType ScDocument::GetRangeScriptType( const ScRangeList& rRanges ) { - sc::ColumnSpanSet aSet(false); + sc::ColumnSpanSet aSet; for (size_t i = 0, n = rRanges.size(); i < n; ++i) { const ScRange& rRange = rRanges[i]; diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx index 7366d6702a95..44a303c71921 100644 --- a/sc/source/core/data/document.cxx +++ b/sc/source/core/data/document.cxx @@ -2880,7 +2880,7 @@ void ScDocument::CopyFromClip( const ScRange& rDestRange, const ScMarkData& rMar bInsertingFromOtherDoc = true; // No Broadcast/Listener created at Insert - sc::ColumnSpanSet aBroadcastSpans(false); + sc::ColumnSpanSet aBroadcastSpans; SCCOL nClipStartCol = aClipRange.aStart.Col(); SCROW nClipStartRow = aClipRange.aStart.Row(); @@ -3039,7 +3039,7 @@ void ScDocument::CopyMultiRangeFromClip( SCROW nRow1 = rDestPos.Row(); ScClipParam& rClipParam = pClipDoc->GetClipParam(); - sc::ColumnSpanSet aBroadcastSpans(false); + sc::ColumnSpanSet aBroadcastSpans; if (!bSkipAttrForEmpty) { diff --git a/sc/source/core/data/listenercontext.cxx b/sc/source/core/data/listenercontext.cxx index c9194eca0d24..e247026a5f7e 100644 --- a/sc/source/core/data/listenercontext.cxx +++ b/sc/source/core/data/listenercontext.cxx @@ -36,12 +36,12 @@ ColumnBlockPosition* StartListeningContext::getBlockPosition(SCTAB nTab, SCCOL n } EndListeningContext::EndListeningContext(ScDocument& rDoc, ScTokenArray* pOldCode) : - mrDoc(rDoc), maSet(false), mpPosSet(std::make_shared<ColumnBlockPositionSet>(rDoc)), + mrDoc(rDoc), maSet(), mpPosSet(std::make_shared<ColumnBlockPositionSet>(rDoc)), mpOldCode(pOldCode), maPosDelta(0,0,0) {} EndListeningContext::EndListeningContext( ScDocument& rDoc, const std::shared_ptr<ColumnBlockPositionSet>& pSet, ScTokenArray* pOldCode) : - mrDoc(rDoc), maSet(false), mpPosSet(pSet), + mrDoc(rDoc), maSet(), mpPosSet(pSet), mpOldCode(pOldCode), maPosDelta(0,0,0) {} void EndListeningContext::setPositionDelta( const ScAddress& rDelta ) diff --git a/sc/source/core/data/table3.cxx b/sc/source/core/data/table3.cxx index 8f6c588cd6c7..74d286684c04 100644 --- a/sc/source/core/data/table3.cxx +++ b/sc/source/core/data/table3.cxx @@ -1169,7 +1169,7 @@ void ScTable::SortReorderByRowRefUpdate( SCROW nRow2 = pArray->GetLast(); ScRange aMoveRange( nCol1, nRow1, nTab, nCol2, nRow2, nTab); - sc::ColumnSpanSet aGrpListenerRanges(false); + sc::ColumnSpanSet aGrpListenerRanges; { // Get the range of formula group listeners within sorted range (if any). diff --git a/sc/source/filter/oox/commentsbuffer.cxx b/sc/source/filter/oox/commentsbuffer.cxx index 60737f46ba36..f33284ac3675 100644 --- a/sc/source/filter/oox/commentsbuffer.cxx +++ b/sc/source/filter/oox/commentsbuffer.cxx @@ -166,7 +166,7 @@ void Comment::finalizeImport() rtl::Reference<ScAnnotationsObj> xAnnos = static_cast<ScAnnotationsObj*>(pAnnosSupp->getAnnotations().get()); ScDocShell* pDocShell = xAnnos->GetDocShell(); // non-empty string required by note implementation (real text will be added below) - ScPostIt* pPostIt = pDocShell->GetDocFunc().ImportNote( maModel.maRange.aStart, OUString( ' ' ), nullptr, nullptr ); + ScPostIt* pPostIt = pDocShell->GetDocFunc().ImportNote( maModel.maRange.aStart, OUString( ' ' ) ); SdrCaptionObj* pCaption = pPostIt->GetOrCreateCaption( maModel.maRange.aStart ); Reference< XShape > xAnnoShape( pCaption->getUnoShape(), UNO_QUERY_THROW ); // SvxShapeText diff --git a/sc/source/ui/docshell/docfunc.cxx b/sc/source/ui/docshell/docfunc.cxx index ae76b44f9551..c9becf98ae4d 100644 --- a/sc/source/ui/docshell/docfunc.cxx +++ b/sc/source/ui/docshell/docfunc.cxx @@ -1364,7 +1364,7 @@ void ScDocFunc::ReplaceNote( const ScAddress& rPos, const OUString& rNoteText, c } } -ScPostIt* ScDocFunc::ImportNote( const ScAddress& rPos, const OUString& rNoteText, const OUString* pAuthor, const OUString* pDate ) +ScPostIt* ScDocFunc::ImportNote( const ScAddress& rPos, const OUString& rNoteText ) { ScDocShellModificator aModificator( rDocShell ); ScDocument& rDoc = rDocShell.GetDocument(); @@ -1373,12 +1373,7 @@ ScPostIt* ScDocFunc::ImportNote( const ScAddress& rPos, const OUString& rNoteTex assert(!pOldNote && "imported data has >1 notes on same cell?"); // create new note - ScPostIt* pNewNote = nullptr; - if( (pNewNote = ScNoteUtil::CreateNoteFromString( rDoc, rPos, rNoteText, false, true, /*nNoteId*/0 )) ) - { - if( pAuthor ) pNewNote->SetAuthor( *pAuthor ); - if( pDate ) pNewNote->SetDate( *pDate ); - } + ScPostIt* pNewNote = ScNoteUtil::CreateNoteFromString( rDoc, rPos, rNoteText, false, true, /*nNoteId*/0 ); rDoc.SetStreamValid(rPos.Tab(), false); diff --git a/sc/source/ui/docshell/docfuncutil.cxx b/sc/source/ui/docshell/docfuncutil.cxx index 304bd44b01a5..1b780db420a3 100644 --- a/sc/source/ui/docshell/docfuncutil.cxx +++ b/sc/source/ui/docshell/docfuncutil.cxx @@ -99,7 +99,7 @@ std::unique_ptr<ScSimpleUndo::DataSpansType> DocFuncUtil::getNonEmptyCellSpans( SCROW nRow1 = rRange.aStart.Row(), nRow2 = rRange.aEnd.Row(); std::pair<ScSimpleUndo::DataSpansType::iterator,bool> r = - pDataSpans->insert(std::make_pair(nTab, std::make_unique<sc::ColumnSpanSet>(false))); + pDataSpans->insert(std::make_pair(nTab, std::make_unique<sc::ColumnSpanSet>())); if (r.second) { diff --git a/sc/source/ui/docshell/externalrefmgr.cxx b/sc/source/ui/docshell/externalrefmgr.cxx index f16f0f70b066..46aaa52e2099 100644 --- a/sc/source/ui/docshell/externalrefmgr.cxx +++ b/sc/source/ui/docshell/externalrefmgr.cxx @@ -2904,7 +2904,7 @@ bool ScExternalRefManager::refreshSrcDocument(sal_uInt16 nFileId) ScDocShell& rDocSh = static_cast<ScDocShell&>(*xDocShell); ScDocument& rSrcDoc = rDocSh.GetDocument(); - sc::ColumnSpanSet aCachedArea(false); + sc::ColumnSpanSet aCachedArea; maRefCache.getAllCachedDataSpans(rSrcDoc, nFileId, aCachedArea); // Clear the existing cache, and refill it. Make sure we keep the diff --git a/sc/source/ui/inc/docfunc.hxx b/sc/source/ui/inc/docfunc.hxx index ca0f03e0318c..e3a8117a5493 100644 --- a/sc/source/ui/inc/docfunc.hxx +++ b/sc/source/ui/inc/docfunc.hxx @@ -119,7 +119,7 @@ public: void SetNoteText( const ScAddress& rPos, const OUString& rNoteText, bool bApi ); void ReplaceNote( const ScAddress& rPos, const OUString& rNoteText, const OUString* pAuthor, const OUString* pDate, bool bApi ); - SC_DLLPUBLIC ScPostIt* ImportNote( const ScAddress& rPos, const OUString& rNoteText, const OUString* pAuthor, const OUString* pDate ); + SC_DLLPUBLIC ScPostIt* ImportNote( const ScAddress& rPos, const OUString& rNoteText ); bool ApplyAttributes( const ScMarkData& rMark, const ScPatternAttr& rPattern, bool bApi ); diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx index d30025e1d51e..669a9682e9c6 100644 --- a/svtools/source/control/valueset.cxx +++ b/svtools/source/control/valueset.cxx @@ -1441,12 +1441,11 @@ void ValueSet::Select() } void ValueSet::InsertItem( sal_uInt16 nItemId, const Image& rImage, - const OUString& rText, size_t nPos, - bool bShowLegend ) + const OUString& rText, size_t nPos ) { std::unique_ptr<ValueSetItem> pItem(new ValueSetItem( *this )); pItem->mnId = nItemId; - pItem->meType = bShowLegend ? VALUESETITEM_IMAGE_AND_TEXT : VALUESETITEM_IMAGE; + pItem->meType = VALUESETITEM_IMAGE; pItem->maImage = rImage; pItem->maText = rText; ImplInsertItem( std::move(pItem), nPos ); diff --git a/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx b/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx index de54ba0b6d12..e9e534a8f640 100644 --- a/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx +++ b/svx/inc/sdr/primitive2d/sdrtextprimitive2d.hxx @@ -199,7 +199,6 @@ namespace drawinglayer bool const mbUnlimitedPage : 1; // force layout with no text break bool const mbCellText : 1; // this is a cell text as block text bool const mbWordWrap : 1; // for CustomShapes text layout - bool const mbClipOnBounds : 1; // for CustomShapes text layout // local decomposition. virtual void create2DDecomposition(Primitive2DContainer& rContainer, const geometry::ViewInformation2D& aViewInformation) const override; @@ -214,8 +213,7 @@ namespace drawinglayer bool bFixedCellHeight, bool bUnlimitedPage, bool bCellText, - bool bWordWrap, - bool bClipOnBounds); + bool bWordWrap); // get data const basegfx::B2DHomMatrix& getTextRangeTransform() const { return maTextRangeTransform; } @@ -225,7 +223,6 @@ namespace drawinglayer bool getUnlimitedPage() const { return mbUnlimitedPage; } bool getCellText() const { return mbCellText; } bool getWordWrap() const { return mbWordWrap; } - bool getClipOnBounds() const { return mbClipOnBounds; } // compare operator virtual bool operator==(const BasePrimitive2D& rPrimitive) const override; diff --git a/svx/source/accessibility/DescriptionGenerator.cxx b/svx/source/accessibility/DescriptionGenerator.cxx index 4b42d96803a2..464968a33e4a 100644 --- a/svx/source/accessibility/DescriptionGenerator.cxx +++ b/svx/source/accessibility/DescriptionGenerator.cxx @@ -133,10 +133,10 @@ void DescriptionGenerator::AddProperty (const OUString& sPropertyName, switch (aType) { case PropertyType::Color: - AddColor (sPropertyName, ""); + AddColor (sPropertyName); break; case PropertyType::Integer: - AddInteger (sPropertyName, ""); + AddInteger (sPropertyName); break; } } @@ -152,10 +152,8 @@ void DescriptionGenerator::AppendString (const OUString& sString) /** Search for the given color in the global color table. If found append its name to the description. Otherwise append its RGB tuple. */ -void DescriptionGenerator::AddColor (const OUString& sPropertyName, - const OUString& sLocalizedName) +void DescriptionGenerator::AddColor (const OUString& sPropertyName) { - msDescription.append(sLocalizedName); msDescription.append('='); try @@ -177,10 +175,8 @@ void DescriptionGenerator::AddColor (const OUString& sPropertyName, } -void DescriptionGenerator::AddInteger (const OUString& sPropertyName, - const OUString& sLocalizedName) +void DescriptionGenerator::AddInteger (const OUString& sPropertyName) { - msDescription.append(sLocalizedName); msDescription.append('='); try diff --git a/svx/source/sdr/contact/viewcontactofgraphic.cxx b/svx/source/sdr/contact/viewcontactofgraphic.cxx index 4af15e3a7ea9..28064f64556c 100644 --- a/svx/source/sdr/contact/viewcontactofgraphic.cxx +++ b/svx/source/sdr/contact/viewcontactofgraphic.cxx @@ -267,7 +267,6 @@ namespace sdr::contact false, false, false, - false, false)); // decompose immediately with neutral ViewInformation. This will diff --git a/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx b/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx index db6e0b1bc38c..86e085ea8581 100644 --- a/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx +++ b/svx/source/sdr/primitive2d/sdrdecompositiontools.cxx @@ -330,8 +330,7 @@ namespace drawinglayer::primitive2d rText.isFixedCellHeight(), rText.isScroll(), bCellText, - bWordWrap, - false/*bClipOnBounds*/)); + bWordWrap)); } } diff --git a/svx/source/sdr/primitive2d/sdrmeasureprimitive2d.cxx b/svx/source/sdr/primitive2d/sdrmeasureprimitive2d.cxx index 88a1556b810c..82e2fc502160 100644 --- a/svx/source/sdr/primitive2d/sdrmeasureprimitive2d.cxx +++ b/svx/source/sdr/primitive2d/sdrmeasureprimitive2d.cxx @@ -129,7 +129,6 @@ namespace drawinglayer::primitive2d rTextAttribute.isScroll(), false, false, - false, false); aTextRange = xBlockText->getB2DRange(aViewInformation); diff --git a/svx/source/sdr/primitive2d/sdrtextprimitive2d.cxx b/svx/source/sdr/primitive2d/sdrtextprimitive2d.cxx index 1b4d0d9b650b..aee14e1b7748 100644 --- a/svx/source/sdr/primitive2d/sdrtextprimitive2d.cxx +++ b/svx/source/sdr/primitive2d/sdrtextprimitive2d.cxx @@ -352,8 +352,7 @@ namespace drawinglayer::primitive2d bool bFixedCellHeight, bool bUnlimitedPage, bool bCellText, - bool bWordWrap, - bool bClipOnBounds) + bool bWordWrap) : SdrTextPrimitive2D(pSdrText, rOutlinerParaObject), maTextRangeTransform(rTextRangeTransform), maSdrTextHorzAdjust(aSdrTextHorzAdjust), @@ -361,8 +360,7 @@ namespace drawinglayer::primitive2d mbFixedCellHeight(bFixedCellHeight), mbUnlimitedPage(bUnlimitedPage), mbCellText(bCellText), - mbWordWrap(bWordWrap), - mbClipOnBounds(bClipOnBounds) + mbWordWrap(bWordWrap) { } @@ -378,8 +376,7 @@ namespace drawinglayer::primitive2d && isFixedCellHeight() == rCompare.isFixedCellHeight() && getUnlimitedPage() == rCompare.getUnlimitedPage() && getCellText() == rCompare.getCellText() - && getWordWrap() == rCompare.getWordWrap() - && getClipOnBounds() == rCompare.getClipOnBounds()); + && getWordWrap() == rCompare.getWordWrap()); } return false; @@ -396,8 +393,7 @@ namespace drawinglayer::primitive2d isFixedCellHeight(), getUnlimitedPage(), getCellText(), - getWordWrap(), - getClipOnBounds()); + getWordWrap()); } // provide unique ID diff --git a/svx/source/svdraw/svdotextdecomposition.cxx b/svx/source/svdraw/svdotextdecomposition.cxx index 541827536223..f02e7fa8c14c 100644 --- a/svx/source/svdraw/svdotextdecomposition.cxx +++ b/svx/source/svdraw/svdotextdecomposition.cxx @@ -1108,12 +1108,6 @@ void SdrTextObj::impDecomposeBlockTextPrimitive( // create ClipRange (if needed) basegfx::B2DRange aClipRange; - if(rSdrBlockTextPrimitive.getClipOnBounds()) - { - aClipRange.expand(-aAdjOffset); - aClipRange.expand(basegfx::B2DTuple(aAnchorTextSize.Width(), aAnchorTextSize.Height()) - aAdjOffset); - } - // now break up text primitives. impTextBreakupHandler aConverter(rOutliner); aConverter.decomposeBlockTextPrimitive(aNewTransformA, aNewTransformB, aClipRange); diff --git a/sw/source/core/doc/doccomp.cxx b/sw/source/core/doc/doccomp.cxx index 4576e7077760..2cb46646d5b7 100644 --- a/sw/source/core/doc/doccomp.cxx +++ b/sw/source/core/doc/doccomp.cxx @@ -149,8 +149,8 @@ public: class CompareMainText : public CompareData { public: - CompareMainText(SwDoc &rD, bool bRecordDiff=true) - : CompareData(rD, bRecordDiff) + CompareMainText(SwDoc &rD) + : CompareData(rD, false) { } @@ -2082,8 +2082,8 @@ long SwDoc::MergeDoc( const SwDoc& rDoc ) rSrcDoc.getIDocumentRedlineAccess().SetRedlineFlags( RedlineFlags::ShowDelete ); getIDocumentRedlineAccess().SetRedlineFlags( RedlineFlags::ShowDelete ); - CompareMainText aD0(rSrcDoc, false); - CompareMainText aD1(*this, false); + CompareMainText aD0(rSrcDoc); + CompareMainText aD1(*this); aD1.CompareLines( aD0 ); if( !aD1.HasDiffs( aD0 ) ) { diff --git a/sw/source/filter/inc/msfilter.hxx b/sw/source/filter/inc/msfilter.hxx index f05283e46c51..13097a4c6d6c 100644 --- a/sw/source/filter/inc/msfilter.hxx +++ b/sw/source/filter/inc/msfilter.hxx @@ -299,8 +299,7 @@ namespace sw public: explicit RedlineStack(SwDoc &rDoc) : mrDoc(rDoc) {} - enum class MoveAttrsMode { Default, FieldmarkInserted }; - void MoveAttrs(const SwPosition& rPos, MoveAttrsMode eMode = MoveAttrsMode::Default); + void MoveAttrsFieldmarkInserted(const SwPosition& rPos); void open(const SwPosition& rPos, const SfxPoolItem& rAttr); bool close(const SwPosition& rPos, RedlineType eType); void close(const SwPosition& rPos, RedlineType eType, diff --git a/sw/source/filter/ww8/writerhelper.cxx b/sw/source/filter/ww8/writerhelper.cxx index 226a367db032..c3506b1373e1 100644 --- a/sw/source/filter/ww8/writerhelper.cxx +++ b/sw/source/filter/ww8/writerhelper.cxx @@ -737,12 +737,10 @@ namespace sw std::for_each(maStack.begin(), maStack.end(), SetEndIfOpen(rPos)); } - void RedlineStack::MoveAttrs(const SwPosition& rPos, MoveAttrsMode const eMode) + void RedlineStack::MoveAttrsFieldmarkInserted(const SwPosition& rPos) { size_t nCnt = maStack.size(); - sal_Int32 const nInserted = eMode == MoveAttrsMode::FieldmarkInserted - ? 2 // CH_TXT_ATR_FIELDSTART, CH_TXT_ATR_FIELDSEP - : 1; + sal_Int32 const nInserted = 2; // CH_TXT_ATR_FIELDSTART, CH_TXT_ATR_FIELDSEP sal_uLong nPosNd = rPos.nNode.GetIndex(); sal_Int32 nPosCt = rPos.nContent.GetIndex() - nInserted; diff --git a/sw/source/filter/ww8/ww8par5.cxx b/sw/source/filter/ww8/ww8par5.cxx index c5bdbc4d53d0..5387db91479d 100644 --- a/sw/source/filter/ww8/ww8par5.cxx +++ b/sw/source/filter/ww8/ww8par5.cxx @@ -532,8 +532,7 @@ sal_uInt16 SwWW8ImplReader::End_Field() if (pFieldmark!=nullptr) { // adapt redline positions to inserted field mark start // dummy char (assume not necessary for end dummy char) - m_xRedlineStack->MoveAttrs(*aFieldPam.Start(), - RedlineStack::MoveAttrsMode::FieldmarkInserted); + m_xRedlineStack->MoveAttrsFieldmarkInserted(*aFieldPam.Start()); const IFieldmark::parameter_map_t& rParametersToAdd = m_aFieldStack.back().getParameters(); pFieldmark->GetParameters()->insert(rParametersToAdd.begin(), rParametersToAdd.end()); } @@ -633,8 +632,7 @@ sal_uInt16 SwWW8ImplReader::End_Field() { // adapt redline positions to inserted field mark start // dummy char (assume not necessary for end dummy char) - m_xRedlineStack->MoveAttrs(*aFieldPam.Start(), - RedlineStack::MoveAttrsMode::FieldmarkInserted); + m_xRedlineStack->MoveAttrsFieldmarkInserted(*aFieldPam.Start()); const IFieldmark::parameter_map_t& rParametersToAdd = m_aFieldStack.back().getParameters(); pFieldmark->GetParameters()->insert(rParametersToAdd.begin(), rParametersToAdd.end()); OUString sFieldId = OUString::number( m_aFieldStack.back().mnFieldId ); diff --git a/vcl/inc/svimpbox.hxx b/vcl/inc/svimpbox.hxx index 9f3f12505899..df25a63ed42c 100644 --- a/vcl/inc/svimpbox.hxx +++ b/vcl/inc/svimpbox.hxx @@ -181,8 +181,8 @@ private: SvLBoxTab* NextTab( SvLBoxTab const * ); bool SetMostRight( SvTreeListEntry* pEntry ); - void FindMostRight( SvTreeListEntry* pParent, SvTreeListEntry* EntryToIgnore ); - void FindMostRight_Impl( SvTreeListEntry* pParent,SvTreeListEntry* EntryToIgnore ); + void FindMostRight( SvTreeListEntry* pParent ); + void FindMostRight_Impl( SvTreeListEntry* pParent ); void NotifyTabsChanged(); // if element at cursor can be expanded in general @@ -233,7 +233,7 @@ protected: void BeginScroll(); void EndScroll(); void PositionScrollBars( Size& rOSize, sal_uInt16 nMask ); - void FindMostRight( SvTreeListEntry const * EntryToIgnore ); + void FindMostRight(); void FillView(); void ShowVerSBar(); void StopUserEvent(); diff --git a/vcl/source/treelist/iconviewimpl.cxx b/vcl/source/treelist/iconviewimpl.cxx index 5dac45ba7c14..9305d7b3e456 100644 --- a/vcl/source/treelist/iconviewimpl.cxx +++ b/vcl/source/treelist/iconviewimpl.cxx @@ -351,7 +351,7 @@ void IconViewImpl::SyncVerThumb() void IconViewImpl::UpdateAll( bool bInvalidateCompleteView ) { - FindMostRight( nullptr ); + FindMostRight(); m_aVerSBar->SetRange( Range( 0, m_pView->GetVisibleCount() ) ); SyncVerThumb(); FillView(); diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx index 56d1e893d24d..b17bc6c37218 100644 --- a/vcl/source/treelist/svimpbox.cxx +++ b/vcl/source/treelist/svimpbox.cxx @@ -688,7 +688,7 @@ void SvImpLBox::ShowCursor( bool bShow ) void SvImpLBox::UpdateAll( bool bInvalidateCompleteView ) { - FindMostRight(nullptr); + FindMostRight(); m_aVerSBar->SetRange( Range(0, m_pView->GetVisibleCount()-1 ) ); SyncVerThumb(); FillView(); @@ -1482,7 +1482,7 @@ void SvImpLBox::EntryExpanded( SvTreeListEntry* pEntry ) if( IsLineVisible(nY) ) { InvalidateEntriesFrom( nY ); - FindMostRight( pEntry, nullptr ); + FindMostRight( pEntry ); } m_aVerSBar->SetRange( Range(0, m_pView->GetVisibleCount()-1 ) ); // if we expanded before the thumb, the thumb's position has to be @@ -1501,7 +1501,7 @@ void SvImpLBox::EntryCollapsed( SvTreeListEntry* pEntry ) if( !m_pMostRightEntry || m_pTree->IsChild( pEntry,m_pMostRightEntry ) ) { - FindMostRight(nullptr); + FindMostRight(); } if( m_pStartEntry ) @@ -1694,7 +1694,7 @@ void SvImpLBox::EntryRemoved() if( GetUpdateMode()) { if( m_nFlags & LBoxFlags::RemovedRecalcMostRight ) - FindMostRight(nullptr); + FindMostRight(); m_aVerSBar->SetRange( Range(0, m_pView->GetVisibleCount()-1 ) ); FillView(); if( m_pStartEntry ) @@ -1767,7 +1767,7 @@ void SvImpLBox::EntryMoved( SvTreeListEntry* pEntry ) m_aVerSBar->SetRange( Range(0, m_pView->GetVisibleCount()-1)); sal_uInt16 nFirstPos = static_cast<sal_uInt16>(m_pTree->GetAbsPos( m_pStartEntry )); sal_uInt16 nNewPos = static_cast<sal_uInt16>(m_pTree->GetAbsPos( pEntry )); - FindMostRight(nullptr); + FindMostRight(); if( nNewPos < nFirstPos ) // HACK! m_pStartEntry = pEntry; SyncVerThumb(); @@ -3212,7 +3212,7 @@ bool SvImpLBox::SetMostRight( SvTreeListEntry* pEntry ) return false; } -void SvImpLBox::FindMostRight( SvTreeListEntry const * pEntryToIgnore ) +void SvImpLBox::FindMostRight() { m_nMostRight = -1; m_pMostRightEntry = nullptr; @@ -3222,21 +3222,20 @@ void SvImpLBox::FindMostRight( SvTreeListEntry const * pEntryToIgnore ) SvTreeListEntry* pEntry = m_pView->FirstVisible(); while( pEntry ) { - if( pEntry != pEntryToIgnore ) - SetMostRight( pEntry ); + SetMostRight( pEntry ); pEntry = m_pView->NextVisible( pEntry ); } } -void SvImpLBox::FindMostRight( SvTreeListEntry* pParent, SvTreeListEntry* pEntryToIgnore ) +void SvImpLBox::FindMostRight( SvTreeListEntry* pParent ) { if( !pParent ) - FindMostRight( pEntryToIgnore ); + FindMostRight(); else - FindMostRight_Impl( pParent, pEntryToIgnore ); + FindMostRight_Impl( pParent ); } -void SvImpLBox::FindMostRight_Impl( SvTreeListEntry* pParent, SvTreeListEntry* pEntryToIgnore ) +void SvImpLBox::FindMostRight_Impl( SvTreeListEntry* pParent ) { SvTreeListEntries& rList = m_pTree->GetChildList( pParent ); @@ -3244,12 +3243,9 @@ void SvImpLBox::FindMostRight_Impl( SvTreeListEntry* pParent, SvTreeListEntry* p for( size_t nCur = 0; nCur < nCount; nCur++ ) { SvTreeListEntry* pChild = rList[nCur].get(); - if( pChild != pEntryToIgnore ) - { - SetMostRight( pChild ); - if( pChild->HasChildren() && m_pView->IsExpanded( pChild )) - FindMostRight_Impl( pChild, pEntryToIgnore ); - } + SetMostRight( pChild ); + if( pChild->HasChildren() && m_pView->IsExpanded( pChild )) + FindMostRight_Impl( pChild ); } } @@ -3277,7 +3273,7 @@ IMPL_LINK(SvImpLBox, MyUserEvent, void*, pArg, void ) } else { - FindMostRight( nullptr ); + FindMostRight(); ShowVerSBar(); m_pView->Invalidate( GetVisibleArea() ); } |