replace usage of blacklist with excludelist for IWYU
Background and motivation: https://tools.ietf.org/html/draft-knodel-terminology-02 Change-Id: I2f22d455d2a936a85750eaab1fda215ebb6d9d48 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98182 Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: UnoControls/source/base/basecontrol.cxx
|
assumeFilename: UnoControls/source/base/basecontrol.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
UnoControls/inc/multiplexer.hxx:
|
UnoControls/inc/multiplexer.hxx:
|
||||||
# Don't propose hxx -> h change in URE libs
|
# Don't propose hxx -> h change in URE libs
|
||||||
- cppuhelper/interfacecontainer.hxx
|
- cppuhelper/interfacecontainer.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: accessibility/source/standard/accessiblemenucomponent.cxx
|
assumeFilename: accessibility/source/standard/accessiblemenucomponent.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
accessibility/source/standard/vclxaccessiblecombobox.cxx:
|
accessibility/source/standard/vclxaccessiblecombobox.cxx:
|
||||||
# Needed for implicit dtor
|
# Needed for implicit dtor
|
||||||
- vcl/window.hxx
|
- vcl/window.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: avmedia/source/gstreamer/gstplayer.cxx
|
assumeFilename: avmedia/source/gstreamer/gstplayer.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
avmedia/source/viewer/mediawindow_impl.cxx:
|
avmedia/source/viewer/mediawindow_impl.cxx:
|
||||||
# Actually used
|
# Actually used
|
||||||
- com/sun/star/uno/XComponentContext.hpp
|
- com/sun/star/uno/XComponentContext.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: basctl/source/basicide/baside2b.cxx
|
assumeFilename: basctl/source/basicide/baside2b.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
basctl/source/basicide/basidesh.cxx:
|
basctl/source/basicide/basidesh.cxx:
|
||||||
# Needed for TypedWhichId defines is basslots.hxx
|
# Needed for TypedWhichId defines is basslots.hxx
|
||||||
- sfx2/dinfdlg.hxx
|
- sfx2/dinfdlg.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: basegfx/source/point/b2dpoint.cxx
|
assumeFilename: basegfx/source/point/b2dpoint.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
basegfx/source/color/bcolortools.cxx:
|
basegfx/source/color/bcolortools.cxx:
|
||||||
# Needed to inherit linker visibility from function declaration
|
# Needed to inherit linker visibility from function declaration
|
||||||
- basegfx/color/bcolortools.hxx
|
- basegfx/color/bcolortools.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: basic/source/classes/global.cxx
|
assumeFilename: basic/source/classes/global.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
basic/source/runtime/methods.cxx:
|
basic/source/runtime/methods.cxx:
|
||||||
# Needed on WIN
|
# Needed on WIN
|
||||||
- o3tl/char16_t2wchar_t.hxx
|
- o3tl/char16_t2wchar_t.hxx
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
# you can generate one with 'make vim-ide-integration'.
|
# you can generate one with 'make vim-ide-integration'.
|
||||||
#
|
#
|
||||||
# Design goals:
|
# Design goals:
|
||||||
# - blacklist mechanism, so a warning is either fixed or blacklisted
|
# - exludelist mechanism, so a warning is either fixed or excluded
|
||||||
# - works in a plugins-enabled clang build
|
# - works in a plugins-enabled clang build
|
||||||
# - no custom configure options required
|
# - no custom configure options required
|
||||||
# - no need to generate a dummy library to build a header
|
# - no need to generate a dummy library to build a header
|
||||||
@@ -133,10 +133,10 @@ def ignoreRemoval(include, toAdd, absFileName, moduleRules):
|
|||||||
|
|
||||||
# yaml rules
|
# yaml rules
|
||||||
|
|
||||||
if "blacklist" in moduleRules.keys():
|
if "excludelist" in moduleRules.keys():
|
||||||
blacklistRules = moduleRules["blacklist"]
|
excludelistRules = moduleRules["excludelist"]
|
||||||
if fileName in blacklistRules.keys():
|
if fileName in excludelistRules.keys():
|
||||||
if include in blacklistRules[fileName]:
|
if include in excludelistRules[fileName]:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
return False
|
return False
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: binaryurp/source/bridge.cxx
|
assumeFilename: binaryurp/source/bridge.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
binaryurp/source/marshal.hxx:
|
binaryurp/source/marshal.hxx:
|
||||||
# Don't propose hxx -> h change in URE libs
|
# Don't propose hxx -> h change in URE libs
|
||||||
- rtl/byteseq.hxx
|
- rtl/byteseq.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: canvas/source/cairo/cairo_canvas.cxx
|
assumeFilename: canvas/source/cairo/cairo_canvas.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
canvas/inc/parametricpolypolygon.hxx:
|
canvas/inc/parametricpolypolygon.hxx:
|
||||||
# base class has to be a complete type
|
# base class has to be a complete type
|
||||||
- com/sun/star/lang/XServiceInfo.hpp
|
- com/sun/star/lang/XServiceInfo.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: chart2/source/controller/main/ChartWindow.cxx
|
assumeFilename: chart2/source/controller/main/ChartWindow.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
chart2/inc/ChartModel.hxx:
|
chart2/inc/ChartModel.hxx:
|
||||||
# base class has to be a complete type
|
# base class has to be a complete type
|
||||||
- com/sun/star/chart2/X3DChartWindowProvider.hpp
|
- com/sun/star/chart2/X3DChartWindowProvider.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: comphelper/source/misc/solarmutex.cxx
|
assumeFilename: comphelper/source/misc/solarmutex.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
comphelper/source/misc/instancelocker.hxx:
|
comphelper/source/misc/instancelocker.hxx:
|
||||||
# Base class has to be a complete type
|
# Base class has to be a complete type
|
||||||
- com/sun/star/lang/XComponent.hpp
|
- com/sun/star/lang/XComponent.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: configmgr/source/access.cxx
|
assumeFilename: configmgr/source/access.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
configmgr/source/nodemap.hxx:
|
configmgr/source/nodemap.hxx:
|
||||||
# Needed for direct member access
|
# Needed for direct member access
|
||||||
- node.hxx
|
- node.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: connectivity/source/commontools/dbtools.cxx
|
assumeFilename: connectivity/source/commontools/dbtools.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
connectivity/source/commontools/ConnectionWrapper.cxx:
|
connectivity/source/commontools/ConnectionWrapper.cxx:
|
||||||
# Actually used
|
# Actually used
|
||||||
- com/sun/star/beans/PropertyValue.hpp
|
- com/sun/star/beans/PropertyValue.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: cppcanvas/source/wrapper/implcanvas.cxx
|
assumeFilename: cppcanvas/source/wrapper/implcanvas.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
cppcanvas/source/wrapper/implcanvas.cxx:
|
cppcanvas/source/wrapper/implcanvas.cxx:
|
||||||
# Actually used
|
# Actually used
|
||||||
- com/sun/star/rendering/XCanvas.hpp
|
- com/sun/star/rendering/XCanvas.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: cppu/source/uno/data.cxx
|
assumeFilename: cppu/source/uno/data.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
cppu/qa/test_any.cxx:
|
cppu/qa/test_any.cxx:
|
||||||
# No hpp -> hdl replacement needed
|
# No hpp -> hdl replacement needed
|
||||||
- Enum1.hpp
|
- Enum1.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: cppuhelper/source/implbase.cxx
|
assumeFilename: cppuhelper/source/implbase.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
cppuhelper/source/typemanager.hxx:
|
cppuhelper/source/typemanager.hxx:
|
||||||
# base class needs full type
|
# base class needs full type
|
||||||
- com/sun/star/container/XHierarchicalNameAccess.hpp
|
- com/sun/star/container/XHierarchicalNameAccess.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: cui/source/options/optgenrl.cxx
|
assumeFilename: cui/source/options/optgenrl.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
cui/source/customize/macropg.cxx:
|
cui/source/customize/macropg.cxx:
|
||||||
# Needed for TypedWhichId macro
|
# Needed for TypedWhichId macro
|
||||||
- svl/macitem.hxx
|
- svl/macitem.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: dbaccess/source/ui/querydesign/QueryDesignView.cxx
|
assumeFilename: dbaccess/source/ui/querydesign/QueryDesignView.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
dbaccess/source/inc/dbu_reghelper.hxx:
|
dbaccess/source/inc/dbu_reghelper.hxx:
|
||||||
# Needed for registrationhelper.hxx
|
# Needed for registrationhelper.hxx
|
||||||
- com/sun/star/lang/XSingleServiceFactory.hpp
|
- com/sun/star/lang/XSingleServiceFactory.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: desktop/source/lib/init.cxx
|
assumeFilename: desktop/source/lib/init.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
desktop/inc/lib/init.hxx:
|
desktop/inc/lib/init.hxx:
|
||||||
# Complete type is needed
|
# Complete type is needed
|
||||||
- boost/property_tree/ptree.hpp
|
- boost/property_tree/ptree.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: drawinglayer/source/primitive2d/svggradientprimitive2d.cxx
|
assumeFilename: drawinglayer/source/primitive2d/svggradientprimitive2d.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx:
|
drawinglayer/source/drawinglayeruno/xprimitive2drenderer.cxx:
|
||||||
# Actually used
|
# Actually used
|
||||||
- com/sun/star/lang/XMultiServiceFactory.hpp
|
- com/sun/star/lang/XMultiServiceFactory.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: editeng/source/editeng/impedit.cxx
|
assumeFilename: editeng/source/editeng/impedit.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
editeng/source/editeng/impedit.hxx:
|
editeng/source/editeng/impedit.hxx:
|
||||||
# Complete type needed for pointer arithmetic
|
# Complete type needed for pointer arithmetic
|
||||||
- editeng/SpellPortions.hxx
|
- editeng/SpellPortions.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: embeddedobj/source/commonembedding/embedobj.cxx
|
assumeFilename: embeddedobj/source/commonembedding/embedobj.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
embeddedobj/qa/cppunit/general.cxx:
|
embeddedobj/qa/cppunit/general.cxx:
|
||||||
- comphelper/scopeguard.hxx
|
- comphelper/scopeguard.hxx
|
||||||
embeddedobj/source/inc/dummyobject.hxx:
|
embeddedobj/source/inc/dummyobject.hxx:
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: emfio/source/emfuno/xemfparser.cxx
|
assumeFilename: emfio/source/emfuno/xemfparser.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
emfio/source/reader/wmfreader.cxx:
|
emfio/source/reader/wmfreader.cxx:
|
||||||
# OSL_BIGENDIAN is being checked
|
# OSL_BIGENDIAN is being checked
|
||||||
- osl/endian.h
|
- osl/endian.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: extensions/source/propctrlr/formcomponenthandler.cxx
|
assumeFilename: extensions/source/propctrlr/formcomponenthandler.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
extensions/source/logging/loghandler.hxx:
|
extensions/source/logging/loghandler.hxx:
|
||||||
# Don't propose hxx -> h change in URE libs
|
# Don't propose hxx -> h change in URE libs
|
||||||
- cppuhelper/interfacecontainer.hxx
|
- cppuhelper/interfacecontainer.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: filter/source/msfilter/msdffimp.cxx
|
assumeFilename: filter/source/msfilter/msdffimp.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
filter/source/graphicfilter/icgm/cgm.cxx:
|
filter/source/graphicfilter/icgm/cgm.cxx:
|
||||||
# OSL_BIGENDIAN is being checked
|
# OSL_BIGENDIAN is being checked
|
||||||
- osl/endian.h
|
- osl/endian.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: forms/source/component/DatabaseForm.cxx
|
assumeFilename: forms/source/component/DatabaseForm.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
forms/source/inc/property.hxx:
|
forms/source/inc/property.hxx:
|
||||||
# Needed for macro defines
|
# Needed for macro defines
|
||||||
- frm_strings.hxx
|
- frm_strings.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: framework/source/services/autorecovery.cxx
|
assumeFilename: framework/source/services/autorecovery.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
framework/inc/stdtypes.h:
|
framework/inc/stdtypes.h:
|
||||||
# Don't propose hxx -> h change in URE libs
|
# Don't propose hxx -> h change in URE libs
|
||||||
- cppuhelper/interfacecontainer.hxx
|
- cppuhelper/interfacecontainer.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: helpcompiler/source/HelpCompiler.cxx
|
assumeFilename: helpcompiler/source/HelpCompiler.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
helpcompiler/inc/HelpCompiler.hxx:
|
helpcompiler/inc/HelpCompiler.hxx:
|
||||||
# Needed on WIN32
|
# Needed on WIN32
|
||||||
- o3tl/char16_t2wchar_t.hxx
|
- o3tl/char16_t2wchar_t.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: i18npool/source/localedata/localedata.cxx
|
assumeFilename: i18npool/source/localedata/localedata.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
i18npool/inc/breakiterator_unicode.hxx:
|
i18npool/inc/breakiterator_unicode.hxx:
|
||||||
# contains versioned namespace so cannot forward declare
|
# contains versioned namespace so cannot forward declare
|
||||||
- unicode/brkiter.h
|
- unicode/brkiter.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: desktop/source/app/app.cxx
|
assumeFilename: desktop/source/app/app.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
include/sal/typesizes.h:
|
include/sal/typesizes.h:
|
||||||
# needed for build to work
|
# needed for build to work
|
||||||
- config_typesizes.h
|
- config_typesizes.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: io/source/services.cxx
|
assumeFilename: io/source/services.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
io/source/acceptor/acceptor.cxx:
|
io/source/acceptor/acceptor.cxx:
|
||||||
# Avoid loplugin:unreffun error
|
# Avoid loplugin:unreffun error
|
||||||
- services.hxx
|
- services.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: javaunohelper/source/vm.cxx
|
assumeFilename: javaunohelper/source/vm.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
javaunohelper/source/bootstrap.cxx:
|
javaunohelper/source/bootstrap.cxx:
|
||||||
# Needed for direct member access
|
# Needed for direct member access
|
||||||
- com/sun/star/uno/XComponentContext.hpp
|
- com/sun/star/uno/XComponentContext.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: jvmaccess/source/classpath.cxx
|
assumeFilename: jvmaccess/source/classpath.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
jvmaccess/source/classpath.cxx:
|
jvmaccess/source/classpath.cxx:
|
||||||
# Needed to inherit linker visibility from function declaration
|
# Needed to inherit linker visibility from function declaration
|
||||||
- jvmaccess/classpath.hxx
|
- jvmaccess/classpath.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: jvmfwk/source/fwkbase.cxx
|
assumeFilename: jvmfwk/source/fwkbase.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
jvmfwk/inc/fwkutil.hxx:
|
jvmfwk/inc/fwkutil.hxx:
|
||||||
# Needed on MACOSX
|
# Needed on MACOSX
|
||||||
- config_folders.h
|
- config_folders.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: linguistic/source/lngsvcmgr.cxx
|
assumeFilename: linguistic/source/lngsvcmgr.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
linguistic/source/hyphdsp.cxx:
|
linguistic/source/hyphdsp.cxx:
|
||||||
# Needed for direct member access
|
# Needed for direct member access
|
||||||
- com/sun/star/linguistic2/XLinguProperties.hpp
|
- com/sun/star/linguistic2/XLinguProperties.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: lotuswordpro/source/filter/lwplayout.cxx
|
assumeFilename: lotuswordpro/source/filter/lwplayout.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
lotuswordpro/inc/lwpatomholder.hxx:
|
lotuswordpro/inc/lwpatomholder.hxx:
|
||||||
# Needed for MPL subset
|
# Needed for MPL subset
|
||||||
- config_lgpl.h
|
- config_lgpl.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: oox/source/export/drawingml.cxx
|
assumeFilename: oox/source/export/drawingml.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
oox/source/docprop/docprophandler.hxx:
|
oox/source/docprop/docprophandler.hxx:
|
||||||
# Needed for macro defines
|
# Needed for macro defines
|
||||||
- oox/token/namespaces.hxx
|
- oox/token/namespaces.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: opencl/source/opencl_device.cxx
|
assumeFilename: opencl/source/opencl_device.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
opencl/source/opencl_device.cxx:
|
opencl/source/opencl_device.cxx:
|
||||||
# Avoid loplugin:unreffun error
|
# Avoid loplugin:unreffun error
|
||||||
- opencl_device.hxx
|
- opencl_device.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: pyuno/source/module/pyuno.cxx
|
assumeFilename: pyuno/source/module/pyuno.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
pyuno/inc/pyuno.hxx:
|
pyuno/inc/pyuno.hxx:
|
||||||
# Used in #ifdef
|
# Used in #ifdef
|
||||||
- Python.h
|
- Python.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: registry/source/registry.cxx
|
assumeFilename: registry/source/registry.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
registry/source/regimpl.hxx:
|
registry/source/regimpl.hxx:
|
||||||
# Needed for correct linker visibility
|
# Needed for correct linker visibility
|
||||||
- regapi.hxx
|
- regapi.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: reportdesign/source/ui/report/ReportController.cxx
|
assumeFilename: reportdesign/source/ui/report/ReportController.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
reportdesign/inc/RptDef.hxx:
|
reportdesign/inc/RptDef.hxx:
|
||||||
# Needed for macro define
|
# Needed for macro define
|
||||||
- svx/fmglob.hxx
|
- svx/fmglob.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: sc/source/core/data/document.cxx
|
assumeFilename: sc/source/core/data/document.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
# base class has to be a complete type
|
# base class has to be a complete type
|
||||||
- com/sun/star/accessibility/XAccessibleStateSet.hpp
|
- com/sun/star/accessibility/XAccessibleStateSet.hpp
|
||||||
sc/inc/addruno.hxx:
|
sc/inc/addruno.hxx:
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: scaddins/source/analysis/analysis.cxx
|
assumeFilename: scaddins/source/analysis/analysis.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
scaddins/source/analysis/analysis.hxx:
|
scaddins/source/analysis/analysis.hxx:
|
||||||
# Base class needs complete type
|
# Base class needs complete type
|
||||||
- com/sun/star/lang/XServiceInfo.hpp
|
- com/sun/star/lang/XServiceInfo.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: sccomp/source/solver/SolverComponent.cxx
|
assumeFilename: sccomp/source/solver/SolverComponent.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
sccomp/source/solver/SolverComponent.hxx:
|
sccomp/source/solver/SolverComponent.hxx:
|
||||||
# Base class needs full type
|
# Base class needs full type
|
||||||
- com/sun/star/sheet/XSolver.hpp
|
- com/sun/star/sheet/XSolver.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: scripting/source/stringresource/stringresource.cxx
|
assumeFilename: scripting/source/stringresource/stringresource.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
scripting/source/protocolhandler/scripthandler.cxx:
|
scripting/source/protocolhandler/scripthandler.cxx:
|
||||||
# Actually used
|
# Actually used
|
||||||
- com/sun/star/lang/XSingleServiceFactory.hpp
|
- com/sun/star/lang/XSingleServiceFactory.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: sd/source/core/drawdoc.cxx
|
assumeFilename: sd/source/core/drawdoc.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
sd/inc/CustomAnimationCloner.hxx:
|
sd/inc/CustomAnimationCloner.hxx:
|
||||||
# base class has to be a complete type
|
# base class has to be a complete type
|
||||||
- com/sun/star/animations/XAnimationNode.hpp
|
- com/sun/star/animations/XAnimationNode.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: sdext/source/presenter/PresenterSlideSorter.cxx
|
assumeFilename: sdext/source/presenter/PresenterSlideSorter.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
sdext/source/pdfimport/odf/odfemitter.cxx:
|
sdext/source/pdfimport/odf/odfemitter.cxx:
|
||||||
# Actually in use
|
# Actually in use
|
||||||
- com/sun/star/io/XOutputStream.hpp
|
- com/sun/star/io/XOutputStream.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: sfx2/source/appl/app.cxx
|
assumeFilename: sfx2/source/appl/app.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
sfx2/inc/sidebar/Accessible.hxx:
|
sfx2/inc/sidebar/Accessible.hxx:
|
||||||
# base class has to be a complete type
|
# base class has to be a complete type
|
||||||
- com/sun/star/accessibility/XAccessible.hpp
|
- com/sun/star/accessibility/XAccessible.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: shell/source/unix/exec/shellexec.cxx
|
assumeFilename: shell/source/unix/exec/shellexec.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
shell/source/sessioninstall/SyncDbusSessionHelper.hxx:
|
shell/source/sessioninstall/SyncDbusSessionHelper.hxx:
|
||||||
# No hpp->hdl replacement
|
# No hpp->hdl replacement
|
||||||
- org/freedesktop/PackageKit/SyncDbusSessionHelper.hpp
|
- org/freedesktop/PackageKit/SyncDbusSessionHelper.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: slideshow/source/engine/slideshowimpl.cxx
|
assumeFilename: slideshow/source/engine/slideshowimpl.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
slideshow/source/inc/mouseeventhandler.hxx:
|
slideshow/source/inc/mouseeventhandler.hxx:
|
||||||
# Needed for css shortcut
|
# Needed for css shortcut
|
||||||
- sal/types.h
|
- sal/types.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: sot/source/base/object.cxx
|
assumeFilename: sot/source/base/object.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
sot/source/unoolestorage/xolesimplestorage.hxx:
|
sot/source/unoolestorage/xolesimplestorage.hxx:
|
||||||
# Base class needs complete type
|
# Base class needs complete type
|
||||||
- com/sun/star/embed/XOLESimpleStorage.hpp
|
- com/sun/star/embed/XOLESimpleStorage.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: starmath/source/document.cxx
|
assumeFilename: starmath/source/document.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
starmath/inc/smmod.hxx:
|
starmath/inc/smmod.hxx:
|
||||||
# Needed for define
|
# Needed for define
|
||||||
- sfx2/app.hxx
|
- sfx2/app.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: stoc/source/javavm/javavm.cxx
|
assumeFilename: stoc/source/javavm/javavm.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
stoc/source/implementationregistration/mergekeys.hxx:
|
stoc/source/implementationregistration/mergekeys.hxx:
|
||||||
# Needed for css shortcut
|
# Needed for css shortcut
|
||||||
- sal/types.h
|
- sal/types.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: store/source/storbase.cxx
|
assumeFilename: store/source/storbase.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
store/source/storbase.hxx:
|
store/source/storbase.hxx:
|
||||||
# Needed for OSL_BIGENDIAN macro
|
# Needed for OSL_BIGENDIAN macro
|
||||||
- osl/endian.h
|
- osl/endian.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: svl/source/items/intitem.cxx
|
assumeFilename: svl/source/items/intitem.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
svl/source/config/itemholder2.hxx:
|
svl/source/config/itemholder2.hxx:
|
||||||
# Base class needs complete type
|
# Base class needs complete type
|
||||||
- com/sun/star/lang/XEventListener.hpp
|
- com/sun/star/lang/XEventListener.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: svtools/source/control/ruler.cxx
|
assumeFilename: svtools/source/control/ruler.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
svtools/source/control/accessibleruler.hxx:
|
svtools/source/control/accessibleruler.hxx:
|
||||||
# base class has to be a complete type
|
# base class has to be a complete type
|
||||||
- com/sun/star/accessibility/XAccessible.hpp
|
- com/sun/star/accessibility/XAccessible.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: svx/source/svdraw/svdobj.cxx
|
assumeFilename: svx/source/svdraw/svdobj.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
svx/source/svdraw/svdpdf.hxx:
|
svx/source/svdraw/svdpdf.hxx:
|
||||||
# Needed on WIN32
|
# Needed on WIN32
|
||||||
- prewin.h
|
- prewin.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: sw/source/core/doc/docnew.cxx
|
assumeFilename: sw/source/core/doc/docnew.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
sw/inc/extinput.hxx:
|
sw/inc/extinput.hxx:
|
||||||
- vector
|
- vector
|
||||||
sw/inc/fmtmeta.hxx:
|
sw/inc/fmtmeta.hxx:
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: test/source/unoapi_test.cxx
|
assumeFilename: test/source/unoapi_test.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
test/source/vclbootstrapprotector.cxx:
|
test/source/vclbootstrapprotector.cxx:
|
||||||
# Used in Coverity-specific #ifdef
|
# Used in Coverity-specific #ifdef
|
||||||
- sal/log.hxx
|
- sal/log.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: toolkit/source/controls/unocontrol.cxx
|
assumeFilename: toolkit/source/controls/unocontrol.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
toolkit/source/awt/vclxmenu.cxx:
|
toolkit/source/awt/vclxmenu.cxx:
|
||||||
# Needed for direct member access
|
# Needed for direct member access
|
||||||
- vcl/window.hxx
|
- vcl/window.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: tools/source/generic/gen.cxx
|
assumeFilename: tools/source/generic/gen.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
tools/qa/cppunit/test_pathutils.cxx:
|
tools/qa/cppunit/test_pathutils.cxx:
|
||||||
# Needed for WIN32 specific unit test
|
# Needed for WIN32 specific unit test
|
||||||
- cppunit/TestAssert.h
|
- cppunit/TestAssert.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: ucb/source/core/ucb.cxx
|
assumeFilename: ucb/source/core/ucb.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
ucb/source/ucp/cmis/std_outputstream.hxx:
|
ucb/source/ucp/cmis/std_outputstream.hxx:
|
||||||
- boost/shared_ptr.hpp
|
- boost/shared_ptr.hpp
|
||||||
ucb/source/ucp/cmis/std_inputstream.hxx:
|
ucb/source/ucp/cmis/std_inputstream.hxx:
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: ucbhelper/source/provider/resultset.cxx
|
assumeFilename: ucbhelper/source/provider/resultset.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
ucbhelper/source/client/content.cxx:
|
ucbhelper/source/client/content.cxx:
|
||||||
# Needed for direct member access
|
# Needed for direct member access
|
||||||
- com/sun/star/ucb/XCommandInfo.hpp
|
- com/sun/star/ucb/XCommandInfo.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: unoidl/source/unoidl.cxx
|
assumeFilename: unoidl/source/unoidl.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
unoidl/source/unoidl-write.cxx:
|
unoidl/source/unoidl-write.cxx:
|
||||||
# Avoid loplugin:oslendian error
|
# Avoid loplugin:oslendian error
|
||||||
- osl/endian.h
|
- osl/endian.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: unotools/source/i18n/resmgr.cxx
|
assumeFilename: unotools/source/i18n/resmgr.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
unotools/source/config/itemholder1.hxx:
|
unotools/source/config/itemholder1.hxx:
|
||||||
# Base class needs complete type
|
# Base class needs complete type
|
||||||
- com/sun/star/lang/XEventListener.hpp
|
- com/sun/star/lang/XEventListener.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: unoxml/source/dom/document.cxx
|
assumeFilename: unoxml/source/dom/document.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
unoxml/source/rdf/librdf_repository.cxx:
|
unoxml/source/rdf/librdf_repository.cxx:
|
||||||
# Wrapper header needed for platform independence
|
# Wrapper header needed for platform independence
|
||||||
- redland.h
|
- redland.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: uui/source/iahndl.cxx
|
assumeFilename: uui/source/iahndl.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
uui/inc/ids.hxx:
|
uui/inc/ids.hxx:
|
||||||
# Needed by macro defines
|
# Needed by macro defines
|
||||||
- vcl/errcode.hxx
|
- vcl/errcode.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: vbahelper/source/vbahelper/vbahelper.cxx
|
assumeFilename: vbahelper/source/vbahelper/vbahelper.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
vbahelper/source/vbahelper/vbaglobalbase.cxx:
|
vbahelper/source/vbahelper/vbaglobalbase.cxx:
|
||||||
# Actually used
|
# Actually used
|
||||||
- com/sun/star/beans/PropertyValue.hpp
|
- com/sun/star/beans/PropertyValue.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: vcl/source/app/svapp.cxx
|
assumeFilename: vcl/source/app/svapp.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
vcl/inc/salusereventlist.hxx:
|
vcl/inc/salusereventlist.hxx:
|
||||||
# Don't propose hxx -> h change in URE libs
|
# Don't propose hxx -> h change in URE libs
|
||||||
- osl/thread.hxx
|
- osl/thread.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: writerfilter/source/filter/WriterFilter.cxx
|
assumeFilename: writerfilter/source/filter/WriterFilter.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
writerfilter/source/dmapper/BorderHandler.cxx:
|
writerfilter/source/dmapper/BorderHandler.cxx:
|
||||||
# Needed for method parameter type
|
# Needed for method parameter type
|
||||||
- tools/color.hxx
|
- tools/color.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: writerperfect/source/common/WPXSvInputStream.cxx
|
assumeFilename: writerperfect/source/common/WPXSvInputStream.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
writerperfect/inc/DocumentHandler.hxx:
|
writerperfect/inc/DocumentHandler.hxx:
|
||||||
# Wrapper header for external library
|
# Wrapper header for external library
|
||||||
- libodfgen/libodfgen.hxx
|
- libodfgen/libodfgen.hxx
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: xmlhelp/source/cxxhelp/provider/content.cxx
|
assumeFilename: xmlhelp/source/cxxhelp/provider/content.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
xmlhelp/source/cxxhelp/provider/content.cxx:
|
xmlhelp/source/cxxhelp/provider/content.cxx:
|
||||||
# Needed for CPPU_TYPE_REF macro
|
# Needed for CPPU_TYPE_REF macro
|
||||||
- com/sun/star/ucb/XCommandInfo.hpp
|
- com/sun/star/ucb/XCommandInfo.hpp
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: xmloff/source/core/xmlexp.cxx
|
assumeFilename: xmloff/source/core/xmlexp.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
xmloff/inc/XMLImageMapExport.hxx:
|
xmloff/inc/XMLImageMapExport.hxx:
|
||||||
# Needed for css shortcut
|
# Needed for css shortcut
|
||||||
- sal/types.h
|
- sal/types.h
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
assumeFilename: xmlsecurity/source/xmlsec/xmlsec_init.cxx
|
assumeFilename: xmlsecurity/source/xmlsec/xmlsec_init.cxx
|
||||||
blacklist:
|
excludelist:
|
||||||
xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx:
|
xmlsecurity/qa/unit/pdfsigning/pdfsigning.cxx:
|
||||||
# complete type is needed
|
# complete type is needed
|
||||||
- com/sun/star/security/DocumentSignatureInformation.hpp
|
- com/sun/star/security/DocumentSignatureInformation.hpp
|
||||||
|
Reference in New Issue
Block a user