summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/unusedfields.writeonly.results
blob: 02cd4a72109ec9ae52346020fc3e5f8ac1d4afa5 (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
basctl/source/basicide/moduldlg.hxx:135
    basctl::ObjectPage m_xDropTarget std::unique_ptr<SbTreeListBoxDropTarget>
basctl/source/inc/basidesh.hxx:87
    basctl::Shell m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/bastype2.hxx:182
    basctl::SbTreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/IDEComboBox.hxx:113
    basctl::DocListenerBox maNotifier class basctl::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:454
    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 struct __cxxabiv1::__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:35
    canvas::Vertex a float
canvas/inc/rendering/irendermodule.hxx:35
    canvas::Vertex b float
canvas/inc/rendering/irendermodule.hxx:35
    canvas::Vertex g float
canvas/inc/rendering/irendermodule.hxx:35
    canvas::Vertex r float
canvas/inc/rendering/irendermodule.hxx:36
    canvas::Vertex u float
canvas/inc/rendering/irendermodule.hxx:36
    canvas::Vertex v float
canvas/inc/rendering/irendermodule.hxx:37
    canvas::Vertex x float
canvas/inc/rendering/irendermodule.hxx:37
    canvas::Vertex y float
canvas/inc/rendering/irendermodule.hxx:37
    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:143
    chart::ChartModel m_aGraphicObjectVector std::vector<GraphicObject>
chart2/inc/ChartModel.hxx:473
    chart::ChartModel mnStart sal_Int32
chart2/inc/ChartModel.hxx:474
    chart::ChartModel mnEnd sal_Int32
chart2/source/controller/dialogs/DialogModel.cxx:173
    (anonymous namespace)::lcl_DataSeriesContainerAppend m_rDestCnt (anonymous namespace)::lcl_DataSeriesContainerAppend::tContainerType *
chart2/source/controller/dialogs/DialogModel.cxx:232
    (anonymous namespace)::lcl_RolesWithRangeAppend m_rDestCnt (anonymous namespace)::lcl_RolesWithRangeAppend::tContainerType *
chart2/source/controller/inc/ChartController.hxx:412
    chart::ChartController m_apDropTargetHelper std::unique_ptr<DropTargetHelper>
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:128
    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 struct (anonymous namespace)::ContainerStats *const
comphelper/qa/unit/parallelsorttest.cxx:44
    ParallelSortTest mnThreads size_t
comphelper/source/misc/asyncnotification.cxx:70
    comphelper::EventNotifierImpl pKeepThisAlive std::shared_ptr<AsyncEventNotifierAutoJoin>
configmgr/source/components.cxx:162
    configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
connectivity/source/drivers/postgresql/pq_statics.hxx:141
    pq_sdbc_driver::Statics NO_NULLS rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:142
    pq_sdbc_driver::Statics NULABLE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:143
    pq_sdbc_driver::Statics NULLABLE_UNKNOWN rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:144
    pq_sdbc_driver::Statics SELECT rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:145
    pq_sdbc_driver::Statics UPDATE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:146
    pq_sdbc_driver::Statics INSERT rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:147
    pq_sdbc_driver::Statics DELETE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:148
    pq_sdbc_driver::Statics RULE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:149
    pq_sdbc_driver::Statics REFERENCES rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:150
    pq_sdbc_driver::Statics TRIGGER rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:151
    pq_sdbc_driver::Statics EXECUTE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:152
    pq_sdbc_driver::Statics USAGE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:153
    pq_sdbc_driver::Statics CREATE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:154
    pq_sdbc_driver::Statics TEMPORARY rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:187
    pq_sdbc_driver::Statics KEY_COLUMN rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:193
    pq_sdbc_driver::Statics CURSOR_NAME rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:194
    pq_sdbc_driver::Statics ESCAPE_PROCESSING rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:195
    pq_sdbc_driver::Statics FETCH_DIRECTION rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:196
    pq_sdbc_driver::Statics FETCH_SIZE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:197
    pq_sdbc_driver::Statics IS_BOOKMARKABLE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:199
    pq_sdbc_driver::Statics RESULT_SET_TYPE rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:211
    pq_sdbc_driver::Statics HELP_TEXT rtl::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 rtl::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 rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:31
    connectivity::OTypeInfo aLocalTypeName rtl::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:207
    cppcanvas::internal::ImplRenderer aBaseTransform struct cppcanvas::internal::XForm
cppu/source/uno/check.cxx:38
    (anonymous namespace)::C1 n1 sal_Int16
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:72
    (anonymous namespace)::E a sal_Bool
cppu/source/uno/check.cxx:73
    (anonymous namespace)::E b sal_Bool
cppu/source/uno/check.cxx:74
    (anonymous namespace)::E c sal_Bool
cppu/source/uno/check.cxx:75
    (anonymous namespace)::E d sal_Int16
cppu/source/uno/check.cxx:76
    (anonymous namespace)::E e sal_Int32
cppu/source/uno/check.cxx:81
    (anonymous namespace)::M n sal_Int32
cppu/source/uno/check.cxx:82
    (anonymous namespace)::M o sal_Int16
cppu/source/uno/check.cxx:91
    (anonymous namespace)::N2 m struct (anonymous namespace)::M
cppu/source/uno/check.cxx:92
    (anonymous namespace)::N2 p sal_Int16
cppu/source/uno/check.cxx:97
    (anonymous namespace)::O p double
cppu/source/uno/check.cxx:98
    (anonymous namespace)::O q sal_Int16
cppu/source/uno/check.cxx:107
    (anonymous namespace)::P p2 double
cppu/source/uno/check.cxx:115
    (anonymous namespace)::second a int
cppu/source/uno/check.cxx:126
    (anonymous namespace)::Char1 c1 char
cppu/source/uno/check.cxx:130
    (anonymous namespace)::Char2 c2 char
cppu/source/uno/check.cxx:134
    (anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:258
    (anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
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:844
    (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 class SfxStatusForwarder
cui/source/inc/cuihyperdlg.hxx:77
    SvxHpLinkDlg maCtrl class SvxHlinkCtrl
cui/source/inc/GraphicsTestsDialog.hxx:46
    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:289
    dbaccess::(anonymous namespace)::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::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<class com::sun::star::frame::XFrameLoader>
dbaccess/source/ui/app/AppDetailView.hxx:107
    dbaui::OApplicationDetailView m_aExternalMnemonics class MnemonicGenerator
dbaccess/source/ui/browser/dbloader.cxx:59
    (anonymous namespace)::DBContentLoader m_xListener Reference<class com::sun::star::frame::XLoadEventListener>
desktop/qa/desktop_lib/test_desktop_lib.cxx:302
    DesktopLOKTest m_bModified _Bool
desktop/source/app/app.cxx:1222
    desktop::(anonymous namespace)::ExecuteGlobals pCTLLanguageOptions std::unique_ptr<SvtCTLOptions>
desktop/source/app/app.cxx:1223
    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:101
    dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
desktop/source/deployment/manager/dp_managerfac.cxx:43
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xUserMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:44
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xSharedMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:45
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xBundledMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:46
    dp_manager::factory::(anonymous namespace)::PackageManagerFactoryImpl m_xTmpMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:47
    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:44
    drawinglayer::attribute::ImpSdrFillGraphicAttribute mbLogSize _Bool
drawinglayer/source/attribute/sdrsceneattribute3d.cxx:29
    drawinglayer::attribute::ImpSdrSceneAttribute mfDistance double
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:556
    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:315
    paperword string char *
include/basegfx/DrawCommands.hxx:81
    gfx::LinearGradientInfo maMatrix basegfx::B2DHomMatrix
include/basic/basmgr.hxx:57
    BasicError nReason enum 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 class StarBASIC *
include/comphelper/parallelsort.hxx:88
    comphelper::(anonymous namespace)::ProfileZone mbDummy _Bool
include/comphelper/unique_disposing_ptr.hxx:30
    comphelper::unique_disposing_ptr m_xTerminateListener css::uno::Reference<css::frame::XTerminateListener>
include/drawinglayer/attribute/sdrallattribute3d.hxx:42
    drawinglayer::attribute::SdrLineFillShadowAttribute3D maLineStartEnd const class drawinglayer::attribute::SdrLineStartEndAttribute
include/drawinglayer/primitive2d/mediaprimitive2d.hxx:48
    drawinglayer::primitive2d::MediaPrimitive2D maURL rtl::OUString
include/editeng/adjustitem.hxx:37
    SvxAdjustItem bLeft _Bool
include/editeng/outlobj.hxx:44
    OutlinerParaObjData mbIsEditDoc _Bool
include/editeng/unotext.hxx:420
    SvxUnoTextBase xParentText css::uno::Reference<css::text::XText>
include/editeng/unotext.hxx:589
    SvxUnoTextContentEnumeration mxParentText css::uno::Reference<css::text::XText>
include/framework/addonsoptions.hxx:75
    framework::MergeNotebookBarInstruction aMergePoint rtl::OUString
include/framework/addonsoptions.hxx:76
    framework::MergeNotebookBarInstruction aMergeCommand rtl::OUString
include/framework/addonsoptions.hxx:77
    framework::MergeNotebookBarInstruction aMergeCommandParameter rtl::OUString
include/framework/addonsoptions.hxx:78
    framework::MergeNotebookBarInstruction aMergeFallback rtl::OUString
include/framework/addonsoptions.hxx:79
    framework::MergeNotebookBarInstruction aMergeContext rtl::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:334
    _LibreOfficeKitDocumentClass getPartInfo char *(*)(LibreOfficeKitDocument *, int)
include/LibreOfficeKit/LibreOfficeKit.h:339
    _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 rtl::OUString
include/svl/sigstruct.hxx:127
    SignatureInformation hasInconsistentSigningTime _Bool
include/svtools/brwbox.hxx:326
    BrowseBox::CursorMoveAttempt m_nCol sal_Int32
include/svtools/brwbox.hxx:327
    BrowseBox::CursorMoveAttempt m_nRow sal_Int32
include/svtools/brwbox.hxx:328
    BrowseBox::CursorMoveAttempt m_bScrolledToReachCell _Bool
include/svtools/ctrltool.hxx:147
    FontList mpDev VclPtr<class OutputDevice>
include/svtools/ctrltool.hxx:148
    FontList mpDev2 VclPtr<class OutputDevice>
include/svx/AccessibilityCheckDialog.hxx:44
    svx::AccessibilityCheckDialog m_aAccessibilityCheckEntries std::vector<std::unique_ptr<AccessibilityCheckEntry> >
include/svx/bmpmask.hxx:127
    SvxBmpMask aSelItem class SvxBmpMaskSelectItem
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:69
    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
    OfaRefItem mxRef rtl::Reference<reference_type>
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/svx/viewpt3d.hxx:62
    Viewport3D::(anonymous) H double
include/svx/viewpt3d.hxx:62
    Viewport3D::(anonymous) X double
include/svx/viewpt3d.hxx:62
    Viewport3D::(anonymous) Y double
include/test/beans/xpropertyset.hxx:56
    apitest::XPropertySet::PropsToTest constrained std::vector<OUString>
include/unotools/fontcfg.hxx:158
    utl::FontSubstConfiguration maSubstHash utl::FontSubstConfiguration::UniqueSubstHash
include/vcl/notebookbar/NotebookBarAddonsMerger.hxx:43
    AddonNotebookBarItem sTarget rtl::OUString
include/vcl/notebookbar/NotebookBarAddonsMerger.hxx:44
    AddonNotebookBarItem sContext rtl::OUString
include/vcl/notebookbar/NotebookBarAddonsMerger.hxx:45
    AddonNotebookBarItem sControlType rtl::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/salnativewidgets.hxx:467
    ToolbarValue mbIsTopDockingArea _Bool
include/vcl/salnativewidgets.hxx:533
    PushButtonValue mbBevelButton _Bool
include/vcl/salnativewidgets.hxx:534
    PushButtonValue mbSingleLine _Bool
include/vcl/sysdata.hxx:68
    SystemEnvData pSalFrame class SalFrame *
include/vcl/textrectinfo.hxx:35
    TextRectInfo mnLineCount sal_uInt16
include/vcl/vclenum.hxx:198
    ItalicMatrix xx double
include/vcl/vclenum.hxx:198
    ItalicMatrix xy double
include/vcl/vclenum.hxx:198
    ItalicMatrix yx double
include/vcl/vclenum.hxx:198
    ItalicMatrix yy double
include/xmloff/shapeimport.hxx:95
    SdXML3DSceneAttributesHelper mbVRPUsed _Bool
io/source/stm/odata.cxx:243
    io_stm::(anonymous namespace)::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n1 sal_uInt32
io/source/stm/odata.cxx:243
    io_stm::(anonymous namespace)::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n2 sal_uInt32
jvmfwk/inc/vendorbase.hxx:171
    jfw_plugin::VendorBase m_sArch rtl::OUString
l10ntools/inc/common.hxx:33
    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:38
    ByteChucker p2Sequence sal_Int8 *const
package/inc/ByteChucker.hxx:38
    ByteChucker p4Sequence sal_Int8 *const
registry/source/reflread.cxx:477
    (anonymous namespace)::ConstantPool::readDoubleConstant(sal_uInt16)::(anonymous union)::(anonymous) b1 sal_uInt32
registry/source/reflread.cxx:478
    (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:266
    ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:267
    ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:269
    ScCompiler::AddInMap pUpper const char *
sc/inc/compressedarray.hxx:68
    ScCompressedArray::RangeData mnRow2 A
sc/inc/patattr.hxx:55
    ScPatternAttr mxHashCode std::optional<size_t>
sc/inc/pivot.hxx:75
    ScDPLabelData mnFlags sal_Int32
sc/inc/pivot.hxx:78
    ScDPLabelData mbIsValue _Bool
sc/inc/scmatrix.hxx:117
    ScMatrix mbCloneIfConst _Bool
sc/inc/scmod.hxx:101
    ScModule m_pErrorHdl std::unique_ptr<SfxErrorHandler>
sc/inc/tabopparams.hxx:37
    ScInterpreterTableOpParams bValid _Bool
sc/source/core/data/column4.cxx:1343
    (anonymous namespace)::StartListeningFormulaCellsHandler mnStartRow SCROW
sc/source/core/data/column.cxx:1411
    (anonymous namespace)::CopyByCloneHandler meListenType sc::StartListeningType
sc/source/core/data/column.cxx:1412
    (anonymous namespace)::CopyByCloneHandler mnFormulaCellCloneFlags enum ScCloneFlags
sc/source/core/data/table2.cxx:3876
    (anonymous namespace)::OutlineArrayFinder mpArray class 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 union sal_math_Double
sc/source/filter/inc/exp_op.hxx:47
    ExportBiff5 pExcRoot struct RootData *
sc/source/filter/inc/imp_op.hxx:83
    ImportExcel::LastFormula mpCell class ScFormulaCell *
sc/source/filter/inc/namebuff.hxx:36
    StringHashEntry aString rtl::OUString
sc/source/filter/inc/namebuff.hxx:37
    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:141
    TokenPool pP_Err TokenPoolPool<sal_uInt16, 8>
sc/source/filter/lotus/lotfilter.hxx:53
    LotusContext eActType enum Lotus123Typ
sc/source/filter/xml/xmlcondformat.hxx:110
    ScXMLIconSetFormatContext mpFormatData struct 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:195
    ScSpecialFilterDlg pOptionsMgr std::unique_ptr<ScFilterOptionsMgr>
sc/source/ui/inc/instbdlg.hxx:57
    ScInsertTableDlg aDocShTablesRef SfxObjectShellRef
sc/source/ui/inc/linkarea.hxx:37
    ScLinkedAreaDlg aSourceRef SfxObjectShellRef
sc/source/ui/inc/pfuncache.hxx:48
    ScPrintSelectionStatus aRanges class 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:120
    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 class ScAddress
sc/source/ui/inc/uiitems.hxx:47
    ScInputStatusItem aEndPos class 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:133
    SdModule mpErrorHdl std::unique_ptr<SfxErrorHandler>
sd/qa/unit/tiledrendering/tiledrendering.cxx:216
    SdTiledRenderingTest m_bFound _Bool
sd/qa/unit/tiledrendering/tiledrendering.cxx:217
    SdTiledRenderingTest m_nPart sal_Int32
sd/qa/unit/tiledrendering/tiledrendering.cxx:219
    SdTiledRenderingTest m_aSearchResultPart std::vector<int>
sd/qa/unit/tiledrendering/tiledrendering.cxx:220
    SdTiledRenderingTest m_nSelectionBeforeSearchResult int
sd/qa/unit/tiledrendering/tiledrendering.cxx:221
    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 class sd::Transmitter *
sd/source/ui/sidebar/MasterPageContainerProviders.hxx:144
    sd::sidebar::TemplatePreviewProvider msURL rtl::OUString
sd/source/ui/slideshow/slideshowimpl.hxx:331
    sd::SlideshowImpl mpPaneHider ::std::unique_ptr<PaneHider>
sd/source/ui/slideshow/SlideShowRestarter.hxx:73
    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:104
    sdext::presenter::(anonymous namespace)::TimerScheduler mpLateDestroy std::shared_ptr<TimerScheduler>
sfx2/inc/commandpopup/CommandPopup.hxx:113
    CommandPopupHandler mpListBox std::unique_ptr<CommandListBox>
sfx2/inc/notebookbar/NotebookbarTabControl.hxx:41
    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:450
    (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<class SfxDockingWindow>
sfx2/source/inc/StyleList.hxx:217
    StyleList m_xTreeView1DropTargetHelper std::unique_ptr<TreeViewDropTarget>
sfx2/source/inc/StyleList.hxx:218
    StyleList m_xTreeView2DropTargetHelper std::unique_ptr<TreeViewDropTarget>
sfx2/source/inc/templdgi.hxx:213
    SfxTemplateDialog_Impl m_xToolbarDropTargetHelper std::unique_ptr<ToolbarDropTarget>
sfx2/source/view/classificationcontroller.cxx:73
    sfx2::(anonymous namespace)::ClassificationCategoriesController m_aPropertyListener class sfx2::(anonymous namespace)::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:1047
    (anonymous namespace)::SlideShowImpl::PrefetchPropertiesFunc mpSlideShowImpl class (anonymous namespace)::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:45
    SmXMLImportWrapper m_bUseHTMLMLEntities _Bool
starmath/inc/view.hxx:187
    SmCmdBoxWindow aController class SmEditController
stoc/source/servicemanager/servicemanager.cxx:389
    (anonymous namespace)::OServiceManager m_SetLoadedFactories (anonymous namespace)::HashSet_Ref
store/source/storbios.cxx:58
    (anonymous namespace)::OStoreSuperBlock m_nMarked sal_uInt32
store/source/storbios.cxx:59
    (anonymous namespace)::OStoreSuperBlock m_aMarked (anonymous namespace)::OStoreSuperBlock::L
svgio/inc/svgcharacternode.hxx:84
    svgio::svgreader::SvgTextPosition maY ::std::vector<double>
svgio/inc/svgsvgnode.hxx:41
    svgio::svgreader::SvgSvgNode maVersion class svgio::svgreader::SvgNumber
svgio/inc/svgsymbolnode.hxx:32
    svgio::svgreader::SvgSymbolNode maSvgAspectRatio class svgio::svgreader::SvgAspectRatio
svgio/inc/svgusenode.hxx:41
    svgio::svgreader::SvgUseNode maWidth class svgio::svgreader::SvgNumber
svgio/inc/svgusenode.hxx:42
    svgio::svgreader::SvgUseNode maHeight class svgio::svgreader::SvgNumber
svl/source/crypto/cryptosign.cxx:98
    (anonymous namespace)::MessageImprint hashedMessage SECItem
svl/source/crypto/cryptosign.cxx:133
    (anonymous namespace)::TimeStampReq version SECItem
svl/source/crypto/cryptosign.cxx:135
    (anonymous namespace)::TimeStampReq reqPolicy SECItem
svl/source/crypto/cryptosign.cxx:136
    (anonymous namespace)::TimeStampReq nonce SECItem
svl/source/crypto/cryptosign.cxx:137
    (anonymous namespace)::TimeStampReq certReq SECItem
svl/source/crypto/cryptosign.cxx:138
    (anonymous namespace)::TimeStampReq extensions struct (anonymous namespace)::Extension *
svl/source/crypto/cryptosign.cxx:146
    (anonymous namespace)::GeneralName name CERTName
svl/source/crypto/cryptosign.cxx:154
    (anonymous namespace)::GeneralNames names struct (anonymous namespace)::GeneralName
svl/source/crypto/cryptosign.cxx:162
    (anonymous namespace)::IssuerSerial issuer struct (anonymous namespace)::GeneralNames
svl/source/crypto/cryptosign.cxx:163
    (anonymous namespace)::IssuerSerial serialNumber SECItem
svl/source/crypto/cryptosign.cxx:173
    (anonymous namespace)::ESSCertIDv2 certHash SECItem
svl/source/crypto/cryptosign.cxx:174
    (anonymous namespace)::ESSCertIDv2 issuerSerial struct (anonymous namespace)::IssuerSerial
svl/source/crypto/cryptosign.cxx:182
    (anonymous namespace)::SigningCertificateV2 certs struct (anonymous namespace)::ESSCertIDv2 **
svl/source/misc/inethist.cxx:45
    INetURLHistory_Impl::head_entry m_nMagic sal_uInt32
svl/source/undo/undo.cxx:310
    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:131
    svx::DocRecovery::TURLInfo Module rtl::OUString
svx/source/inc/StylesPreviewToolBoxControl.hxx:33
    StylesPreviewToolBoxControl m_xWeldBox std::unique_ptr<StylesPreviewWindow_Base>
svx/source/inc/StylesPreviewWindow.hxx:87
    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:96
    SwModule m_pErrorHandler std::unique_ptr<SfxErrorHandler>
sw/inc/swmodule.hxx:109
    SwModule m_xLinguServiceEventListener css::uno::Reference<css::linguistic2::XLinguServiceEventListener>
sw/inc/swwait.hxx:45
    SwWait mpLockedDispatchers o3tl::sorted_vector<SfxDispatcher *>
sw/inc/unoframe.hxx:311
    SwXOLEListener m_xOLEModel css::uno::Reference<css::frame::XModel>
sw/inc/view.hxx:194
    SwView m_xGlueDocShell std::unique_ptr<SwViewGlueDocShell>
sw/source/core/inc/swfont.hxx:978
    SvStatistics nGetTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:979
    SvStatistics nDrawText sal_uInt16
sw/source/core/inc/swfont.hxx:980
    SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:981
    SvStatistics nDrawStretchText sal_uInt16
sw/source/core/inc/swfont.hxx:982
    SvStatistics nChangeFont sal_uInt16
sw/source/core/inc/unoflatpara.hxx:136
    SwXFlatParagraphIterator m_aFlatParaList std::set<css::uno::Reference<css::text::XFlatParagraph> >
sw/source/core/layout/dbg_lay.cxx:133
    SwImplProtocol m_aVars std::vector<tools::Long>
sw/source/core/table/swtable.cxx:2786
    SwTableCellInfo::Impl m_HandledTableBoxes SwTableCellInfo::Impl::TableBoxes_t
sw/source/core/text/porfld.hxx:65
    SwFieldPortion m_nAttrFieldType sal_uInt16
sw/source/filter/html/swhtml.hxx:384
    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:59
    SwNavigationPI m_xContent2Dispatch std::unique_ptr<ToolbarUnoDispatcher>
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 class 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:154
    bridge_object::(anonymous namespace)::Test_Impl _arStruct Sequence<struct test::testtools::bridgetest::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)
ucb/source/ucp/webdav-curl/SerfLockStore.hxx:63
    http_dav_ucp::SerfLockStore m_bFinishing _Bool
unoidl/source/unoidl.cxx:83
    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 class Accelerator *
vcl/inc/driverblocklist.hxx:114
    DriverBlocklist::DriverInfo maMsg rtl::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/QtFilePicker.hxx:76
    QtFilePicker m_pLayout class QGridLayout *
vcl/inc/salmenu.hxx:33
    SalItemParams pMenu VclPtr<class Menu>
vcl/inc/salmenu.hxx:34
    SalItemParams aText rtl::OUString
vcl/inc/salmenu.hxx:37
    SalItemParams nBits enum MenuItemBits
vcl/inc/salwtype.hxx:206
    SalSurroundingTextRequestEvent mnEnd sal_uLong
vcl/inc/salwtype.hxx:218
    SalQueryCharPositionEvent mnCursorBoundX tools::Long
vcl/inc/salwtype.hxx:219
    SalQueryCharPositionEvent mnCursorBoundY tools::Long
vcl/inc/salwtype.hxx:220
    SalQueryCharPositionEvent mnCursorBoundWidth tools::Long
vcl/inc/salwtype.hxx:221
    SalQueryCharPositionEvent mnCursorBoundHeight tools::Long
vcl/inc/salwtype.hxx:222
    SalQueryCharPositionEvent mbValid _Bool
vcl/inc/salwtype.hxx:223
    SalQueryCharPositionEvent mbVertical _Bool
vcl/inc/salwtype.hxx:250
    SalInputContext mpFont rtl::Reference<LogicalFontInstance>
vcl/inc/salwtype.hxx:257
    SalSwipeEvent mnVelocityY double
vcl/inc/scanlinewriter.hxx:35
    vcl::ScanlineWriter mpCurrentScanline sal_uInt8 *
vcl/inc/svdata.hxx:460
    ImplSVEvent mpInstanceRef VclPtr<vcl::Window>
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:68
    (anonymous namespace)::PdfExportTest mpPDFium std::shared_ptr<vcl::pdf::PDFium>
vcl/source/fontsubset/sft.cxx:92
    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:1266
    _mwmhints deco unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1266
    _mwmhints flags unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1266
    _mwmhints func unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1267
    _mwmhints input_mode tools::Long
vcl/unx/generic/app/wmadaptor.cxx:1268
    _mwmhints status unsigned long
vcl/unx/generic/gdi/cairotextrender.cxx:43
    (anonymous namespace)::CairoFontsCache::CacheId maFace (anonymous namespace)::FT_Face
vcl/unx/generic/gdi/cairotextrender.cxx:45
    (anonymous namespace)::CairoFontsCache::CacheId mbEmbolden _Bool
vcl/unx/generic/gdi/cairotextrender.cxx:46
    (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:14
    GLOMenu parent_instance const GMenuModel
vcl/unx/gtk3/gtkinst.cxx:19703
    (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:1736
    (anonymous namespace)::DemoWin mxThread rtl::Reference<RenderThread>
writerfilter/source/dmapper/DocumentProtection.hxx:50
    writerfilter::dmapper::DocumentProtection m_sRedlineProtectionKey rtl::OUString
writerfilter/source/dmapper/DomainMapperTableHandler.cxx:240
    writerfilter::dmapper::TableInfo aTablePropertyIds std::vector<PropertyIds>
writerfilter/source/dmapper/PropertyMap.hxx:219
    writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
writerfilter/source/dmapper/SdtHelper.hxx:76
    writerfilter::dmapper::SdtHelper m_sDataBindingStoreItemID rtl::OUString
writerfilter/source/dmapper/WriteProtection.hxx:36
    writerfilter::dmapper::WriteProtection m_nCryptProviderType sal_Int32
xmlhelp/source/cxxhelp/provider/databases.hxx:249
    chelp::Databases m_aDatabases chelp::Databases::DatabasesTable
xmlhelp/source/cxxhelp/provider/databases.hxx:255
    chelp::Databases m_aModInfo chelp::Databases::ModInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:258
    chelp::Databases m_aKeywordInfo chelp::Databases::KeywordInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:264
    chelp::Databases m_aZipFileTable chelp::Databases::ZipFileTable
xmlhelp/source/cxxhelp/provider/databases.hxx:270
    chelp::Databases m_aCollatorTable chelp::Databases::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:50
    CertificateViewer mxGeneralPage std::unique_ptr<CertificateViewerGeneralTP>
xmlsecurity/inc/certificateviewer.hxx:51
    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>