summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/unusedmethods.py
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-20 16:03:50 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-21 07:58:51 +0000
commit6ea66657ebca5b3ec63f93b496b812888e0d53c9 (patch)
tree9f623491080bd49f3bc077bf3a4324033b793e33 /compilerplugins/clang/unusedmethods.py
parentloplugin:cstylecast (diff)
downloadcore-6ea66657ebca5b3ec63f93b496b812888e0d53c9.tar.gz
core-6ea66657ebca5b3ec63f93b496b812888e0d53c9.zip
loplugin:unusedmethods writerfilter
Change-Id: I52441115e14da6c1bcd7ba4926a0f3cc0620366e Reviewed-on: https://gerrit.libreoffice.org/17236 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'compilerplugins/clang/unusedmethods.py')
-rwxr-xr-xcompilerplugins/clang/unusedmethods.py35
1 files changed, 33 insertions, 2 deletions
diff --git a/compilerplugins/clang/unusedmethods.py b/compilerplugins/clang/unusedmethods.py
index 4535a98c3c24..cf9ce793d255 100755
--- a/compilerplugins/clang/unusedmethods.py
+++ b/compilerplugins/clang/unusedmethods.py
@@ -60,8 +60,39 @@ exclusionSet = set([
"const class rtl::OUString writerperfect::DocumentHandlerFor::name()",
# only used by OSX build
"void StyleSettings::SetHideDisabledMenuItems(_Bool)",
- # debugging method
- "void oox::drawingml::TextParagraphProperties::dump() const"
+ # debugging methods
+ "void oox::drawingml::TextParagraphProperties::dump() const",
+ "class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > writerfilter::ooxml::OOXMLPropertySet::toString()",
+ # called from the writerfilter generated code in $WORKDIR, not sure why it is not being picked up
+ "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultIntegerValue()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::positivePercentage(const class rtl::OUString &)",
+ "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleOLE()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::positionOffset(const class rtl::OUString &)",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::alignH(const class rtl::OUString &)",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::alignV(const class rtl::OUString &)",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultStringValue()",
+ "_Bool writerfilter::ooxml::OOXMLFactory_ns::getElementId(unsigned int,unsigned int,enum writerfilter::ooxml::ResourceType_t &,unsigned int &)",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::clearProps()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::sendPropertiesWithId(const unsigned int &)",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::cr()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::softHyphen()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::noBreakHyphen()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultBooleanValue()",
+ "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handlePicture()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::endField()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::propagateCharacterPropertiesAsSet(const unsigned int &)",
+ "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleHdrFtr()",
+ "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleBreak()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::tab()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::ftnednref()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::ftnednsep()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::ftnedncont()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::pgNum()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::sendRowProperties()",
+ "void writerfilter::ooxml::OOXMLFastContextHandlerProperties::handleComment()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::setLastSectionGroup()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::endTxbxContent()",
+ "void writerfilter::ooxml::OOXMLFastContextHandler::setDefaultHexValue()",
])