Kaydet (Commit) 32878b68 authored tarafından Noel Grandin's avatar Noel Grandin

enhance unusedfields plugin to find readonly fields

Change-Id: I4da97443fc7eb14fd94959a026ab45a9256c055f
Reviewed-on: https://gerrit.libreoffice.org/40158Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
Tested-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 2303d4f1
...@@ -23,6 +23,13 @@ struct Bar ...@@ -23,6 +23,13 @@ struct Bar
// expected-error@-4 {{read m_bar6 [loplugin:unusedfields]}} // expected-error@-4 {{read m_bar6 [loplugin:unusedfields]}}
// expected-error@-5 {{read m_barfunctionpointer [loplugin:unusedfields]}} // expected-error@-5 {{read m_barfunctionpointer [loplugin:unusedfields]}}
// expected-error@-6 {{read m_bar8 [loplugin:unusedfields]}} // expected-error@-6 {{read m_bar8 [loplugin:unusedfields]}}
// expected-error@-7 {{write m_bar1 [loplugin:unusedfields]}}
// expected-error@-8 {{write m_bar2 [loplugin:unusedfields]}}
// expected-error@-9 {{write m_bar3 [loplugin:unusedfields]}}
// expected-error@-10 {{write m_bar3b [loplugin:unusedfields]}}
// expected-error@-11 {{write m_bar4 [loplugin:unusedfields]}}
// expected-error@-12 {{write m_bar7 [loplugin:unusedfields]}}
// expected-error@-13 {{write m_barfunctionpointer [loplugin:unusedfields]}}
{ {
int m_bar1; int m_bar1;
int m_bar2 = 1; int m_bar2 = 1;
...@@ -83,4 +90,46 @@ std::ostream& operator<<(std::ostream& s, Bar const & bar) ...@@ -83,4 +90,46 @@ std::ostream& operator<<(std::ostream& s, Bar const & bar)
return s; return s;
}; };
struct ReadOnly1 { ReadOnly1(int&); };
struct ReadOnlyAnalysis
// expected-error@-1 {{read m_f2 [loplugin:unusedfields]}}
// expected-error@-2 {{read m_f3 [loplugin:unusedfields]}}
// expected-error@-3 {{read m_f4 [loplugin:unusedfields]}}
// expected-error@-4 {{read m_f5 [loplugin:unusedfields]}}
// expected-error@-5 {{write m_f2 [loplugin:unusedfields]}}
// expected-error@-6 {{write m_f3 [loplugin:unusedfields]}}
// expected-error@-7 {{write m_f4 [loplugin:unusedfields]}}
// expected-error@-8 {{write m_f5 [loplugin:unusedfields]}}
{
int m_f1;
int m_f2;
int m_f3;
std::vector<int> m_f4;
int m_f5;
// check that we dont see a write of m_f1
ReadOnlyAnalysis() : m_f1(0) {}
void method1(int&);
// check that we see a write when we pass by non-const ref
void method2() { method1(m_f2); }
int& method3() { return m_f3; }
void method4() { m_f4.push_back(1); }
// check that we see a write when we pass by non-const ref
void method5() { ReadOnly1 a(m_f5); }
};
struct ReadOnlyAnalysis2
// expected-error@-1 {{write m_r2f1 [loplugin:unusedfields]}}
{
int m_r2f1;
};
ReadOnlyAnalysis2 global { 1 };
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
...@@ -10,6 +10,7 @@ definitionToSourceLocationMap = dict() ...@@ -10,6 +10,7 @@ definitionToSourceLocationMap = dict()
definitionToTypeMap = dict() definitionToTypeMap = dict()
touchedFromInsideSet = set() touchedFromInsideSet = set()
readFromSet = set() readFromSet = set()
writeToSet = set()
sourceLocationSet = set() sourceLocationSet = set()
touchedFromOutsideSet = set() touchedFromOutsideSet = set()
...@@ -51,6 +52,8 @@ with io.open("loplugin.unusedfields.log", "rb", buffering=1024*1024) as txt: ...@@ -51,6 +52,8 @@ with io.open("loplugin.unusedfields.log", "rb", buffering=1024*1024) as txt:
touchedFromOutsideSet.add(parseFieldInfo(tokens)) touchedFromOutsideSet.add(parseFieldInfo(tokens))
elif tokens[0] == "read:": elif tokens[0] == "read:":
readFromSet.add(parseFieldInfo(tokens)) readFromSet.add(parseFieldInfo(tokens))
elif tokens[0] == "write:":
writeToSet.add(parseFieldInfo(tokens))
else: else:
print( "unknown line: " + line) print( "unknown line: " + line)
...@@ -145,6 +148,15 @@ for d in definitionSet: ...@@ -145,6 +148,15 @@ for d in definitionSet:
writeonlySet.add((d[0] + " " + d[1] + " " + definitionToTypeMap[d], srcLoc)) writeonlySet.add((d[0] + " " + d[1] + " " + definitionToTypeMap[d], srcLoc))
readonlySet = set()
for d in definitionSet:
parentClazz = d[0];
if d in writeToSet:
continue
srcLoc = definitionToSourceLocationMap[d];
readonlySet.add((d[0] + " " + d[1] + " " + definitionToTypeMap[d], srcLoc))
canBePrivateSet = set() canBePrivateSet = set()
for d in protectedAndPublicDefinitionSet: for d in protectedAndPublicDefinitionSet:
clazz = d[0] + " " + d[1] clazz = d[0] + " " + d[1]
...@@ -164,6 +176,7 @@ def natural_sort_key(s, _nsre=re.compile('([0-9]+)')): ...@@ -164,6 +176,7 @@ def natural_sort_key(s, _nsre=re.compile('([0-9]+)')):
tmp1list = sorted(untouchedSet, key=lambda v: natural_sort_key(v[1])) tmp1list = sorted(untouchedSet, key=lambda v: natural_sort_key(v[1]))
tmp2list = sorted(writeonlySet, key=lambda v: natural_sort_key(v[1])) tmp2list = sorted(writeonlySet, key=lambda v: natural_sort_key(v[1]))
tmp3list = sorted(canBePrivateSet, key=lambda v: natural_sort_key(v[1])) tmp3list = sorted(canBePrivateSet, key=lambda v: natural_sort_key(v[1]))
tmp4list = sorted(readonlySet, key=lambda v: natural_sort_key(v[1]))
# print out the results # print out the results
with open("compilerplugins/clang/unusedfields.untouched.results", "wt") as f: with open("compilerplugins/clang/unusedfields.untouched.results", "wt") as f:
...@@ -179,5 +192,9 @@ with open("loplugin.unusedfields.report-can-be-private", "wt") as f: ...@@ -179,5 +192,9 @@ with open("loplugin.unusedfields.report-can-be-private", "wt") as f:
for t in tmp3list: for t in tmp3list:
f.write( t[1] + "\n" ) f.write( t[1] + "\n" )
f.write( " " + t[0] + "\n" ) f.write( " " + t[0] + "\n" )
with open("compilerplugins/clang/unusedfields.readonly.results", "wt") as f:
for t in tmp4list:
f.write( t[1] + "\n" )
f.write( " " + t[0] + "\n" )
...@@ -68,16 +68,34 @@ include/sfx2/msg.hxx:119 ...@@ -68,16 +68,34 @@ include/sfx2/msg.hxx:119
SfxType0 nAttribs sal_uInt16 SfxType0 nAttribs sal_uInt16
include/svtools/genericunodialog.hxx:170 include/svtools/genericunodialog.hxx:170
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
include/svtools/unoevent.hxx:159 include/svtools/unoevent.hxx:161
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface> SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
include/unotest/macros_test.hxx:21
TestMacroInfo sFileBaseName class rtl::OUString
include/unotest/macros_test.hxx:22
TestMacroInfo sMacroUrl class rtl::OUString
include/vcl/uitest/uiobject.hxx:241 include/vcl/uitest/uiobject.hxx:241
TabPageUIObject mxTabPage VclPtr<class TabPage> TabPageUIObject mxTabPage VclPtr<class TabPage>
include/xmloff/formlayerexport.hxx:173 include/xmloff/formlayerexport.hxx:173
xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport> xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport>
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:50
GtvApplicationWindow parent_instance GtkApplicationWindow
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
GtvApplicationWindow doctype LibreOfficeKitDocumentType
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
GtvApplicationWindowClass parentClass GtkApplicationWindow
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
GtvApplication parent GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
GtvApplicationClass parentClass GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
GtvCalcHeaderBar parent GtkDrawingArea
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
GtvCalcHeaderBarClass parentClass GtkDrawingAreaClass
libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.hxx:26
GtvCommentsSidebar parent GtkBox
libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.hxx:35
GtvCommentsSidebarClass parentClass GtkBoxClass
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:28
GtvMainToolbar parent GtkBox
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:36
GtvMainToolbarClass parentClass GtkBoxClass
lotuswordpro/source/filter/clone.hxx:23 lotuswordpro/source/filter/clone.hxx:23
detail::has_clone::(anonymous) a char [2] detail::has_clone::(anonymous) a char [2]
opencl/source/openclwrapper.cxx:302 opencl/source/openclwrapper.cxx:302
...@@ -102,9 +120,11 @@ sal/osl/unx/thread.cxx:115 ...@@ -102,9 +120,11 @@ sal/osl/unx/thread.cxx:115
osl_thread_global_st m_priority struct osl_thread_priority_st osl_thread_global_st m_priority struct osl_thread_priority_st
sc/inc/formulalogger.hxx:42 sc/inc/formulalogger.hxx:42
sc::FormulaLogger maMessages std::vector<OUString> sc::FormulaLogger maMessages std::vector<OUString>
sc/qa/unit/ucalc_column.cxx:103
aInputs aName const char *
sc/source/filter/inc/sheetdatacontext.hxx:61 sc/source/filter/inc/sheetdatacontext.hxx:61
oox::xls::SheetDataContext aReleaser class SolarMutexReleaser oox::xls::SheetDataContext aReleaser class SolarMutexReleaser
sc/source/ui/inc/dataprovider.hxx:46 sc/source/ui/inc/dataprovider.hxx:47
sc::ExternalDataMapper maDocument class ScDocument sc::ExternalDataMapper maDocument class ScDocument
sc/source/ui/inc/docsh.hxx:438 sc/source/ui/inc/docsh.hxx:438
ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector> ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector>
...@@ -114,13 +134,13 @@ sd/source/ui/table/TableDesignPane.hxx:113 ...@@ -114,13 +134,13 @@ sd/source/ui/table/TableDesignPane.hxx:113
sd::TableDesignPane aImpl class sd::TableDesignWidget sd::TableDesignPane aImpl class sd::TableDesignWidget
sd/source/ui/view/DocumentRenderer.cxx:1323 sd/source/ui/view/DocumentRenderer.cxx:1323
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
sd/source/ui/view/viewshel.cxx:1233 sd/source/ui/view/viewshel.cxx:1258
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1234 sd/source/ui/view/viewshel.cxx:1259
sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
sd/source/ui/view/viewshel.cxx:1235 sd/source/ui/view/viewshel.cxx:1260
sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
sd/source/ui/view/viewshel.cxx:1236 sd/source/ui/view/viewshel.cxx:1261
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
sd/source/ui/view/ViewShellBase.cxx:195 sd/source/ui/view/ViewShellBase.cxx:195
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager> sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
...@@ -156,15 +176,15 @@ vcl/source/gdi/jobset.cxx:34 ...@@ -156,15 +176,15 @@ vcl/source/gdi/jobset.cxx:34
ImplOldJobSetupData cDeviceName char [32] ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:35 vcl/source/gdi/jobset.cxx:35
ImplOldJobSetupData cPortName char [32] ImplOldJobSetupData cPortName char [32]
vcl/source/gdi/pdfwriter_impl.cxx:5432 vcl/source/gdi/pdfwriter_impl.cxx:5423
(anonymous namespace)::(anonymous) extnID SECItem (anonymous namespace)::(anonymous) extnID SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5433 vcl/source/gdi/pdfwriter_impl.cxx:5424
(anonymous namespace)::(anonymous) critical SECItem (anonymous namespace)::(anonymous) critical SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5434 vcl/source/gdi/pdfwriter_impl.cxx:5425
(anonymous namespace)::(anonymous) extnValue SECItem (anonymous namespace)::(anonymous) extnValue SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5803 vcl/source/gdi/pdfwriter_impl.cxx:5794
(anonymous namespace)::(anonymous) statusString SECItem (anonymous namespace)::(anonymous) statusString SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5804 vcl/source/gdi/pdfwriter_impl.cxx:5795
(anonymous namespace)::(anonymous) failInfo SECItem (anonymous namespace)::(anonymous) failInfo SECItem
vcl/source/uitest/uno/uitest_uno.cxx:35 vcl/source/uitest/uno/uitest_uno.cxx:35
UITestUnoObj mpUITest std::unique_ptr<UITest> UITestUnoObj mpUITest std::unique_ptr<UITest>
......
...@@ -6,6 +6,10 @@ basctl/source/inc/bastype2.hxx:180 ...@@ -6,6 +6,10 @@ basctl/source/inc/bastype2.hxx:180
basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/dlged.hxx:121 basctl/source/inc/dlged.hxx:121
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory> basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
basic/qa/cppunit/test_scanner.cxx:26
(anonymous namespace)::Symbol line sal_uInt16
basic/qa/cppunit/test_scanner.cxx:27
(anonymous namespace)::Symbol col1 sal_uInt16
basic/source/runtime/dllmgr.hxx:48 basic/source/runtime/dllmgr.hxx:48
SbiDllMgr impl_ std::unique_ptr<Impl> SbiDllMgr impl_ std::unique_ptr<Impl>
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:56 bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:56
...@@ -196,6 +200,8 @@ dbaccess/source/sdbtools/connection/objectnames.hxx:44 ...@@ -196,6 +200,8 @@ dbaccess/source/sdbtools/connection/objectnames.hxx:44
sdbtools::ObjectNames m_aModuleClient class sdbtools::SdbtClient sdbtools::ObjectNames m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/sdbtools/connection/tablename.cxx:56 dbaccess/source/sdbtools/connection/tablename.cxx:56
sdbtools::TableName_Impl m_aModuleClient class sdbtools::SdbtClient sdbtools::TableName_Impl m_aModuleClient class sdbtools::SdbtClient
desktop/qa/desktop_lib/test_desktop_lib.cxx:175
DesktopLOKTest m_bModified _Bool
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:120 desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:120
dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread> dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
desktop/unx/source/splashx.c:369 desktop/unx/source/splashx.c:369
...@@ -268,7 +274,7 @@ include/sfx2/msg.hxx:117 ...@@ -268,7 +274,7 @@ include/sfx2/msg.hxx:117
SfxType0 createSfxPoolItemFunc std::function<SfxPoolItem *(void)> SfxType0 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:119 include/sfx2/msg.hxx:119
SfxType0 nAttribs sal_uInt16 SfxType0 nAttribs sal_uInt16
include/svtools/unoevent.hxx:159 include/svtools/unoevent.hxx:161
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface> SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
include/svx/bmpmask.hxx:129 include/svx/bmpmask.hxx:129
SvxBmpMask aSelItem class SvxBmpMaskSelectItem SvxBmpMask aSelItem class SvxBmpMaskSelectItem
...@@ -280,10 +286,6 @@ include/svx/srchdlg.hxx:231 ...@@ -280,10 +286,6 @@ include/svx/srchdlg.hxx:231
SvxSearchDialog pSearchController class SvxSearchController * SvxSearchDialog pSearchController class SvxSearchController *
include/svx/srchdlg.hxx:232 include/svx/srchdlg.hxx:232
SvxSearchDialog pOptionsController class SvxSearchController * SvxSearchDialog pOptionsController class SvxSearchController *
include/unotest/macros_test.hxx:21
TestMacroInfo sFileBaseName class rtl::OUString
include/unotest/macros_test.hxx:22
TestMacroInfo sMacroUrl class rtl::OUString
include/vcl/menu.hxx:462 include/vcl/menu.hxx:462
MenuBar::MenuBarButtonCallbackArg bHighlight _Bool MenuBar::MenuBarButtonCallbackArg bHighlight _Bool
include/vcl/salnativewidgets.hxx:415 include/vcl/salnativewidgets.hxx:415
...@@ -302,6 +304,32 @@ include/xmloff/shapeimport.hxx:181 ...@@ -302,6 +304,32 @@ include/xmloff/shapeimport.hxx:181
SdXML3DSceneAttributesHelper mbVPNUsed _Bool SdXML3DSceneAttributesHelper mbVPNUsed _Bool
include/xmloff/shapeimport.hxx:182 include/xmloff/shapeimport.hxx:182
SdXML3DSceneAttributesHelper mbVUPUsed _Bool SdXML3DSceneAttributesHelper mbVUPUsed _Bool
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:50
GtvApplicationWindow parent_instance GtkApplicationWindow
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:54
GtvApplicationWindow doctype LibreOfficeKitDocumentType
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:61
GtvApplicationWindow statusbar GtkWidget *
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:73
GtvApplicationWindowClass parentClass GtkApplicationWindow
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
GtvApplication parent GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
GtvApplicationClass parentClass GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
GtvCalcHeaderBar parent GtkDrawingArea
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
GtvCalcHeaderBarClass parentClass GtkDrawingAreaClass
libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.hxx:26
GtvCommentsSidebar parent GtkBox
libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.hxx:35
GtvCommentsSidebarClass parentClass GtkBoxClass
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.cxx:36
GtvMainToolbarPrivateImpl m_pPartModeSelector GtkWidget *
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:28
GtvMainToolbar parent GtkBox
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:36
GtvMainToolbarClass parentClass GtkBoxClass
lingucomponent/source/languageguessing/simpleguesser.cxx:79 lingucomponent/source/languageguessing/simpleguesser.cxx:79
textcat_t maxsize uint4 textcat_t maxsize uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:81 lingucomponent/source/languageguessing/simpleguesser.cxx:81
...@@ -384,8 +412,8 @@ sc/inc/pivot.hxx:74 ...@@ -384,8 +412,8 @@ sc/inc/pivot.hxx:74
ScDPLabelData mnFlags sal_Int32 ScDPLabelData mnFlags sal_Int32
sc/inc/pivot.hxx:77 sc/inc/pivot.hxx:77
ScDPLabelData mbIsValue _Bool ScDPLabelData mbIsValue _Bool
sc/inc/types.hxx:107 sc/qa/unit/ucalc_column.cxx:103
sc::MultiDataCellState mnTab1 SCTAB aInputs aName const char *
sc/source/core/data/cellvalues.cxx:25 sc/source/core/data/cellvalues.cxx:25
sc::(anonymous namespace)::BlockPos mnEnd size_t sc::(anonymous namespace)::BlockPos mnEnd size_t
sc/source/core/data/column4.cxx:1291 sc/source/core/data/column4.cxx:1291
...@@ -446,8 +474,10 @@ sc/source/filter/xml/xmldrani.hxx:76 ...@@ -446,8 +474,10 @@ sc/source/filter/xml/xmldrani.hxx:76
ScXMLDatabaseRangeContext bIsSelection _Bool ScXMLDatabaseRangeContext bIsSelection _Bool
sc/source/filter/xml/xmlexternaltabi.hxx:118 sc/source/filter/xml/xmlexternaltabi.hxx:118
ScXMLExternalRefCellContext mnCellType sal_Int16 ScXMLExternalRefCellContext mnCellType sal_Int16
sc/source/ui/inc/dataprovider.hxx:46 sc/source/ui/inc/dataprovider.hxx:47
sc::ExternalDataMapper maDocument class ScDocument sc::ExternalDataMapper maDocument class ScDocument
sc/source/ui/inc/dataprovider.hxx:170
sc::ScDBDataManager mpDBData class ScDBData *
sc/source/ui/inc/docsh.hxx:438 sc/source/ui/inc/docsh.hxx:438
ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector> ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector>
sc/source/ui/inc/filtdlg.hxx:198 sc/source/ui/inc/filtdlg.hxx:198
...@@ -478,19 +508,21 @@ sd/source/ui/remotecontrol/ZeroconfService.hxx:36 ...@@ -478,19 +508,21 @@ sd/source/ui/remotecontrol/ZeroconfService.hxx:36
sd::ZeroconfService port uint sd::ZeroconfService port uint
sd/source/ui/sidebar/MasterPageContainerProviders.hxx:136 sd/source/ui/sidebar/MasterPageContainerProviders.hxx:136
sd::sidebar::TemplatePreviewProvider msURL class rtl::OUString sd::sidebar::TemplatePreviewProvider msURL class rtl::OUString
sd/source/ui/sidebar/SlideBackground.hxx:100
sd::sidebar::SlideBackground m_pContainer VclPtr<class VclVBox>
sd/source/ui/slidesorter/view/SlsLayouter.cxx:61 sd/source/ui/slidesorter/view/SlsLayouter.cxx:61
sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme> sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme>
sd/source/ui/table/TableDesignPane.hxx:113 sd/source/ui/table/TableDesignPane.hxx:113
sd::TableDesignPane aImpl class sd::TableDesignWidget sd::TableDesignPane aImpl class sd::TableDesignWidget
sd/source/ui/view/DocumentRenderer.cxx:1323 sd/source/ui/view/DocumentRenderer.cxx:1323
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
sd/source/ui/view/viewshel.cxx:1233 sd/source/ui/view/viewshel.cxx:1258
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1234 sd/source/ui/view/viewshel.cxx:1259
sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
sd/source/ui/view/viewshel.cxx:1235 sd/source/ui/view/viewshel.cxx:1260
sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
sd/source/ui/view/viewshel.cxx:1236 sd/source/ui/view/viewshel.cxx:1261
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
sd/source/ui/view/ViewShellBase.cxx:195 sd/source/ui/view/ViewShellBase.cxx:195
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager> sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
...@@ -510,8 +542,6 @@ slideshow/source/engine/opengl/TransitionImpl.hxx:297 ...@@ -510,8 +542,6 @@ slideshow/source/engine/opengl/TransitionImpl.hxx:297
Vertex texcoord glm::vec2 Vertex texcoord glm::vec2
soltools/cpp/cpp.h:143 soltools/cpp/cpp.h:143
macroValidator pMacro Nlist * macroValidator pMacro Nlist *
starmath/inc/error.hxx:48
SmErrorDesc m_eType enum SmParseError
starmath/inc/view.hxx:163 starmath/inc/view.hxx:163
SmCmdBoxWindow aController class SmEditController SmCmdBoxWindow aController class SmEditController
starmath/inc/view.hxx:224 starmath/inc/view.hxx:224
...@@ -638,7 +668,7 @@ vcl/inc/sft.hxx:486 ...@@ -638,7 +668,7 @@ vcl/inc/sft.hxx:486
vcl::TrueTypeFont mapper sal_uInt32 (*)(const sal_uInt8 *, sal_uInt32, sal_uInt32) vcl::TrueTypeFont mapper sal_uInt32 (*)(const sal_uInt8 *, sal_uInt32, sal_uInt32)
vcl/opengl/salbmp.cxx:412 vcl/opengl/salbmp.cxx:412
(anonymous namespace)::ScanlineWriter mpCurrentScanline sal_uInt8 * (anonymous namespace)::ScanlineWriter mpCurrentScanline sal_uInt8 *
vcl/source/filter/graphicfilter.cxx:1036 vcl/source/filter/graphicfilter.cxx:1034
ImpFilterLibCache mpLast struct ImpFilterLibCacheEntry * ImpFilterLibCache mpLast struct ImpFilterLibCacheEntry *
vcl/source/filter/jpeg/Exif.hxx:56 vcl/source/filter/jpeg/Exif.hxx:56
Exif::ExifIFD type sal_uInt16 Exif::ExifIFD type sal_uInt16
...@@ -652,27 +682,27 @@ vcl/source/gdi/jobset.cxx:34 ...@@ -652,27 +682,27 @@ vcl/source/gdi/jobset.cxx:34
ImplOldJobSetupData cDeviceName char [32] ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:35 vcl/source/gdi/jobset.cxx:35
ImplOldJobSetupData cPortName char [32] ImplOldJobSetupData cPortName char [32]
vcl/source/gdi/pdfwriter_impl.cxx:5432 vcl/source/gdi/pdfwriter_impl.cxx:5423
(anonymous namespace)::(anonymous) extnID SECItem (anonymous namespace)::(anonymous) extnID SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5433 vcl/source/gdi/pdfwriter_impl.cxx:5424
(anonymous namespace)::(anonymous) critical SECItem (anonymous namespace)::(anonymous) critical SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5434 vcl/source/gdi/pdfwriter_impl.cxx:5425
(anonymous namespace)::(anonymous) extnValue SECItem (anonymous namespace)::(anonymous) extnValue SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5456 vcl/source/gdi/pdfwriter_impl.cxx:5447
(anonymous namespace)::(anonymous) version SECItem (anonymous namespace)::(anonymous) version SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5458 vcl/source/gdi/pdfwriter_impl.cxx:5449
(anonymous namespace)::(anonymous) reqPolicy SECItem (anonymous namespace)::(anonymous) reqPolicy SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5459 vcl/source/gdi/pdfwriter_impl.cxx:5450
(anonymous namespace)::(anonymous) nonce SECItem (anonymous namespace)::(anonymous) nonce SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5460 vcl/source/gdi/pdfwriter_impl.cxx:5451
(anonymous namespace)::(anonymous) certReq SECItem (anonymous namespace)::(anonymous) certReq SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5461 vcl/source/gdi/pdfwriter_impl.cxx:5452
(anonymous namespace)::(anonymous) extensions (anonymous namespace)::Extension * (anonymous namespace)::(anonymous) extensions (anonymous namespace)::Extension *
vcl/source/gdi/pdfwriter_impl.cxx:5505 vcl/source/gdi/pdfwriter_impl.cxx:5496
(anonymous namespace)::SigningCertificateV2 certs struct (anonymous namespace)::ESSCertIDv2 ** (anonymous namespace)::SigningCertificateV2 certs struct (anonymous namespace)::ESSCertIDv2 **
vcl/source/gdi/pdfwriter_impl.cxx:5803 vcl/source/gdi/pdfwriter_impl.cxx:5794
(anonymous namespace)::(anonymous) statusString SECItem (anonymous namespace)::(anonymous) statusString SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5804 vcl/source/gdi/pdfwriter_impl.cxx:5795
(anonymous namespace)::(anonymous) failInfo SECItem (anonymous namespace)::(anonymous) failInfo SECItem
vcl/source/uitest/uno/uitest_uno.cxx:35 vcl/source/uitest/uno/uitest_uno.cxx:35
UITestUnoObj mpUITest std::unique_ptr<UITest> UITestUnoObj mpUITest std::unique_ptr<UITest>
...@@ -696,5 +726,3 @@ vcl/unx/gtk/hudawareness.cxx:23 ...@@ -696,5 +726,3 @@ vcl/unx/gtk/hudawareness.cxx:23
(anonymous) notify GDestroyNotify (anonymous) notify GDestroyNotify
writerfilter/source/dmapper/PropertyMap.hxx:185 writerfilter/source/dmapper/PropertyMap.hxx:185
writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32 writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
xmlsecurity/inc/sigstruct.hxx:110
SignatureInformation nDigestID sal_Int32
...@@ -115,8 +115,6 @@ private: ...@@ -115,8 +115,6 @@ private:
::sfx2::sidebar::ControllerItem maCloseMasterController; ::sfx2::sidebar::ControllerItem maCloseMasterController;
std::unique_ptr< SvxPageItem > mpPageItem; std::unique_ptr< SvxPageItem > mpPageItem;
std::unique_ptr< SvxLongLRSpaceItem > mpLRItem;
std::unique_ptr< SvxLongULSpaceItem > mpULItem;
std::unique_ptr< XFillColorItem > mpColorItem; std::unique_ptr< XFillColorItem > mpColorItem;
std::unique_ptr< XFillGradientItem > mpGradientItem; std::unique_ptr< XFillGradientItem > mpGradientItem;
std::unique_ptr< XFillHatchItem > mpHatchItem; std::unique_ptr< XFillHatchItem > mpHatchItem;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment