compilerplugins/clang/unnecessaryvirtual-dead.results | 16 compilerplugins/clang/unnecessaryvirtual.py | 4 compilerplugins/clang/unnecessaryvirtual.results | 324 +++--------------- 3 files changed, 71 insertions(+), 273 deletions(-)
New commits: commit 482234eee1c5d39a2279d4353f599cab56b42f98 Author: Noel Grandin <[email protected]> AuthorDate: Mon Dec 22 16:53:32 2025 +0200 Commit: Noel Grandin <[email protected]> CommitDate: Tue Dec 23 10:52:38 2025 +0100 loplugin:unnecessaryvirtual filter out more noise update results and tweak python script to filter out more noise Change-Id: I0a5ccba356630d9129275bd920582c5d09d15288 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196149 Tested-by: Jenkins Reviewed-by: Noel Grandin <[email protected]> diff --git a/compilerplugins/clang/unnecessaryvirtual-dead.results b/compilerplugins/clang/unnecessaryvirtual-dead.results index dcef3aab12a1..480fbafe5a4d 100644 --- a/compilerplugins/clang/unnecessaryvirtual-dead.results +++ b/compilerplugins/clang/unnecessaryvirtual-dead.results @@ -1,4 +1,4 @@ -basic/source/comp/codegen.cxx:478 +basic/source/comp/codegen.cxx:476 void (anonymous namespace)::OffSetAccumulator::start(const unsigned char *,) canvas/inc/base/bufferedgraphicdevicebase.hxx:105 void canvas::BufferedGraphicDeviceBase::destroyBuffers() @@ -6,17 +6,13 @@ canvas/inc/base/graphicdevicebase.hxx:305 void canvas::GraphicDeviceBase::removePropertyChangeListener(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertyChangeListener> &,) canvas/inc/base/graphicdevicebase.hxx:318 void canvas::GraphicDeviceBase::removeVetoableChangeListener(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XVetoableChangeListener> &,) -include/basegfx/utils/unopolypolygon.hxx:93 +include/basegfx/utils/unopolypolygon.hxx:94 void basegfx::unotools::UnoPolyPolygon::modifying()const sc/source/core/opencl/opbase.hxx:444 void sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowFunction(class sc::opencl::outputstream &,) -slideshow/source/engine/animationfactory.cxx:617 +slideshow/source/engine/animationfactory.cxx:618 void slideshow::internal::(anonymous namespace)::GenericAnimation::prefetch() -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:2002 - void std::messages::do_close(int,)const -ux-gnu/../../../include/c++/14/streambuf:583 - void std::basic_streambuf::imbue(const class std::locale &,) -vcl/inc/font/LogicalFontInstance.hxx:131 +vcl/inc/font/LogicalFontInstance.hxx:128 void LogicalFontInstance::ImplInitHbFont(struct hb_font_t *,) vcl/inc/salframe.hxx:146 void SalFrame::SetRepresentedURL(const class rtl::OUString &,) @@ -26,9 +22,9 @@ vcl/inc/salframe.hxx:318 void SalFrame::SetTaskBarProgress(int,) vcl/inc/salframe.hxx:319 void SalFrame::SetTaskBarState(enum VclTaskBarStates,) -vcl/inc/salinst.hxx:217 +vcl/inc/salinst.hxx:225 void SalInstance::releaseMainThread() -vcl/inc/salinst.hxx:226 +vcl/inc/salinst.hxx:234 void SalInstance::BeforeAbort(const class rtl::OUString &,_Bool,) vcl/inc/salmenu.hxx:76 void SalMenu::GetSystemMenuData(struct SystemMenuData &,) diff --git a/compilerplugins/clang/unnecessaryvirtual.py b/compilerplugins/clang/unnecessaryvirtual.py index 063fcba3c068..5185b290116b 100755 --- a/compilerplugins/clang/unnecessaryvirtual.py +++ b/compilerplugins/clang/unnecessaryvirtual.py @@ -72,6 +72,8 @@ for clazz in (definitionSet - overridingSet): continue if loc.startswith("64-linux-gnu/"): continue + if loc.startswith("ux-gnu/"): + continue # there is a bunch of Windows specific code that we don't see if loc.startswith("include/canvas/"): continue @@ -99,6 +101,8 @@ for clazz in (definitionSet - nonEmptySet): continue if loc.startswith("64-linux-gnu/"): continue + if loc.startswith("ux-gnu/"): + continue deadSet.add( (clazz,loc) ) diff --git a/compilerplugins/clang/unnecessaryvirtual.results b/compilerplugins/clang/unnecessaryvirtual.results index 2bb325f7c677..4426a27d35e5 100644 --- a/compilerplugins/clang/unnecessaryvirtual.results +++ b/compilerplugins/clang/unnecessaryvirtual.results @@ -1,22 +1,22 @@ -basic/source/comp/codegen.cxx:478 +basic/source/comp/codegen.cxx:476 void (anonymous namespace)::OffSetAccumulator::start(const unsigned char *,) -basic/source/comp/codegen.cxx:479 +basic/source/comp/codegen.cxx:477 void (anonymous namespace)::OffSetAccumulator::processOpCode0(enum SbiOpcode,) -basic/source/comp/codegen.cxx:480 +basic/source/comp/codegen.cxx:478 void (anonymous namespace)::OffSetAccumulator::processOpCode1(enum SbiOpcode,type-parameter-0-0,) -basic/source/comp/codegen.cxx:481 +basic/source/comp/codegen.cxx:479 void (anonymous namespace)::OffSetAccumulator::processOpCode2(enum SbiOpcode,type-parameter-0-0,type-parameter-0-0,) -basic/source/comp/codegen.cxx:490 +basic/source/comp/codegen.cxx:488 _Bool (anonymous namespace)::OffSetAccumulator::processParams() -basic/source/comp/codegen.cxx:501 +basic/source/comp/codegen.cxx:499 void (anonymous namespace)::BufferTransformer::start(const unsigned char *,) -basic/source/comp/codegen.cxx:502 +basic/source/comp/codegen.cxx:500 void (anonymous namespace)::BufferTransformer::processOpCode0(enum SbiOpcode,) -basic/source/comp/codegen.cxx:506 +basic/source/comp/codegen.cxx:504 void (anonymous namespace)::BufferTransformer::processOpCode1(enum SbiOpcode,type-parameter-0-0,) -basic/source/comp/codegen.cxx:531 +basic/source/comp/codegen.cxx:529 void (anonymous namespace)::BufferTransformer::processOpCode2(enum SbiOpcode,type-parameter-0-0,type-parameter-0-0,) -basic/source/comp/codegen.cxx:540 +basic/source/comp/codegen.cxx:538 _Bool (anonymous namespace)::BufferTransformer::processParams() canvas/inc/base/basemutexhelper.hxx:58 void canvas::BaseMutexHelper::disposing() @@ -214,19 +214,19 @@ canvas/inc/rendering/isurface.hxx:34 void canvas::ISurface::~ISurface() extensions/source/dbpilots/unoautopilot.hxx:81 class cppu::IPropertyArrayHelper * dbp::OUnoAutoPilot::createArrayHelper()const -extensions/source/propctrlr/commoncontrol.hxx:128 - short pcr::CommonBehaviourControl::getControlType() extensions/source/propctrlr/commoncontrol.hxx:130 - class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlContext> pcr::CommonBehaviourControl::getControlContext() + short pcr::CommonBehaviourControl::getControlType() extensions/source/propctrlr/commoncontrol.hxx:132 - void pcr::CommonBehaviourControl::setControlContext(const class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlContext> &,) + class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlContext> pcr::CommonBehaviourControl::getControlContext() extensions/source/propctrlr/commoncontrol.hxx:134 - class com::sun::star::uno::Reference<class com::sun::star::awt::XWindow> pcr::CommonBehaviourControl::getControlWindow() + void pcr::CommonBehaviourControl::setControlContext(const class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlContext> &,) extensions/source/propctrlr/commoncontrol.hxx:136 - unsigned char pcr::CommonBehaviourControl::isModified() + class com::sun::star::uno::Reference<class com::sun::star::awt::XWindow> pcr::CommonBehaviourControl::getControlWindow() extensions/source/propctrlr/commoncontrol.hxx:138 + unsigned char pcr::CommonBehaviourControl::isModified() +extensions/source/propctrlr/commoncontrol.hxx:140 void pcr::CommonBehaviourControl::notifyModifiedValue() -extensions/source/propctrlr/commoncontrol.hxx:153 +extensions/source/propctrlr/commoncontrol.hxx:155 void pcr::CommonBehaviourControl::disposing() forms/source/xforms/datatypes.hxx:215 class cppu::IPropertyArrayHelper * xforms::ODerivedDataType::createArrayHelper()const @@ -244,13 +244,13 @@ forms/source/xforms/namedcollection.hxx:99 class com::sun::star::uno::Sequence<class rtl::OUString> NamedCollection::getElementNames() forms/source/xforms/namedcollection.hxx:104 unsigned char NamedCollection::hasByName(const class rtl::OUString &,) -include/basegfx/utils/unopolypolygon.hxx:93 +include/basegfx/utils/unopolypolygon.hxx:94 void basegfx::unotools::UnoPolyPolygon::modifying()const include/comphelper/interaction.hxx:53 void comphelper::OInteraction::select() include/comphelper/proparrhlp.hxx:83 class cppu::IPropertyArrayHelper * comphelper::OAggregationArrayUsageHelper::createArrayHelper()const -include/comphelper/propshlp.hxx:172 +include/comphelper/propshlp.hxx:175 class com::sun::star::uno::Any comphelper::OPropertySetHelper::getPropertyValueImpl(class std::unique_lock<class std::mutex> &,const class rtl::OUString &,) include/comphelper/solarmutex.hxx:59 _Bool comphelper::SolarMutex::tryToAcquire() @@ -258,52 +258,52 @@ include/comphelper/unique_disposing_ptr.hxx:170 void comphelper::unique_disposing_solar_mutex_reset_ptr::reset(type-parameter-0-0 *,) include/comphelper/weakeventlistener.hxx:120 void comphelper::OWeakListenerAdapter::disposing(const struct com::sun::star::lang::EventObject &,) -include/svl/svdde.hxx:236 +include/svl/svdde.hxx:235 class DdeData * DdeTopic::Get(enum SotClipboardFormatId,) -include/svl/svdde.hxx:237 +include/svl/svdde.hxx:236 _Bool DdeTopic::Put(const class DdeData *,) -include/svl/svdde.hxx:238 +include/svl/svdde.hxx:237 _Bool DdeTopic::Execute(const class rtl::OUString *,) -include/svl/svdde.hxx:240 +include/svl/svdde.hxx:239 _Bool DdeTopic::MakeItem(const class rtl::OUString &,) -include/svl/svdde.hxx:243 +include/svl/svdde.hxx:242 _Bool DdeTopic::StartAdviseLoop() -include/svl/svdde.hxx:300 +include/svl/svdde.hxx:303 void DdeService::~DdeService() include/svx/svdundo.hxx:765 class std::unique_ptr<class SdrUndoAction> SdrUndoFactory::CreateUndoDiagramModelData(class SdrObject &,class std::shared_ptr<class svx::diagram::DiagramDataState> &,) -include/toolkit/awt/vclxwindow.hxx:80 - class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessibleContext> VCLXWindow::CreateAccessibleContext() -include/vbahelper/vbacollectionimpl.hxx:289 +include/vbahelper/vbacollectionimpl.hxx:287 int ScVbaCollectionBase::getCount() -include/vbahelper/vbacollectionimpl.hxx:294 +include/vbahelper/vbacollectionimpl.hxx:292 class com::sun::star::uno::Any ScVbaCollectionBase::Item(const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &,) -include/vbahelper/vbacollectionimpl.hxx:332 +include/vbahelper/vbacollectionimpl.hxx:330 unsigned char ScVbaCollectionBase::hasElements() -include/vbahelper/vbahelperinterface.hxx:75 +include/vbahelper/vbahelperinterface.hxx:74 int InheritedHelperInterfaceImpl::getCreator() -include/vbahelper/vbahelperinterface.hxx:79 +include/vbahelper/vbahelperinterface.hxx:78 class com::sun::star::uno::Reference<class ooo::vba::XHelperInterface> InheritedHelperInterfaceImpl::getParent() -include/vbahelper/vbahelperinterface.hxx:81 +include/vbahelper/vbahelperinterface.hxx:80 class com::sun::star::uno::Any InheritedHelperInterfaceImpl::Application() -include/vbahelper/vbahelperinterface.hxx:89 +include/vbahelper/vbahelperinterface.hxx:88 class rtl::OUString InheritedHelperInterfaceImpl::getImplementationName() -include/vbahelper/vbahelperinterface.hxx:90 +include/vbahelper/vbahelperinterface.hxx:89 unsigned char InheritedHelperInterfaceImpl::supportsService(const class rtl::OUString &,) -include/vbahelper/vbahelperinterface.hxx:100 +include/vbahelper/vbahelperinterface.hxx:94 class com::sun::star::uno::Sequence<class rtl::OUString> InheritedHelperInterfaceImpl::getSupportedServiceNames() -include/vbahelper/vbareturntypes.hxx:38 +include/vbahelper/vbareturntypes.hxx:37 void ooo::vba::DefaultReturnHelper::setValue(type-parameter-0-0,) -include/vbahelper/vbareturntypes.hxx:39 +include/vbahelper/vbareturntypes.hxx:38 type-parameter-0-0 ooo::vba::DefaultReturnHelper::getValue() -include/vcl/customweld.hxx:42 - _Bool weld::CustomWidgetController::KeyUp(const class KeyEvent &,) -include/vcl/customweld.hxx:46 - class rtl::OUString weld::CustomWidgetController::GetHelpText()const include/vcl/menu.hxx:404 void Menu::DumpAsPropertyTree(class tools::JsonWriter &,)const -include/vcl/weld.hxx:129 +include/vcl/weld/customweld.hxx:40 + _Bool weld::CustomWidgetController::KeyUp(const class KeyEvent &,) +include/vcl/weld/customweld.hxx:44 + class rtl::OUString weld::CustomWidgetController::GetHelpText()const +include/vcl/weld/weld.hxx:143 void weld::Widget::set_visible(_Bool,) +include/vcl/weld/weld.hxx:1084 + enum TriState weld::Toggleable::get_state()const sc/source/core/opencl/opbase.hxx:443 _Bool sc::opencl::DynamicKernelSlidingArgument::NeedParallelReduction()const sc/source/core/opencl/opbase.hxx:444 @@ -398,9 +398,9 @@ slideshow/source/engine/activities/activitiesfactory.cxx:537 void slideshow::internal::(anonymous namespace)::ValuesActivity::endAnimation() slideshow/source/engine/activities/activitiesfactory.cxx:582 void slideshow::internal::(anonymous namespace)::ValuesActivity::performEnd() -slideshow/source/engine/animationfactory.cxx:617 +slideshow/source/engine/animationfactory.cxx:618 void slideshow::internal::(anonymous namespace)::GenericAnimation::prefetch() -slideshow/source/engine/animationfactory.cxx:620 +slideshow/source/engine/animationfactory.cxx:621 void slideshow::internal::(anonymous namespace)::GenericAnimation::start(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeAttributeLayer> &,) slideshow/source/inc/shape.hxx:217 void slideshow::internal::Shape::setIsForeground(const _Bool,) @@ -408,225 +408,23 @@ sw/source/writerfilter/dmapper/TableManager.hxx:495 void writerfilter::dmapper::TableManager::tableExceptionProps(const class tools::SvRef<class writerfilter::dmapper::TablePropertyMap> &,) toolkit/inc/controls/geometrycontrolmodel.hxx:185 void OGeometryControlModel::fillProperties(class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,)const -ux-gnu/../../../include/c++/14/bits/locale_classes.h:799 - int std::collate::do_compare(const type-parameter-0-0 *,const type-parameter-0-0 *,const type-parameter-0-0 *,const type-parameter-0-0 *,)const -ux-gnu/../../../include/c++/14/bits/locale_classes.h:813 - basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > std::collate::do_transform(const type-parameter-0-0 *,const type-parameter-0-0 *,)const -ux-gnu/../../../include/c++/14/bits/locale_classes.h:826 - long std::collate::do_hash(const type-parameter-0-0 *,const type-parameter-0-0 *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1092 - char std::ctype<char>::do_widen(char,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1115 - const char * std::ctype<char>::do_widen(const char *,const char *,char *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1142 - char std::ctype<char>::do_narrow(char,char,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1168 - const char * std::ctype<char>::do_narrow(const char *,const char *,char,char *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1831 - type-parameter-0-0 std::numpunct::do_decimal_point()const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1843 - type-parameter-0-0 std::numpunct::do_thousands_sep()const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1856 - class std::basic_string<char> std::numpunct::do_grouping()const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1869 - basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > std::numpunct::do_truename()const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:1882 - basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > std::numpunct::do_falsename()const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2223 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,_Bool &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2226 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,long &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2231 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,unsigned short &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2236 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,unsigned int &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2241 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,unsigned long &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2249 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,long long &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2254 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,unsigned long long &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2261 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,float &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2264 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,double &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2278 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,long double &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2283 - type-parameter-0-1 std::num_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,void *&,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2544 - type-parameter-0-1 std::num_put::do_put(type-parameter-0-1,class std::ios_base &,type-parameter-0-0,_Bool,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2547 - type-parameter-0-1 std::num_put::do_put(type-parameter-0-1,class std::ios_base &,type-parameter-0-0,long,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2551 - type-parameter-0-1 std::num_put::do_put(type-parameter-0-1,class std::ios_base &,type-parameter-0-0,unsigned long,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2559 - type-parameter-0-1 std::num_put::do_put(type-parameter-0-1,class std::ios_base &,type-parameter-0-0,long long,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2564 - type-parameter-0-1 std::num_put::do_put(type-parameter-0-1,class std::ios_base &,type-parameter-0-0,unsigned long long,)const -ux-gnu/../../../include/c++/14/bits/locale_facets.h:2583 - type-parameter-0-1 std::num_put::do_put(type-parameter-0-1,class std::ios_base &,type-parameter-0-0,const void *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:636 - enum std::time_base::dateorder std::time_get::do_date_order()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:654 - type-parameter-0-1 std::time_get::do_get_time(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,struct tm *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:673 - type-parameter-0-1 std::time_get::do_get_date(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,struct tm *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:692 - type-parameter-0-1 std::time_get::do_get_weekday(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,struct tm *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:711 - type-parameter-0-1 std::time_get::do_get_monthname(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,struct tm *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:730 - type-parameter-0-1 std::time_get::do_get_year(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,struct tm *,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:755 - type-parameter-0-1 std::time_get::do_get(type-parameter-0-1,type-parameter-0-1,class std::ios_base &,enum std::_Ios_Iostate &,struct tm *,char,char,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:922 - type-parameter-0-1 std::time_put::do_put(type-parameter-0-1,class std::ios_base &,type-parameter-0-0,const struct tm *,char,char,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1297 - type-parameter-0-0 std::moneypunct::do_decimal_point()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1309 - type-parameter-0-0 std::moneypunct::do_thousands_sep()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1322 - class std::basic_string<char> std::moneypunct::do_grouping()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1335 - basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > std::moneypunct::do_curr_symbol()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1348 - basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > std::moneypunct::do_positive_sign()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1361 - basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > std::moneypunct::do_negative_sign()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1375 - int std::moneypunct::do_frac_digits()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1389 - struct std::money_base::pattern std::moneypunct::do_pos_format()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1403 - struct std::money_base::pattern std::moneypunct::do_neg_format()const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1613 - type-parameter-0-1 std::money_get::do_get(type-parameter-0-1,type-parameter-0-1,_Bool,class std::ios_base &,enum std::_Ios_Iostate &,long double &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1625 - type-parameter-0-1 std::money_get::do_get(type-parameter-0-1,type-parameter-0-1,_Bool,class std::ios_base &,enum std::_Ios_Iostate &,basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1766 - type-parameter-0-1 std::money_put::do_put(type-parameter-0-1,_Bool,class std::ios_base &,type-parameter-0-0,long double,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1790 - type-parameter-0-1 std::money_put::do_put(type-parameter-0-1,_Bool,class std::ios_base &,type-parameter-0-0,const basic_string<type-parameter-0-0, char_traits<type-parameter-0-0>, allocator<type-parameter-0-0> > &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:1975 - int std::messages::do_open(const class std::basic_string<char> &,const class std::locale &,)const -ux-gnu/../../../include/c++/14/bits/locale_facets_nonio.h:2002 - void std::messages::do_close(int,)const -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:427 - void std::_Sp_counted_ptr::_M_dispose() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:431 - void std::_Sp_counted_ptr::_M_destroy() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:435 - void * std::_Sp_counted_ptr::_M_get_deleter(const class std::type_info &,) -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:526 - void std::_Sp_counted_deleter::_M_dispose() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:530 - void std::_Sp_counted_deleter::_M_destroy() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:538 - void * std::_Sp_counted_deleter::_M_get_deleter(const class std::type_info &,) -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:614 - void std::_Sp_counted_ptr_inplace::_M_dispose() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:621 - void std::_Sp_counted_ptr_inplace::_M_destroy() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:634 - void * std::_Sp_counted_ptr_inplace::_M_get_deleter(const class std::type_info &,) -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:697 - void std::_Sp_counted_ptr_inplace<type-parameter-0-0, type-parameter-0-1, value-parameter-0-2>::_M_dispose() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:704 - void std::_Sp_counted_ptr_inplace<type-parameter-0-0, type-parameter-0-1, value-parameter-0-2>::_M_destroy() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:843 - void std::_Sp_counted_array::_M_dispose() -ux-gnu/../../../include/c++/14/bits/shared_ptr_base.h:851 - void std::_Sp_counted_array::_M_destroy() -ux-gnu/../../../include/c++/14/cxxabi.h:307 - _Bool __cxxabiv1::__pbase_type_info::__pointer_catch(const class __cxxabiv1::__pbase_type_info *,void **,unsigned int,)const -ux-gnu/../../../include/c++/14/fstream:412 - long std::basic_filebuf::showmanyc() -ux-gnu/../../../include/c++/14/fstream:420 - type-parameter-0-1::int_type std::basic_filebuf::underflow() -ux-gnu/../../../include/c++/14/fstream:423 - type-parameter-0-1::int_type std::basic_filebuf::pbackfail(type-parameter-0-1::int_type,) -ux-gnu/../../../include/c++/14/fstream:433 - type-parameter-0-1::int_type std::basic_filebuf::overflow(type-parameter-0-1::int_type,) -ux-gnu/../../../include/c++/14/fstream:453 - basic_streambuf<type-parameter-0-0, type-parameter-0-1> * std::basic_filebuf::setbuf(type-parameter-0-0 *,long,) -ux-gnu/../../../include/c++/14/fstream:456 - type-parameter-0-1::pos_type std::basic_filebuf::seekoff(type-parameter-0-1::off_type,enum std::_Ios_Seekdir,enum std::_Ios_Openmode,) -ux-gnu/../../../include/c++/14/fstream:460 - type-parameter-0-1::pos_type std::basic_filebuf::seekpos(type-parameter-0-1::pos_type,enum std::_Ios_Openmode,) -ux-gnu/../../../include/c++/14/fstream:471 - int std::basic_filebuf::sync() -ux-gnu/../../../include/c++/14/fstream:474 - void std::basic_filebuf::imbue(const class std::locale &,) -ux-gnu/../../../include/c++/14/fstream:477 - long std::basic_filebuf::xsgetn(type-parameter-0-0 *,long,) -ux-gnu/../../../include/c++/14/fstream:480 - long std::basic_filebuf::xsputn(const type-parameter-0-0 *,long,) -ux-gnu/../../../include/c++/14/future:1495 - void std::__future_base::_Task_state<type-parameter-0-0, type-parameter-0-1, type-parameter-0-2 (type-parameter-0-3...)>::_M_run(type-parameter-0-3 &&...,) -ux-gnu/../../../include/c++/14/future:1505 - void std::__future_base::_Task_state<type-parameter-0-0, type-parameter-0-1, type-parameter-0-2 (type-parameter-0-3...)>::_M_run_delayed(type-parameter-0-3 &&...,class std::weak_ptr<class std::__future_base::_State_baseV2>,) -ux-gnu/../../../include/c++/14/future:1516 - shared_ptr<_Task_state_base<type-parameter-0-2 (type-parameter-0-3...)> > std::__future_base::_Task_state<type-parameter-0-0, type-parameter-0-1, type-parameter-0-2 (type-parameter-0-3...)>::_M_reset() -ux-gnu/../../../include/c++/14/sstream:346 - long std::basic_stringbuf::showmanyc() -ux-gnu/../../../include/c++/14/sstream:358 - type-parameter-0-1::int_type std::basic_stringbuf::underflow() -ux-gnu/../../../include/c++/14/sstream:361 - type-parameter-0-1::int_type std::basic_stringbuf::pbackfail(type-parameter-0-1::int_type,) -ux-gnu/../../../include/c++/14/sstream:364 - type-parameter-0-1::int_type std::basic_stringbuf::overflow(type-parameter-0-1::int_type,) -ux-gnu/../../../include/c++/14/sstream:378 - basic_streambuf<type-parameter-0-0, type-parameter-0-1> * std::basic_stringbuf::setbuf(type-parameter-0-0 *,long,) -ux-gnu/../../../include/c++/14/sstream:397 - type-parameter-0-1::pos_type std::basic_stringbuf::seekoff(type-parameter-0-1::off_type,enum std::_Ios_Seekdir,enum std::_Ios_Openmode,) -ux-gnu/../../../include/c++/14/sstream:401 - type-parameter-0-1::pos_type std::basic_stringbuf::seekpos(type-parameter-0-1::pos_type,enum std::_Ios_Openmode,) -ux-gnu/../../../include/c++/14/streambuf:583 - void std::basic_streambuf::imbue(const class std::locale &,) -ux-gnu/../../../include/c++/14/streambuf:598 - basic_streambuf<_CharT, _Traits> * std::basic_streambuf::setbuf(type-parameter-0-0 *,long,) -ux-gnu/../../../include/c++/14/streambuf:609 - type-parameter-0-1::pos_type std::basic_streambuf::seekoff(type-parameter-0-1::off_type,enum std::_Ios_Seekdir,enum std::_Ios_Openmode,) -ux-gnu/../../../include/c++/14/streambuf:621 - type-parameter-0-1::pos_type std::basic_streambuf::seekpos(type-parameter-0-1::pos_type,enum std::_Ios_Openmode,) -ux-gnu/../../../include/c++/14/streambuf:634 - int std::basic_streambuf::sync() -ux-gnu/../../../include/c++/14/streambuf:656 - long std::basic_streambuf::showmanyc() -ux-gnu/../../../include/c++/14/streambuf:672 - long std::basic_streambuf::xsgetn(type-parameter-0-0 *,long,) -ux-gnu/../../../include/c++/14/streambuf:694 - type-parameter-0-1::int_type std::basic_streambuf::underflow() -ux-gnu/../../../include/c++/14/streambuf:707 - type-parameter-0-1::int_type std::basic_streambuf::uflow() -ux-gnu/../../../include/c++/14/streambuf:731 - type-parameter-0-1::int_type std::basic_streambuf::pbackfail(type-parameter-0-1::int_type,) -ux-gnu/../../../include/c++/14/streambuf:749 - long std::basic_streambuf::xsputn(const type-parameter-0-0 *,long,) -ux-gnu/../../../include/c++/14/streambuf:775 - type-parameter-0-1::int_type std::basic_streambuf::overflow(type-parameter-0-1::int_type,) -ux-gnu/qt5/QtGui/qpaintdevice.h:74 - int QPaintDevice::devType()const -ux-gnu/qt5/QtGui/qtextdocument.h:86 - void QAbstractUndoItem::~QAbstractUndoItem() -vcl/inc/font/LogicalFontInstance.hxx:131 +vcl/inc/font/LogicalFontInstance.hxx:128 void LogicalFontInstance::ImplInitHbFont(struct hb_font_t *,) -vcl/inc/jsdialog/jsdialogbuilder.hxx:296 +vcl/inc/jsdialog/jsdialogbuilder.hxx:322 void JSWidget::show() -vcl/inc/jsdialog/jsdialogbuilder.hxx:309 +vcl/inc/jsdialog/jsdialogbuilder.hxx:335 void JSWidget::hide() -vcl/inc/jsdialog/jsdialogbuilder.hxx:323 +vcl/inc/jsdialog/jsdialogbuilder.hxx:349 void JSWidget::set_sensitive(_Bool,) -vcl/inc/jsdialog/jsdialogbuilder.hxx:336 +vcl/inc/jsdialog/jsdialogbuilder.hxx:362 class com::sun::star::uno::Reference<class com::sun::star::datatransfer::dnd::XDropTarget> JSWidget::get_drop_target() -vcl/inc/jsdialog/jsdialogbuilder.hxx:344 +vcl/inc/jsdialog/jsdialogbuilder.hxx:370 void JSWidget::freeze() -vcl/inc/jsdialog/jsdialogbuilder.hxx:350 +vcl/inc/jsdialog/jsdialogbuilder.hxx:376 void JSWidget::thaw() -vcl/inc/jsdialog/jsdialogbuilder.hxx:359 +vcl/inc/jsdialog/jsdialogbuilder.hxx:385 void JSWidget::grab_focus() -vcl/inc/jsdialog/jsdialogbuilder.hxx:404 +vcl/inc/jsdialog/jsdialogbuilder.hxx:430 void JSWidget::set_buildable_name(const class rtl::OUString &,) vcl/inc/salframe.hxx:146 void SalFrame::SetRepresentedURL(const class rtl::OUString &,) @@ -638,13 +436,13 @@ vcl/inc/salframe.hxx:318 void SalFrame::SetTaskBarProgress(int,) vcl/inc/salframe.hxx:319 void SalFrame::SetTaskBarState(enum VclTaskBarStates,) -vcl/inc/salgdiimpl.hxx:178 +vcl/inc/salgdiimpl.hxx:174 _Bool SalGraphicsImpl::drawEPS(long,long,long,long,void *,unsigned int,) -vcl/inc/salinst.hxx:97 +vcl/inc/salinst.hxx:104 _Bool SalInstance::SVMainHook(int *,) -vcl/inc/salinst.hxx:217 +vcl/inc/salinst.hxx:225 void SalInstance::releaseMainThread() -vcl/inc/salinst.hxx:226 +vcl/inc/salinst.hxx:234 void SalInstance::BeforeAbort(const class rtl::OUString &,_Bool,) vcl/inc/salmenu.hxx:76 void SalMenu::GetSystemMenuData(struct SystemMenuData &,) @@ -652,11 +450,11 @@ vcl/inc/salobj.hxx:48 void SalObject::Enable(_Bool,) vcl/inc/salprn.hxx:122 enum SalPrinterError SalPrinter::GetErrorCode() -vcl/inc/skia/gdiimpl.hxx:225 +vcl/inc/skia/gdiimpl.hxx:209 void SkiaSalGraphicsImpl::createSurface() -vcl/inc/skia/gdiimpl.hxx:235 +vcl/inc/skia/gdiimpl.hxx:219 void SkiaSalGraphicsImpl::flushSurfaceToWindowContext() -vcl/inc/skia/gdiimpl.hxx:258 +vcl/inc/skia/gdiimpl.hxx:242 int SkiaSalGraphicsImpl::getWindowScaling()const xmloff/source/forms/elementimport.hxx:548 class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> xmloff::OColumnImport::createElement()
