loplugin:unusedmethods

tweak the python script to code with some clang weirdnes

Change-Id: I88fc9f901748ff44af2b67704cc437b770ef0737
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138196
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin 2022-08-12 15:03:23 +02:00
parent f4027dd967
commit cb41806ad9
9 changed files with 2365 additions and 1504 deletions

View File

@ -25,9 +25,14 @@ usedReturnSet = set() # set of tuple(return_type, name_and_params)
# clang does not always use exactly the same numbers in the type-parameter vars it generates # clang does not always use exactly the same numbers in the type-parameter vars it generates
# so I need to substitute them to ensure we can match correctly. # so I need to substitute them to ensure we can match correctly.
normalizeTypeParamsRegex = re.compile(r"type-parameter-\d+-\d+") normalizeTypeParamsRegex1 = re.compile(r"type-parameter-\d+-\d+")
# clang sometimes generates a type name as either "class Foo" or "Foo"
# so I need to substitute them to ensure we can match correctly.
normalizeTypeParamsRegex2 = re.compile(r"class ")
def normalizeTypeParams( line ): def normalizeTypeParams( line ):
return normalizeTypeParamsRegex.sub("type-parameter-?-?", line) line = normalizeTypeParamsRegex1.sub("type-parameter-?-?", line)
line = normalizeTypeParamsRegex2.sub("", line)
return line
# -------------------------------------------------------------------------------------------- # --------------------------------------------------------------------------------------------
# primary input loop # primary input loop

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,11 @@
connectivity/source/inc/java/lang/Object.hxx:109 connectivity/source/inc/java/lang/Object.hxx:109
int connectivity::java_lang_Object::callIntMethodWithIntArg_ThrowRuntime(const char *,struct _jmethodID *&,int) const int connectivity::java_lang_Object::callIntMethodWithIntArg_ThrowRuntime(const char *,struct _jmethodID *&,int) const
connectivity/source/inc/odbc/OConnection.hxx:74 connectivity/source/inc/odbc/OConnection.hxx:74
short connectivity::odbc::OConnection::Construct(const class rtl::OUString &,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &) short connectivity::odbc::OConnection::Construct(const rtl::OUString &,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &)
connectivity/source/inc/odbc/OStatement.hxx:113 connectivity/source/inc/odbc/OStatement.hxx:113
_Bool connectivity::odbc::OStatement_Base::lockIfNecessary(const class rtl::OUString &) _Bool connectivity::odbc::OStatement_Base::lockIfNecessary(const rtl::OUString &)
cui/source/inc/iconcdlg.hxx:70 cui/source/inc/iconcdlg.hxx:71
_Bool IconChoicePage::FillItemSet(class SfxItemSet *) _Bool IconChoicePage::FillItemSet(SfxItemSet *)
dbaccess/source/ui/app/AppSwapWindow.hxx:84 dbaccess/source/ui/app/AppSwapWindow.hxx:84
_Bool dbaui::OApplicationSwapWindow::onContainerSelected(enum dbaui::ElementType) _Bool dbaui::OApplicationSwapWindow::onContainerSelected(enum dbaui::ElementType)
extensions/source/scanner/sane.hxx:105 extensions/source/scanner/sane.hxx:105
@ -21,31 +21,23 @@ extensions/source/scanner/sanedlg.hxx:87
extensions/source/scanner/sanedlg.hxx:101 extensions/source/scanner/sanedlg.hxx:101
_Bool SaneDlg::SetAdjustedNumericalValue(const char *,double,int) _Bool SaneDlg::SetAdjustedNumericalValue(const char *,double,int)
framework/source/fwe/classes/addonsoptions.cxx:282 framework/source/fwe/classes/addonsoptions.cxx:282
_Bool framework::AddonsOptions_Impl::ReadToolBarItemSet(const class rtl::OUString &,class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &) _Bool framework::AddonsOptions_Impl::ReadToolBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &)
framework/source/fwe/classes/addonsoptions.cxx:284 framework/source/fwe/classes/addonsoptions.cxx:284
_Bool framework::AddonsOptions_Impl::ReadNotebookBarItemSet(const class rtl::OUString &,class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &) _Bool framework::AddonsOptions_Impl::ReadNotebookBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &)
i18nlangtag/source/languagetag/languagetag.cxx:298 i18nlangtag/source/languagetag/languagetag.cxx:298
const class rtl::OUString & LanguageTagImpl::getBcp47() const const rtl::OUString & LanguageTagImpl::getBcp47() const
idlc/inc/aststack.hxx:38
class AstStack * AstStack::push(class AstScope *)
include/basegfx/range/b2dconnectedranges.hxx:215 include/basegfx/range/b2dconnectedranges.hxx:215
type-parameter-?-? basegfx::B2DConnectedRanges::forEachAggregate(type-parameter-?-?) const type-parameter-?-? basegfx::B2DConnectedRanges::forEachAggregate(type-parameter-?-?) const
include/basegfx/vector/b2dvector.hxx:113
class basegfx::B2DVector & basegfx::B2DVector::setLength(double)
include/basegfx/vector/b2ivector.hxx:98
class basegfx::B2IVector & basegfx::B2IVector::setLength(double)
include/basegfx/vector/b3dvector.hxx:144 include/basegfx/vector/b3dvector.hxx:144
class basegfx::B3DVector & basegfx::B3DVector::setLength(double) basegfx::B3DVector & basegfx::B3DVector::setLength(double)
include/basegfx/vector/b3dvector.hxx:169 include/basegfx/vector/b3dvector.hxx:169
class basegfx::B3DVector & basegfx::B3DVector::normalize() basegfx::B3DVector & basegfx::B3DVector::normalize()
include/comphelper/backupfilehelper.hxx:205 include/comphelper/backupfilehelper.hxx:205
_Bool comphelper::BackupFileHelper::tryPush_extensionInfo(class std::basic_string_view<char16_t>) _Bool comphelper::BackupFileHelper::tryPush_extensionInfo(std::basic_string_view<char16_t>)
include/comphelper/multiinterfacecontainer4.hxx:94 include/editeng/editview.hxx:263
int comphelper::OMultiTypeInterfaceContainerHelperVar4::addInterface(const type-parameter-?-? &,const Reference<type-parameter-?-?> &) ErrCode EditView::Read(SvStream &,enum EETextFormat,SvKeyValueIterator *)
include/editeng/editview.hxx:264
class ErrCode EditView::Read(class SvStream &,enum EETextFormat,class SvKeyValueIterator *)
include/editeng/outliner.hxx:279 include/editeng/outliner.hxx:279
_Bool OutlinerView::Command(const class CommandEvent &) _Bool OutlinerView::Command(const CommandEvent &)
include/oox/crypto/AgileEngine.hxx:120 include/oox/crypto/AgileEngine.hxx:120
_Bool oox::crypto::AgileEngine::decryptHmacKey() _Bool oox::crypto::AgileEngine::decryptHmacKey()
include/oox/crypto/AgileEngine.hxx:121 include/oox/crypto/AgileEngine.hxx:121
@ -53,336 +45,346 @@ include/oox/crypto/AgileEngine.hxx:121
include/oox/crypto/AgileEngine.hxx:136 include/oox/crypto/AgileEngine.hxx:136
_Bool oox::crypto::AgileEngine::encryptHmacValue() _Bool oox::crypto::AgileEngine::encryptHmacValue()
include/oox/crypto/CryptoEngine.hxx:46 include/oox/crypto/CryptoEngine.hxx:46
_Bool oox::crypto::CryptoEngine::decrypt(class oox::BinaryXInputStream &,class oox::BinaryXOutputStream &) _Bool oox::crypto::CryptoEngine::decrypt(oox::BinaryXInputStream &,oox::BinaryXOutputStream &)
include/oox/crypto/CryptTools.hxx:111 include/oox/crypto/CryptTools.hxx:111
_Bool oox::crypto::CryptoHash::update(class std::vector<unsigned char> &,unsigned int) _Bool oox::crypto::CryptoHash::update(std::vector<unsigned char> &,unsigned int)
include/oox/dump/dumperbase.hxx:640 include/oox/dump/dumperbase.hxx:640
long oox::dump::FlagsList::getIgnoreFlags() const long oox::dump::FlagsList::getIgnoreFlags() const
include/oox/dump/dumperbase.hxx:1410 include/oox/dump/dumperbase.hxx:1410
type-parameter-?-? oox::dump::InputObjectBase::dumpName(const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpName(const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1416 include/oox/dump/dumperbase.hxx:1416
type-parameter-?-? oox::dump::InputObjectBase::dumpBin(const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpBin(const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1418 include/oox/dump/dumperbase.hxx:1418
type-parameter-?-? oox::dump::InputObjectBase::dumpFix(const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpFix(const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1422 include/oox/dump/dumperbase.hxx:1422
type-parameter-?-? oox::dump::InputObjectBase::dumpValue(const struct oox::dump::ItemFormat &) type-parameter-?-? oox::dump::InputObjectBase::dumpValue(const struct oox::dump::ItemFormat &)
include/oox/dump/dumperbase.hxx:1425 include/oox/dump/dumperbase.hxx:1425
type-parameter-?-? oox::dump::InputObjectBase::dumpName(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpName(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1427 include/oox/dump/dumperbase.hxx:1427
type-parameter-?-? oox::dump::InputObjectBase::dumpDec(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpDec(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1431 include/oox/dump/dumperbase.hxx:1431
type-parameter-?-? oox::dump::InputObjectBase::dumpBin(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpBin(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1433 include/oox/dump/dumperbase.hxx:1433
type-parameter-?-? oox::dump::InputObjectBase::dumpFix(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpFix(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1435 include/oox/dump/dumperbase.hxx:1435
type-parameter-?-? oox::dump::InputObjectBase::dumpBool(_Bool,const class oox::dump::String &,const class oox::dump::NameListWrapper &) type-parameter-?-? oox::dump::InputObjectBase::dumpBool(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1437 include/oox/dump/dumperbase.hxx:1437
type-parameter-?-? oox::dump::InputObjectBase::dumpValue(_Bool,const struct oox::dump::ItemFormat &) type-parameter-?-? oox::dump::InputObjectBase::dumpValue(_Bool,const struct oox::dump::ItemFormat &)
include/oox/dump/oledumper.hxx:310
_Bool oox::dump::AxPropertyObjectBase::dumpBoolProperty()
include/oox/dump/oledumper.hxx:311 include/oox/dump/oledumper.hxx:311
int oox::dump::AxPropertyObjectBase::dumpHmmProperty() _Bool oox::dump::AxPropertyObjectBase::dumpBoolProperty()
include/oox/dump/oledumper.hxx:312 include/oox/dump/oledumper.hxx:312
int oox::dump::AxPropertyObjectBase::dumpHmmProperty()
include/oox/dump/oledumper.hxx:313
unsigned char oox::dump::AxPropertyObjectBase::dumpMousePtrProperty() unsigned char oox::dump::AxPropertyObjectBase::dumpMousePtrProperty()
include/oox/dump/oledumper.hxx:314 include/oox/dump/oledumper.hxx:315
type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpBorderStyleProperty(type-parameter-?-?) type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpBorderStyleProperty(type-parameter-?-?)
include/oox/dump/oledumper.hxx:316
type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpSpecialEffectProperty(type-parameter-?-?)
include/oox/dump/oledumper.hxx:317 include/oox/dump/oledumper.hxx:317
unsigned int oox::dump::AxPropertyObjectBase::dumpEnabledProperty() type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpSpecialEffectProperty(type-parameter-?-?)
include/oox/dump/oledumper.hxx:318 include/oox/dump/oledumper.hxx:318
int oox::dump::AxPropertyObjectBase::dumpOrientationProperty() unsigned int oox::dump::AxPropertyObjectBase::dumpEnabledProperty()
include/oox/dump/oledumper.hxx:319 include/oox/dump/oledumper.hxx:319
int oox::dump::AxPropertyObjectBase::dumpDelayProperty() int oox::dump::AxPropertyObjectBase::dumpOrientationProperty()
include/oox/dump/oledumper.hxx:320 include/oox/dump/oledumper.hxx:320
unsigned int oox::dump::AxPropertyObjectBase::dumpImagePosProperty() int oox::dump::AxPropertyObjectBase::dumpDelayProperty()
include/oox/dump/oledumper.hxx:321 include/oox/dump/oledumper.hxx:321
unsigned char oox::dump::AxPropertyObjectBase::dumpImageSizeModeProperty() unsigned int oox::dump::AxPropertyObjectBase::dumpImagePosProperty()
include/oox/dump/oledumper.hxx:322 include/oox/dump/oledumper.hxx:322
unsigned char oox::dump::AxPropertyObjectBase::dumpImageSizeModeProperty()
include/oox/dump/oledumper.hxx:323
unsigned char oox::dump::AxPropertyObjectBase::dumpImageAlignProperty() unsigned char oox::dump::AxPropertyObjectBase::dumpImageAlignProperty()
include/oox/dump/oledumper.hxx:325
unsigned int oox::dump::AxPropertyObjectBase::dumpColorProperty(unsigned int)
include/oox/dump/oledumper.hxx:326 include/oox/dump/oledumper.hxx:326
unsigned int oox::dump::AxPropertyObjectBase::dumpColorProperty(unsigned int)
include/oox/dump/oledumper.hxx:327
char16_t oox::dump::AxPropertyObjectBase::dumpUnicodeProperty() char16_t oox::dump::AxPropertyObjectBase::dumpUnicodeProperty()
include/oox/export/shapes.hxx:137 include/oox/export/shapes.hxx:137
class oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteNonVisualDrawingProperties(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,const char *) oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteNonVisualDrawingProperties(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,const char *)
include/oox/export/shapes.hxx:185 include/oox/export/shapes.hxx:185
class oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteTextBox(const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,int,_Bool) oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteTextBox(const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &,int,_Bool)
include/oox/helper/binaryoutputstream.hxx:78 include/oox/helper/binaryoutputstream.hxx:78
class oox::BinaryOutputStream & oox::BinaryOutputStream::WriteInt16(short) oox::BinaryOutputStream & oox::BinaryOutputStream::WriteInt16(short)
include/oox/helper/binaryoutputstream.hxx:79 include/oox/helper/binaryoutputstream.hxx:79
class oox::BinaryOutputStream & oox::BinaryOutputStream::WriteUInt16(unsigned short) oox::BinaryOutputStream & oox::BinaryOutputStream::WriteUInt16(unsigned short)
include/oox/helper/propertyset.hxx:110 include/oox/helper/propertyset.hxx:110
_Bool oox::PropertySet::setProperty(int,class Color) _Bool oox::PropertySet::setProperty(int,Color)
include/oox/ole/axbinarywriter.hxx:115 include/oox/ole/axbinarywriter.hxx:115
_Bool oox::ole::AxBinaryPropertyWriter::ComplexProperty::writeProperty(class oox::ole::AxAlignedOutputStream &) _Bool oox::ole::AxBinaryPropertyWriter::ComplexProperty::writeProperty(oox::ole::AxAlignedOutputStream &)
include/oox/ole/olehelper.hxx:176 include/oox/ole/olehelper.hxx:176
_Bool oox::ole::MSConvertOCXControls::importControlFromStream(class oox::BinaryInputStream &,class com::sun::star::uno::Reference<class com::sun::star::form::XFormComponent> &,const class rtl::OUString &) _Bool oox::ole::MSConvertOCXControls::importControlFromStream(oox::BinaryInputStream &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,std::basic_string_view<char16_t>)
include/oox/ole/olehelper.hxx:187 include/oox/ole/olehelper.hxx:187
_Bool oox::ole::MSConvertOCXControls::ReadOCXCtlsStream(const class tools::SvRef<class SotStorageStream> &,class com::sun::star::uno::Reference<class com::sun::star::form::XFormComponent> &,int,int) _Bool oox::ole::MSConvertOCXControls::ReadOCXCtlsStream(const tools::SvRef<SotStorageStream> &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,int,int)
include/sax/fshelper.hxx:136 include/sax/fshelper.hxx:136
class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int) sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int)
include/sax/fshelper.hxx:137 include/sax/fshelper.hxx:137
class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long) sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long)
include/sax/fshelper.hxx:138 include/sax/fshelper.hxx:138
class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(double) sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(double)
include/sax/fshelper.hxx:140 include/sax/fshelper.hxx:140
class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(const char *) sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(const char *)
include/sfx2/linkmgr.hxx:65 include/sfx2/linkmgr.hxx:65
_Bool sfx2::LinkManager::InsertLink(class sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const class rtl::OUString *) _Bool sfx2::LinkManager::InsertLink(sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const rtl::OUString *)
include/sfx2/lnkbase.hxx:112 include/sfx2/lnkbase.hxx:112
class sfx2::SvLinkSource * sfx2::SvBaseLink::GetRealObject() sfx2::SvLinkSource * sfx2::SvBaseLink::GetRealObject()
include/svl/macitem.hxx:88 include/svl/macitem.hxx:89
class SvStream & SvxMacroTableDtor::Write(class SvStream &) const SvStream & SvxMacroTableDtor::Write(SvStream &) const
include/svtools/ctrlbox.hxx:377 include/svtools/ctrlbox.hxx:378
_Bool FontNameBox::get_entry_selection_bounds(int &,int &) _Bool FontNameBox::get_entry_selection_bounds(int &,int &)
include/svx/autoformathelper.hxx:212 include/svx/autoformathelper.hxx:212
_Bool AutoFormatBase::LoadBlockA(class SvStream &,const struct AutoFormatVersions &,unsigned short) _Bool AutoFormatBase::LoadBlockA(SvStream &,const struct AutoFormatVersions &,unsigned short)
include/svx/autoformathelper.hxx:213 include/svx/autoformathelper.hxx:213
_Bool AutoFormatBase::LoadBlockB(class SvStream &,const struct AutoFormatVersions &,unsigned short) _Bool AutoFormatBase::LoadBlockB(SvStream &,const struct AutoFormatVersions &,unsigned short)
include/svx/autoformathelper.hxx:215 include/svx/autoformathelper.hxx:215
_Bool AutoFormatBase::SaveBlockA(class SvStream &,unsigned short) const _Bool AutoFormatBase::SaveBlockA(SvStream &,unsigned short) const
include/svx/autoformathelper.hxx:216 include/svx/autoformathelper.hxx:216
_Bool AutoFormatBase::SaveBlockB(class SvStream &,unsigned short) const _Bool AutoFormatBase::SaveBlockB(SvStream &,unsigned short) const
include/svx/dlgctrl.hxx:101 include/svx/dlgctrl.hxx:101
class Point SvxRectCtl::SetActualRPWithoutInvalidate(enum RectPoint) Point SvxRectCtl::SetActualRPWithoutInvalidate(enum RectPoint)
include/svx/framelink.hxx:159 include/svx/framelink.hxx:159
class svx::frame::Style & svx::frame::Style::MirrorSelf() svx::frame::Style & svx::frame::Style::MirrorSelf()
include/svx/gallerybinaryengine.hxx:105 include/svx/gallerybinaryengine.hxx:105
class SvStream & GalleryBinaryEngine::writeGalleryTheme(class SvStream &,const class GalleryTheme &,const class GalleryThemeEntry *) SvStream & GalleryBinaryEngine::writeGalleryTheme(SvStream &,const GalleryTheme &,const GalleryThemeEntry *)
include/svx/gallerybinaryengineentry.hxx:57 include/svx/gallerybinaryengineentry.hxx:57
class std::unique_ptr<class GalleryTheme> & GalleryBinaryEngineEntry::getCachedTheme(class std::unique_ptr<class GalleryTheme> &) std::unique_ptr<GalleryTheme> & GalleryBinaryEngineEntry::getCachedTheme(std::unique_ptr<GalleryTheme> &)
include/test/a11y/AccessibilityTools.hxx:62
rtl::OUString AccessibilityTools::getStateName(const short)
include/test/helper/shape.hxx:41 include/test/helper/shape.hxx:41
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> apitest::helper::shape::createEllipse(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int) com::sun::star::uno::Reference<com::sun::star::drawing::XShape> apitest::helper::shape::createEllipse(const com::sun::star::uno::Reference<com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
include/test/sheet/xdocumentauditing.hxx:28 include/test/sheet/xdocumentauditing.hxx:28
class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XDocumentAuditing::getXMSF() com::sun::star::uno::Reference<com::sun::star::uno::XInterface> apitest::XDocumentAuditing::getXMSF()
include/test/sheet/xnamedrange.hxx:22 include/test/sheet/xnamedrange.hxx:22
class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XNamedRange::init() com::sun::star::uno::Reference<com::sun::star::uno::XInterface> apitest::XNamedRange::init()
include/test/sheet/xspreadsheets2.hxx:41 include/test/sheet/xspreadsheets2.hxx:41
class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> apitest::XSpreadsheets2::getComponent() com::sun::star::uno::Reference<com::sun::star::lang::XComponent> apitest::XSpreadsheets2::getComponent()
include/tools/config.hxx:38 include/tools/config.hxx:38
_Bool Config::ImplUpdateConfig() const _Bool Config::ImplUpdateConfig() const
include/tools/multisel.hxx:93 include/tools/multisel.hxx:94
_Bool StringRangeEnumerator::insertRange(int,int,_Bool) _Bool StringRangeEnumerator::insertRange(int,int,_Bool)
include/tools/urlobj.hxx:739 include/tools/urlobj.hxx:738
_Bool INetURLObject::SetParam(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short) _Bool INetURLObject::SetParam(std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
include/unotools/localedatawrapper.hxx:159 include/unotools/localedatawrapper.hxx:159
const class com::sun::star::uno::Sequence<struct com::sun::star::lang::Locale> & LocaleDataWrapper::getAllInstalledLocaleNames() const const com::sun::star::uno::Sequence<struct com::sun::star::lang::Locale> & LocaleDataWrapper::getAllInstalledLocaleNames() const
include/vcl/bitmapex.hxx:226 include/vcl/bitmapex.hxx:226
_Bool BitmapEx::Rotate(struct o3tl::strong_int<short, struct FractionTag<10> >,const class Color &) _Bool BitmapEx::Rotate(struct o3tl::strong_int<short, struct FractionTag<10> >,const Color &)
include/vcl/filter/PngImageReader.hxx:42
_Bool vcl::PngImageReader::read(class BitmapEx &)
include/vcl/filter/SvmReader.hxx:36 include/vcl/filter/SvmReader.hxx:36
class SvStream & SvmReader::Read(class GDIMetaFile &,struct ImplMetaReadData *) SvStream & SvmReader::Read(GDIMetaFile &,struct ImplMetaReadData *)
include/vcl/filter/SvmWriter.hxx:37 include/vcl/filter/SvmWriter.hxx:37
class SvStream & SvmWriter::Write(const class GDIMetaFile &) SvStream & SvmWriter::Write(const GDIMetaFile &)
include/vcl/formatter.hxx:218 include/vcl/formatter.hxx:218
_Bool Formatter::SetFormat(const class rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>) _Bool Formatter::SetFormat(const rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>)
include/vcl/graphicfilter.hxx:290 include/vcl/graphicfilter.hxx:256
class ErrCode GraphicFilter::ExportGraphic(const class Graphic &,const class INetURLObject &,unsigned short,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *) ErrCode GraphicFilter::ExportGraphic(const Graphic &,const INetURLObject &,unsigned short,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *)
include/vcl/GraphicNativeMetadata.hxx:35 include/vcl/GraphicNativeMetadata.hxx:34
_Bool GraphicNativeMetadata::read(class SvStream &) _Bool GraphicNativeMetadata::read(SvStream &)
include/vcl/GraphicNativeTransform.hxx:33 include/vcl/GraphicNativeTransform.hxx:33
_Bool GraphicNativeTransform::rotateBitmapOnly(struct o3tl::strong_int<short, struct FractionTag<10> >) _Bool GraphicNativeTransform::rotateBitmapOnly(struct o3tl::strong_int<short, struct FractionTag<10> >)
include/vcl/GraphicNativeTransform.hxx:35 include/vcl/GraphicNativeTransform.hxx:35
_Bool GraphicNativeTransform::rotateGeneric(struct o3tl::strong_int<short, struct FractionTag<10> >,class std::basic_string_view<char16_t>) _Bool GraphicNativeTransform::rotateGeneric(struct o3tl::strong_int<short, struct FractionTag<10> >,std::basic_string_view<char16_t>)
include/vcl/menu.hxx:385 include/vcl/menu.hxx:387
_Bool Menu::HandleMenuActivateEvent(class Menu *) const _Bool Menu::HandleMenuActivateEvent(Menu *) const
include/vcl/menu.hxx:386 include/vcl/menu.hxx:388
_Bool Menu::HandleMenuDeActivateEvent(class Menu *) const _Bool Menu::HandleMenuDeActivateEvent(Menu *) const
include/vcl/texteng.hxx:271 include/vcl/texteng.hxx:271
_Bool TextEngine::Read(class SvStream &,const class TextSelection *) _Bool TextEngine::Read(SvStream &,const TextSelection *)
include/vcl/window.hxx:1398 include/vcl/window.hxx:1401
_Bool vcl::Window::set_font_attribute(const class rtl::OString &,const class rtl::OUString &) _Bool vcl::Window::set_font_attribute(const rtl::OString &,std::basic_string_view<char16_t>)
include/xmloff/unointerfacetouniqueidentifiermapper.hxx:65 include/xmloff/unointerfacetouniqueidentifiermapper.hxx:65
_Bool comphelper::UnoInterfaceToUniqueIdentifierMapper::registerReservedReference(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &) _Bool comphelper::UnoInterfaceToUniqueIdentifierMapper::registerReservedReference(const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &)
include/xmloff/xmluconv.hxx:281 include/xmloff/xmluconv.hxx:279
_Bool SvXMLUnitConverter::convertNumFormat(short &,const class rtl::OUString &,class std::basic_string_view<char16_t>,_Bool) const _Bool SvXMLUnitConverter::convertNumFormat(short &,const rtl::OUString &,std::basic_string_view<char16_t>,_Bool) const
linguistic/source/lngsvcmgr.hxx:118 linguistic/source/lngsvcmgr.hxx:117
_Bool LngSvcMgr::SaveCfgSvcs(class std::basic_string_view<char16_t>) _Bool LngSvcMgr::SaveCfgSvcs(std::basic_string_view<char16_t>)
lotuswordpro/inc/lwpsvstream.hxx:80 lotuswordpro/inc/lwpsvstream.hxx:80
class LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &) LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &)
lotuswordpro/inc/lwpsvstream.hxx:81 lotuswordpro/inc/lwpsvstream.hxx:81
class LwpSvStream & LwpSvStream::ReadUInt16(unsigned short &) LwpSvStream & LwpSvStream::ReadUInt16(unsigned short &)
lotuswordpro/inc/lwpsvstream.hxx:82 lotuswordpro/inc/lwpsvstream.hxx:82
class LwpSvStream & LwpSvStream::ReadUInt32(unsigned int &) LwpSvStream & LwpSvStream::ReadUInt32(unsigned int &)
sc/inc/column.hxx:677
_Bool ScColumn::DeleteSparkline(int)
sc/inc/orcusfilters.hxx:44 sc/inc/orcusfilters.hxx:44
_Bool ScOrcusFilters::importODS_Styles(class ScDocument &,class rtl::OUString &) const _Bool ScOrcusFilters::importODS_Styles(ScDocument &,rtl::OUString &) const
sc/inc/scabstdlg.hxx:56 sc/inc/scabstdlg.hxx:55
_Bool ScAsyncTabController::StartExecuteAsync(struct VclAbstractDialog::AsyncContext &) _Bool ScAsyncTabController::StartExecuteAsync(struct VclAbstractDialog::AsyncContext &)
sc/source/core/opencl/formulagroupcl.cxx:1095 sc/source/core/opencl/formulagroupcl.cxx:1096
unsigned long sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenReductionLoopHeader(class std::basic_stringstream<char> &,_Bool &) unsigned long sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenReductionLoopHeader(std::basic_stringstream<char> &,_Bool &)
sc/source/core/opencl/formulagroupcl.cxx:1366 sc/source/core/opencl/formulagroupcl.cxx:1367
unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenReductionLoopHeader(class std::basic_stringstream<char> &,int,_Bool &) unsigned long sc::opencl::(anonymous namespace)::ParallelReductionVectorRef::GenReductionLoopHeader(std::basic_stringstream<char> &,int,_Bool &)
sc/source/filter/inc/workbookhelper.hxx:262 sc/source/filter/inc/workbookhelper.hxx:262
_Bool oox::xls::WorkbookHelper::importOoxFragment(const class rtl::Reference<class oox::core::FragmentHandler> &,class oox::core::FastParser &) _Bool oox::xls::WorkbookHelper::importOoxFragment(const rtl::Reference<oox::core::FragmentHandler> &,oox::core::FastParser &)
sc/source/filter/xml/XMLStylesExportHelper.hxx:174 sc/source/filter/xml/XMLStylesExportHelper.hxx:174
_Bool ScFormatRangeStyles::AddStyleName(const class rtl::OUString &,int &,const _Bool) _Bool ScFormatRangeStyles::AddStyleName(const rtl::OUString &,int &,const _Bool)
sc/source/ui/inc/anyrefdg.hxx:95 sc/source/ui/inc/anyrefdg.hxx:95
_Bool ScRefHandler::DoClose(unsigned short) _Bool ScRefHandler::DoClose(unsigned short)
sc/source/ui/inc/docfunc.hxx:113 sc/source/ui/inc/docfunc.hxx:117
_Bool ScDocFunc::SetFormulaCells(const class ScAddress &,class std::vector<class ScFormulaCell *> &,_Bool) _Bool ScDocFunc::SetFormulaCells(const ScAddress &,std::vector<ScFormulaCell *> &,_Bool)
sc/source/ui/inc/docfunc.hxx:161 sc/source/ui/inc/docfunc.hxx:165
_Bool ScDocFunc::Protect(short,const class rtl::OUString &) _Bool ScDocFunc::Protect(short,const rtl::OUString &)
sc/source/ui/inc/docfunc.hxx:246
_Bool ScDocFunc::ChangeSparklineGroupAttributes(const std::shared_ptr<sc::SparklineGroup> &,const sc::SparklineAttributes &)
sc/source/ui/inc/drawview.hxx:159 sc/source/ui/inc/drawview.hxx:159
_Bool ScDrawView::calculateGridOffsetForSdrObject(class SdrObject &,class basegfx::B2DVector &) const _Bool ScDrawView::calculateGridOffsetForSdrObject(SdrObject &,basegfx::B2DVector &) const
sc/source/ui/inc/drawview.hxx:162 sc/source/ui/inc/drawview.hxx:162
_Bool ScDrawView::calculateGridOffsetForB2DRange(const class basegfx::B2DRange &,class basegfx::B2DVector &) const _Bool ScDrawView::calculateGridOffsetForB2DRange(const basegfx::B2DRange &,basegfx::B2DVector &) const
sc/source/ui/inc/select.hxx:71 sc/source/ui/inc/select.hxx:71
_Bool ScViewFunctionSet::SetCursorAtCell(short,int,_Bool) _Bool ScViewFunctionSet::SetCursorAtCell(short,int,_Bool)
sc/source/ui/vba/vbaformat.hxx:69 sc/source/ui/vba/vbaformat.hxx:69
class com::sun::star::uno::Any ScVbaFormat::getAddIndent() com::sun::star::uno::Any ScVbaFormat::getAddIndent()
sc/source/ui/vba/vbaformat.hxx:73 sc/source/ui/vba/vbaformat.hxx:73
class com::sun::star::uno::Any ScVbaFormat::Borders(const class com::sun::star::uno::Any &) com::sun::star::uno::Any ScVbaFormat::Borders(const com::sun::star::uno::Any &)
sc/source/ui/vba/vbaformat.hxx:76 sc/source/ui/vba/vbaformat.hxx:76
class com::sun::star::uno::Reference<class ooo::vba::excel::XFont> ScVbaFormat::Font() com::sun::star::uno::Reference<ooo::vba::excel::XFont> ScVbaFormat::Font()
sc/source/ui/vba/vbaformat.hxx:79 sc/source/ui/vba/vbaformat.hxx:79
class com::sun::star::uno::Reference<class ooo::vba::excel::XInterior> ScVbaFormat::Interior() com::sun::star::uno::Reference<ooo::vba::excel::XInterior> ScVbaFormat::Interior()
sc/source/ui/vba/vbaformat.hxx:85 sc/source/ui/vba/vbaformat.hxx:85
class com::sun::star::uno::Any ScVbaFormat::getNumberFormat() com::sun::star::uno::Any ScVbaFormat::getNumberFormat()
sc/source/ui/vba/vbaformat.hxx:91 sc/source/ui/vba/vbaformat.hxx:91
class com::sun::star::uno::Any ScVbaFormat::getNumberFormatLocal() com::sun::star::uno::Any ScVbaFormat::getNumberFormatLocal()
sc/source/ui/vba/vbaformat.hxx:97 sc/source/ui/vba/vbaformat.hxx:97
class com::sun::star::uno::Any ScVbaFormat::getIndentLevel() com::sun::star::uno::Any ScVbaFormat::getIndentLevel()
sc/source/ui/vba/vbaformat.hxx:103 sc/source/ui/vba/vbaformat.hxx:103
class com::sun::star::uno::Any ScVbaFormat::getHorizontalAlignment() com::sun::star::uno::Any ScVbaFormat::getHorizontalAlignment()
sc/source/ui/vba/vbaformat.hxx:109 sc/source/ui/vba/vbaformat.hxx:109
class com::sun::star::uno::Any ScVbaFormat::getVerticalAlignment() com::sun::star::uno::Any ScVbaFormat::getVerticalAlignment()
sc/source/ui/vba/vbaformat.hxx:115 sc/source/ui/vba/vbaformat.hxx:115
class com::sun::star::uno::Any ScVbaFormat::getOrientation() com::sun::star::uno::Any ScVbaFormat::getOrientation()
sc/source/ui/vba/vbaformat.hxx:121 sc/source/ui/vba/vbaformat.hxx:121
class com::sun::star::uno::Any ScVbaFormat::getShrinkToFit() com::sun::star::uno::Any ScVbaFormat::getShrinkToFit()
sc/source/ui/vba/vbaformat.hxx:127 sc/source/ui/vba/vbaformat.hxx:127
class com::sun::star::uno::Any ScVbaFormat::getWrapText() com::sun::star::uno::Any ScVbaFormat::getWrapText()
sc/source/ui/vba/vbaformat.hxx:133 sc/source/ui/vba/vbaformat.hxx:133
class com::sun::star::uno::Any ScVbaFormat::getLocked() com::sun::star::uno::Any ScVbaFormat::getLocked()
sc/source/ui/vba/vbaformat.hxx:139 sc/source/ui/vba/vbaformat.hxx:139
class com::sun::star::uno::Any ScVbaFormat::getFormulaHidden() com::sun::star::uno::Any ScVbaFormat::getFormulaHidden()
sc/source/ui/vba/vbaformat.hxx:145 sc/source/ui/vba/vbaformat.hxx:145
class com::sun::star::uno::Any ScVbaFormat::getMergeCells() com::sun::star::uno::Any ScVbaFormat::getMergeCells()
sc/source/ui/vba/vbaformat.hxx:151 sc/source/ui/vba/vbaformat.hxx:151
class com::sun::star::uno::Any ScVbaFormat::getReadingOrder() com::sun::star::uno::Any ScVbaFormat::getReadingOrder()
sd/source/filter/eppt/pptx-epptooxml.cxx:132 sd/source/filter/eppt/pptx-epptooxml.cxx:132
class oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,enum PageType,_Bool) oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,enum PageType,_Bool)
sd/source/ui/inc/DrawViewShell.hxx:252 sd/source/ui/inc/DrawViewShell.hxx:252
_Bool sd::DrawViewShell::SelectPage(unsigned short,unsigned short) _Bool sd::DrawViewShell::SelectPage(unsigned short,unsigned short)
sd/source/ui/inc/navigatr.hxx:120 sd/source/ui/inc/navigatr.hxx:120
_Bool SdNavigatorWin::InsertFile(const class rtl::OUString &) _Bool SdNavigatorWin::InsertFile(const rtl::OUString &)
sd/source/ui/inc/OutlineViewShell.hxx:114 sd/source/ui/inc/OutlineViewShell.hxx:114
class ErrCode sd::OutlineViewShell::ReadRtf(class SvStream &) ErrCode sd::OutlineViewShell::ReadRtf(SvStream &)
sd/source/ui/remotecontrol/IBluetoothSocket.hxx:36 sd/source/ui/remotecontrol/IBluetoothSocket.hxx:36
int sd::IBluetoothSocket::write(const void *,unsigned int) int sd::IBluetoothSocket::write(const void *,unsigned int)
sdext/source/pdfimport/tree/style.hxx:155 sdext/source/pdfimport/tree/style.hxx:155
int pdfi::StyleContainer::getStandardStyleId(class std::basic_string_view<char>) int pdfi::StyleContainer::getStandardStyleId(std::basic_string_view<char>)
sfx2/inc/autoredactdialog.hxx:135 sfx2/inc/autoredactdialog.hxx:140
_Bool SfxAutoRedactDialog::getTargets(class std::vector<struct std::pair<struct RedactionTarget, class rtl::OUString> > &) _Bool SfxAutoRedactDialog::getTargets(std::vector<struct std::pair<struct RedactionTarget, rtl::OUString> > &)
slideshow/source/engine/animationnodes/animationbasenode.hxx:62 slideshow/source/engine/animationnodes/animationbasenode.hxx:62
_Bool slideshow::internal::AnimationBaseNode::enqueueActivity() const _Bool slideshow::internal::AnimationBaseNode::enqueueActivity() const
sw/inc/calc.hxx:122 sw/inc/calc.hxx:124
class SwSbxValue & SwSbxValue::MakeDouble() SwSbxValue & SwSbxValue::MakeDouble()
sw/inc/docary.hxx:265 sw/inc/docary.hxx:299
_Bool SwRedlineTable::isMoved(unsigned long) const _Bool SwExtraRedlineTable::DeleteAllTableRedlines(SwDoc &,const SwTable &,_Bool,enum RedlineType)
sw/inc/docary.hxx:300 sw/inc/docary.hxx:300
_Bool SwExtraRedlineTable::DeleteAllTableRedlines(class SwDoc &,const class SwTable &,_Bool,enum RedlineType) _Bool SwExtraRedlineTable::DeleteTableRowRedline(SwDoc *,const SwTableLine &,_Bool,enum RedlineType)
sw/inc/docary.hxx:301 sw/inc/docary.hxx:301
_Bool SwExtraRedlineTable::DeleteTableRowRedline(class SwDoc *,const class SwTableLine &,_Bool,enum RedlineType) _Bool SwExtraRedlineTable::DeleteTableCellRedline(SwDoc *,const SwTableBox &,_Bool,enum RedlineType)
sw/inc/docary.hxx:302 sw/inc/editsh.hxx:635
_Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,enum RedlineType) const GraphicAttr * SwEditShell::GetGraphicAttr(GraphicAttr &) const
sw/inc/editsh.hxx:634 sw/inc/editsh.hxx:648
const class GraphicAttr * SwEditShell::GetGraphicAttr(class GraphicAttr &) const _Bool SwEditShell::GetGrfSize(Size &) const
sw/inc/editsh.hxx:813
unsigned short SwEditShell::GetRefMarks(std::vector<rtl::OUString> *) const
sw/inc/IDocumentUndoRedo.hxx:100 sw/inc/IDocumentUndoRedo.hxx:100
_Bool IDocumentUndoRedo::Undo() _Bool IDocumentUndoRedo::Undo()
sw/inc/IDocumentUndoRedo.hxx:181 sw/inc/IDocumentUndoRedo.hxx:181
_Bool IDocumentUndoRedo::Repeat(class sw::RepeatContext &,const unsigned short) _Bool IDocumentUndoRedo::Repeat(sw::RepeatContext &,const unsigned short)
sw/inc/tblafmt.hxx:269 sw/inc/tblafmt.hxx:267
_Bool SwTableAutoFormatTable::Load(class SvStream &) _Bool SwTableAutoFormatTable::Load(SvStream &)
sw/qa/inc/swmodeltestbase.hxx:386
SwDoc * SwModelTestBase::createSwWebDoc(std::basic_string_view<char16_t>,const char *)
sw/source/core/inc/laycache.hxx:64 sw/source/core/inc/laycache.hxx:64
_Bool SwLayoutCache::CompareLayout(const class SwDoc &) const _Bool SwLayoutCache::CompareLayout(const SwDoc &) const
sw/source/core/inc/scriptinfo.hxx:237 sw/source/core/inc/scriptinfo.hxx:237
_Bool SwScriptInfo::GetBoundsOfHiddenRange(struct o3tl::strong_int<int, struct Tag_TextFrameIndex>,struct o3tl::strong_int<int, struct Tag_TextFrameIndex> &,struct o3tl::strong_int<int, struct Tag_TextFrameIndex> &) const _Bool SwScriptInfo::GetBoundsOfHiddenRange(struct o3tl::strong_int<int, struct Tag_TextFrameIndex>,struct o3tl::strong_int<int, struct Tag_TextFrameIndex> &,struct o3tl::strong_int<int, struct Tag_TextFrameIndex> &) const
sw/source/filter/ww8/ww8toolbar.hxx:337 sw/source/filter/ww8/ww8toolbar.hxx:337
_Bool Tcg::ImportCustomToolBar(class SfxObjectShell &) _Bool Tcg::ImportCustomToolBar(SfxObjectShell &)
sw/source/uibase/inc/drawbase.hxx:54 sw/source/uibase/inc/drawbase.hxx:54
_Bool SwDrawBase::MouseMove(const class MouseEvent &) _Bool SwDrawBase::MouseMove(const MouseEvent &)
sw/source/uibase/inc/fldmgr.hxx:116 sw/source/uibase/inc/fldmgr.hxx:118
const class com::sun::star::uno::Reference<class com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const const com::sun::star::uno::Reference<com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const
sw/source/uibase/inc/mailmergewizard.hxx:79 sw/source/uibase/inc/mailmergewizard.hxx:79
_Bool SwMailMergeWizard::skipUntil(unsigned short) _Bool SwMailMergeWizard::skipUntil(unsigned short)
sw/source/uibase/inc/numpara.hxx:61 sw/source/uibase/inc/numpara.hxx:61
_Bool SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const class rtl::OUString &,enum SfxStyleFamily) _Bool SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const rtl::OUString &,enum SfxStyleFamily)
ucb/source/ucp/webdav-curl/ContentProperties.hxx:159 sw/source/uibase/inc/wrtsh.hxx:431
_Bool http_dav_ucp::CachableContentProperties::containsAllNames(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,class std::vector<class rtl::OUString> &) const _Bool SwWrtShell::GotoContentControl(const SwFormatContentControl &)
ucb/source/ucp/webdav-curl/ContentProperties.hxx:160
_Bool http_dav_ucp::CachableContentProperties::containsAllNames(const com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,std::vector<rtl::OUString> &) const
vcl/inc/font/FeatureCollector.hxx:45 vcl/inc/font/FeatureCollector.hxx:45
_Bool vcl::font::FeatureCollector::collect() _Bool vcl::font::FeatureCollector::collect()
vcl/inc/impgraph.hxx:186 vcl/inc/impgraph.hxx:186
_Bool ImpGraphic::swapOutGraphic(class SvStream &) _Bool ImpGraphic::swapOutGraphic(SvStream &)
vcl/inc/pdf/pdfwriter_impl.hxx:1253 vcl/inc/pdf/pdfwriter_impl.hxx:1265
_Bool vcl::PDFWriterImpl::setCurrentStructureElement(int) _Bool vcl::PDFWriterImpl::setCurrentStructureElement(int)
vcl/inc/pdf/pdfwriter_impl.hxx:1254 vcl/inc/pdf/pdfwriter_impl.hxx:1266
_Bool vcl::PDFWriterImpl::setStructureAttribute(enum vcl::PDFWriter::StructAttribute,enum vcl::PDFWriter::StructAttributeValue) _Bool vcl::PDFWriterImpl::setStructureAttribute(enum vcl::PDFWriter::StructAttribute,enum vcl::PDFWriter::StructAttributeValue)
vcl/inc/pdf/pdfwriter_impl.hxx:1255 vcl/inc/pdf/pdfwriter_impl.hxx:1267
_Bool vcl::PDFWriterImpl::setStructureAttributeNumerical(enum vcl::PDFWriter::StructAttribute,int) _Bool vcl::PDFWriterImpl::setStructureAttributeNumerical(enum vcl::PDFWriter::StructAttribute,int)
vcl/inc/qt5/QtAccessibleWidget.hxx:48 vcl/inc/qt5/QtAccessibleWidget.hxx:48
class QString QtAccessibleWidget::tr(const char *,const char *,int) QString QtAccessibleWidget::tr(const char *,const char *,int)
vcl/inc/qt5/QtAccessibleWidget.hxx:48 vcl/inc/qt5/QtAccessibleWidget.hxx:48
class QString QtAccessibleWidget::trUtf8(const char *,const char *,int) QString QtAccessibleWidget::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtClipboard.hxx:36 vcl/inc/qt5/QtClipboard.hxx:36
class QString QtClipboard::tr(const char *,const char *,int) QString QtClipboard::tr(const char *,const char *,int)
vcl/inc/qt5/QtClipboard.hxx:36 vcl/inc/qt5/QtClipboard.hxx:36
class QString QtClipboard::trUtf8(const char *,const char *,int) QString QtClipboard::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtFilePicker.hxx:60 vcl/inc/qt5/QtFilePicker.hxx:60
class QString QtFilePicker::tr(const char *,const char *,int) QString QtFilePicker::tr(const char *,const char *,int)
vcl/inc/qt5/QtFilePicker.hxx:60 vcl/inc/qt5/QtFilePicker.hxx:60
class QString QtFilePicker::trUtf8(const char *,const char *,int) QString QtFilePicker::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtFrame.hxx:69 vcl/inc/qt5/QtFrame.hxx:70
class QString QtFrame::tr(const char *,const char *,int) QString QtFrame::tr(const char *,const char *,int)
vcl/inc/qt5/QtFrame.hxx:69 vcl/inc/qt5/QtFrame.hxx:70
class QString QtFrame::trUtf8(const char *,const char *,int) QString QtFrame::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstance.hxx:54 vcl/inc/qt5/QtInstance.hxx:55
class QString QtInstance::tr(const char *,const char *,int) QString QtInstance::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstance.hxx:54 vcl/inc/qt5/QtInstance.hxx:55
class QString QtInstance::trUtf8(const char *,const char *,int) QString QtInstance::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtMainWindow.hxx:29 vcl/inc/qt5/QtMainWindow.hxx:29
class QString QtMainWindow::tr(const char *,const char *,int) QString QtMainWindow::tr(const char *,const char *,int)
vcl/inc/qt5/QtMainWindow.hxx:29 vcl/inc/qt5/QtMainWindow.hxx:29
class QString QtMainWindow::trUtf8(const char *,const char *,int) QString QtMainWindow::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtMenu.hxx:40 vcl/inc/qt5/QtMenu.hxx:42
class QString QtMenu::tr(const char *,const char *,int) QString QtMenu::tr(const char *,const char *,int)
vcl/inc/qt5/QtMenu.hxx:40 vcl/inc/qt5/QtMenu.hxx:42
class QString QtMenu::trUtf8(const char *,const char *,int) QString QtMenu::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtObject.hxx:34 vcl/inc/qt5/QtObject.hxx:35
class QString QtObject::tr(const char *,const char *,int) QString QtObject::tr(const char *,const char *,int)
vcl/inc/qt5/QtObject.hxx:34 vcl/inc/qt5/QtObject.hxx:35
class QString QtObject::trUtf8(const char *,const char *,int) QString QtObject::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtTimer.hxx:27 vcl/inc/qt5/QtTimer.hxx:27
class QString QtTimer::tr(const char *,const char *,int) QString QtTimer::tr(const char *,const char *,int)
vcl/inc/qt5/QtTimer.hxx:27 vcl/inc/qt5/QtTimer.hxx:27
class QString QtTimer::trUtf8(const char *,const char *,int) QString QtTimer::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtWidget.hxx:35 vcl/inc/salgdi.hxx:414
class QString QtWidget::tr(const char *,const char *,int) _Bool SalGraphics::UpdateSettings(AllSettings &)
vcl/inc/qt5/QtWidget.hxx:35 vcl/inc/salgdi.hxx:416
class QString QtWidget::trUtf8(const char *,const char *,int) _Bool SalGraphics::BlendBitmap(const struct SalTwoRect &,const SalBitmap &,const OutputDevice &)
vcl/inc/qt5/QtXAccessible.hxx:27 vcl/inc/salgdi.hxx:525
class QString QtXAccessible::tr(const char *,const char *,int) _Bool SalGraphics::implDrawGradient(const basegfx::B2DPolyPolygon &,const struct SalGradient &)
vcl/inc/qt5/QtXAccessible.hxx:27 vcl/inc/salinst.hxx:177
class QString QtXAccessible::trUtf8(const char *,const char *,int)
vcl/inc/salgdi.hxx:404
_Bool SalGraphics::UpdateSettings(class AllSettings &)
vcl/inc/salgdi.hxx:406
_Bool SalGraphics::BlendBitmap(const struct SalTwoRect &,const class SalBitmap &,const class OutputDevice &)
vcl/inc/salgdi.hxx:515
_Bool SalGraphics::implDrawGradient(const class basegfx::B2DPolyPolygon &,const struct SalGradient &)
vcl/inc/salinst.hxx:176
_Bool SalInstance::CallEventCallback(const void *,int) _Bool SalInstance::CallEventCallback(const void *,int)
vcl/inc/salprn.hxx:113 vcl/inc/salprn.hxx:113
_Bool SalPrinter::EndJob() _Bool SalPrinter::EndJob()
vcl/inc/salvtables.hxx:1603 vcl/inc/salvtables.hxx:1621
_Bool SalInstanceTreeView::get_iter_abs_pos(class weld::TreeIter &,int) const _Bool SalInstanceTreeView::get_iter_abs_pos(weld::TreeIter &,int) const
vcl/inc/unx/gtk/gtkdata.hxx:335 vcl/inc/unx/gtk/gtkdata.hxx:335
int GtkSalDisplay::CaptureMouse(class SalFrame *) int GtkSalDisplay::CaptureMouse(SalFrame *)
vcl/inc/unx/salframe.h:167 vcl/inc/unx/salframe.h:168
_Bool X11SalFrame::Dispatch(union _XEvent *) _Bool X11SalFrame::Dispatch(union _XEvent *)
vcl/unx/kf5/KF5FilePicker.hxx:29 workdir/../vcl/inc/qt5/QtWidget.hxx:36
class QString KF5FilePicker::tr(const char *,const char *,int) QString QtWidget::tr(const char *,const char *,int)
vcl/unx/kf5/KF5FilePicker.hxx:29 workdir/../vcl/inc/qt5/QtWidget.hxx:36
class QString KF5FilePicker::trUtf8(const char *,const char *,int) QString QtWidget::trUtf8(const char *,const char *,int)
workdir/../vcl/inc/qt5/QtXAccessible.hxx:27
QString QtXAccessible::tr(const char *,const char *,int)
workdir/../vcl/inc/qt5/QtXAccessible.hxx:27
QString QtXAccessible::trUtf8(const char *,const char *,int)
workdir/../vcl/unx/kf5/KF5FilePicker.hxx:29
QString KF5FilePicker::tr(const char *,const char *,int)
workdir/../vcl/unx/kf5/KF5FilePicker.hxx:29
QString KF5FilePicker::trUtf8(const char *,const char *,int)

View File

@ -276,9 +276,6 @@ namespace dbaui
sal_Int32 getOverallLen() const; sal_Int32 getOverallLen() const;
::comphelper::OInterfaceContainerHelper3<css::beans::XVetoableChangeListener>* getContainer(const OUString& rName)
{ return m_aListeners.getContainer(rName); }
private: private:
void Notify(::comphelper::OInterfaceContainerHelper3<css::beans::XVetoableChangeListener>& rListeners, const css::beans::PropertyChangeEvent& e); void Notify(::comphelper::OInterfaceContainerHelper3<css::beans::XVetoableChangeListener>& rListeners, const css::beans::PropertyChangeEvent& e);
}; };

View File

@ -92,7 +92,6 @@ public:
void SetColor( const Color& rCol) { aColor = rCol; } void SetColor( const Color& rCol) { aColor = rCol; }
const Color& GetFiltColor() const { return aFilterColor; } const Color& GetFiltColor() const { return aFilterColor; }
Color& GetFiltColor() { return aFilterColor; }
void SetFiltColor( const Color& rCol) { aFilterColor = rCol; } void SetFiltColor( const Color& rCol) { aFilterColor = rCol; }
SvxGraphicPosition GetGraphicPos() const { return eGraphicPos; } SvxGraphicPosition GetGraphicPos() const { return eGraphicPos; }

View File

@ -4342,13 +4342,6 @@ GraphicZOrderHelper* DomainMapper::graphicZOrderHelper()
return zOrderHelper.get(); return zOrderHelper.get();
} }
GraphicNamingHelper& DomainMapper::GetGraphicNamingHelper()
{
if (m_pGraphicNamingHelper == nullptr)
m_pGraphicNamingHelper.reset(new GraphicNamingHelper());
return *m_pGraphicNamingHelper;
}
uno::Reference<drawing::XShape> DomainMapper::PopPendingShape() uno::Reference<drawing::XShape> DomainMapper::PopPendingShape()
{ {
return m_pImpl->PopPendingShape(); return m_pImpl->PopPendingShape();

View File

@ -62,7 +62,6 @@ class DomainMapper_Impl;
class ListsManager; class ListsManager;
class StyleSheetTable; class StyleSheetTable;
class GraphicZOrderHelper; class GraphicZOrderHelper;
class GraphicNamingHelper;
typedef tools::SvRef<StyleSheetTable> StyleSheetTablePtr; typedef tools::SvRef<StyleSheetTable> StyleSheetTablePtr;
@ -108,7 +107,6 @@ public:
StyleSheetTablePtr const & GetStyleSheetTable( ); StyleSheetTablePtr const & GetStyleSheetTable( );
SettingsTablePtr const & GetSettingsTable(); SettingsTablePtr const & GetSettingsTable();
GraphicZOrderHelper* graphicZOrderHelper(); GraphicZOrderHelper* graphicZOrderHelper();
GraphicNamingHelper& GetGraphicNamingHelper();
/// Return the first from the pending (not inserted to the document) shapes, if there are any. /// Return the first from the pending (not inserted to the document) shapes, if there are any.
css::uno::Reference<css::drawing::XShape> PopPendingShape(); css::uno::Reference<css::drawing::XShape> PopPendingShape();
@ -185,7 +183,6 @@ private:
bool mbHasControls; bool mbHasControls;
bool mbWasShapeInPara; bool mbWasShapeInPara;
std::unique_ptr< GraphicZOrderHelper > zOrderHelper; std::unique_ptr< GraphicZOrderHelper > zOrderHelper;
std::unique_ptr<GraphicNamingHelper> m_pGraphicNamingHelper;
OUString m_sGlossaryEntryName; OUString m_sGlossaryEntryName;
}; };

View File

@ -324,25 +324,6 @@ sal_Int32 GraphicZOrderHelper::findZOrder( sal_Int32 relativeHeight, bool bOldSt
return 0; // this should not(?) happen return 0; // this should not(?) happen
} }
GraphicNamingHelper::GraphicNamingHelper()
: m_nCounter(0)
{
}
OUString GraphicNamingHelper::NameGraphic(const OUString& rTemplate)
{
OUString aRet = rTemplate;
if (aRet.isEmpty())
{
// Empty template: then auto-generate a unique name.
OUString aPrefix(SvxResId(STR_ObjNameSingulGRAF));
aRet += aPrefix + OUString::number(++m_nCounter);
}
return aRet;
}
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

View File

@ -63,17 +63,6 @@ private:
sal_Int32 m_nType; sal_Int32 m_nType;
sal_Int32 m_nSide; sal_Int32 m_nSide;
}; };
/// Keeps track of the next available unique automatic name.
class GraphicNamingHelper
{
int m_nCounter;
public:
GraphicNamingHelper();
/// Name a graphic based on rTemplate.
OUString NameGraphic(const OUString& rTemplate);
};
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */