summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/unusedfields.writeonly.results
blob: ccc4881de5315a7796f0f4469359c8c21e73ede5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
basctl/source/basicide/moduldlg.hxx:134
    basctl::ObjectPage m_xDropTarget std::unique_ptr<SbTreeListBoxDropTarget>
basctl/source/inc/basidesh.hxx:86
    basctl::Shell m_aNotifier DocumentEventNotifier
basctl/source/inc/bastype2.hxx:182
    basctl::SbTreeListBox m_aNotifier DocumentEventNotifier
basctl/source/inc/IDEComboBox.hxx:113
    basctl::DocListenerBox maNotifier DocumentEventNotifier
basegfx/source/polygon/b2dpolygontriangulator.cxx:113
    basegfx::(anonymous namespace)::Triangulator maNewEdgeEntries std::vector<std::unique_ptr<EdgeEntry> >
basic/qa/cppunit/test_scanner.cxx:24
    (anonymous namespace)::Symbol line sal_uInt16
basic/qa/cppunit/test_scanner.cxx:25
    (anonymous namespace)::Symbol col1 sal_uInt16
basic/source/inc/runtime.hxx:255
    SbiRuntime aRefSaved std::vector<SbxVariableRef>
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:56
    Data pMethod sal_uInt64
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:57
    Data pStack sal_uInt64 *
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:58
    Data nStack sal_uInt32
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:59
    Data pGPR sal_uInt64 *
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:60
    Data pFPR double *
bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:448
    bridges::cpp_uno::shared::VtableFactory::Slot fn void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:130
    __cxxabiv1::__cxa_exception unexpectedHandler void (*)(void)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:131
    __cxxabiv1::__cxa_exception terminateHandler std::terminate_handler
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:132
    __cxxabiv1::__cxa_exception nextException __cxa_exception *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:133
    __cxxabiv1::__cxa_exception handlerCount int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:134
    __cxxabiv1::__cxa_exception handlerSwitchValue int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:135
    __cxxabiv1::__cxa_exception actionRecord const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:136
    __cxxabiv1::__cxa_exception languageSpecificData const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:137
    __cxxabiv1::__cxa_exception catchTemp void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:139
    __cxxabiv1::__cxa_exception unwindHeader _Unwind_Exception
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:149
    __cxxabiv1::__cxa_eh_globals uncaughtExceptions unsigned int
bridges/source/jni_uno/jni_java2uno.cxx:151
    jni_uno::(anonymous namespace)::largest n sal_Int64
bridges/source/jni_uno/jni_java2uno.cxx:152
    jni_uno::(anonymous namespace)::largest d double
bridges/source/jni_uno/jni_java2uno.cxx:153
    jni_uno::(anonymous namespace)::largest p void *
bridges/source/jni_uno/jni_java2uno.cxx:154
    jni_uno::(anonymous namespace)::largest a uno_Any
canvas/inc/rendering/irendermodule.hxx:36
    canvas::Vertex a float
canvas/inc/rendering/irendermodule.hxx:36
    canvas::Vertex b float
canvas/inc/rendering/irendermodule.hxx:36
    canvas::Vertex g float
canvas/inc/rendering/irendermodule.hxx:36
    canvas::Vertex r float
canvas/inc/rendering/irendermodule.hxx:37
    canvas::Vertex u float
canvas/inc/rendering/irendermodule.hxx:37
    canvas::Vertex v float
canvas/inc/rendering/irendermodule.hxx:38
    canvas::Vertex x float
canvas/inc/rendering/irendermodule.hxx:38
    canvas::Vertex y float
canvas/inc/rendering/irendermodule.hxx:38
    canvas::Vertex z float
canvas/source/cairo/cairo_canvasbitmap.hxx:119
    cairocanvas::CanvasBitmap mpBufferCairo ::cairo::CairoSharedPtr
canvas/source/cairo/cairo_spritedevicehelper.hxx:73
    cairocanvas::SpriteDeviceHelper mbFullScreen _Bool
canvas/source/cairo/cairo_spritehelper.hxx:98
    cairocanvas::SpriteHelper mbTextureDirty _Bool
chart2/inc/ChartModel.hxx:149
    chart::ChartModel m_aGraphicObjectVector std::vector<GraphicObject>
chart2/inc/ChartModel.hxx:480
    chart::ChartModel mnStart sal_Int32
chart2/inc/ChartModel.hxx:481
    chart::ChartModel mnEnd sal_Int32
chart2/source/controller/dialogs/DialogModel.cxx:179
    (anonymous namespace)::lcl_RolesWithRangeAppend m_rDestCnt tContainerType *
chart2/source/controller/inc/ChartController.hxx:414
    chart::ChartController m_apDropTargetHelper std::unique_ptr<DropTargetHelper>
chart2/source/controller/inc/dlg_ChartType_UNO.hxx:62
    chart::ChartTypeUnoDlg m_xChartModel rtl::Reference< ::chart::ChartModel>
chart2/source/controller/inc/dlg_View3D.hxx:53
    chart::View3DDialog m_xIllumination std::unique_ptr<ThreeD_SceneIllumination_TabPage>
chart2/source/controller/main/ElementSelector.hxx:37
    chart::ListBoxEntryData nHierarchyDepth sal_Int32
chart2/source/inc/MediaDescriptorHelper.hxx:71
    apphelper::MediaDescriptorHelper ReadOnly _Bool
chart2/source/view/charttypes/PieChart.hxx:129
    chart::PieChart::PieLabelInfo fValue double
codemaker/source/cppumaker/dependencies.hxx:108
    codemaker::cppumaker::Dependencies m_voidDependency _Bool
codemaker/source/javamaker/classfile.cxx:508
     floatBytes float
codemaker/source/javamaker/classfile.cxx:540
     doubleBytes double
comphelper/qa/container/comphelper_ifcontainer.cxx:44
    (anonymous namespace)::ContainerListener m_pStats ContainerStats *const
comphelper/qa/unit/parallelsorttest.cxx:44
    ParallelSortTest mnThreads size_t
comphelper/source/misc/asyncnotification.cxx:69
    comphelper::EventNotifierImpl pKeepThisAlive std::shared_ptr<AsyncEventNotifierAutoJoin>
configmgr/source/components.cxx:164
    configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
connectivity/source/drivers/postgresql/pq_statics.hxx:142
    pq_sdbc_driver::Statics NO_NULLS OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:143
    pq_sdbc_driver::Statics NULABLE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:144
    pq_sdbc_driver::Statics NULLABLE_UNKNOWN OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:145
    pq_sdbc_driver::Statics SELECT OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:146
    pq_sdbc_driver::Statics UPDATE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:147
    pq_sdbc_driver::Statics INSERT OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:148
    pq_sdbc_driver::Statics DELETE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:149
    pq_sdbc_driver::Statics RULE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:150
    pq_sdbc_driver::Statics REFERENCES OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:151
    pq_sdbc_driver::Statics TRIGGER OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:152
    pq_sdbc_driver::Statics EXECUTE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:153
    pq_sdbc_driver::Statics USAGE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:154
    pq_sdbc_driver::Statics CREATE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:155
    pq_sdbc_driver::Statics TEMPORARY OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:188
    pq_sdbc_driver::Statics KEY_COLUMN OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:194
    pq_sdbc_driver::Statics CURSOR_NAME OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:195
    pq_sdbc_driver::Statics ESCAPE_PROCESSING OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:196
    pq_sdbc_driver::Statics FETCH_DIRECTION OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:197
    pq_sdbc_driver::Statics FETCH_SIZE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:198
    pq_sdbc_driver::Statics IS_BOOKMARKABLE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:200
    pq_sdbc_driver::Statics RESULT_SET_TYPE OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:212
    pq_sdbc_driver::Statics HELP_TEXT OUString
connectivity/source/inc/calc/CConnection.hxx:51
    connectivity::calc::OCalcConnection::CloseVetoButTerminateListener m_pCloseListener std::unique_ptr<utl::CloseVeto>
connectivity/source/inc/odbc/OConnection.hxx:53
    connectivity::odbc::OConnection m_sUser OUString
connectivity/source/inc/odbc/ODatabaseMetaDataResultSet.hxx:70
    connectivity::odbc::ODatabaseMetaDataResultSet m_aStatement css::uno::WeakReferenceHelper
connectivity/source/inc/OTypeInfo.hxx:30
    connectivity::OTypeInfo aTypeName OUString
connectivity/source/inc/OTypeInfo.hxx:31
    connectivity::OTypeInfo aLocalTypeName OUString
connectivity/source/inc/OTypeInfo.hxx:33
    connectivity::OTypeInfo nPrecision sal_Int32
connectivity/source/inc/OTypeInfo.hxx:35
    connectivity::OTypeInfo nMaximumScale sal_Int16
connectivity/source/inc/OTypeInfo.hxx:37
    connectivity::OTypeInfo nType sal_Int16
connectivity/source/inc/writer/WConnection.hxx:54
    connectivity::writer::OWriterConnection::CloseVetoButTerminateListener m_pCloseListener std::unique_ptr<utl::CloseVeto>
cppcanvas/source/inc/implrenderer.hxx:209
    cppcanvas::internal::ImplRenderer aBaseTransform XForm
cppu/source/uno/check.cxx:38
    (anonymous namespace)::C1 n1 sal_Int16
cppu/source/uno/check.cxx:42
    (anonymous namespace)::C2 n2 sal_Int32
cppu/source/uno/check.cxx:46
    (anonymous namespace)::C3 d3 double
cppu/source/uno/check.cxx:47
    (anonymous namespace)::C3 n3 sal_Int32
cppu/source/uno/check.cxx:51
    (anonymous namespace)::C4 n4 sal_Int32
cppu/source/uno/check.cxx:52
    (anonymous namespace)::C4 d4 double
cppu/source/uno/check.cxx:56
    (anonymous namespace)::C5 n5 sal_Int64
cppu/source/uno/check.cxx:57
    (anonymous namespace)::C5 b5 sal_Bool
cppu/source/uno/check.cxx:61
    (anonymous namespace)::C6 c6 C5
cppu/source/uno/check.cxx:62
    (anonymous namespace)::C6 b6 sal_Bool
cppu/source/uno/check.cxx:67
    (anonymous namespace)::D d sal_Int16
cppu/source/uno/check.cxx:68
    (anonymous namespace)::D e sal_Int32
cppu/source/uno/check.cxx:73
    (anonymous namespace)::E a sal_Bool
cppu/source/uno/check.cxx:75
    (anonymous namespace)::E b sal_Bool
cppu/source/uno/check.cxx:77
    (anonymous namespace)::E c sal_Bool
cppu/source/uno/check.cxx:78
    (anonymous namespace)::E d sal_Int16
cppu/source/uno/check.cxx:79
    (anonymous namespace)::E e sal_Int32
cppu/source/uno/check.cxx:84
    (anonymous namespace)::M n sal_Int32
cppu/source/uno/check.cxx:85
    (anonymous namespace)::M o sal_Int16
cppu/source/uno/check.cxx:90
    (anonymous namespace)::N p sal_Int16
cppu/source/uno/check.cxx:94
    (anonymous namespace)::N2 m M
cppu/source/uno/check.cxx:95
    (anonymous namespace)::N2 p sal_Int16
cppu/source/uno/check.cxx:100
    (anonymous namespace)::O p double
cppu/source/uno/check.cxx:101
    (anonymous namespace)::O q sal_Int16
cppu/source/uno/check.cxx:105
    (anonymous namespace)::O2 p2 sal_Int16
cppu/source/uno/check.cxx:110
    (anonymous namespace)::P p2 double
cppu/source/uno/check.cxx:118
    (anonymous namespace)::second a int
cppu/source/uno/check.cxx:129
    (anonymous namespace)::Char1 c1 char
cppu/source/uno/check.cxx:133
    (anonymous namespace)::Char2 c2 char
cppu/source/uno/check.cxx:137
    (anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:267
    (anonymous namespace)::Char4 chars Char3
cppu/source/uno/check.cxx:271
    (anonymous namespace)::Char4 c char
cppu/source/uno/copy.hxx:38
    cppu::(anonymous namespace)::SequencePrefix nRefCount sal_Int32
cppu/source/uno/copy.hxx:39
    cppu::(anonymous namespace)::SequencePrefix nElements sal_Int32
cppuhelper/source/access_control.cxx:79
    cppu::(anonymous namespace)::permission m_str1 rtl_uString *
cppuhelper/source/access_control.cxx:80
    cppu::(anonymous namespace)::permission m_str2 rtl_uString *
cppuhelper/source/typemanager.cxx:845
    (anonymous namespace)::BaseOffset set_ std::set<OUString>
cui/source/inc/cfg.hxx:404
    SvxConfigPage m_xDropTargetHelper std::unique_ptr<SvxConfigPageFunctionDropTarget>
cui/source/inc/cuihyperdlg.hxx:46
    SvxHlinkCtrl aRdOnlyForwarder SfxStatusForwarder
cui/source/inc/cuihyperdlg.hxx:77
    SvxHpLinkDlg maCtrl SvxHlinkCtrl
cui/source/inc/GraphicsTestsDialog.hxx:42
    GraphicsTestsDialog m_xGraphicTestEntries std::vector<std::unique_ptr<GraphicTestEntry> >
cui/source/inc/screenshotannotationdlg.hxx:29
    ScreenshotAnnotationDlg m_pImpl std::unique_ptr<ScreenshotAnnotationDlg_Impl>
dbaccess/source/core/dataaccess/databasedocument.hxx:177
    dbaccess::ODatabaseDocument m_pEventExecutor ::rtl::Reference<DocumentEventExecutor>
dbaccess/source/core/dataaccess/documentdefinition.cxx:291
    dbaccess::(anonymous namespace)::LifetimeCoupler m_xClient Reference<XInterface>
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:83
    dbaccess::OSingleSelectQueryComposer m_aColumnsCollection std::vector<std::unique_ptr<OPrivateColumns> >
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:85
    dbaccess::OSingleSelectQueryComposer m_aTablesCollection std::vector<std::unique_ptr<OPrivateTables> >
dbaccess/source/core/inc/TableDeco.hxx:65
    dbaccess::ODBTableDecorator m_xColumnMediator css::uno::Reference<css::container::XContainerListener>
dbaccess/source/filter/xml/dbloader2.cxx:200
    dbaxml::(anonymous namespace)::DBContentLoader m_xMySelf Reference<XFrameLoader>
dbaccess/source/ui/app/AppDetailView.hxx:107
    dbaui::OApplicationDetailView m_aExternalMnemonics MnemonicGenerator
dbaccess/source/ui/browser/dbloader.cxx:59
    (anonymous namespace)::DBContentLoader m_xListener Reference<XLoadEventListener>
desktop/qa/desktop_lib/test_desktop_lib.cxx:308
    DesktopLOKTest m_bModified _Bool
desktop/source/app/app.cxx:1229
    desktop::(anonymous namespace)::ExecuteGlobals pCTLLanguageOptions std::unique_ptr<SvtCTLOptions>
desktop/source/app/app.cxx:1230
    desktop::(anonymous namespace)::ExecuteGlobals pPathOptions std::unique_ptr<SvtPathOptions>
desktop/source/deployment/gui/dp_gui_extlistbox.hxx:137
    dp_gui::ExtensionBox_Impl m_vRemovedEntries std::vector<TEntry_Impl>
desktop/source/deployment/gui/dp_gui_updatedialog.hxx:148
    dp_gui::UpdateDialog m_xExtensionManager css::uno::Reference<css::deployment::XExtensionManager>
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:102
    dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
desktop/source/deployment/manager/dp_managerfac.cxx:44
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xUserMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:45
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xSharedMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:46
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xBundledMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:47
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xTmpMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:48
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xBakMgr Reference<deployment::XPackageManager>
desktop/unx/source/splashx.c:371
     decorations unsigned long
desktop/unx/source/splashx.c:371
     flags unsigned long
desktop/unx/source/splashx.c:371
     functions unsigned long
desktop/unx/source/splashx.c:372
     input_mode long
drawinglayer/inc/texture/texture.hxx:58
    drawinglayer::texture::GeoTexSvxGradient maDefinitionRange basegfx::B2DRange
drawinglayer/inc/texture/texture.hxx:61
    drawinglayer::texture::GeoTexSvxGradient mfBorder double
drawinglayer/inc/texture/texture.hxx:210
    drawinglayer::texture::GeoTexSvxHatch mfAngle double
drawinglayer/source/attribute/sdrfillgraphicattribute.cxx:45
    drawinglayer::attribute::ImpSdrFillGraphicAttribute mbLogSize _Bool
drawinglayer/source/attribute/sdrsceneattribute3d.cxx:29
    drawinglayer::attribute::ImpSdrSceneAttribute mfDistance double
drawinglayer/source/tools/emfpcustomlinecap.hxx:32
    emfplushelper::EMFPCustomLineCap mbIsFilled _Bool
embeddedobj/source/inc/oleembobj.hxx:133
    OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:145
    OleEmbeddedObject m_xClosePreventer css::uno::Reference<css::util::XCloseListener>
embeddedobj/source/inc/oleembobj.hxx:167
    OleEmbeddedObject m_bHasSizeToSet _Bool
embeddedobj/source/inc/oleembobj.hxx:168
    OleEmbeddedObject m_aSizeToSet css::awt::Size
embeddedobj/source/inc/oleembobj.hxx:169
    OleEmbeddedObject m_nAspectToSet sal_Int64
embeddedobj/source/inc/oleembobj.hxx:174
    OleEmbeddedObject m_bGotStatus _Bool
embeddedobj/source/inc/oleembobj.hxx:175
    OleEmbeddedObject m_nStatus sal_Int64
embeddedobj/source/inc/oleembobj.hxx:176
    OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:190
    OleEmbeddedObject m_bFromClipboard _Bool
emfio/inc/mtftools.hxx:688
    emfio::MtfTools mrclBounds tools::Rectangle
extensions/source/propctrlr/genericpropertyhandler.hxx:65
    pcr::GenericPropertyHandler m_xComponentIntrospectionAccess css::uno::Reference<css::beans::XIntrospectionAccess>
extensions/source/scanner/scanner.hxx:45
    ScannerManager mpData void *
framework/inc/services/layoutmanager.hxx:247
    framework::LayoutManager m_bGlobalSettings _Bool
framework/inc/services/layoutmanager.hxx:261
    framework::LayoutManager m_pGlobalSettings std::unique_ptr<GlobalSettings>
framework/inc/uielement/langselectionmenucontroller.hxx:69
    framework::LanguageSelectionMenuController m_xMenuDispatch_Lang css::uno::Reference<css::frame::XDispatch>
framework/inc/uielement/langselectionmenucontroller.hxx:71
    framework::LanguageSelectionMenuController m_xMenuDispatch_Font css::uno::Reference<css::frame::XDispatch>
framework/inc/uielement/langselectionmenucontroller.hxx:73
    framework::LanguageSelectionMenuController m_xMenuDispatch_CharDlgForParagraph css::uno::Reference<css::frame::XDispatch>
framework/inc/xml/imagesdocumenthandler.hxx:124
    framework::OWriteImagesDocumentHandler m_xEmptyList css::uno::Reference<css::xml::sax::XAttributeList>
framework/inc/xml/statusbardocumenthandler.hxx:125
    framework::OWriteStatusBarDocumentHandler m_xEmptyList css::uno::Reference<css::xml::sax::XAttributeList>
framework/source/layoutmanager/toolbarlayoutmanager.hxx:271
    framework::ToolbarLayoutManager m_pGlobalSettings std::unique_ptr<GlobalSettings>
framework/source/layoutmanager/toolbarlayoutmanager.hxx:275
    framework::ToolbarLayoutManager m_bGlobalSettings _Bool
i18nutil/source/utility/paper.cxx:314
    paperword string char *
include/basegfx/DrawCommands.hxx:82
    gfx::LinearGradientInfo maMatrix basegfx::B2DHomMatrix
include/basic/basmgr.hxx:58
    BasicError nReason BasicErrorReason
include/basic/sbxvar.hxx:75
    SbxValues::(anonymous) pData void *
include/basic/sbxvar.hxx:247
    SbxVariable m_xComListener css::uno::Reference<css::uno::XInterface>
include/basic/sbxvar.hxx:248
    SbxVariable m_pComListenerParentBasic StarBASIC *
include/comphelper/parallelsort.hxx:88
    comphelper::(anonymous namespace)::ProfileZone mbDummy _Bool
include/comphelper/unique_disposing_ptr.hxx:31
    comphelper::unique_disposing_ptr m_xTerminateListener css::uno::Reference<css::frame::XTerminateListener>
include/drawinglayer/attribute/sdrallattribute3d.hxx:42
    drawinglayer::attribute::SdrLineFillShadowAttribute3D maLineStartEnd const SdrLineStartEndAttribute
include/drawinglayer/primitive2d/mediaprimitive2d.hxx:48
    drawinglayer::primitive2d::MediaPrimitive2D maURL OUString
include/editeng/outlobj.hxx:44
    OutlinerParaObjData mbIsEditDoc _Bool
include/editeng/unotext.hxx:421
    SvxUnoTextBase xParentText css::uno::Reference<css::text::XText>
include/editeng/unotext.hxx:590
    SvxUnoTextContentEnumeration mxParentText css::uno::Reference<css::text::XText>
include/framework/addonsoptions.hxx:75
    framework::MergeNotebookBarInstruction aMergePoint OUString
include/framework/addonsoptions.hxx:76
    framework::MergeNotebookBarInstruction aMergeCommand OUString
include/framework/addonsoptions.hxx:77
    framework::MergeNotebookBarInstruction aMergeCommandParameter OUString
include/framework/addonsoptions.hxx:78
    framework::MergeNotebookBarInstruction aMergeFallback OUString
include/framework/addonsoptions.hxx:79
    framework::MergeNotebookBarInstruction aMergeContext OUString
include/framework/dispatchhelper.hxx:73
    framework::DispatchHelper m_xBroadcaster css::uno::Reference<css::uno::XInterface>
include/framework/framelistanalyzer.hxx:122
    framework::FrameListAnalyzer m_xHelp css::uno::Reference<css::frame::XFrame>
include/LibreOfficeKit/LibreOfficeKit.h:338
    _LibreOfficeKitDocumentClass getPartInfo char *(*)(LibreOfficeKitDocument *, int)
include/LibreOfficeKit/LibreOfficeKit.h:343
    _LibreOfficeKitDocumentClass paintWindowDPI void (*)(LibreOfficeKitDocument *, unsigned int, unsigned char *, const int, const int, const int, const int, const double)
include/opencl/openclwrapper.hxx:34
    openclwrapper::KernelEnv mpkProgram cl_program
include/opencl/openclwrapper.hxx:50
    openclwrapper::GPUEnv mbNeedsTDRAvoidance _Bool
include/opencl/platforminfo.hxx:29
    OpenCLDeviceInfo mnMemory size_t
include/opencl/platforminfo.hxx:30
    OpenCLDeviceInfo mnComputeUnits size_t
include/opencl/platforminfo.hxx:31
    OpenCLDeviceInfo mnFrequency size_t
include/sfx2/minfitem.hxx:38
    SfxMacroInfoItem aCommentText OUString
include/svtools/brwbox.hxx:327
    BrowseBox::CursorMoveAttempt m_nCol sal_Int32
include/svtools/brwbox.hxx:328
    BrowseBox::CursorMoveAttempt m_nRow sal_Int32
include/svtools/brwbox.hxx:329
    BrowseBox::CursorMoveAttempt m_bScrolledToReachCell _Bool
include/svtools/ctrltool.hxx:147
    FontList mpDev VclPtr<OutputDevice>
include/svtools/ctrltool.hxx:148
    FontList mpDev2 VclPtr<OutputDevice>
include/svx/AccessibilityCheckDialog.hxx:44
    svx::AccessibilityCheckDialog m_aAccessibilityCheckEntries std::vector<std::unique_ptr<AccessibilityCheckEntry> >
include/svx/bmpmask.hxx:127
    SvxBmpMask aSelItem SvxBmpMaskSelectItem
include/svx/diagram/datamodel.hxx:115
    svx::diagram::Point msColorTransformCategoryId OUString
include/svx/diagram/datamodel.hxx:116
    svx::diagram::Point msColorTransformTypeId OUString
include/svx/diagram/datamodel.hxx:117
    svx::diagram::Point msLayoutCategoryId OUString
include/svx/diagram/datamodel.hxx:118
    svx::diagram::Point msLayoutTypeId OUString
include/svx/diagram/datamodel.hxx:119
    svx::diagram::Point msPlaceholderText OUString
include/svx/diagram/datamodel.hxx:123
    svx::diagram::Point msQuickStyleCategoryId OUString
include/svx/diagram/datamodel.hxx:124
    svx::diagram::Point msQuickStyleTypeId OUString
include/svx/diagram/datamodel.hxx:127
    svx::diagram::Point mnMaxChildren sal_Int32
include/svx/diagram/datamodel.hxx:128
    svx::diagram::Point mnPreferredChildren sal_Int32
include/svx/diagram/datamodel.hxx:131
    svx::diagram::Point mnResizeHandles sal_Int32
include/svx/diagram/datamodel.hxx:132
    svx::diagram::Point mnCustomAngle sal_Int32
include/svx/diagram/datamodel.hxx:133
    svx::diagram::Point mnPercentageNeighbourWidth sal_Int32
include/svx/diagram/datamodel.hxx:134
    svx::diagram::Point mnPercentageNeighbourHeight sal_Int32
include/svx/diagram/datamodel.hxx:135
    svx::diagram::Point mnPercentageOwnWidth sal_Int32
include/svx/diagram/datamodel.hxx:136
    svx::diagram::Point mnPercentageOwnHeight sal_Int32
include/svx/diagram/datamodel.hxx:137
    svx::diagram::Point mnIncludeAngleScale sal_Int32
include/svx/diagram/datamodel.hxx:138
    svx::diagram::Point mnRadiusScale sal_Int32
include/svx/diagram/datamodel.hxx:139
    svx::diagram::Point mnWidthScale sal_Int32
include/svx/diagram/datamodel.hxx:140
    svx::diagram::Point mnHeightScale sal_Int32
include/svx/diagram/datamodel.hxx:141
    svx::diagram::Point mnWidthOverride sal_Int32
include/svx/diagram/datamodel.hxx:142
    svx::diagram::Point mnHeightOverride sal_Int32
include/svx/diagram/datamodel.hxx:146
    svx::diagram::Point mbOrgChartEnabled _Bool
include/svx/diagram/datamodel.hxx:147
    svx::diagram::Point mbBulletEnabled _Bool
include/svx/diagram/datamodel.hxx:148
    svx::diagram::Point mbCoherent3DOffset _Bool
include/svx/diagram/datamodel.hxx:149
    svx::diagram::Point mbCustomHorizontalFlip _Bool
include/svx/diagram/datamodel.hxx:150
    svx::diagram::Point mbCustomVerticalFlip _Bool
include/svx/diagram/datamodel.hxx:152
    svx::diagram::Point mbIsPlaceholder _Bool
include/svx/diagram/datamodel.hxx:263
    svx::diagram::DiagramData maConnectionNameMap ConnectionNameMap
include/svx/fillctrl.hxx:83
    FillControl mxColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
include/svx/float3d.hxx:202
    Svx3DWin pControllerItem std::unique_ptr<Svx3DCtrlItem>
include/svx/fmtools.hxx:135
    FmXDisposeListener m_pAdapter rtl::Reference<FmXDisposeMultiplexer>
include/svx/galctrl.hxx:38
    GalleryPreview mxDragDropTargetHelper std::unique_ptr<GalleryDragDrop>
include/svx/galctrl.hxx:91
    GalleryIconView mxDragDropTargetHelper std::unique_ptr<GalleryDragDrop>
include/svx/GenericCheckDialog.hxx:91
    svx::GenericCheckDialog m_aCheckEntries std::vector<std::unique_ptr<GenericCheckEntry> >
include/svx/gridctrl.hxx:258
    DbGridControl m_pCursorDisposeListener std::unique_ptr<DisposeListenerGridBridge>
include/svx/ofaitem.hxx:44
    OfaXColorListItem mxRef rtl::Reference<XColorList>
include/svx/sidebar/AreaPropertyPanelBase.hxx:152
    svx::sidebar::AreaPropertyPanelBase mpUseSlideBackgroundItem std::unique_ptr<XFillUseSlideBackgroundItem>
include/svx/srchdlg.hxx:166
    SvxSearchDialog pSearchController std::unique_ptr<SvxSearchController>
include/svx/srchdlg.hxx:167
    SvxSearchDialog pOptionsController std::unique_ptr<SvxSearchController>
include/svx/svdmrkv.hxx:99
    SdrMarkView mpMarkingSubSelectionOverlay std::unique_ptr<MarkingSubSelectionOverlay>
include/test/beans/xpropertyset.hxx:56
    apitest::XPropertySet::PropsToTest constrained std::vector<OUString>
include/unotools/fontcfg.hxx:157
    utl::FontSubstConfiguration maSubstHash UniqueSubstHash
include/vcl/notebookbar/NotebookBarAddonsMerger.hxx:43
    AddonNotebookBarItem sTarget OUString
include/vcl/notebookbar/NotebookBarAddonsMerger.hxx:44
    AddonNotebookBarItem sContext OUString
include/vcl/notebookbar/NotebookBarAddonsMerger.hxx:45
    AddonNotebookBarItem sControlType OUString
include/vcl/notebookbar/NotebookBarAddonsMerger.hxx:46
    AddonNotebookBarItem nWidth sal_uInt16
include/vcl/opengl/OpenGLContext.hxx:27
    GLWindow bMultiSampleSupported _Bool
include/vcl/pdfextoutdevdata.hxx:82
    vcl::PDFExtOutDevData mbSinglePageSheets _Bool
include/vcl/sysdata.hxx:68
    SystemEnvData pSalFrame SalFrame *
include/vcl/textrectinfo.hxx:35
    TextRectInfo mnLineCount sal_uInt16
include/xmloff/shapeimport.hxx:95
    SdXML3DSceneAttributesHelper mbVRPUsed _Bool
io/source/stm/odata.cxx:242
    io_stm::(anonymous namespace)::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n1 sal_uInt32
io/source/stm/odata.cxx:242
    io_stm::(anonymous namespace)::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n2 sal_uInt32
jvmfwk/inc/vendorbase.hxx:173
    jfw_plugin::VendorBase m_sArch OUString
l10ntools/inc/common.hxx:32
    common::HandledArgs m_bUTF8BOM _Bool
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:28
    GtvRenderingArgs m_aBackgroundColor std::string
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:62
    GtvApplicationWindow statusbar GtkWidget *
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.cxx:37
    (anonymous namespace)::GtvMainToolbarPrivateImpl m_pPartModeSelector GtkWidget *
package/inc/ByteChucker.hxx:33
    ByteChucker p2Sequence sal_Int8 *const
package/inc/ByteChucker.hxx:33
    ByteChucker p4Sequence sal_Int8 *const
registry/source/reflread.cxx:460
    (anonymous namespace)::ConstantPool::readDoubleConstant(sal_uInt16)::(anonymous union)::(anonymous) b1 sal_uInt32
registry/source/reflread.cxx:461
    (anonymous namespace)::ConstantPool::readDoubleConstant(sal_uInt16)::(anonymous union)::(anonymous) b2 sal_uInt32
reportdesign/inc/RptObject.hxx:69
    rptui::OObjectBase m_xKeepShapeAlive css::uno::Reference<css::uno::XInterface>
sal/rtl/alloc_arena.hxx:35
    rtl_arena_stat_type m_mem_total sal_Size
sal/rtl/alloc_arena.hxx:36
    rtl_arena_stat_type m_mem_alloc sal_Size
sal/textenc/tcvtutf7.cxx:98
    (anonymous namespace)::ImplUTF7ToUCContextData mbShifted _Bool
sal/textenc/tcvtutf7.cxx:99
    (anonymous namespace)::ImplUTF7ToUCContextData mbFirst _Bool
sal/textenc/tcvtutf7.cxx:100
    (anonymous namespace)::ImplUTF7ToUCContextData mbWroteOne _Bool
sal/textenc/tcvtutf7.cxx:101
    (anonymous namespace)::ImplUTF7ToUCContextData mnBitBuffer sal_uInt32
sal/textenc/tcvtutf7.cxx:102
    (anonymous namespace)::ImplUTF7ToUCContextData mnBufferBits sal_uInt32
sal/textenc/tcvtutf7.cxx:421
    (anonymous namespace)::ImplUTF7FromUCContextData mbShifted _Bool
sal/textenc/tcvtutf7.cxx:422
    (anonymous namespace)::ImplUTF7FromUCContextData mnBitBuffer sal_uInt32
sal/textenc/tcvtutf7.cxx:423
    (anonymous namespace)::ImplUTF7FromUCContextData mnBufferBits sal_uInt32
sc/inc/compiler.hxx:267
    ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:268
    ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:270
    ScCompiler::AddInMap pUpper const char *
sc/inc/compressedarray.hxx:68
    ScCompressedArray::RangeData mnRow2 A
sc/inc/fillinfo.hxx:280
    ScTableInfo mDataBarInfos std::vector<std::unique_ptr<const ScDataBarInfo> >
sc/inc/fillinfo.hxx:281
    ScTableInfo mIconSetInfos std::vector<std::unique_ptr<const ScIconSetInfo> >
sc/inc/pivot.hxx:75
    ScDPLabelData mnFlags sal_Int32
sc/inc/pivot.hxx:78
    ScDPLabelData mbIsValue _Bool
sc/inc/scmatrix.hxx:105
    ScMatrix mbCloneIfConst _Bool
sc/inc/scmod.hxx:100
    ScModule m_pErrorHdl std::unique_ptr<SfxErrorHandler>
sc/inc/tabopparams.hxx:37
    ScInterpreterTableOpParams bValid _Bool
sc/source/core/data/column4.cxx:1436
    (anonymous namespace)::StartListeningFormulaCellsHandler mnStartRow SCROW
sc/source/core/data/column.cxx:1312
    (anonymous namespace)::CopyByCloneHandler meListenType sc::StartListeningType
sc/source/core/data/column.cxx:1313
    (anonymous namespace)::CopyByCloneHandler mnFormulaCellCloneFlags ScCloneFlags
sc/source/core/data/table2.cxx:4029
    (anonymous namespace)::OutlineArrayFinder mpArray ScOutlineArray *
sc/source/filter/excel/xltoolbar.hxx:24
    TBCCmd A _Bool
sc/source/filter/excel/xltoolbar.hxx:25
    TBCCmd B _Bool
sc/source/filter/excel/xltoolbar.hxx:26
    TBCCmd cmdType sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:27
    TBCCmd C _Bool
sc/source/filter/excel/xltoolbar.hxx:28
    TBCCmd reserved3 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:53
    ScCTB rVisualData std::vector<TBVisualData>
sc/source/filter/excel/xltools.cxx:103
     smD sal_math_Double
sc/source/filter/inc/exp_op.hxx:47
    ExportBiff5 pExcRoot RootData *
sc/source/filter/inc/imp_op.hxx:83
    ImportExcel::LastFormula mpCell ScFormulaCell *
sc/source/filter/inc/namebuff.hxx:37
    StringHashEntry aString OUString
sc/source/filter/inc/namebuff.hxx:38
    StringHashEntry nHash sal_uInt32
sc/source/filter/inc/orcusinterface.hxx:377
    ScOrcusStyles::fill maBgColor std::optional<Color>
sc/source/filter/inc/orcusinterface.hxx:432
    ScOrcusStyles::xf mnStyleXf size_t
sc/source/filter/inc/orcusinterface.hxx:452
    ScOrcusStyles::cell_style mnBuiltInId size_t
sc/source/filter/inc/tokstack.hxx:142
    TokenPool pP_Err TokenPoolPool<sal_uInt16, 8>
sc/source/filter/lotus/lotfilter.hxx:53
    LotusContext eActType Lotus123Typ
sc/source/filter/xml/xmlcondformat.hxx:110
    ScXMLIconSetFormatContext mpFormatData ScIconSetFormatData *
sc/source/filter/xml/XMLDetectiveContext.hxx:96
    ScXMLDetectiveHighlightedContext pDetectiveObjVec ScMyImpDetectiveObjVec *
sc/source/filter/xml/xmldpimp.hxx:247
    ScXMLDataPilotFieldContext mbHasHiddenMember _Bool
sc/source/filter/xml/xmldrani.hxx:71
    ScXMLDatabaseRangeContext bIsSelection _Bool
sc/source/filter/xml/xmlexternaltabi.hxx:110
    ScXMLExternalRefCellContext mnCellType sal_Int16
sc/source/ui/inc/AccessibleText.hxx:197
    ScAccessiblePreviewHeaderCellTextData mbRowHeader _Bool
sc/source/ui/inc/datastream.hxx:104
    sc::DataStream mnSettings sal_uInt32
sc/source/ui/inc/drawview.hxx:41
    ScDrawView pDropMarker std::unique_ptr<SdrDropMarkerOverlay>
sc/source/ui/inc/drwtrans.hxx:44
    ScDrawTransferObj m_aDrawPersistRef SfxObjectShellRef
sc/source/ui/inc/dwfunctr.hxx:52
    ScFunctionWin xConfigChange std::unique_ptr<EnglishFunctionNameChange>
sc/source/ui/inc/filtdlg.hxx:193
    ScSpecialFilterDlg pOptionsMgr std::unique_ptr<ScFilterOptionsMgr>
sc/source/ui/inc/instbdlg.hxx:57
    ScInsertTableDlg aDocShTablesRef SfxObjectShellRef
sc/source/ui/inc/linkarea.hxx:36
    ScLinkedAreaDlg aSourceRef SfxObjectShellRef
sc/source/ui/inc/pfuncache.hxx:48
    ScPrintSelectionStatus aRanges ScRangeList
sc/source/ui/inc/PivotLayoutTreeList.hxx:20
    ScPivotLayoutTreeList maItemValues std::vector<std::unique_ptr<ScItemValue> >
sc/source/ui/inc/PivotLayoutTreeListData.hxx:37
    ScPivotLayoutTreeListData maDataItemValues std::vector<std::unique_ptr<ScItemValue> >
sc/source/ui/inc/preview.hxx:46
    ScPreview nTabPage tools::Long
sc/source/ui/inc/tabvwsh.hxx:125
    ScTabViewShell xDisProvInterceptor css::uno::Reference<css::frame::XDispatchProviderInterceptor>
sc/source/ui/inc/transobj.hxx:46
    ScTransferObj m_aDrawPersistRef SfxObjectShellRef
sc/source/ui/inc/uiitems.hxx:46
    ScInputStatusItem aStartPos ScAddress
sc/source/ui/inc/uiitems.hxx:47
    ScInputStatusItem aEndPos ScAddress
sc/source/ui/sidebar/AlignmentPropertyPanel.hxx:76
    sc::sidebar::AlignmentPropertyPanel mxHorizontalAlignDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/AlignmentPropertyPanel.hxx:79
    sc::sidebar::AlignmentPropertyPanel mxVertAlignDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/AlignmentPropertyPanel.hxx:82
    sc::sidebar::AlignmentPropertyPanel mxWriteDirectionDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/AlignmentPropertyPanel.hxx:85
    sc::sidebar::AlignmentPropertyPanel mxIndentButtonsDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx:75
    sc::sidebar::CellAppearancePropertyPanel mxBackColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx:79
    sc::sidebar::CellAppearancePropertyPanel mxLineColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx:65
    sc::sidebar::NumberFormatPropertyPanel mxCategoryDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/vba/vbachartobject.hxx:43
    ScVbaChartObject oShapeHelper std::unique_ptr<ov::ShapeHelper>
sd/inc/sdmod.hxx:145
    SdModule mpErrorHdl std::unique_ptr<SfxErrorHandler>
sd/qa/unit/tiledrendering/tiledrendering.cxx:213
    SdTiledRenderingTest m_bFound _Bool
sd/qa/unit/tiledrendering/tiledrendering.cxx:214
    SdTiledRenderingTest m_nPart sal_Int32
sd/qa/unit/tiledrendering/tiledrendering.cxx:216
    SdTiledRenderingTest m_aSearchResultPart std::vector<int>
sd/qa/unit/tiledrendering/tiledrendering.cxx:217
    SdTiledRenderingTest m_nSelectionBeforeSearchResult int
sd/qa/unit/tiledrendering/tiledrendering.cxx:218
    SdTiledRenderingTest m_nSelectionAfterSearchResult int
sd/source/ui/dlg/RemoteDialogClientBox.hxx:66
    sd::ClientBox m_vEntries std::vector<TClientBoxEntry>
sd/source/ui/framework/module/ToolBarModule.hxx:72
    sd::framework::ToolBarModule mpToolBarManagerLock std::unique_ptr<ToolBarManager::UpdateLock, o3tl::default_delete<ToolBarManager::UpdateLock> >
sd/source/ui/inc/animobjs.hxx:122
    sd::AnimationWindow pControllerItem std::unique_ptr<AnimationControllerItem>
sd/source/ui/inc/custsdlg.hxx:62
    SdDefineCustomShowDlg bModified _Bool
sd/source/ui/inc/fudspord.hxx:50
    sd::FuDisplayOrder mpOverlay std::unique_ptr<SdrDropMarkerOverlay>
sd/source/ui/inc/navigatr.hxx:143
    SdNavigatorWin mpNavigatorCtrlItem std::unique_ptr<SdNavigatorControllerItem>
sd/source/ui/inc/navigatr.hxx:144
    SdNavigatorWin mpPageNameCtrlItem std::unique_ptr<SdPageNameControllerItem>
sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx:72
    sd::tools::TimerBasedTaskExecution mpSelf std::shared_ptr<TimerBasedTaskExecution>
sd/source/ui/inc/unopage.hxx:277
    SdPageLinkTargets mxPage css::uno::Reference<css::drawing::XDrawPage>
sd/source/ui/inc/ViewShellImplementation.hxx:78
    sd::ViewShell::Implementation::ToolBarManagerLock mpLock ::std::unique_ptr<ToolBarManager::UpdateLock, o3tl::default_delete<ToolBarManager::UpdateLock> >
sd/source/ui/inc/ViewShellImplementation.hxx:89
    sd::ViewShell::Implementation::ToolBarManagerLock mpSelf std::shared_ptr<ToolBarManagerLock>
sd/source/ui/remotecontrol/Receiver.hxx:34
    sd::Receiver pTransmitter Transmitter *
sd/source/ui/sidebar/MasterPageContainerProviders.hxx:144
    sd::sidebar::TemplatePreviewProvider msURL OUString
sd/source/ui/slideshow/slideshowimpl.hxx:331
    sd::SlideshowImpl mpPaneHider ::std::unique_ptr<PaneHider>
sd/source/ui/slideshow/SlideShowRestarter.hxx:72
    sd::SlideShowRestarter mpSelf ::std::shared_ptr<SlideShowRestarter>
sd/source/ui/slidesorter/controller/SlsListener.hxx:140
    sd::slidesorter::controller::Listener mpModelChangeLock std::shared_ptr<SlideSorterController::ModelChangeLock>
sd/source/ui/slidesorter/inc/controller/SlsClipboard.hxx:114
    sd::slidesorter::controller::Clipboard mxUndoContext std::unique_ptr<UndoContext>
sd/source/ui/view/ToolBarManager.cxx:317
    sd::ToolBarManager::Implementation mpAsynchronousLayouterLock ::std::unique_ptr<LayouterLock>
sdext/source/presenter/PresenterTimer.cxx:105
    sdext::presenter::(anonymous namespace)::TimerScheduler mpLateDestroy std::shared_ptr<TimerScheduler>
sfx2/inc/commandpopup/CommandPopup.hxx:108
    CommandPopupHandler mpListBox std::unique_ptr<CommandListBox>
sfx2/inc/notebookbar/NotebookbarTabControl.hxx:42
    NotebookbarTabControl m_pListener css::uno::Reference<css::ui::XUIConfigurationListener>
sfx2/source/appl/fileobj.hxx:40
    SvFileObject mxDelMed tools::SvRef<SfxMedium>
sfx2/source/doc/sfxbasemodel.cxx:452
    (anonymous namespace)::SfxSaveGuard m_pFramesLock std::unique_ptr<SfxOwnFramesLocker>
sfx2/source/inc/appdata.hxx:69
    SfxAppData_Impl pDocTopics std::unique_ptr<SfxDdeDocTopics_Impl>
sfx2/source/inc/appdata.hxx:70
    SfxAppData_Impl pTriggerTopic std::unique_ptr<SfxDdeTriggerTopic_Impl>
sfx2/source/inc/appdata.hxx:71
    SfxAppData_Impl pDdeService2 std::unique_ptr<DdeService>
sfx2/source/inc/appdata.hxx:79
    SfxAppData_Impl m_pToolsErrorHdl std::optional<SfxErrorHandler>
sfx2/source/inc/appdata.hxx:80
    SfxAppData_Impl m_pSoErrorHdl std::optional<SfxErrorHandler>
sfx2/source/inc/appdata.hxx:82
    SfxAppData_Impl m_pSbxErrorHdl std::optional<SfxErrorHandler>
sfx2/source/inc/appdata.hxx:85
    SfxAppData_Impl mxAppPickList std::optional<SfxPickList>
sfx2/source/inc/splitwin.hxx:52
    SfxSplitWindow pActive VclPtr<SfxDockingWindow>
sfx2/source/inc/StyleList.hxx:226
    StyleList m_xTreeView1DropTargetHelper std::unique_ptr<TreeViewDropTarget>
sfx2/source/inc/StyleList.hxx:227
    StyleList m_xTreeView2DropTargetHelper std::unique_ptr<TreeViewDropTarget>
sfx2/source/inc/templdgi.hxx:207
    SfxTemplateDialog_Impl m_xToolbarDropTargetHelper std::unique_ptr<ToolbarDropTarget>
sfx2/source/view/classificationcontroller.cxx:73
    sfx2::(anonymous namespace)::ClassificationCategoriesController m_aPropertyListener ClassificationPropertyListener
slideshow/source/engine/opengl/TransitionImpl.hxx:297
    Vertex normal glm::vec3
slideshow/source/engine/opengl/TransitionImpl.hxx:298
    Vertex texcoord glm::vec2
slideshow/source/engine/slideshowimpl.cxx:1048
    (anonymous namespace)::SlideShowImpl::PrefetchPropertiesFunc mpSlideShowImpl SlideShowImpl *const
slideshow/test/testview.cxx:50
    (anonymous namespace)::ImplTestView maCreatedSprites std::vector<std::pair<basegfx::B2DVector, double> >
slideshow/test/testview.cxx:53
    (anonymous namespace)::ImplTestView maPriority basegfx::B1DRange
soltools/cpp/cpp.h:143
    macroValidator pMacro Nlist *
starmath/inc/mathml/mathmlimport.hxx:46
    SmXMLImportWrapper m_bUseHTMLMLEntities _Bool
starmath/inc/view.hxx:191
    SmCmdBoxWindow aController SmEditController
stoc/source/servicemanager/servicemanager.cxx:389
    (anonymous namespace)::OServiceManager m_SetLoadedFactories HashSet_Ref
store/source/storbios.cxx:51
    (anonymous namespace)::OStoreSuperBlock m_nMarked sal_uInt32
store/source/storbios.cxx:52
    (anonymous namespace)::OStoreSuperBlock m_aMarked L
svgio/inc/svgcharacternode.hxx:84
    svgio::svgreader::SvgTextPosition maY ::std::vector<double>
svgio/inc/svgsvgnode.hxx:41
    svgio::svgreader::SvgSvgNode maVersion SvgNumber
svgio/inc/svgsymbolnode.hxx:32
    svgio::svgreader::SvgSymbolNode maSvgAspectRatio SvgAspectRatio
svgio/inc/svgusenode.hxx:40
    svgio::svgreader::SvgUseNode maWidth SvgNumber
svgio/inc/svgusenode.hxx:41
    svgio::svgreader::SvgUseNode maHeight SvgNumber
svl/source/crypto/cryptosign.cxx:99
    (anonymous namespace)::MessageImprint hashedMessage SECItem
svl/source/crypto/cryptosign.cxx:134
    (anonymous namespace)::TimeStampReq version SECItem
svl/source/crypto/cryptosign.cxx:136
    (anonymous namespace)::TimeStampReq reqPolicy SECItem
svl/source/crypto/cryptosign.cxx:137
    (anonymous namespace)::TimeStampReq nonce SECItem
svl/source/crypto/cryptosign.cxx:138
    (anonymous namespace)::TimeStampReq certReq SECItem
svl/source/crypto/cryptosign.cxx:139
    (anonymous namespace)::TimeStampReq extensions Extension *
svl/source/crypto/cryptosign.cxx:147
    (anonymous namespace)::GeneralName name CERTName
svl/source/crypto/cryptosign.cxx:155
    (anonymous namespace)::GeneralNames names GeneralName
svl/source/crypto/cryptosign.cxx:163
    (anonymous namespace)::IssuerSerial issuer GeneralNames
svl/source/crypto/cryptosign.cxx:164
    (anonymous namespace)::IssuerSerial serialNumber SECItem
svl/source/crypto/cryptosign.cxx:174
    (anonymous namespace)::ESSCertIDv2 certHash SECItem
svl/source/crypto/cryptosign.cxx:175
    (anonymous namespace)::ESSCertIDv2 issuerSerial IssuerSerial
svl/source/crypto/cryptosign.cxx:183
    (anonymous namespace)::SigningCertificateV2 certs ESSCertIDv2 **
svl/source/misc/inethist.cxx:45
    INetURLHistory_Impl::head_entry m_nMagic sal_uInt32
svl/source/undo/undo.cxx:312
    svl::undo::impl::UndoManagerGuard m_aUndoActionsCleanup ::std::vector<std::unique_ptr<SfxUndoAction> >
svx/inc/galbrws2.hxx:82
    GalleryBrowser2 mxDragDropTargetHelper std::unique_ptr<GalleryDragDrop>
svx/inc/sdr/overlay/overlaytools.hxx:41
    drawinglayer::primitive2d::OverlayStaticRectanglePrimitive mfRotation double
svx/inc/sdr/primitive2d/sdrolecontentprimitive2d.hxx:44
    drawinglayer::primitive2d::SdrOleContentPrimitive2D mnGraphicVersion sal_uInt32
svx/source/form/dataaccessdescriptor.cxx:39
    svx::ODADescriptorImpl m_bSetOutOfDate _Bool
svx/source/form/formcontroller.cxx:208
    svxform::(anonymous namespace)::ColumnInfo nNullable sal_Int32
svx/source/inc/datanavi.hxx:319
    svxform::DataNavigator m_xDataWin std::unique_ptr<DataNavigatorWindow>
svx/source/inc/docrecovery.hxx:132
    svx::DocRecovery::TURLInfo Module OUString
svx/source/inc/StylesPreviewToolBoxControl.hxx:33
    StylesPreviewToolBoxControl m_xWeldBox std::unique_ptr<StylesPreviewWindow_Base>
svx/source/inc/StylesPreviewWindow.hxx:105
    StylesPreviewWindow_Base m_pStylePoolChangeListener std::unique_ptr<StylePoolChangeListener>
svx/source/sdr/attribute/sdrformtextattribute.cxx:152
    drawinglayer::attribute::ImpSdrFormTextAttribute mnFormTextShdwTransp sal_uInt16
svx/source/sdr/attribute/sdrtextattribute.cxx:48
    drawinglayer::attribute::ImpSdrTextAttribute maPropertiesVersion sal_uInt32
svx/source/sdr/attribute/sdrtextattribute.cxx:62
    drawinglayer::attribute::ImpSdrTextAttribute mbWrongSpell _Bool
svx/source/sidebar/effect/EffectPropertyPanel.hxx:35
    svx::sidebar::EffectPropertyPanel maGlowColorController sfx2::sidebar::ControllerItem
svx/source/sidebar/effect/EffectPropertyPanel.hxx:36
    svx::sidebar::EffectPropertyPanel maGlowRadiusController sfx2::sidebar::ControllerItem
svx/source/sidebar/effect/EffectPropertyPanel.hxx:37
    svx::sidebar::EffectPropertyPanel maGlowTransparencyController sfx2::sidebar::ControllerItem
svx/source/sidebar/effect/EffectPropertyPanel.hxx:39
    svx::sidebar::EffectPropertyPanel maSoftEdgeRadiusController sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:81
    svx::sidebar::LinePropertyPanel maStyleControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:82
    svx::sidebar::LinePropertyPanel maDashControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:84
    svx::sidebar::LinePropertyPanel maTransControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:85
    svx::sidebar::LinePropertyPanel maEdgeStyle sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:86
    svx::sidebar::LinePropertyPanel maCapStyle sfx2::sidebar::ControllerItem
svx/source/sidebar/lists/ListsPropertyPanel.hxx:41
    svx::sidebar::ListsPropertyPanel mxNumBulletDispatcher std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/lists/ListsPropertyPanel.hxx:43
    svx::sidebar::ListsPropertyPanel mxOutlineDispatcher std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:77
    svx::sidebar::ParaPropertyPanel mxHorzAlignDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:79
    svx::sidebar::ParaPropertyPanel mxVertAlignDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:82
    svx::sidebar::ParaPropertyPanel mxNumBulletDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:84
    svx::sidebar::ParaPropertyPanel mxBackColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:87
    svx::sidebar::ParaPropertyPanel mxWriteDirectionDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:89
    svx::sidebar::ParaPropertyPanel mxParaSpacingDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:91
    svx::sidebar::ParaPropertyPanel mxLineSpacingDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:93
    svx::sidebar::ParaPropertyPanel mxIndentDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:105
    svx::sidebar::PosSizePropertyPanel mxFlipDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:108
    svx::sidebar::PosSizePropertyPanel mxArrangeDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:110
    svx::sidebar::PosSizePropertyPanel mxArrangeDispatch2 std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:113
    svx::sidebar::PosSizePropertyPanel mxAlignDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:115
    svx::sidebar::PosSizePropertyPanel mxAlignDispatch2 std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/styles/StylesPropertyPanel.hxx:20
    svx::sidebar::StylesPropertyPanel m_xFontStyleDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/styles/StylesPropertyPanel.hxx:23
    svx::sidebar::StylesPropertyPanel m_xStyleDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:49
    svx::sidebar::TextPropertyPanel mxFontDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:51
    svx::sidebar::TextPropertyPanel mxFontHeightDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:53
    svx::sidebar::TextPropertyPanel mxFontEffectsDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:55
    svx::sidebar::TextPropertyPanel mxFontAdjustDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:57
    svx::sidebar::TextPropertyPanel mxToolBoxFontColorSwDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:59
    svx::sidebar::TextPropertyPanel mxToolBoxFontColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:61
    svx::sidebar::TextPropertyPanel mxToolBoxBackgroundColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:63
    svx::sidebar::TextPropertyPanel mxResetBarDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:65
    svx::sidebar::TextPropertyPanel mxDefaultBarDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:67
    svx::sidebar::TextPropertyPanel mxPositionBarDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/text/TextPropertyPanel.hxx:69
    svx::sidebar::TextPropertyPanel mxSpacingBarDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/textcolumns/TextColumnsPropertyPanel.hxx:40
    svx::sidebar::TextColumnsPropertyPanel maColumnsNumberController sfx2::sidebar::ControllerItem
svx/source/sidebar/textcolumns/TextColumnsPropertyPanel.hxx:41
    svx::sidebar::TextColumnsPropertyPanel maColumnsSpacingController sfx2::sidebar::ControllerItem
svx/source/tbxctrls/tbcontrl.cxx:313
    (anonymous namespace)::SvxFontNameBox_Base m_aOwnFontList ::std::unique_ptr<FontList>
sw/inc/accmap.hxx:96
    SwAccessibleMap mvShapes SwShapeList_Impl
sw/inc/swmodule.hxx:95
    SwModule m_pErrorHandler std::unique_ptr<SfxErrorHandler>
sw/inc/swmodule.hxx:108
    SwModule m_xLinguServiceEventListener css::uno::Reference<css::linguistic2::XLinguServiceEventListener>
sw/inc/swwait.hxx:45
    SwWait mpLockedDispatchers o3tl::sorted_vector<SfxDispatcher *>
sw/inc/textboxhelper.hxx:211
    SwTextBoxNode m_bIsCloningInProgress _Bool
sw/inc/unoframe.hxx:313
    SwXOLEListener m_xOLEModel css::uno::Reference<css::frame::XModel>
sw/inc/view.hxx:195
    SwView m_xGlueDocShell std::unique_ptr<SwViewGlueDocShell>
sw/source/core/inc/swfont.hxx:985
    SvStatistics nGetTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:986
    SvStatistics nDrawText sal_uInt16
sw/source/core/inc/swfont.hxx:987
    SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:988
    SvStatistics nDrawStretchText sal_uInt16
sw/source/core/inc/swfont.hxx:989
    SvStatistics nChangeFont sal_uInt16
sw/source/core/inc/unoflatpara.hxx:135
    SwXFlatParagraphIterator m_aFlatParaList std::set<css::uno::Reference<css::text::XFlatParagraph> >
sw/source/core/layout/dbg_lay.cxx:135
    SwImplProtocol m_aVars std::vector<tools::Long>
sw/source/core/table/swtable.cxx:2792
    SwTableCellInfo::Impl m_HandledTableBoxes TableBoxes_t
sw/source/core/text/porfld.hxx:66
    SwFieldPortion m_nAttrFieldType sal_uInt16
sw/source/filter/html/swhtml.hxx:385
    SwHTMLParser m_aOrphanedTableBoxes std::vector<std::unique_ptr<SwTableBox> >
sw/source/filter/inc/rtf.hxx:29
    RTFSurround::(anonymous union)::(anonymous) nGoldCut sal_uInt8
sw/source/filter/inc/rtf.hxx:30
    RTFSurround::(anonymous union)::(anonymous) nOrder sal_uInt8
sw/source/filter/inc/rtf.hxx:31
    RTFSurround::(anonymous union)::(anonymous) nJunk sal_uInt8
sw/source/filter/inc/rtf.hxx:32
    RTFSurround::(anonymous) Flags struct (unnamed struct at /home/noel/libo2/sw/source/filter/inc/rtf.hxx:27:9)
sw/source/uibase/inc/glossary.hxx:63
    SwGlossaryDlg m_xGroupData std::vector<std::unique_ptr<GroupUserData> >
sw/source/uibase/inc/maildispatcher.hxx:143
    MailDispatcher m_aListenerVector std::vector< ::rtl::Reference<IMailDispatcherListener> >
sw/source/uibase/inc/maildispatcher.hxx:149
    MailDispatcher m_xSelfReference ::rtl::Reference<MailDispatcher>
sw/source/uibase/inc/navipi.hxx:60
    SwNavigationPI m_xContent3Dispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/inc/redlndlg.hxx:64
    SwRedlineAcceptDlg m_RedlinData std::vector<std::unique_ptr<RedlinData> >
sw/source/uibase/inc/redlndlg.hxx:65
    SwRedlineAcceptDlg m_aUsedSeqNo SwRedlineDataParentSortArr
sw/source/uibase/sidebar/TableEditPanel.hxx:48
    sw::sidebar::TableEditPanel m_xInsertDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:50
    sw::sidebar::TableEditPanel m_xSelectDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:52
    sw::sidebar::TableEditPanel m_xRowSizingDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:54
    sw::sidebar::TableEditPanel m_xColumnSizingDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:56
    sw::sidebar::TableEditPanel m_xDeleteDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:58
    sw::sidebar::TableEditPanel m_xSplitMergeDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:60
    sw::sidebar::TableEditPanel m_xMiscDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/WrapPropertyPanel.hxx:73
    sw::sidebar::WrapPropertyPanel mxWrapOptionsDispatch std::unique_ptr<ToolbarUnoDispatcher>
testtools/source/bridgetest/cppobj.cxx:153
    bridge_object::(anonymous namespace)::Test_Impl _arStruct Sequence<TestElement>
ucb/source/ucp/gio/gio_mount.hxx:73
    OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:76
    OOoMountOperationClass _gtk_reserved1 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:77
    OOoMountOperationClass _gtk_reserved2 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:78
    OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:79
    OOoMountOperationClass _gtk_reserved4 void (*)(void)
unoidl/source/unoidl.cxx:84
    unoidl::(anonymous namespace)::AggregatingCursor seen_ std::set<OUString>
unoxml/source/rdf/librdf_repository.cxx:470
    (anonymous namespace)::librdf_GraphResult m_pQuery const std::shared_ptr<librdf_query>
unoxml/source/rdf/librdf_repository.cxx:623
    (anonymous namespace)::librdf_QuerySelectResult m_pQuery const std::shared_ptr<librdf_query>
unoxml/source/xpath/nodelist.hxx:51
    XPath::CNodeList m_pXPathObj std::shared_ptr<xmlXPathObject>
vbahelper/source/vbahelper/vbafillformat.hxx:36
    ScVbaFillFormat m_nForeColor sal_Int32
vcl/inc/accel.hxx:39
    ImplAccelEntry mpAutoAccel Accelerator *
vcl/inc/driverblocklist.hxx:113
    DriverBlocklist::DriverInfo maMsg OUString
vcl/inc/font/FontSelectPattern.hxx:65
    vcl::font::FontSelectPattern mfExactHeight float
vcl/inc/pdf/BitmapID.hxx:23
    vcl::pdf::BitmapID m_nChecksum BitmapChecksum
vcl/inc/pdf/BitmapID.hxx:24
    vcl::pdf::BitmapID m_nMaskChecksum BitmapChecksum
vcl/inc/qt5/QtInstance.hxx:63
    QtInstance m_pQApplication std::unique_ptr<QApplication>
vcl/inc/qt5/QtInstance.hxx:64
    QtInstance m_pFakeArgvFreeable std::vector<FreeableCStr>
vcl/inc/qt5/QtInstance.hxx:65
    QtInstance m_pFakeArgv std::unique_ptr<char *[]>
vcl/inc/qt5/QtInstance.hxx:66
    QtInstance m_pFakeArgc std::unique_ptr<int>
vcl/inc/salmenu.hxx:34
    SalItemParams pMenu VclPtr<Menu>
vcl/inc/salmenu.hxx:35
    SalItemParams aText OUString
vcl/inc/salmenu.hxx:38
    SalItemParams nBits MenuItemBits
vcl/inc/salwtype.hxx:209
    SalSurroundingTextRequestEvent mnEnd sal_uLong
vcl/inc/salwtype.hxx:221
    SalQueryCharPositionEvent mnCursorBoundX tools::Long
vcl/inc/salwtype.hxx:222
    SalQueryCharPositionEvent mnCursorBoundY tools::Long
vcl/inc/salwtype.hxx:223
    SalQueryCharPositionEvent mnCursorBoundWidth tools::Long
vcl/inc/salwtype.hxx:224
    SalQueryCharPositionEvent mnCursorBoundHeight tools::Long
vcl/inc/salwtype.hxx:225
    SalQueryCharPositionEvent mbValid _Bool
vcl/inc/salwtype.hxx:226
    SalQueryCharPositionEvent mbVertical _Bool
vcl/inc/salwtype.hxx:239
    SalInputContext mpFont rtl::Reference<LogicalFontInstance>
vcl/inc/salwtype.hxx:246
    SalGestureSwipeEvent mnVelocityY double
vcl/inc/scanlinewriter.hxx:35
    vcl::ScanlineWriter mpCurrentScanline sal_uInt8 *
vcl/inc/svdata.hxx:464
    ImplSVEvent mpInstanceRef VclPtr<vcl::Window>
vcl/inc/toolbarvalue.hxx:47
    ToolbarValue mbIsTopDockingArea _Bool
vcl/inc/unx/gtk/gtkdata.hxx:224
    DocumentFocusListener m_aRefList o3tl::sorted_vector<css::uno::Reference<css::uno::XInterface> >
vcl/inc/unx/gtk/gtkframe.hxx:81
    GtkSalFrame::IMHandler::PreviousKeyPress window GdkWindow *
vcl/inc/unx/gtk/gtkframe.hxx:82
    GtkSalFrame::IMHandler::PreviousKeyPress send_event gint8
vcl/inc/unx/gtk/gtkframe.hxx:83
    GtkSalFrame::IMHandler::PreviousKeyPress time guint32
vcl/qa/cppunit/pdfexport/pdfexport.cxx:72
    (anonymous namespace)::PdfExportTest mpPDFium std::shared_ptr<vcl::pdf::PDFium>
vcl/source/components/dtranscomp.cxx:207
    vcl::(anonymous namespace)::GenericDragSource m_xTrans css::uno::Reference<css::datatransfer::XTransferable>
vcl/source/fontsubset/sft.cxx:98
    vcl::(anonymous namespace)::TTGlyphMetrics lsb sal_Int16
vcl/source/fontsubset/ttcr.cxx:350
    vcl::(anonymous namespace)::tdata_post ptr void *
vcl/unx/generic/app/wmadaptor.cxx:1268
    _mwmhints deco unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1268
    _mwmhints flags unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1268
    _mwmhints func unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1269
    _mwmhints input_mode tools::Long
vcl/unx/generic/app/wmadaptor.cxx:1270
    _mwmhints status unsigned long
vcl/unx/generic/gdi/cairotextrender.cxx:44
    (anonymous namespace)::CairoFontsCache::CacheId maFace FT_Face
vcl/unx/generic/gdi/cairotextrender.cxx:46
    (anonymous namespace)::CairoFontsCache::CacheId mbEmbolden _Bool
vcl/unx/generic/gdi/cairotextrender.cxx:47
    (anonymous namespace)::CairoFontsCache::CacheId mbVerticalMetrics _Bool
vcl/unx/gtk3/a11y/atkwrapper.hxx:50
    AtkObjectWrapper aParent AtkObject
vcl/unx/gtk3/a11y/atkwrapper.hxx:79
    AtkObjectWrapperClass aParentClass GtkWidgetAccessibleClass
vcl/unx/gtk3/glomenu.cxx:16
    GLOMenu parent_instance const GMenuModel
vcl/unx/gtk3/gtkinst.cxx:20358
    (anonymous namespace)::GtkInstanceComboBox m_xCustomMenuButtonHelper std::unique_ptr<CustomRenderMenuButtonHelper>
vcl/unx/gtk3/hudawareness.cxx:18
    (anonymous namespace)::HudAwarenessHandle connection gpointer
vcl/unx/gtk3/hudawareness.cxx:21
    (anonymous namespace)::HudAwarenessHandle notify GDestroyNotify
vcl/workben/vcldemo.cxx:1739
    (anonymous namespace)::DemoWin mxThread rtl::Reference<RenderThread>
writerfilter/source/dmapper/DocumentProtection.hxx:50
    writerfilter::dmapper::DocumentProtection m_sRedlineProtectionKey OUString
writerfilter/source/dmapper/DomainMapperTableHandler.cxx:242
    writerfilter::dmapper::TableInfo aTablePropertyIds std::vector<PropertyIds>
writerfilter/source/dmapper/PropertyMap.hxx:220
    writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
writerfilter/source/dmapper/WriteProtection.hxx:36
    writerfilter::dmapper::WriteProtection m_nCryptProviderType sal_Int32
xmlhelp/source/cxxhelp/provider/databases.hxx:251
    chelp::Databases m_aDatabases DatabasesTable
xmlhelp/source/cxxhelp/provider/databases.hxx:257
    chelp::Databases m_aModInfo ModInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:260
    chelp::Databases m_aKeywordInfo KeywordInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:266
    chelp::Databases m_aZipFileTable ZipFileTable
xmlhelp/source/cxxhelp/provider/databases.hxx:272
    chelp::Databases m_aCollatorTable CollatorTable
xmloff/source/draw/ximpstyl.hxx:215
    SdXMLMasterStylesContext maMasterPageList std::vector<rtl::Reference<SdXMLMasterPageContext> >
xmloff/source/forms/elementexport.hxx:46
    xmloff::OElementExport m_pXMLElement std::unique_ptr<SvXMLElementExport>
xmloff/source/forms/elementexport.hxx:103
    xmloff::OControlExport m_pOuterElement std::unique_ptr<SvXMLElementExport>
xmloff/source/forms/officeforms.hxx:68
    xmloff::OFormsRootExport m_pImplElement std::unique_ptr<SvXMLElementExport>
xmloff/source/text/txtimp.cxx:105
    XMLTextImportHelper::Impl m_xFrameImpPrMap rtl::Reference<SvXMLImportPropertyMapper>
xmlsecurity/inc/certificatechooser.hxx:53
    CertificateChooser mvUserData std::vector<std::shared_ptr<UserData> >
xmlsecurity/inc/certificateviewer.hxx:51
    CertificateViewer mxGeneralPage std::unique_ptr<CertificateViewerGeneralTP>
xmlsecurity/inc/certificateviewer.hxx:52
    CertificateViewer mxDetailsPage std::unique_ptr<CertificateViewerDetailsTP>
xmlsecurity/source/helper/pdfsignaturehelper.cxx:237
    (anonymous namespace)::PageChecksum m_nPageContent BitmapChecksum
xmlsecurity/source/helper/pdfsignaturehelper.cxx:238
    (anonymous namespace)::PageChecksum m_aAnnotations std::vector<basegfx::B2DRectangle>