summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/unusedfields.writeonly.results
blob: 0da8807633053ec662c15b4e1520a73715389835 (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
basctl/source/basicide/moduldlg.hxx:131
    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:183
    basctl::SbTreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/IDEComboBox.hxx:121
    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:252
    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:438
    bridges::cpp_uno::shared::VtableFactory::Slot fn void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:115
    __cxxabiv1::__cxa_exception exceptionDestructor void (*)(void *)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:116
    __cxxabiv1::__cxa_exception unexpectedHandler void (*)(void)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:117
    __cxxabiv1::__cxa_exception terminateHandler std::terminate_handler
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:118
    __cxxabiv1::__cxa_exception nextException struct __cxxabiv1::__cxa_exception *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:119
    __cxxabiv1::__cxa_exception handlerCount int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:120
    __cxxabiv1::__cxa_exception handlerSwitchValue int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:121
    __cxxabiv1::__cxa_exception actionRecord const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:122
    __cxxabiv1::__cxa_exception languageSpecificData const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:123
    __cxxabiv1::__cxa_exception catchTemp void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:125
    __cxxabiv1::__cxa_exception unwindHeader _Unwind_Exception
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:135
    __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 g float
canvas/inc/rendering/irendermodule.hxx:35
    canvas::Vertex r float
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:36
    canvas::Vertex v float
canvas/inc/rendering/irendermodule.hxx:36
    canvas::Vertex u float
canvas/inc/rendering/irendermodule.hxx:37
    canvas::Vertex z float
canvas/inc/rendering/irendermodule.hxx:37
    canvas::Vertex x float
canvas/inc/rendering/irendermodule.hxx:37
    canvas::Vertex y float
canvas/source/cairo/cairo_canvasbitmap.hxx:120
    cairocanvas::CanvasBitmap mpBufferCairo ::cairo::CairoSharedPtr
canvas/source/cairo/cairo_spritedevicehelper.hxx:74
    cairocanvas::SpriteDeviceHelper mbFullScreen _Bool
canvas/source/cairo/cairo_spritehelper.hxx:99
    cairocanvas::SpriteHelper mbTextureDirty _Bool
chart2/inc/ChartModel.hxx:142
    chart::ChartModel m_aGraphicObjectVector std::vector<GraphicObject>
chart2/inc/ChartModel.hxx:469
    chart::ChartModel mnStart sal_Int32
chart2/inc/ChartModel.hxx:470
    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:417
    chart::ChartController m_apDropTargetHelper std::unique_ptr<DropTargetHelper>
chart2/source/controller/inc/dlg_View3D.hxx:51
    chart::View3DDialog m_xIllumination std::unique_ptr<ThreeD_SceneIllumination_TabPage>
chart2/source/controller/main/ElementSelector.hxx:38
    chart::ListBoxEntryData nHierarchyDepth sal_Int32
chart2/source/inc/MediaDescriptorHelper.hxx:72
    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:86
    comphelper::EventNotifierImpl pKeepThisAlive std::shared_ptr<AsyncEventNotifierAutoJoin>
configmgr/source/components.cxx:162
    configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
connectivity/source/drivers/mork/MorkParser.hxx:132
    MorkParser error_ enum MorkErrors
connectivity/source/drivers/postgresql/pq_statics.hxx:105
    pq_sdbc_driver::ImplementationStatics types css::uno::Sequence<css::uno::Type>
connectivity/source/drivers/postgresql/pq_statics.hxx:145
    pq_sdbc_driver::Statics NO_NULLS class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:146
    pq_sdbc_driver::Statics NULABLE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:147
    pq_sdbc_driver::Statics NULLABLE_UNKNOWN class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:148
    pq_sdbc_driver::Statics SELECT class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:149
    pq_sdbc_driver::Statics UPDATE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:150
    pq_sdbc_driver::Statics INSERT class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:151
    pq_sdbc_driver::Statics DELETE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:152
    pq_sdbc_driver::Statics RULE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:153
    pq_sdbc_driver::Statics REFERENCES class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:154
    pq_sdbc_driver::Statics TRIGGER class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:155
    pq_sdbc_driver::Statics EXECUTE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:156
    pq_sdbc_driver::Statics USAGE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:157
    pq_sdbc_driver::Statics CREATE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:158
    pq_sdbc_driver::Statics TEMPORARY class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:191
    pq_sdbc_driver::Statics KEY_COLUMN class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:215
    pq_sdbc_driver::Statics HELP_TEXT class rtl::OUString
connectivity/source/inc/calc/CConnection.hxx:52
    connectivity::calc::OCalcConnection::CloseVetoButTerminateListener m_pCloseListener std::unique_ptr<utl::CloseVeto>
connectivity/source/inc/odbc/OConnection.hxx:55
    connectivity::odbc::OConnection m_sUser class rtl::OUString
connectivity/source/inc/odbc/ODatabaseMetaDataResultSet.hxx:72
    connectivity::odbc::ODatabaseMetaDataResultSet m_aStatement css::uno::WeakReferenceHelper
connectivity/source/inc/OTypeInfo.hxx:31
    connectivity::OTypeInfo aTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:32
    connectivity::OTypeInfo aLocalTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:34
    connectivity::OTypeInfo nPrecision sal_Int32
connectivity/source/inc/OTypeInfo.hxx:36
    connectivity::OTypeInfo nMaximumScale sal_Int16
connectivity/source/inc/OTypeInfo.hxx:38
    connectivity::OTypeInfo nType sal_Int16
connectivity/source/inc/writer/WConnection.hxx:66
    connectivity::writer::OWriterConnection::CloseVetoButTerminateListener m_pCloseListener std::unique_ptr<utl::CloseVeto>
cppcanvas/source/inc/implrenderer.hxx:210
    cppcanvas::internal::ImplRenderer aBaseTransform struct cppcanvas::internal::XForm
cppu/source/typelib/typelib.cxx:907
    (anonymous namespace)::BaseList set (anonymous namespace)::BaseList::Set
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:138
    (anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
cppu/source/uno/copy.hxx:39
    cppu::(anonymous namespace)::SequencePrefix nRefCount sal_Int32
cppu/source/uno/copy.hxx:40
    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:825
    (anonymous namespace)::BaseOffset set_ std::set<OUString>
cui/source/inc/cfg.hxx:409
    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/screenshotannotationdlg.hxx:30
    ScreenshotAnnotationDlg m_pImpl std::unique_ptr<ScreenshotAnnotationDlg_Impl>
dbaccess/source/core/dataaccess/databasedocument.hxx:176
    dbaccess::ODatabaseDocument m_pEventExecutor ::rtl::Reference<DocumentEventExecutor>
dbaccess/source/core/dataaccess/documentdefinition.cxx:299
    dbaccess::(anonymous namespace)::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface>
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:84
    dbaccess::OSingleSelectQueryComposer m_aColumnsCollection std::vector<std::unique_ptr<OPrivateColumns> >
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:86
    dbaccess::OSingleSelectQueryComposer m_aTablesCollection std::vector<std::unique_ptr<OPrivateTables> >
dbaccess/source/core/inc/TableDeco.hxx:67
    dbaccess::ODBTableDecorator m_xColumnMediator css::uno::Reference<css::container::XContainerListener>
dbaccess/source/filter/xml/dbloader2.cxx:233
    dbaxml::(anonymous namespace)::DBContentLoader m_xMySelf Reference<class com::sun::star::frame::XFrameLoader>
dbaccess/source/ui/browser/dbloader.cxx:71
    (anonymous namespace)::DBContentLoader m_xListener Reference<class com::sun::star::frame::XLoadEventListener>
desktop/qa/desktop_lib/test_desktop_lib.cxx:250
    DesktopLOKTest m_bModified _Bool
desktop/source/app/app.cxx:1210
    desktop::(anonymous namespace)::ExecuteGlobals pLanguageOptions std::unique_ptr<SvtLanguageOptions>
desktop/source/app/app.cxx:1211
    desktop::(anonymous namespace)::ExecuteGlobals pPathOptions std::unique_ptr<SvtPathOptions>
desktop/source/deployment/gui/dp_gui_extlistbox.hxx:138
    dp_gui::ExtensionBox_Impl m_vRemovedEntries std::vector<TEntry_Impl>
desktop/source/deployment/gui/dp_gui_updatedialog.hxx:152
    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/source/attribute/sdrfillgraphicattribute.cxx:45
    drawinglayer::attribute::ImpSdrFillGraphicAttribute mbLogSize _Bool
drawinglayer/source/attribute/sdrsceneattribute3d.cxx:30
    drawinglayer::attribute::ImpSdrSceneAttribute mfDistance double
embeddedobj/source/inc/oleembobj.hxx:132
    OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:144
    OleEmbeddedObject m_xClosePreventer css::uno::Reference<css::util::XCloseListener>
embeddedobj/source/inc/oleembobj.hxx:166
    OleEmbeddedObject m_bHasSizeToSet _Bool
embeddedobj/source/inc/oleembobj.hxx:167
    OleEmbeddedObject m_aSizeToSet css::awt::Size
embeddedobj/source/inc/oleembobj.hxx:168
    OleEmbeddedObject m_nAspectToSet sal_Int64
embeddedobj/source/inc/oleembobj.hxx:173
    OleEmbeddedObject m_bGotStatus _Bool
embeddedobj/source/inc/oleembobj.hxx:174
    OleEmbeddedObject m_nStatus sal_Int64
embeddedobj/source/inc/oleembobj.hxx:175
    OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:189
    OleEmbeddedObject m_bFromClipboard _Bool
emfio/inc/mtftools.hxx:511
    emfio::MtfTools mrclBounds tools::Rectangle
extensions/source/propctrlr/genericpropertyhandler.hxx:63
    pcr::GenericPropertyHandler m_xComponentIntrospectionAccess css::uno::Reference<css::beans::XIntrospectionAccess>
extensions/source/scanner/scanner.hxx:47
    ScannerManager mpData void *
framework/inc/services/layoutmanager.hxx:248
    framework::LayoutManager m_bGlobalSettings _Bool
framework/inc/services/layoutmanager.hxx:262
    framework::LayoutManager m_pGlobalSettings std::unique_ptr<GlobalSettings>
framework/inc/uielement/langselectionmenucontroller.hxx:75
    framework::LanguageSelectionMenuController m_xMenuDispatch_Lang css::uno::Reference<css::frame::XDispatch>
framework/inc/uielement/langselectionmenucontroller.hxx:77
    framework::LanguageSelectionMenuController m_xMenuDispatch_Font css::uno::Reference<css::frame::XDispatch>
framework/inc/uielement/langselectionmenucontroller.hxx:79
    framework::LanguageSelectionMenuController m_xMenuDispatch_CharDlgForParagraph css::uno::Reference<css::frame::XDispatch>
framework/source/layoutmanager/toolbarlayoutmanager.hxx:272
    framework::ToolbarLayoutManager m_pGlobalSettings std::unique_ptr<GlobalSettings>
framework/source/layoutmanager/toolbarlayoutmanager.hxx:276
    framework::ToolbarLayoutManager m_bGlobalSettings _Bool
i18nutil/source/utility/paper.cxx:305
    paperword string char *
include/basegfx/DrawCommands.hxx:81
    gfx::LinearGradientInfo maMatrix basegfx::B2DHomMatrix
include/basegfx/utils/systemdependentdata.hxx:66
    basegfx::MinimalSystemDependentDataManager maSystemDependentDataReferences std::set<SystemDependentData_SharedPtr>
include/basic/basmgr.hxx:56
    BasicError nReason enum BasicErrorReason
include/basic/sbxvar.hxx:73
    SbxValues::(anonymous) pData void *
include/comphelper/parallelsort.hxx:89
    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:44
    drawinglayer::attribute::SdrLineFillShadowAttribute3D maLineStartEnd const class drawinglayer::attribute::SdrLineStartEndAttribute
include/drawinglayer/primitive2d/mediaprimitive2d.hxx:50
    drawinglayer::primitive2d::MediaPrimitive2D maURL class rtl::OUString
include/drawinglayer/texture/texture.hxx:77
    drawinglayer::texture::GeoTexSvxGradient maDefinitionRange basegfx::B2DRange
include/drawinglayer/texture/texture.hxx:80
    drawinglayer::texture::GeoTexSvxGradient mfBorder double
include/drawinglayer/texture/texture.hxx:278
    drawinglayer::texture::GeoTexSvxHatch mfAngle double
include/editeng/adjustitem.hxx:37
    SvxAdjustItem bLeft _Bool
include/editeng/outlobj.hxx:44
    OutlinerParaObjData mbIsEditDoc _Bool
include/editeng/unotext.hxx:417
    SvxUnoTextBase xParentText css::uno::Reference<css::text::XText>
include/editeng/unotext.hxx:586
    SvxUnoTextContentEnumeration mxParentText css::uno::Reference<css::text::XText>
include/framework/addonsoptions.hxx:74
    framework::MergeNotebookBarInstruction aMergePoint class rtl::OUString
include/framework/addonsoptions.hxx:75
    framework::MergeNotebookBarInstruction aMergeCommand class rtl::OUString
include/framework/addonsoptions.hxx:76
    framework::MergeNotebookBarInstruction aMergeCommandParameter class rtl::OUString
include/framework/addonsoptions.hxx:77
    framework::MergeNotebookBarInstruction aMergeFallback class rtl::OUString
include/framework/addonsoptions.hxx:78
    framework::MergeNotebookBarInstruction aMergeContext class rtl::OUString
include/framework/dispatchhelper.hxx:73
    framework::DispatchHelper m_xBroadcaster css::uno::Reference<css::uno::XInterface>
include/framework/framelistanalyzer.hxx:121
    framework::FrameListAnalyzer m_xHelp css::uno::Reference<css::frame::XFrame>
include/LibreOfficeKit/LibreOfficeKit.h:326
    _LibreOfficeKitDocumentClass getPartInfo char *(*)(LibreOfficeKitDocument *, int)
include/LibreOfficeKit/LibreOfficeKit.h:331
    _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:35
    SfxMacroInfoItem aCommentText const class rtl::OUString
include/svtools/brwbox.hxx:247
    BrowseBox::CursorMoveAttempt m_nCol const long
include/svtools/brwbox.hxx:248
    BrowseBox::CursorMoveAttempt m_nRow const long
include/svtools/brwbox.hxx:249
    BrowseBox::CursorMoveAttempt m_bScrolledToReachCell const _Bool
include/svtools/ctrltool.hxx:150
    FontList mpDev2 VclPtr<class OutputDevice>
include/svx/AccessibilityCheckDialog.hxx:46
    svx::AccessibilityCheckDialog m_aAccessibilityCheckEntries std::vector<std::unique_ptr<AccessibilityCheckEntry> >
include/svx/bmpmask.hxx:128
    SvxBmpMask aSelItem class SvxBmpMaskSelectItem
include/svx/fillctrl.hxx:83
    FillControl mxColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
include/svx/float3d.hxx:204
    Svx3DWin pControllerItem std::unique_ptr<Svx3DCtrlItem>
include/svx/fmtools.hxx:134
    FmXDisposeListener m_pAdapter rtl::Reference<FmXDisposeMultiplexer>
include/svx/galctrl.hxx:39
    GalleryPreview mxDragDropTargetHelper std::unique_ptr<GalleryDragDrop>
include/svx/galctrl.hxx:92
    GalleryIconView mxDragDropTargetHelper std::unique_ptr<GalleryDragDrop>
include/svx/gridctrl.hxx:256
    DbGridControl m_pCursorDisposeListener std::unique_ptr<DisposeListenerGridBridge>
include/svx/ofaitem.hxx:44
    OfaRefItem mxRef rtl::Reference<reference_type>
include/svx/srchdlg.hxx:165
    SvxSearchDialog pSearchController std::unique_ptr<SvxSearchController>
include/svx/srchdlg.hxx:166
    SvxSearchDialog pOptionsController std::unique_ptr<SvxSearchController>
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/accel.hxx:42
    Accelerator maCurKeyCode vcl::KeyCode
include/vcl/menu.hxx:454
    MenuBar::MenuBarButtonCallbackArg bHighlight _Bool
include/vcl/NotebookBarAddonsMerger.hxx:54
    AddonNotebookBarItem sTarget class rtl::OUString
include/vcl/NotebookBarAddonsMerger.hxx:55
    AddonNotebookBarItem sContext class rtl::OUString
include/vcl/NotebookBarAddonsMerger.hxx:56
    AddonNotebookBarItem sControlType class rtl::OUString
include/vcl/NotebookBarAddonsMerger.hxx:57
    AddonNotebookBarItem nWidth sal_uInt16
include/vcl/opengl/OpenGLContext.hxx:32
    GLWindow bMultiSampleSupported _Bool
include/vcl/pdfextoutdevdata.hxx:83
    vcl::PDFExtOutDevData mbSinglePageSheets _Bool
include/vcl/salnativewidgets.hxx:467
    ToolbarValue mbIsTopDockingArea _Bool
include/vcl/salnativewidgets.hxx:532
    PushButtonValue mbBevelButton _Bool
include/vcl/salnativewidgets.hxx:533
    PushButtonValue mbSingleLine _Bool
include/vcl/sysdata.hxx:69
    SystemEnvData pSalFrame void *
include/vcl/textrectinfo.hxx:32
    TextRectInfo mnLineCount sal_uInt16
include/vcl/vclenum.hxx:199
    ItalicMatrix yy double
include/vcl/vclenum.hxx:199
    ItalicMatrix yx double
include/vcl/vclenum.hxx:199
    ItalicMatrix xy double
include/vcl/vclenum.hxx:199
    ItalicMatrix xx double
include/xmloff/shapeimport.hxx:180
    SdXML3DSceneAttributesHelper mbVRPUsed _Bool
include/xmloff/shapeimport.hxx:181
    SdXML3DSceneAttributesHelper mbVPNUsed _Bool
include/xmloff/shapeimport.hxx:182
    SdXML3DSceneAttributesHelper mbVUPUsed _Bool
io/source/stm/odata.cxx:244
    io_stm::(anonymous namespace)::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n2 sal_uInt32
io/source/stm/odata.cxx:244
    io_stm::(anonymous namespace)::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n1 sal_uInt32
jvmfwk/inc/vendorbase.hxx:174
    jfw_plugin::VendorBase m_sArch class rtl::OUString
l10ntools/inc/common.hxx:31
    common::HandledArgs m_bUTF8BOM _Bool
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:29
    GtvRenderingArgs m_aBackgroundColor std::string
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:63
    GtvApplicationWindow statusbar GtkWidget *
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.cxx:39
    (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:72
    rptui::OObjectBase m_xKeepShapeAlive css::uno::Reference<css::uno::XInterface>
sal/qa/osl/file/osl_File.cxx:4152
    osl_Directory::isOpen nError2 osl::class FileBase::RC
sal/qa/osl/file/osl_File.cxx:4152
    osl_Directory::isOpen nError1 osl::class FileBase::RC
sal/qa/osl/file/osl_File.cxx:4210
    osl_Directory::close nError2 osl::class FileBase::RC
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/rtl/math.cxx:1025
     md union sal_math_Double
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:262
    ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:263
    ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:265
    ScCompiler::AddInMap pUpper const char *
sc/inc/document.hxx:2604
    ScMutationDisable mpDocument class ScDocument *
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:118
    ScMatrix mbCloneIfConst _Bool
sc/inc/scmod.hxx:103
    ScModule m_pErrorHdl std::unique_ptr<SfxErrorHandler>
sc/inc/tabopparams.hxx:38
    ScInterpreterTableOpParams bValid _Bool
sc/source/core/data/column4.cxx:1311
    (anonymous namespace)::StartListeningFormulaCellsHandler mnStartRow SCROW
sc/source/core/data/column.cxx:1399
    (anonymous namespace)::CopyByCloneHandler meListenType sc::StartListeningType
sc/source/core/data/column.cxx:1400
    (anonymous namespace)::CopyByCloneHandler mnFormulaCellCloneFlags const enum ScCloneFlags
sc/source/core/data/table2.cxx:3688
    (anonymous namespace)::OutlineArrayFinder mpArray class ScOutlineArray *
sc/source/filter/excel/xltoolbar.hxx:25
    TBCCmd A _Bool
sc/source/filter/excel/xltoolbar.hxx:26
    TBCCmd B _Bool
sc/source/filter/excel/xltoolbar.hxx:27
    TBCCmd cmdType sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:28
    TBCCmd C _Bool
sc/source/filter/excel/xltoolbar.hxx:29
    TBCCmd reserved3 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:54
    ScCTB rVisualData std::vector<TBVisualData>
sc/source/filter/excel/xltools.cxx:100
     smD union sal_math_Double
sc/source/filter/html/htmlpars.cxx:3017
    (anonymous namespace)::CSSHandler maPropName struct (anonymous namespace)::CSSHandler::MemStr
sc/source/filter/html/htmlpars.cxx:3018
    (anonymous namespace)::CSSHandler maPropValue struct (anonymous namespace)::CSSHandler::MemStr
sc/source/filter/inc/exp_op.hxx:47
    ExportBiff5 pExcRoot struct RootData *
sc/source/filter/inc/imp_op.hxx:84
    ImportExcel::LastFormula mpCell class ScFormulaCell *
sc/source/filter/inc/namebuff.hxx:38
    StringHashEntry aString const class rtl::OUString
sc/source/filter/inc/namebuff.hxx:39
    StringHashEntry nHash const sal_uInt32
sc/source/filter/inc/orcusinterface.hxx:378
    ScOrcusStyles::fill maBgColor class Color
sc/source/filter/inc/orcusinterface.hxx:448
    ScOrcusStyles::xf mnStyleXf size_t
sc/source/filter/inc/orcusinterface.hxx:468
    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:54
    LotusContext eActType enum Lotus123Typ
sc/source/filter/oox/biffhelper.cxx:37
    oox::xls::(anonymous namespace)::DecodedDouble maStruct union sal_math_Double
sc/source/filter/xml/xmlcondformat.hxx:111
    ScXMLIconSetFormatContext mpFormatData struct ScIconSetFormatData *
sc/source/filter/xml/XMLDetectiveContext.hxx:97
    ScXMLDetectiveHighlightedContext pDetectiveObjVec ScMyImpDetectiveObjVec *
sc/source/filter/xml/xmldpimp.hxx:248
    ScXMLDataPilotFieldContext mbHasHiddenMember _Bool
sc/source/filter/xml/xmldrani.hxx:72
    ScXMLDatabaseRangeContext bIsSelection _Bool
sc/source/filter/xml/xmlexternaltabi.hxx:111
    ScXMLExternalRefCellContext mnCellType sal_Int16
sc/source/ui/inc/AccessibleText.hxx:194
    ScAccessiblePreviewHeaderCellTextData mbRowHeader const _Bool
sc/source/ui/inc/datastream.hxx:105
    sc::DataStream mnSettings sal_uInt32
sc/source/ui/inc/drawview.hxx:42
    ScDrawView pDropMarker std::unique_ptr<SdrDropMarkerOverlay>
sc/source/ui/inc/drwtrans.hxx:45
    ScDrawTransferObj m_aDrawPersistRef SfxObjectShellRef
sc/source/ui/inc/filtdlg.hxx:174
    ScSpecialFilterDlg pOptionsMgr std::unique_ptr<ScFilterOptionsMgr>
sc/source/ui/inc/instbdlg.hxx:57
    ScInsertTableDlg aDocShTablesRef SfxObjectShellRef
sc/source/ui/inc/linkarea.hxx:38
    ScLinkedAreaDlg aSourceRef SfxObjectShellRef
sc/source/ui/inc/pfuncache.hxx:49
    ScPrintSelectionStatus aRanges class ScRangeList
sc/source/ui/inc/PivotLayoutTreeList.hxx:21
    ScPivotLayoutTreeList maItemValues std::vector<std::unique_ptr<ScItemValue> >
sc/source/ui/inc/PivotLayoutTreeListData.hxx:38
    ScPivotLayoutTreeListData maDataItemValues std::vector<std::unique_ptr<ScItemValue> >
sc/source/ui/inc/preview.hxx:47
    ScPreview nTabPage long
sc/source/ui/inc/tabvwsh.hxx:123
    ScTabViewShell xDisProvInterceptor css::uno::Reference<css::frame::XDispatchProviderInterceptor>
sc/source/ui/inc/transobj.hxx:47
    ScTransferObj m_aDrawPersistRef SfxObjectShellRef
sc/source/ui/inc/uiitems.hxx:47
    ScInputStatusItem aStartPos const class ScAddress
sc/source/ui/inc/uiitems.hxx:48
    ScInputStatusItem aEndPos const 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:77
    sc::sidebar::CellAppearancePropertyPanel mxBackColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/CellAppearancePropertyPanel.hxx:81
    sc::sidebar::CellAppearancePropertyPanel mxLineColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/sidebar/NumberFormatPropertyPanel.hxx:67
    sc::sidebar::NumberFormatPropertyPanel mxCatagoryDispatch std::unique_ptr<ToolbarUnoDispatcher>
sc/source/ui/vba/vbachartobject.hxx:44
    ScVbaChartObject oShapeHelper std::unique_ptr<ov::ShapeHelper>
sd/inc/sdmod.hxx:133
    SdModule mpErrorHdl std::unique_ptr<SfxErrorHandler>
sd/source/ui/dlg/RemoteDialogClientBox.hxx:67
    sd::ClientBox m_vEntries std::vector<TClientBoxEntry>
sd/source/ui/framework/module/ToolBarModule.hxx:75
    sd::framework::ToolBarModule mpToolBarManagerLock std::unique_ptr<ToolBarManager::UpdateLock, o3tl::default_delete<ToolBarManager::UpdateLock> >
sd/source/ui/inc/AccessibleDocumentViewBase.hxx:245
    accessibility::AccessibleDocumentViewBase mpWindow VclPtr< ::sd::Window>
sd/source/ui/inc/animobjs.hxx:120
    sd::AnimationWindow pControllerItem std::unique_ptr<AnimationControllerItem>
sd/source/ui/inc/fudspord.hxx:51
    sd::FuDisplayOrder mpOverlay std::unique_ptr<SdrDropMarkerOverlay>
sd/source/ui/inc/navigatr.hxx:124
    SdNavigatorWin mpNavigatorCtrlItem std::unique_ptr<SdNavigatorControllerItem>
sd/source/ui/inc/navigatr.hxx:125
    SdNavigatorWin mpPageNameCtrlItem std::unique_ptr<SdPageNameControllerItem>
sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx:73
    sd::tools::TimerBasedTaskExecution mpSelf std::shared_ptr<TimerBasedTaskExecution>
sd/source/ui/inc/unopage.hxx:279
    SdPageLinkTargets mxPage css::uno::Reference<css::drawing::XDrawPage>
sd/source/ui/inc/ViewShellImplementation.hxx:76
    sd::ViewShell::Implementation::ToolBarManagerLock mpLock ::std::unique_ptr<ToolBarManager::UpdateLock, o3tl::default_delete<ToolBarManager::UpdateLock> >
sd/source/ui/inc/ViewShellImplementation.hxx:87
    sd::ViewShell::Implementation::ToolBarManagerLock mpSelf std::shared_ptr<ToolBarManagerLock>
sd/source/ui/remotecontrol/Receiver.hxx:35
    sd::Receiver pTransmitter class sd::Transmitter *
sd/source/ui/sidebar/MasterPageContainerProviders.hxx:136
    sd::sidebar::TemplatePreviewProvider msURL const class rtl::OUString
sd/source/ui/slideshow/slideshowimpl.hxx:333
    sd::SlideshowImpl mpPaneHider ::std::unique_ptr<PaneHider>
sd/source/ui/slideshow/SlideShowRestarter.hxx:70
    sd::SlideShowRestarter mpSelf ::std::shared_ptr<SlideShowRestarter>
sd/source/ui/slidesorter/controller/SlsListener.hxx:147
    sd::slidesorter::controller::Listener mpModelChangeLock std::shared_ptr<SlideSorterController::ModelChangeLock>
sd/source/ui/slidesorter/inc/controller/SlsClipboard.hxx:118
    sd::slidesorter::controller::Clipboard mxUndoContext std::unique_ptr<UndoContext>
sd/source/ui/table/TableDesignPane.hxx:101
    sd::TableDesignPane m_xImpl std::unique_ptr<TableDesignWidget>
sd/source/ui/view/ToolBarManager.cxx:315
    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/notebookbar/NotebookbarTabControl.hxx:43
    NotebookbarTabControl m_pListener css::uno::Reference<css::ui::XUIConfigurationListener>
sfx2/source/appl/fileobj.hxx:38
    SvFileObject mxDelMed tools::SvRef<SfxMedium>
sfx2/source/doc/sfxbasemodel.cxx:449
    (anonymous namespace)::SfxSaveGuard m_pFramesLock std::unique_ptr<SfxOwnFramesLocker>
sfx2/source/inc/appdata.hxx:73
    SfxAppData_Impl pDocTopics std::unique_ptr<SfxDdeDocTopics_Impl>
sfx2/source/inc/appdata.hxx:74
    SfxAppData_Impl pTriggerTopic std::unique_ptr<SfxDdeTriggerTopic_Impl>
sfx2/source/inc/appdata.hxx:75
    SfxAppData_Impl pDdeService2 std::unique_ptr<DdeService>
sfx2/source/inc/appdata.hxx:89
    SfxAppData_Impl mxAppPickList std::unique_ptr<SfxPickList>
sfx2/source/inc/splitwin.hxx:52
    SfxSplitWindow pActive VclPtr<class SfxDockingWindow>
sfx2/source/view/classificationcontroller.cxx:73
    sfx2::(anonymous namespace)::ClassificationCategoriesController m_aPropertyListener class sfx2::(anonymous namespace)::ClassificationPropertyListener
slideshow/source/engine/opengl/TransitionImpl.hxx:300
    Vertex normal glm::vec3
slideshow/source/engine/opengl/TransitionImpl.hxx:301
    Vertex texcoord glm::vec2
slideshow/source/engine/slideshowimpl.cxx:1018
    (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/view.hxx:156
    SmCmdBoxWindow aController class SmEditController
stoc/source/servicemanager/servicemanager.cxx:392
    (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:89
    svgio::svgreader::SvgTextPosition maY ::std::vector<double>
svgio/inc/svgsvgnode.hxx:44
    svgio::svgreader::SvgSvgNode maVersion class svgio::svgreader::SvgNumber
svgio/inc/svgsymbolnode.hxx:35
    svgio::svgreader::SvgSymbolNode maSvgAspectRatio class svgio::svgreader::SvgAspectRatio
svgio/inc/svgusenode.hxx:43
    svgio::svgreader::SvgUseNode maWidth class svgio::svgreader::SvgNumber
svgio/inc/svgusenode.hxx:44
    svgio::svgreader::SvgUseNode maHeight class svgio::svgreader::SvgNumber
svl/source/crypto/cryptosign.cxx:113
    (anonymous namespace)::MessageImprint hashedMessage SECItem
svl/source/crypto/cryptosign.cxx:148
    (anonymous namespace)::TimeStampReq version SECItem
svl/source/crypto/cryptosign.cxx:150
    (anonymous namespace)::TimeStampReq reqPolicy SECItem
svl/source/crypto/cryptosign.cxx:151
    (anonymous namespace)::TimeStampReq nonce SECItem
svl/source/crypto/cryptosign.cxx:152
    (anonymous namespace)::TimeStampReq certReq SECItem
svl/source/crypto/cryptosign.cxx:153
    (anonymous namespace)::TimeStampReq extensions struct (anonymous namespace)::Extension *
svl/source/crypto/cryptosign.cxx:161
    (anonymous namespace)::GeneralName name CERTName
svl/source/crypto/cryptosign.cxx:169
    (anonymous namespace)::GeneralNames names struct (anonymous namespace)::GeneralName
svl/source/crypto/cryptosign.cxx:177
    (anonymous namespace)::IssuerSerial issuer struct (anonymous namespace)::GeneralNames
svl/source/crypto/cryptosign.cxx:178
    (anonymous namespace)::IssuerSerial serialNumber SECItem
svl/source/crypto/cryptosign.cxx:188
    (anonymous namespace)::ESSCertIDv2 certHash SECItem
svl/source/crypto/cryptosign.cxx:189
    (anonymous namespace)::ESSCertIDv2 issuerSerial struct (anonymous namespace)::IssuerSerial
svl/source/crypto/cryptosign.cxx:197
    (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:316
    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 const double
svx/inc/sdr/primitive2d/sdrolecontentprimitive2d.hxx:46
    drawinglayer::primitive2d::SdrOleContentPrimitive2D mnGraphicVersion const sal_uInt32
svx/source/form/dataaccessdescriptor.cxx:39
    svx::ODADescriptorImpl m_bSetOutOfDate _Bool
svx/source/form/formcontroller.cxx:211
    svxform::(anonymous namespace)::ColumnInfo nNullable sal_Int32
svx/source/inc/docrecovery.hxx:131
    svx::DocRecovery::TURLInfo Module class rtl::OUString
svx/source/sdr/attribute/sdrformtextattribute.cxx:153
    drawinglayer::attribute::ImpSdrFormTextAttribute mnFormTextShdwTransp const sal_uInt16
svx/source/sdr/attribute/sdrtextattribute.cxx:49
    drawinglayer::attribute::ImpSdrTextAttribute maPropertiesVersion sal_uInt32
svx/source/sdr/attribute/sdrtextattribute.cxx:63
    drawinglayer::attribute::ImpSdrTextAttribute mbWrongSpell const _Bool
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:44
    svx::sidebar::ListsPropertyPanel mxNumBulletDispatcher std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/lists/ListsPropertyPanel.hxx:46
    svx::sidebar::ListsPropertyPanel mxOutlineDispatcher std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:75
    svx::sidebar::ParaPropertyPanel mxHorzAlignDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:77
    svx::sidebar::ParaPropertyPanel mxVertAlignDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:80
    svx::sidebar::ParaPropertyPanel mxNumBulletDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:82
    svx::sidebar::ParaPropertyPanel mxBackColorDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:85
    svx::sidebar::ParaPropertyPanel mxWriteDirectionDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:87
    svx::sidebar::ParaPropertyPanel mxParaSpacingDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:89
    svx::sidebar::ParaPropertyPanel mxLineSpacingDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/paragraph/ParaPropertyPanel.hxx:91
    svx::sidebar::ParaPropertyPanel mxIndentDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:102
    svx::sidebar::PosSizePropertyPanel mxFlipDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:105
    svx::sidebar::PosSizePropertyPanel mxArrangeDispatch std::unique_ptr<ToolbarUnoDispatcher>
svx/source/svdraw/svdpdf.hxx:193
    ImpSdrPdfImport mdPageWidthPts double
svx/source/tbxctrls/tbcontrl.cxx:202
    (anonymous namespace)::SvxFontNameBox_Impl 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:184
    SwView m_xGlueDocShell std::unique_ptr<SwViewGlueDocShell>
sw/source/core/inc/swfont.hxx:986
    SvStatistics nGetTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:987
    SvStatistics nDrawText sal_uInt16
sw/source/core/inc/swfont.hxx:988
    SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:989
    SvStatistics nDrawStretchText sal_uInt16
sw/source/core/inc/swfont.hxx:990
    SvStatistics nChangeFont sal_uInt16
sw/source/core/inc/unoflatpara.hxx:140
    SwXFlatParagraphIterator m_aFlatParaList std::set<css::uno::Reference<css::text::XFlatParagraph> >
sw/source/core/layout/dbg_lay.cxx:131
    SwImplProtocol aVars std::vector<long>
sw/source/core/table/swtable.cxx:2598
    SwTableCellInfo::Impl m_HandledTableBoxes SwTableCellInfo::Impl::TableBoxes_t
sw/source/core/text/porfld.hxx:59
    SwFieldPortion m_nAttrFieldType sal_uInt16
sw/source/filter/html/swhtml.hxx:367
    SwHTMLParser m_aOrphanedTableBoxes std::vector<std::unique_ptr<SwTableBox> >
sw/source/filter/inc/rtf.hxx:28
    RTFSurround::(anonymous union)::(anonymous) nGoldCut sal_uInt8
sw/source/filter/inc/rtf.hxx:29
    RTFSurround::(anonymous union)::(anonymous) nOrder sal_uInt8
sw/source/filter/inc/rtf.hxx:30
    RTFSurround::(anonymous union)::(anonymous) nJunk sal_uInt8
sw/source/filter/inc/rtf.hxx:31
    RTFSurround::(anonymous) Flags struct (anonymous struct at /media/disk2/libo4/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:146
    MailDispatcher m_aListenerVector std::vector< ::rtl::Reference<IMailDispatcherListener> >
sw/source/uibase/inc/maildispatcher.hxx:152
    MailDispatcher m_xSelfReference ::rtl::Reference<MailDispatcher>
sw/source/uibase/inc/redlndlg.hxx:62
    SwRedlineAcceptDlg m_aUsedSeqNo class SwRedlineDataParentSortArr
sw/source/uibase/sidebar/TableEditPanel.hxx:51
    sw::sidebar::TableEditPanel m_xInsertDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:53
    sw::sidebar::TableEditPanel m_xSelectDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:55
    sw::sidebar::TableEditPanel m_xRowSizingDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:57
    sw::sidebar::TableEditPanel m_xColumnSizingDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:59
    sw::sidebar::TableEditPanel m_xDeleteDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:61
    sw::sidebar::TableEditPanel m_xSplitMergeDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/TableEditPanel.hxx:63
    sw::sidebar::TableEditPanel m_xMiscDispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/WrapPropertyPanel.hxx:70
    sw::sidebar::WrapPropertyPanel mxWrapOptions1Dispatch std::unique_ptr<ToolbarUnoDispatcher>
sw/source/uibase/sidebar/WrapPropertyPanel.hxx:73
    sw::sidebar::WrapPropertyPanel mxWrapOptions2Dispatch std::unique_ptr<ToolbarUnoDispatcher>
testtools/source/bridgetest/cppobj.cxx:149
    bridge_object::(anonymous namespace)::Test_Impl _arStruct Sequence<struct test::testtools::bridgetest::TestElement>
ucb/source/ucp/gio/gio_mount.hxx:74
    OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:77
    OOoMountOperationClass _gtk_reserved1 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:78
    OOoMountOperationClass _gtk_reserved2 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:79
    OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:80
    OOoMountOperationClass _gtk_reserved4 void (*)(void)
ucb/source/ucp/webdav-neon/NeonSession.cxx:163
    (anonymous namespace)::NeonRequestContext pResource struct webdav_ucp::DAVResource *
unoidl/source/legacyprovider.cxx:86
    unoidl::detail::(anonymous namespace)::Cursor manager_ rtl::Reference<Manager>
unoidl/source/unoidl.cxx:83
    unoidl::(anonymous namespace)::AggregatingCursor seen_ std::set<OUString>
unoidl/source/unoidlprovider.hxx:32
    unoidl::detail::NestedMap trace std::set<Map>
unotools/source/config/defaultoptions.cxx:70
    SvtDefaultOptions_Impl m_aAddinPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:71
    SvtDefaultOptions_Impl m_aAutoCorrectPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:72
    SvtDefaultOptions_Impl m_aAutoTextPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:73
    SvtDefaultOptions_Impl m_aBackupPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:74
    SvtDefaultOptions_Impl m_aBasicPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:75
    SvtDefaultOptions_Impl m_aBitmapPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:76
    SvtDefaultOptions_Impl m_aConfigPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:77
    SvtDefaultOptions_Impl m_aDictionaryPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:78
    SvtDefaultOptions_Impl m_aFavoritesPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:79
    SvtDefaultOptions_Impl m_aFilterPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:80
    SvtDefaultOptions_Impl m_aGalleryPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:81
    SvtDefaultOptions_Impl m_aGraphicPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:82
    SvtDefaultOptions_Impl m_aHelpPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:83
    SvtDefaultOptions_Impl m_aLinguisticPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:84
    SvtDefaultOptions_Impl m_aModulePath class rtl::OUString
unotools/source/config/defaultoptions.cxx:85
    SvtDefaultOptions_Impl m_aPalettePath class rtl::OUString
unotools/source/config/defaultoptions.cxx:86
    SvtDefaultOptions_Impl m_aPluginPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:87
    SvtDefaultOptions_Impl m_aTempPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:88
    SvtDefaultOptions_Impl m_aTemplatePath class rtl::OUString
unotools/source/config/defaultoptions.cxx:89
    SvtDefaultOptions_Impl m_aUserConfigPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:90
    SvtDefaultOptions_Impl m_aWorkPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:91
    SvtDefaultOptions_Impl m_aClassificationPath class rtl::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:52
    XPath::CNodeList m_pXPathObj std::shared_ptr<xmlXPathObject>
vbahelper/source/vbahelper/vbafillformat.hxx:36
    ScVbaFillFormat m_nForeColor sal_Int32
vcl/inc/accel.h:33
    ImplAccelEntry mpAutoAccel class Accelerator *
vcl/inc/driverblocklist.hxx:97
    DriverBlocklist::DriverInfo maMsg class rtl::OUString
vcl/inc/fontselect.hxx:61
    FontSelectPattern mfExactHeight float
vcl/inc/opengl/RenderList.hxx:29
    Vertex color glm::vec4
vcl/inc/opengl/RenderList.hxx:30
    Vertex lineData glm::vec4
vcl/inc/pdf/BitmapID.hxx:24
    vcl::pdf::BitmapID m_nChecksum BitmapChecksum
vcl/inc/pdf/BitmapID.hxx:25
    vcl::pdf::BitmapID m_nMaskChecksum BitmapChecksum
vcl/inc/qt5/Qt5Frame.hxx:97
    Qt5Frame m_pSalMenu class Qt5Menu *
vcl/inc/qt5/Qt5Graphics.hxx:53
    Qt5Graphics m_pFontCollection class PhysicalFontCollection *
vcl/inc/qt5/Qt5Instance.hxx:59
    Qt5Instance m_pQApplication std::unique_ptr<QApplication>
vcl/inc/qt5/Qt5Instance.hxx:60
    Qt5Instance m_pFakeArgvFreeable std::vector<FreeableCStr>
vcl/inc/qt5/Qt5Instance.hxx:61
    Qt5Instance m_pFakeArgv std::unique_ptr<char *[]>
vcl/inc/qt5/Qt5Instance.hxx:62
    Qt5Instance m_pFakeArgc std::unique_ptr<int>
vcl/inc/salmenu.hxx:33
    SalItemParams pMenu VclPtr<class Menu>
vcl/inc/salmenu.hxx:34
    SalItemParams aText class rtl::OUString
vcl/inc/salmenu.hxx:37
    SalItemParams nBits enum MenuItemBits
vcl/inc/salmenu.hxx:42
    SalMenuButtonItem mnId sal_uInt16
vcl/inc/salmenu.hxx:43
    SalMenuButtonItem maImage class Image
vcl/inc/salmenu.hxx:44
    SalMenuButtonItem maToolTipText class rtl::OUString
vcl/inc/salwtype.hxx:198
    SalSurroundingTextRequestEvent mnStart sal_uLong
vcl/inc/salwtype.hxx:199
    SalSurroundingTextRequestEvent mnEnd sal_uLong
vcl/inc/salwtype.hxx:210
    SalQueryCharPositionEvent mbValid _Bool
vcl/inc/salwtype.hxx:212
    SalQueryCharPositionEvent mbVertical _Bool
vcl/inc/salwtype.hxx:213
    SalQueryCharPositionEvent mnCursorBoundX long
vcl/inc/salwtype.hxx:214
    SalQueryCharPositionEvent mnCursorBoundY long
vcl/inc/salwtype.hxx:215
    SalQueryCharPositionEvent mnCursorBoundWidth long
vcl/inc/salwtype.hxx:216
    SalQueryCharPositionEvent mnCursorBoundHeight long
vcl/inc/salwtype.hxx:243
    SalInputContext mpFont rtl::Reference<LogicalFontInstance>
vcl/inc/salwtype.hxx:250
    SalSwipeEvent mnVelocityY double
vcl/inc/scanlinewriter.hxx:36
    vcl::ScanlineWriter mpCurrentScanline sal_uInt8 *
vcl/inc/sft.hxx:742
    vcl::TrueTypeFont mapper sal_uInt32 (*)(const sal_uInt8 *, sal_uInt32, sal_uInt32)
vcl/inc/svdata.hxx:418
    ImplSVEvent mpInstanceRef VclPtr<vcl::Window>
vcl/inc/unx/gtk/gtkframe.hxx:80
    GtkSalFrame::IMHandler::PreviousKeyPress window GdkWindow *
vcl/inc/unx/gtk/gtkframe.hxx:81
    GtkSalFrame::IMHandler::PreviousKeyPress send_event gint8
vcl/inc/unx/gtk/gtkframe.hxx:82
    GtkSalFrame::IMHandler::PreviousKeyPress time guint32
vcl/inc/unx/salgdi.h:311
    X11SalGraphics nTextPixel_ Pixel
vcl/inc/WidgetThemeLibrary.hxx:20
    vcl::WidgetDrawStyle nSize uint32_t
vcl/inc/WidgetThemeLibrary.hxx:94
    vcl::ControlDrawParameters eButtonValue enum ButtonValue
vcl/inc/WidgetThemeLibrary.hxx:95
    vcl::ControlDrawParameters bIsAction _Bool
vcl/inc/WidgetThemeLibrary.hxx:96
    vcl::ControlDrawParameters nValue int64_t
vcl/source/filter/graphicfilter.cxx:613
    (anonymous namespace)::ImpFilterLibCacheEntry maFiltername const class rtl::OUString
vcl/source/filter/graphicfilter.cxx:716
    (anonymous namespace)::ImpFilterLibCache mpLast struct (anonymous namespace)::ImpFilterLibCacheEntry *
vcl/source/filter/jpeg/Exif.hxx:51
    Exif::ExifIFD tag sal_uInt8 [2]
vcl/source/filter/wmf/wmfwr.hxx:95
    WMFWriter aDstClipRegion vcl::Region
vcl/source/fontsubset/sft.cxx:91
    vcl::(anonymous namespace)::TTGlyphMetrics lsb sal_Int16
vcl/source/fontsubset/ttcr.cxx:347
    vcl::(anonymous namespace)::tdata_post ptr void *
vcl/unx/generic/app/wmadaptor.cxx:1263
    _mwmhints func unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1263
    _mwmhints flags unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1263
    _mwmhints deco unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1264
    _mwmhints input_mode long
vcl/unx/generic/app/wmadaptor.cxx:1265
    _mwmhints status unsigned long
vcl/unx/generic/gdi/cairotextrender.cxx:50
    (anonymous namespace)::CairoFontsCache::CacheId maFace (anonymous namespace)::FT_Face
vcl/unx/generic/gdi/cairotextrender.cxx:52
    (anonymous namespace)::CairoFontsCache::CacheId mbEmbolden _Bool
vcl/unx/generic/gdi/cairotextrender.cxx:53
    (anonymous namespace)::CairoFontsCache::CacheId mbVerticalMetrics _Bool
vcl/unx/gtk3/a11y/atkwrapper.hxx:47
    AtkObjectWrapper aParent const AtkObject
vcl/unx/gtk3/a11y/atkwrapper.hxx:75
    AtkObjectWrapperClass aParentClass GtkWidgetAccessibleClass
vcl/unx/gtk3/a11y/gtk3atkutil.cxx:138
    DocumentFocusListener m_aRefList std::set<uno::Reference<uno::XInterface> >
vcl/unx/gtk3/gtk3glomenu.cxx:14
    GLOMenu parent_instance const GMenuModel
vcl/unx/gtk3/gtk3gtkinst.cxx:1611
     in char *
vcl/unx/gtk3/gtk3hudawareness.cxx:18
    (anonymous namespace)::HudAwarenessHandle connection GDBusConnection *
vcl/unx/gtk3/gtk3hudawareness.cxx:21
    (anonymous namespace)::HudAwarenessHandle notify GDestroyNotify
vcl/workben/vcldemo.cxx:1750
    (anonymous namespace)::DemoWin mxThread rtl::Reference<RenderThread>
writerfilter/source/dmapper/DomainMapperTableHandler.cxx:232
    writerfilter::dmapper::TableInfo aTablePropertyIds std::vector<PropertyIds>
writerfilter/source/dmapper/PropertyMap.hxx:220
    writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
writerfilter/source/dmapper/SettingsTable.cxx:261
    writerfilter::dmapper::SettingsTable_Impl m_sRedlineProtectionKey class rtl::OUString
xmlhelp/source/cxxhelp/provider/databases.hxx:251
    chelp::Databases m_aDatabases chelp::Databases::DatabasesTable
xmlhelp/source/cxxhelp/provider/databases.hxx:257
    chelp::Databases m_aModInfo chelp::Databases::ModInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:260
    chelp::Databases m_aKeywordInfo chelp::Databases::KeywordInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:266
    chelp::Databases m_aZipFileTable chelp::Databases::ZipFileTable
xmlhelp/source/cxxhelp/provider/databases.hxx:272
    chelp::Databases m_aCollatorTable chelp::Databases::CollatorTable
xmloff/source/draw/ximpstyl.hxx:222
    SdXMLMasterStylesContext maMasterPageList std::vector<rtl::Reference<SdXMLMasterPageContext> >
xmloff/source/forms/elementexport.hxx:47
    xmloff::OElementExport m_pXMLElement std::unique_ptr<SvXMLElementExport>
xmloff/source/forms/elementexport.hxx:104
    xmloff::OControlExport m_pOuterElement std::unique_ptr<SvXMLElementExport>
xmloff/source/forms/officeforms.hxx:67
    xmloff::OFormsRootExport m_pImplElement std::unique_ptr<SvXMLElementExport>
xmloff/source/text/txtimp.cxx:524
    XMLTextImportHelper::Impl m_xFrameImpPrMap rtl::Reference<SvXMLImportPropertyMapper>
xmlsecurity/inc/certificatechooser.hxx:55
    CertificateChooser mvUserData std::vector<std::shared_ptr<UserData> >
xmlsecurity/inc/certificateviewer.hxx:55
    CertificateViewer mxGeneralPage std::unique_ptr<CertificateViewerGeneralTP>
xmlsecurity/inc/certificateviewer.hxx:56
    CertificateViewer mxDetailsPage std::unique_ptr<CertificateViewerDetailsTP>