summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/unusedfields.writeonly.results
blob: 86cf10b15cc4ce32cb851e5780b1c52b4d7af0ec (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
basctl/source/inc/basidesh.hxx:87
    basctl::Shell m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/bastype2.hxx:183
    basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/bastype2.hxx:258
    basctl::SbTreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/IDEComboBox.hxx:101
    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:26
    (anonymous namespace)::Symbol line sal_uInt16
basic/qa/cppunit/test_scanner.cxx:27
    (anonymous namespace)::Symbol col1 sal_uInt16
basic/source/inc/runtime.hxx:251
    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:149
    jni_uno::largest n sal_Int64
bridges/source/jni_uno/jni_java2uno.cxx:150
    jni_uno::largest d double
bridges/source/jni_uno/jni_java2uno.cxx:151
    jni_uno::largest p void *
bridges/source/jni_uno/jni_java2uno.cxx:152
    jni_uno::largest a uno_Any
canvas/source/cairo/cairo_spritedevicehelper.hxx:77
    cairocanvas::SpriteDeviceHelper mbFullScreen _Bool
canvas/source/cairo/cairo_spritehelper.hxx:103
    cairocanvas::SpriteHelper mbTextureDirty _Bool
chart2/inc/ChartModel.hxx:143
    chart::ChartModel m_aGraphicObjectVector std::vector<GraphicObject>
chart2/inc/ChartModel.hxx:470
    chart::ChartModel mnStart sal_Int32
chart2/inc/ChartModel.hxx:471
    chart::ChartModel mnEnd sal_Int32
chart2/source/controller/dialogs/DialogModel.cxx:174
    (anonymous namespace)::lcl_DataSeriesContainerAppend m_rDestCnt (anonymous namespace)::lcl_DataSeriesContainerAppend::tContainerType *
chart2/source/controller/dialogs/DialogModel.cxx:233
    (anonymous namespace)::lcl_RolesWithRangeAppend m_rDestCnt (anonymous namespace)::lcl_RolesWithRangeAppend::tContainerType *
chart2/source/controller/main/ElementSelector.hxx:38
    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:45
    ContainerListener m_pStats struct ContainerStats *const
configmgr/source/components.cxx:84
    configmgr::(anonymous namespace)::UnresolvedVectorItem name class rtl::OUString
configmgr/source/components.cxx:163
    configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
connectivity/source/cpool/ZConnectionPool.hxx:101
    connectivity::(anonymous) xPooledConnection css::uno::Reference<css::sdbc::XPooledConnection>
connectivity/source/drivers/mork/MorkParser.hxx:133
    MorkParser error_ enum MorkErrors
connectivity/source/drivers/postgresql/pq_statics.hxx:106
    pq_sdbc_driver::ImplementationStatics types css::uno::Sequence<css::uno::Type>
connectivity/source/drivers/postgresql/pq_statics.hxx:146
    pq_sdbc_driver::Statics NO_NULLS class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:147
    pq_sdbc_driver::Statics NULABLE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:148
    pq_sdbc_driver::Statics NULLABLE_UNKNOWN class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:149
    pq_sdbc_driver::Statics SELECT class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:150
    pq_sdbc_driver::Statics UPDATE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:151
    pq_sdbc_driver::Statics INSERT class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:152
    pq_sdbc_driver::Statics DELETE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:153
    pq_sdbc_driver::Statics RULE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:154
    pq_sdbc_driver::Statics REFERENCES class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:155
    pq_sdbc_driver::Statics TRIGGER class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:156
    pq_sdbc_driver::Statics EXECUTE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:157
    pq_sdbc_driver::Statics USAGE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:158
    pq_sdbc_driver::Statics CREATE class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:159
    pq_sdbc_driver::Statics TEMPORARY class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:192
    pq_sdbc_driver::Statics KEY_COLUMN class rtl::OUString
connectivity/source/drivers/postgresql/pq_statics.hxx:216
    pq_sdbc_driver::Statics HELP_TEXT class rtl::OUString
connectivity/source/inc/dbase/DTable.hxx:62
    connectivity::dbase::ODbaseTable::DBFHeader dateElems sal_uInt8 [3]
connectivity/source/inc/dbase/DTable.hxx:86
    connectivity::dbase::ODbaseTable::DBFColumn db_adr sal_uInt32
connectivity/source/inc/odbc/OConnection.hxx:57
    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/parse/sqliterator.cxx:118
    connectivity::ForbidQueryName m_sForbiddenQueryName class rtl::OUString
cppcanvas/source/inc/implrenderer.hxx:92
    cppcanvas::internal::XForm eM11 float
cppcanvas/source/inc/implrenderer.hxx:93
    cppcanvas::internal::XForm eM12 float
cppcanvas/source/inc/implrenderer.hxx:94
    cppcanvas::internal::XForm eM21 float
cppcanvas/source/inc/implrenderer.hxx:95
    cppcanvas::internal::XForm eM22 float
cppcanvas/source/inc/implrenderer.hxx:96
    cppcanvas::internal::XForm eDx float
cppcanvas/source/inc/implrenderer.hxx:97
    cppcanvas::internal::XForm eDy float
cppcanvas/source/inc/implrenderer.hxx:215
    cppcanvas::internal::ImplRenderer aBaseTransform struct cppcanvas::internal::XForm
cppu/source/typelib/typelib.cxx:897
    (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:120
    (anonymous namespace)::AlignSize_Impl nInt16 sal_Int16
cppu/source/uno/check.cxx:121
    (anonymous namespace)::AlignSize_Impl dDouble double
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
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/cuihyperdlg.hxx:57
    SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
cui/source/inc/cuihyperdlg.hxx:77
    SvxHpLinkDlg maCtrl class SvxHlinkCtrl
cui/source/tabpages/swpossizetabpage.cxx:613
    (anonymous namespace)::FrmMaps pMap const struct FrmMap *
dbaccess/source/core/dataaccess/databasedocument.hxx:176
    dbaccess::ODatabaseDocument m_pEventExecutor ::rtl::Reference<DocumentEventExecutor>
dbaccess/source/core/dataaccess/documentdefinition.cxx:287
    dbaccess::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/core/misc/DatabaseDataProvider.cxx:621
    dbaccess::(anonymous namespace)::ColumnDescription nResultSetPosition sal_Int32
dbaccess/source/core/misc/DatabaseDataProvider.cxx:622
    dbaccess::(anonymous namespace)::ColumnDescription nDataType sal_Int32
dbaccess/source/filter/xml/dbloader2.cxx:227
    dbaxml::DBContentLoader m_xMySelf Reference<class com::sun::star::frame::XFrameLoader>
dbaccess/source/ui/browser/dbloader.cxx:69
    DBContentLoader m_xListener Reference<class com::sun::star::frame::XLoadEventListener>
desktop/qa/desktop_lib/test_desktop_lib.cxx:201
    DesktopLOKTest m_bModified _Bool
desktop/source/deployment/gui/dp_gui_updatedialog.cxx:161
    dp_gui::UpdateDialog::IgnoredUpdate bRemoved _Bool
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:117
    dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
desktop/source/deployment/manager/dp_managerfac.cxx:44
    dp_manager::factory::PackageManagerFactoryImpl m_xUserMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:45
    dp_manager::factory::PackageManagerFactoryImpl m_xSharedMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:46
    dp_manager::factory::PackageManagerFactoryImpl m_xBundledMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:47
    dp_manager::factory::PackageManagerFactoryImpl m_xTmpMgr Reference<deployment::XPackageManager>
desktop/source/deployment/manager/dp_managerfac.cxx:48
    dp_manager::factory::PackageManagerFactoryImpl m_xBakMgr Reference<deployment::XPackageManager>
desktop/unx/source/splashx.c:370
     functions unsigned long
desktop/unx/source/splashx.c:370
     decorations unsigned long
desktop/unx/source/splashx.c:370
     flags unsigned long
desktop/unx/source/splashx.c:371
     input_mode long
drawinglayer/source/attribute/sdrfillgraphicattribute.cxx:47
    drawinglayer::attribute::ImpSdrFillGraphicAttribute mbLogSize _Bool
drawinglayer/source/attribute/sdrsceneattribute3d.cxx:32
    drawinglayer::attribute::ImpSdrSceneAttribute mfDistance double
drawinglayer/source/tools/emfpbrush.hxx:103
    emfplushelper::EMFPBrush wrapMode sal_Int32
drawinglayer/source/tools/emfpcustomlinecap.hxx:34
    emfplushelper::EMFPCustomLineCap mbIsFilled _Bool
embeddedobj/source/inc/oleembobj.hxx:136
    OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:148
    OleEmbeddedObject m_xClosePreventer css::uno::Reference<css::util::XCloseListener>
embeddedobj/source/inc/oleembobj.hxx:170
    OleEmbeddedObject m_bHasSizeToSet _Bool
embeddedobj/source/inc/oleembobj.hxx:171
    OleEmbeddedObject m_aSizeToSet css::awt::Size
embeddedobj/source/inc/oleembobj.hxx:172
    OleEmbeddedObject m_nAspectToSet sal_Int64
embeddedobj/source/inc/oleembobj.hxx:177
    OleEmbeddedObject m_bGotStatus _Bool
embeddedobj/source/inc/oleembobj.hxx:178
    OleEmbeddedObject m_nStatus sal_Int64
embeddedobj/source/inc/oleembobj.hxx:179
    OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:193
    OleEmbeddedObject m_bFromClipboard _Bool
emfio/inc/mtftools.hxx:120
    emfio::LOGFONTW lfOrientation sal_Int32
emfio/inc/mtftools.hxx:126
    emfio::LOGFONTW lfOutPrecision sal_uInt8
emfio/inc/mtftools.hxx:127
    emfio::LOGFONTW lfClipPrecision sal_uInt8
emfio/inc/mtftools.hxx:128
    emfio::LOGFONTW lfQuality sal_uInt8
emfio/inc/mtftools.hxx:512
    emfio::MtfTools mrclBounds tools::Rectangle
emfio/source/reader/emfreader.cxx:311
    (anonymous namespace)::BLENDFUNCTION aBlendOperation unsigned char
emfio/source/reader/emfreader.cxx:312
    (anonymous namespace)::BLENDFUNCTION aBlendFlags unsigned char
extensions/source/propctrlr/genericpropertyhandler.hxx:63
    pcr::GenericPropertyHandler m_xComponentIntrospectionAccess css::uno::Reference<css::beans::XIntrospectionAccess>
extensions/source/scanner/scanner.hxx:45
    ScannerManager mpData void *
framework/inc/services/layoutmanager.hxx:259
    framework::LayoutManager m_bGlobalSettings _Bool
framework/inc/uielement/langselectionmenucontroller.hxx:81
    framework::LanguageSelectionMenuController m_xMenuDispatch_Lang css::uno::Reference<css::frame::XDispatch>
framework/inc/uielement/langselectionmenucontroller.hxx:83
    framework::LanguageSelectionMenuController m_xMenuDispatch_Font css::uno::Reference<css::frame::XDispatch>
framework/inc/uielement/langselectionmenucontroller.hxx:85
    framework::LanguageSelectionMenuController m_xMenuDispatch_CharDlgForParagraph css::uno::Reference<css::frame::XDispatch>
framework/source/fwe/classes/addonsoptions.cxx:222
    framework::AddonsOptions_Impl::OneImageEntry aURL class rtl::OUString
framework/source/layoutmanager/toolbarlayoutmanager.hxx:284
    framework::ToolbarLayoutManager m_bGlobalSettings _Bool
i18nutil/source/utility/paper.cxx:303
    paperword string char *
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/canvas/rendering/irendermodule.hxx:36
    canvas::Vertex a float
include/canvas/rendering/irendermodule.hxx:36
    canvas::Vertex g float
include/canvas/rendering/irendermodule.hxx:36
    canvas::Vertex r float
include/canvas/rendering/irendermodule.hxx:36
    canvas::Vertex b float
include/canvas/rendering/irendermodule.hxx:37
    canvas::Vertex v float
include/canvas/rendering/irendermodule.hxx:37
    canvas::Vertex u float
include/canvas/rendering/irendermodule.hxx:38
    canvas::Vertex x float
include/canvas/rendering/irendermodule.hxx:38
    canvas::Vertex y float
include/canvas/rendering/irendermodule.hxx:38
    canvas::Vertex z float
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:51
    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:39
    SvxAdjustItem bLeft _Bool
include/editeng/outlobj.hxx:42
    OutlinerParaObjData mbIsEditDoc _Bool
include/editeng/unotext.hxx:423
    SvxUnoTextBase xParentText css::uno::Reference<css::text::XText>
include/editeng/unotext.hxx:592
    SvxUnoTextContentEnumeration mxParentText css::uno::Reference<css::text::XText>
include/framework/framelistanalyzer.hxx:121
    framework::FrameListAnalyzer m_xHelp css::uno::Reference<css::frame::XFrame>
include/LibreOfficeKit/LibreOfficeKit.h:118
    _LibreOfficeKitDocumentClass nSize size_t
include/LibreOfficeKit/LibreOfficeKit.h:320
    _LibreOfficeKitDocumentClass getPartInfo char *(*)(LibreOfficeKitDocument *, int)
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/sfx2/notebookbar/NotebookbarTabControl.hxx:44
    NotebookbarTabControl m_pListener css::uno::Reference<css::ui::XUIConfigurationListener>
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/bmpmask.hxx:130
    SvxBmpMask aSelItem class SvxBmpMaskSelectItem
include/svx/ClassificationDialog.hxx:37
    svx::ClassificationDialog m_aInitialValues std::vector<ClassificationResult>
include/svx/fmtools.hxx:156
    FmXDisposeListener m_pAdapter rtl::Reference<FmXDisposeMultiplexer>
include/svx/imapdlg.hxx:118
    SvxIMapDlg aIMapItem class SvxIMapDlgItem
include/svx/langbox.hxx:78
    SvxLanguageBoxBase m_aAllString class rtl::OUString
include/svx/langbox.hxx:81
    SvxLanguageBoxBase m_bHasLangNone _Bool
include/svx/ofaitem.hxx:44
    OfaRefItem mxRef rtl::Reference<reference_type>
include/svx/svdundo.hxx:336
    SdrUndoReplaceObj nOrdNum sal_uInt32
include/svx/viewpt3d.hxx:62
    Viewport3D::(anonymous) X double
include/svx/viewpt3d.hxx:62
    Viewport3D::(anonymous) H double
include/svx/viewpt3d.hxx:62
    Viewport3D::(anonymous) Y double
include/test/beans/xpropertyset.hxx:56
    apitest::XPropertySet::PropsToTest constrained std::vector<OUString>
include/vcl/builder.hxx:123
    VclBuilder m_aDeferredProperties VclBuilder::stringmap
include/vcl/opengl/OpenGLContext.hxx:32
    GLWindow bMultiSampleSupported _Bool
include/vcl/salnativewidgets.hxx:443
    ToolbarValue mbIsTopDockingArea _Bool
include/vcl/salnativewidgets.hxx:508
    PushButtonValue mbBevelButton _Bool
include/vcl/salnativewidgets.hxx:509
    PushButtonValue mbSingleLine _Bool
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
include/xmlreader/xmlreader.hxx:93
    xmlreader::XmlReader::ElementData inheritedNamespaces const NamespaceList::size_type
io/source/stm/odata.cxx:241
    io_stm::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n2 sal_uInt32
io/source/stm/odata.cxx:241
    io_stm::ODataInputStream::readDouble()::(anonymous union)::(anonymous) n1 sal_uInt32
jvmfwk/inc/vendorbase.hxx:176
    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:28
    GtvRenderingArgs m_aBackgroundColor std::string
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:61
    GtvApplicationWindow statusbar GtkWidget *
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.cxx:37
    GtvMainToolbarPrivateImpl m_pPartModeSelector GtkWidget *
lingucomponent/source/languageguessing/simpleguesser.cxx:79
    textcat_t maxsize uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:81
    textcat_t output char [1024]
package/inc/ByteChucker.hxx:38
    ByteChucker p2Sequence sal_Int8 *const
package/inc/ByteChucker.hxx:38
    ByteChucker p4Sequence sal_Int8 *const
registry/source/reflread.cxx:465
    ConstantPool::readDoubleConstant(sal_uInt16)::(anonymous union)::(anonymous) b1 sal_uInt32
registry/source/reflread.cxx:466
    ConstantPool::readDoubleConstant(sal_uInt16)::(anonymous union)::(anonymous) b2 sal_uInt32
registry/source/reflread.cxx:533
    FieldList m_pCP class ConstantPool *const
registry/source/reflread.cxx:717
    ReferenceList m_pCP class ConstantPool *const
registry/source/reflread.cxx:818
    MethodList m_pCP class ConstantPool *const
reportdesign/inc/RptObject.hxx:70
    rptui::OObjectBase m_xKeepShapeAlive css::uno::Reference<css::uno::XInterface>
sal/qa/osl/file/osl_File.cxx:2426
    osl_File::setPos nCount_read sal_uInt64
sal/qa/osl/file/osl_File.cxx:2898
    osl_File::write nCount_read sal_uInt64
sal/qa/osl/file/osl_File.cxx:4156
    osl_Directory::isOpen nError1 osl::class FileBase::RC
sal/qa/osl/file/osl_File.cxx:4156
    osl_Directory::isOpen nError2 osl::class FileBase::RC
sal/qa/osl/file/osl_File.cxx:4214
    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:1015
     md union sal_math_Double
sal/textenc/tcvtutf7.cxx:96
    ImplUTF7ToUCContextData mbShifted _Bool
sal/textenc/tcvtutf7.cxx:97
    ImplUTF7ToUCContextData mbFirst _Bool
sal/textenc/tcvtutf7.cxx:98
    ImplUTF7ToUCContextData mbWroteOne _Bool
sal/textenc/tcvtutf7.cxx:99
    ImplUTF7ToUCContextData mnBitBuffer sal_uInt32
sal/textenc/tcvtutf7.cxx:100
    ImplUTF7ToUCContextData mnBufferBits sal_uInt32
sal/textenc/tcvtutf7.cxx:395
    ImplUTF7FromUCContextData mbShifted _Bool
sal/textenc/tcvtutf7.cxx:396
    ImplUTF7FromUCContextData mnBitBuffer sal_uInt32
sal/textenc/tcvtutf7.cxx:397
    ImplUTF7FromUCContextData mnBufferBits sal_uInt32
sc/inc/columnspanset.hxx:57
    sc::ColumnSpanSet::ColumnType miPos ColumnSpansType::const_iterator
sc/inc/compiler.hxx:255
    ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:256
    ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:258
    ScCompiler::AddInMap pUpper const char *
sc/inc/document.hxx:2573
    ScMutationDisable mpDocument class ScDocument *
sc/inc/matrixoperators.hxx:22
    sc::op::Op_ mInitVal const double
sc/inc/orcusxml.hxx:32
    ScOrcusXMLTreeParam::EntryData mnNamespaceID 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/tabopparams.hxx:38
    ScInterpreterTableOpParams bValid _Bool
sc/source/core/data/cellvalues.cxx:23
    sc::(anonymous namespace)::BlockPos mnEnd size_t
sc/source/core/data/column2.cxx:3133
    (anonymous namespace)::FindUsedRowsHandler miUsed UsedRowsType::const_iterator
sc/source/core/data/column4.cxx:1307
    (anonymous namespace)::StartListeningFormulaCellsHandler mnStartRow SCROW
sc/source/core/data/column.cxx:1381
    (anonymous namespace)::CopyByCloneHandler meListenType sc::StartListeningType
sc/source/core/data/column.cxx:1382
    (anonymous namespace)::CopyByCloneHandler mnFormulaCellCloneFlags const enum ScCloneFlags
sc/source/core/data/column.cxx:3379
    (anonymous namespace)::TransferListenersHandler maListenerList (anonymous namespace)::TransferListenersHandler::ListenerListType
sc/source/core/data/sortparam.cxx:264
    sc::(anonymous namespace)::ReorderIndex mnPos1 SCCOLROW
sc/source/core/data/table2.cxx:3584
    (anonymous namespace)::OutlineArrayFinder mpArray class ScOutlineArray *
sc/source/core/data/table2.cxx:3585
    (anonymous namespace)::OutlineArrayFinder mbSizeChanged _Bool
sc/source/core/data/table3.cxx:237
    ScSortInfoArray::Cell maDrawObjects std::vector<SdrObject *>
sc/source/core/data/table3.cxx:538
    (anonymous namespace)::SortedColumn miPatternPos PatRangeType::const_iterator
sc/source/core/data/table3.cxx:564
    (anonymous namespace)::SortedRowFlags miPosHidden FlagsType::const_iterator
sc/source/core/data/table3.cxx:565
    (anonymous namespace)::SortedRowFlags miPosFiltered FlagsType::const_iterator
sc/source/core/inc/bcaslot.hxx:289
    ScBroadcastAreaSlotMachine aBulkBroadcastAreas ScBroadcastAreasBulk
sc/source/filter/excel/xltoolbar.hxx:24
    TBCCmd cmdID sal_uInt16
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/xltoolbar.hxx:55
    ScCTB ectbid sal_uInt32
sc/source/filter/excel/xltoolbar.hxx:73
    CTBS bSignature sal_uInt8
sc/source/filter/excel/xltoolbar.hxx:74
    CTBS bVersion sal_uInt8
sc/source/filter/excel/xltoolbar.hxx:75
    CTBS reserved1 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:76
    CTBS reserved2 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:77
    CTBS reserved3 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:80
    CTBS ictbView sal_uInt16
sc/source/filter/excel/xltools.cxx:100
     smD union sal_math_Double
sc/source/filter/html/htmlpars.cxx:3011
    (anonymous namespace)::CSSHandler maPropName struct (anonymous namespace)::CSSHandler::MemStr
sc/source/filter/html/htmlpars.cxx:3012
    (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:36
    StringHashEntry aString const class rtl::OUString
sc/source/filter/inc/namebuff.hxx:37
    StringHashEntry nHash const sal_uInt32
sc/source/filter/inc/orcusinterface.hxx:376
    ScOrcusStyles::fill maBgColor class Color
sc/source/filter/inc/orcusinterface.hxx:385
    ScOrcusStyles maCurrentFill struct ScOrcusStyles::fill
sc/source/filter/inc/orcusinterface.hxx:423
    ScOrcusStyles maCurrentProtection struct ScOrcusStyles::protection
sc/source/filter/inc/orcusinterface.hxx:436
    ScOrcusStyles maCurrentNumberFormat struct ScOrcusStyles::number_format
sc/source/filter/inc/orcusinterface.hxx:446
    ScOrcusStyles::xf mnStyleXf size_t
sc/source/filter/inc/orcusinterface.hxx:457
    ScOrcusStyles maCurrentXF struct ScOrcusStyles::xf
sc/source/filter/inc/orcusinterface.hxx:466
    ScOrcusStyles::cell_style mnBuiltInId size_t
sc/source/filter/inc/root.hxx:91
    LOTUS_ROOT eActType enum Lotus123Typ
sc/source/filter/inc/root.hxx:92
    LOTUS_ROOT aActRange class ScRange
sc/source/filter/inc/tokstack.hxx:142
    TokenPool pP_Err TokenPoolPool<sal_uInt16, 8>
sc/source/filter/oox/biffhelper.cxx:38
    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:113
    ScXMLExternalRefCellContext mnCellType sal_Int16
sc/source/ui/docshell/externalrefmgr.cxx:163
    (anonymous namespace)::RemoveFormulaCell mpCell class ScFormulaCell *const
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/drwtrans.hxx:45
    ScDrawTransferObj m_aDrawPersistRef SfxObjectShellRef
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:49
    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:36
    ScPivotLayoutTreeListData maDataItemValues std::vector<std::unique_ptr<ScItemValue> >
sc/source/ui/inc/preview.hxx:47
    ScPreview nTabPage long
sc/source/ui/inc/simpref.hxx:38
    ScSimpleRefDlg bAutoReOpen _Bool
sc/source/ui/inc/tabvwsh.hxx:120
    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
scripting/source/vbaevents/eventhelper.cxx:183
    TranslatePropMap aTransInfo const struct TranslateInfo
sd/source/filter/ppt/ppt97animations.hxx:41
    Ppt97AnimationInfoAtom nSlideCount sal_uInt16
sd/source/filter/ppt/ppt97animations.hxx:47
    Ppt97AnimationInfoAtom nOLEVerb sal_uInt8
sd/source/filter/ppt/ppt97animations.hxx:50
    Ppt97AnimationInfoAtom nUnknown1 sal_uInt8
sd/source/filter/ppt/ppt97animations.hxx:51
    Ppt97AnimationInfoAtom nUnknown2 sal_uInt8
sd/source/ui/inc/inspagob.hxx:33
    SdInsertPagesObjsDlg m_pDoc const class SdDrawDocument *
sd/source/ui/inc/unopage.hxx:277
    SdPageLinkTargets mxPage css::uno::Reference<css::drawing::XDrawPage>
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/sidebar/SlideBackground.hxx:94
    sd::sidebar::SlideBackground m_pContainer VclPtr<class VclVBox>
sfx2/source/appl/fileobj.hxx:37
    SvFileObject mxDelMed tools::SvRef<SfxMedium>
sfx2/source/dialog/filtergrouping.cxx:340
    sfx2::ReferToFilterEntry m_aClassPos FilterGroup::iterator
sfx2/source/inc/splitwin.hxx:51
    SfxSplitWindow pActive VclPtr<class SfxDockingWindow>
sfx2/source/view/classificationcontroller.cxx:61
    sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener
slideshow/source/engine/opengl/TransitionImpl.hxx:296
    Vertex normal glm::vec3
slideshow/source/engine/opengl/TransitionImpl.hxx:297
    Vertex texcoord glm::vec2
slideshow/source/engine/slideshowimpl.cxx:1044
    (anonymous namespace)::SlideShowImpl::PrefetchPropertiesFunc mpSlideShowImpl class (anonymous namespace)::SlideShowImpl *const
slideshow/test/testview.cxx:53
    ImplTestView maCreatedSprites std::vector<std::pair<basegfx::B2DVector, double> >
slideshow/test/testview.cxx:56
    ImplTestView maPriority basegfx::B1DRange
soltools/cpp/cpp.h:143
    macroValidator pMacro Nlist *
starmath/inc/view.hxx:157
    SmCmdBoxWindow aController class SmEditController
stoc/source/corereflection/lrucache.hxx:40
    LRU_Cache::CacheEntry aKey t_Key
stoc/source/security/lru_cache.h:45
    stoc_sec::lru_cache::Entry m_key t_key
stoc/source/servicemanager/servicemanager.cxx:429
    (anonymous namespace)::OServiceManager m_SetLoadedFactories (anonymous namespace)::HashSet_Ref
store/source/storbase.hxx:245
    store::PageData m_aMarked store::PageData::L
store/source/storbios.cxx:56
    OStoreSuperBlock m_nMarked sal_uInt32
store/source/storbios.cxx:57
    OStoreSuperBlock m_aMarked 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:39
    svgio::svgreader::SvgSymbolNode maSvgAspectRatio class svgio::svgreader::SvgAspectRatio
svgio/inc/svgusenode.hxx:42
    svgio::svgreader::SvgUseNode maWidth class svgio::svgreader::SvgNumber
svgio/inc/svgusenode.hxx:43
    svgio::svgreader::SvgUseNode maHeight class svgio::svgreader::SvgNumber
svl/source/crypto/cryptosign.cxx:112
    (anonymous namespace)::MessageImprint hashedMessage SECItem
svl/source/crypto/cryptosign.cxx:147
    (anonymous namespace)::TimeStampReq version SECItem
svl/source/crypto/cryptosign.cxx:149
    (anonymous namespace)::TimeStampReq reqPolicy SECItem
svl/source/crypto/cryptosign.cxx:150
    (anonymous namespace)::TimeStampReq nonce SECItem
svl/source/crypto/cryptosign.cxx:151
    (anonymous namespace)::TimeStampReq certReq SECItem
svl/source/crypto/cryptosign.cxx:152
    (anonymous namespace)::TimeStampReq extensions struct (anonymous namespace)::Extension *
svl/source/crypto/cryptosign.cxx:160
    (anonymous namespace)::GeneralName name CERTName
svl/source/crypto/cryptosign.cxx:168
    (anonymous namespace)::GeneralNames names struct (anonymous namespace)::GeneralName
svl/source/crypto/cryptosign.cxx:176
    (anonymous namespace)::IssuerSerial issuer struct (anonymous namespace)::GeneralNames
svl/source/crypto/cryptosign.cxx:177
    (anonymous namespace)::IssuerSerial serialNumber SECItem
svl/source/crypto/cryptosign.cxx:187
    (anonymous namespace)::ESSCertIDv2 certHash SECItem
svl/source/crypto/cryptosign.cxx:188
    (anonymous namespace)::ESSCertIDv2 issuerSerial struct (anonymous namespace)::IssuerSerial
svl/source/crypto/cryptosign.cxx:196
    (anonymous namespace)::SigningCertificateV2 certs struct (anonymous namespace)::ESSCertIDv2 **
svl/source/misc/inethist.cxx:48
    INetURLHistory_Impl::head_entry m_nMagic sal_uInt32
svl/source/undo/undo.cxx:312
    svl::undo::impl::UndoManagerGuard m_aUndoActionsCleanup ::std::vector<std::unique_ptr<SfxUndoAction> >
svx/inc/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/dialog/contimp.hxx:56
    SvxSuperContourDlg aContourItem class SvxContourDlgItem
svx/source/form/dataaccessdescriptor.cxx:40
    svx::ODADescriptorImpl m_bSetOutOfDate _Bool
svx/source/form/formcontroller.cxx:212
    svxform::ColumnInfo nNullable sal_Int32
svx/source/inc/docrecovery.hxx:130
    svx::DocRecovery::TURLInfo Module class rtl::OUString
svx/source/sdr/attribute/sdrformtextattribute.cxx:155
    drawinglayer::attribute::ImpSdrFormTextAttribute mnFormTextShdwTransp const sal_uInt16
svx/source/sdr/attribute/sdrtextattribute.cxx:53
    drawinglayer::attribute::ImpSdrTextAttribute maPropertiesVersion sal_uInt32
svx/source/sdr/attribute/sdrtextattribute.cxx:67
    drawinglayer::attribute::ImpSdrTextAttribute mbWrongSpell const _Bool
svx/source/sidebar/line/LinePropertyPanel.hxx:97
    svx::sidebar::LinePropertyPanel maStyleControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:98
    svx::sidebar::LinePropertyPanel maDashControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:100
    svx::sidebar::LinePropertyPanel maStartControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:101
    svx::sidebar::LinePropertyPanel maEndControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:102
    svx::sidebar::LinePropertyPanel maLineEndListControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:103
    svx::sidebar::LinePropertyPanel maLineStyleListControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:104
    svx::sidebar::LinePropertyPanel maTransControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:105
    svx::sidebar::LinePropertyPanel maEdgeStyle sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:106
    svx::sidebar::LinePropertyPanel maCapStyle sfx2::sidebar::ControllerItem
svx/source/svdraw/svdibrow.cxx:89
    ImpItemListRow pType const std::type_info *
svx/source/svdraw/svdpdf.hxx:196
    ImpSdrPdfImport mdPageWidthPts double
svx/source/table/tablertfimporter.cxx:54
    sdr::table::RTFCellDefault maItemSet class SfxItemSet
svx/source/tbxctrls/tbcontrl.cxx:194
    SvxFontNameBox_Impl m_aOwnFontList ::std::unique_ptr<FontList>
sw/inc/accmap.hxx:96
    SwAccessibleMap mvShapes SwShapeList_Impl
sw/inc/shellio.hxx:150
    SwReader aFileName const class rtl::OUString
sw/inc/shellio.hxx:151
    SwReader sBaseURL class rtl::OUString
sw/inc/swmodule.hxx:108
    SwModule m_xLinguServiceEventListener css::uno::Reference<css::linguistic2::XLinguServiceEventListener>
sw/inc/swwait.hxx:45
    SwWait mpLockedDispatchers std::unordered_set<SfxDispatcher *>
sw/inc/ToxTabStopTokenHandler.hxx:38
    sw::ToxTabStopTokenHandler::HandledTabStopToken tabStop class SvxTabStop
sw/inc/unoframe.hxx:313
    SwXOLEListener m_xOLEModel css::uno::Reference<css::frame::XModel>
sw/source/core/doc/tblafmt.cxx:186
    SwAfVersions m_nVerticalAlignmentVersion sal_uInt16
sw/source/core/inc/docsort.hxx:102
    SwSortTextElement nOrg const sal_uLong
sw/source/core/inc/swfont.hxx:983
    SvStatistics nGetTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:984
    SvStatistics nDrawText sal_uInt16
sw/source/core/inc/swfont.hxx:985
    SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/inc/swfont.hxx:986
    SvStatistics nDrawStretchText sal_uInt16
sw/source/core/inc/swfont.hxx:987
    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:132
    SwImplProtocol aVars std::vector<long>
sw/source/core/text/porfld.hxx:61
    SwFieldPortion m_nAttrFieldType sal_uInt16
sw/source/filter/html/swhtml.hxx:369
    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/noel/disk2/libo4/sw/source/filter/inc/rtf.hxx:27:9)
sw/source/ui/frmdlg/frmpage.cxx:716
    (anonymous namespace)::FrameMaps pMap const struct FrameMap *
sw/source/ui/frmdlg/frmpage.cxx:775
    (anonymous namespace)::RelationMaps pMap const struct RelationMap *
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:66
    SwRedlineAcceptDlg m_aUsedSeqNo class SwRedlineDataParentSortArr
testtools/source/bridgetest/cppobj.cxx:149
    bridge_object::Test_Impl _arStruct Sequence<struct test::testtools::bridgetest::TestElement>
ucb/source/ucp/gio/gio_mount.hxx:46
    OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:49
    OOoMountOperationClass _gtk_reserved1 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:50
    OOoMountOperationClass _gtk_reserved2 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:51
    OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:52
    OOoMountOperationClass _gtk_reserved4 void (*)(void)
ucb/source/ucp/webdav-neon/NeonSession.cxx:162
    NeonRequestContext pResource struct webdav_ucp::DAVResource *
unoidl/source/legacyprovider.cxx:86
    unoidl::detail::(anonymous namespace)::Cursor manager_ rtl::Reference<Manager>
unoidl/source/sourceprovider-scanner.hxx:119
    unoidl::detail::SourceProviderInterfaceTypeEntityPad::DirectBase annotations std::vector<OUString>
unoidl/source/unoidl.cxx:83
    unoidl::(anonymous namespace)::AggregatingCursor seen_ std::set<OUString>
unoidl/source/unoidlprovider.hxx:33
    unoidl::detail::NestedMap trace std::set<Map>
unotools/source/config/defaultoptions.cxx:72
    SvtDefaultOptions_Impl m_aAddinPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:73
    SvtDefaultOptions_Impl m_aAutoCorrectPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:74
    SvtDefaultOptions_Impl m_aAutoTextPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:75
    SvtDefaultOptions_Impl m_aBackupPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:76
    SvtDefaultOptions_Impl m_aBasicPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:77
    SvtDefaultOptions_Impl m_aBitmapPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:78
    SvtDefaultOptions_Impl m_aConfigPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:79
    SvtDefaultOptions_Impl m_aDictionaryPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:80
    SvtDefaultOptions_Impl m_aFavoritesPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:81
    SvtDefaultOptions_Impl m_aFilterPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:82
    SvtDefaultOptions_Impl m_aGalleryPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:83
    SvtDefaultOptions_Impl m_aGraphicPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:84
    SvtDefaultOptions_Impl m_aHelpPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:85
    SvtDefaultOptions_Impl m_aLinguisticPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:86
    SvtDefaultOptions_Impl m_aModulePath class rtl::OUString
unotools/source/config/defaultoptions.cxx:87
    SvtDefaultOptions_Impl m_aPalettePath class rtl::OUString
unotools/source/config/defaultoptions.cxx:88
    SvtDefaultOptions_Impl m_aPluginPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:89
    SvtDefaultOptions_Impl m_aTempPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:90
    SvtDefaultOptions_Impl m_aTemplatePath class rtl::OUString
unotools/source/config/defaultoptions.cxx:91
    SvtDefaultOptions_Impl m_aUserConfigPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:92
    SvtDefaultOptions_Impl m_aWorkPath class rtl::OUString
unotools/source/config/defaultoptions.cxx:93
    SvtDefaultOptions_Impl m_aClassificationPath class rtl::OUString
unotools/source/misc/fontcvt.cxx:1043
    ExtraTable cStar sal_Unicode
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/fontselect.hxx:62
    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/salmenu.hxx:34
    SalItemParams nBits enum MenuItemBits
vcl/inc/salmenu.hxx:35
    SalItemParams pMenu VclPtr<class Menu>
vcl/inc/salmenu.hxx:36
    SalItemParams aText class rtl::OUString
vcl/inc/salmenu.hxx:37
    SalItemParams aImage class Image
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/sft.hxx:462
    vcl::TrueTypeFont mapper sal_uInt32 (*)(const sal_uInt8 *, sal_uInt32, sal_uInt32)
vcl/inc/svdata.hxx:417
    ImplSVEvent mpInstanceRef VclPtr<vcl::Window>
vcl/inc/unx/gtk/gtkframe.hxx:88
    GtkSalFrame::IMHandler::PreviousKeyPress window GdkWindow *
vcl/inc/unx/gtk/gtkframe.hxx:89
    GtkSalFrame::IMHandler::PreviousKeyPress send_event gint8
vcl/inc/unx/gtk/gtkframe.hxx:90
    GtkSalFrame::IMHandler::PreviousKeyPress time guint32
vcl/inc/WidgetThemeLibrary.hxx:20
    vcl::WidgetDrawStyle nSize uint32_t
vcl/inc/WidgetThemeLibrary.hxx:91
    vcl::ControlDrawParameters eButtonValue enum ButtonValue
vcl/inc/WidgetThemeLibrary.hxx:92
    vcl::ControlDrawParameters bIsAction _Bool
vcl/inc/WidgetThemeLibrary.hxx:93
    vcl::ControlDrawParameters nValue int64_t
vcl/opengl/salbmp.cxx:446
    (anonymous namespace)::ScanlineWriter mpCurrentScanline sal_uInt8 *
vcl/source/filter/graphicfilter.cxx:905
    ImpFilterLibCacheEntry maFiltername const class rtl::OUString
vcl/source/filter/graphicfilter.cxx:1004
    ImpFilterLibCache mpLast struct ImpFilterLibCacheEntry *
vcl/source/filter/jpeg/Exif.hxx:56
    Exif::ExifIFD type sal_uInt16
vcl/source/filter/jpeg/Exif.hxx:57
    Exif::ExifIFD count sal_uInt32
vcl/source/filter/wmf/wmfwr.hxx:96
    WMFWriter aDstClipRegion vcl::Region
vcl/source/fontsubset/sft.cxx:88
    vcl::TTGlyphMetrics lsb sal_Int16
vcl/source/fontsubset/ttcr.cxx:356
    vcl::tdata_post ptr void *
vcl/source/gdi/pdfwriter_impl.hxx:181
    vcl::PDFWriterImpl::BitmapID m_nChecksum BitmapChecksum
vcl/source/gdi/pdfwriter_impl.hxx:182
    vcl::PDFWriterImpl::BitmapID m_nMaskChecksum BitmapChecksum
vcl/source/gdi/pdfwriter_impl.hxx:467
    vcl::PDFWriterImpl::PDFWidget m_nTabOrder sal_Int32
vcl/unx/generic/app/wmadaptor.cxx:1264
    _mwmhints flags unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1264
    _mwmhints func unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1264
    _mwmhints deco unsigned long
vcl/unx/generic/app/wmadaptor.cxx:1265
    _mwmhints input_mode long
vcl/unx/generic/app/wmadaptor.cxx:1266
    _mwmhints status unsigned long
vcl/unx/generic/gdi/cairotextrender.cxx:53
    (anonymous namespace)::CairoFontsCache::CacheId maFace (anonymous namespace)::FT_Face
vcl/unx/generic/gdi/cairotextrender.cxx:55
    (anonymous namespace)::CairoFontsCache::CacheId mbEmbolden _Bool
vcl/unx/generic/gdi/cairotextrender.cxx:56
    (anonymous namespace)::CairoFontsCache::CacheId mbVerticalMetrics _Bool
vcl/unx/gtk3/gtk3gtkinst.cxx:1167
     in char *
vcl/unx/gtk/a11y/atkutil.cxx:142
    DocumentFocusListener m_aRefList std::set<uno::Reference<uno::XInterface> >
vcl/unx/gtk/a11y/atkwrapper.hxx:49
    AtkObjectWrapper aParent const AtkObject
vcl/unx/gtk/a11y/atkwrapper.hxx:78
    AtkObjectWrapperClass aParentClass GtkWidgetAccessibleClass
vcl/unx/gtk/gloactiongroup.cxx:30
    GLOAction parent_instance GObject
vcl/unx/gtk/glomenu.cxx:20
    GLOMenu parent_instance const GMenuModel
vcl/unx/gtk/hudawareness.cxx:20
    HudAwarenessHandle connection GDBusConnection *
vcl/unx/gtk/hudawareness.cxx:23
    HudAwarenessHandle notify GDestroyNotify
vcl/workben/vcldemo.cxx:1740
    DemoWin mxThread rtl::Reference<RenderThread>
writerfilter/source/dmapper/PropertyMap.hxx:198
    writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
writerfilter/source/dmapper/SectionColumnHandler.hxx:44
    writerfilter::dmapper::SectionColumnHandler m_aTempColumn struct writerfilter::dmapper::Column_
xmlhelp/source/cxxhelp/provider/databases.hxx:261
    chelp::Databases m_aDatabases chelp::Databases::DatabasesTable
xmlhelp/source/cxxhelp/provider/databases.hxx:267
    chelp::Databases m_aModInfo chelp::Databases::ModInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:270
    chelp::Databases m_aKeywordInfo chelp::Databases::KeywordInfoTable
xmlhelp/source/cxxhelp/provider/databases.hxx:276
    chelp::Databases m_aZipFileTable chelp::Databases::ZipFileTable
xmlhelp/source/cxxhelp/provider/databases.hxx:282
    chelp::Databases m_aCollatorTable chelp::Databases::CollatorTable
xmloff/inc/XMLElementPropertyContext.hxx:37
    XMLElementPropertyContext aProp struct XMLPropertyState
xmloff/source/draw/ximpstyl.hxx:221
    SdXMLMasterStylesContext maMasterPageList std::vector<rtl::Reference<SdXMLMasterPageContext> >
xmloff/source/text/txtimp.cxx:523
    XMLTextImportHelper::Impl m_xFrameImpPrMap rtl::Reference<SvXMLImportPropertyMapper>
xmlsecurity/inc/certificatechooser.hxx:57
    CertificateChooser mvUserData std::vector<std::shared_ptr<UserData> >