summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/unusedfields.readonly.results
blob: 5a4856263b5c170a8fa1558784bfd93e1a447593 (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
avmedia/source/vlc/wrapper/Types.hxx:38
    libvlc_event_t type int
avmedia/source/vlc/wrapper/Types.hxx:52
    libvlc_track_description_t i_id int
avmedia/source/vlc/wrapper/Types.hxx:54
    libvlc_track_description_t p_next struct libvlc_track_description_t *
basegfx/source/polygon/b2dtrapezoid.cxx:202
    basegfx::trapezoidhelper::PointBlockAllocator maFirstStackBlock class basegfx::B2DPoint [32]
basic/source/inc/expr.hxx:93
    SbiExprNode::(anonymous) nTypeStrId sal_uInt16
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:63
    Data rdx sal_uInt64
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:64
    Data xmm0 double
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:65
    Data xmm1 double
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:114
    __cxxabiv1::__cxa_exception exceptionType std::type_info *
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:124
    __cxxabiv1::__cxa_exception adjustedPtr 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:134
    __cxxabiv1::__cxa_eh_globals caughtExceptions struct __cxxabiv1::__cxa_exception *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:135
    __cxxabiv1::__cxa_eh_globals uncaughtExceptions unsigned int
bridges/source/jni_uno/jni_info.h:68
    jni_uno::JNI_type_info m_td ::com::sun::star::uno::TypeDescription
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
chart2/source/model/main/DataPoint.hxx:108
    chart::DataPoint m_bNoParentPropAllowed _Bool
codemaker/source/javamaker/classfile.cxx:508
     uint32Bytes sal_uInt32
codemaker/source/javamaker/classfile.cxx:540
     uint64Bytes sal_uInt64
connectivity/qa/connectivity/resource/sharedresources_test.cxx:53
    connectivity_test::SharedResourcesTest m_aResource ::connectivity::SharedResources
connectivity/source/drivers/evoab2/EApi.h:125
    (anonymous) po char *
connectivity/source/drivers/evoab2/EApi.h:127
    (anonymous) street char *
connectivity/source/drivers/evoab2/EApi.h:128
    (anonymous) locality char *
connectivity/source/drivers/evoab2/EApi.h:129
    (anonymous) region char *
connectivity/source/drivers/evoab2/EApi.h:130
    (anonymous) code char *
connectivity/source/drivers/evoab2/EApi.h:131
    (anonymous) country char *
connectivity/source/drivers/firebird/Driver.hxx:52
    connectivity::firebird::FirebirdDriver m_firebirdTMPDirectory ::utl::TempFile
connectivity/source/drivers/firebird/Driver.hxx:53
    connectivity::firebird::FirebirdDriver m_firebirdLockDirectory ::utl::TempFile
connectivity/source/inc/dbase/DIndexIter.hxx:36
    connectivity::dbase::OIndexIterator m_pOperator file::OBoolOperator *
connectivity/source/inc/dbase/DIndexIter.hxx:37
    connectivity::dbase::OIndexIterator m_pOperand const file::OOperand *
connectivity/source/inc/FDatabaseMetaDataResultSet.hxx:114
    connectivity::ODatabaseMetaDataResultSet m_aEmptyValue class connectivity::ORowSetValue
connectivity/source/inc/OColumn.hxx:41
    connectivity::OColumn m_AutoIncrement _Bool
connectivity/source/inc/OColumn.hxx:42
    connectivity::OColumn m_CaseSensitive _Bool
connectivity/source/inc/OColumn.hxx:44
    connectivity::OColumn m_Currency _Bool
connectivity/source/inc/OColumn.hxx:45
    connectivity::OColumn m_Signed _Bool
connectivity/source/inc/OColumn.hxx:47
    connectivity::OColumn m_Writable _Bool
connectivity/source/inc/OColumn.hxx:48
    connectivity::OColumn m_DefinitelyWritable _Bool
connectivity/source/inc/TConnection.hxx:56
    connectivity::OMetaConnection m_aResources class connectivity::SharedResources
connectivity/source/inc/writer/WTable.hxx:65
    connectivity::writer::OWriterTable m_nStartCol sal_Int32
cppcanvas/source/mtfrenderer/textaction.cxx:1652
    cppcanvas::internal::(anonymous namespace)::OutlineAction maTextFillColor const ::Color
cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:34
    Mapping m_from uno::Environment
cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:35
    Mapping m_to uno::Environment
cppu/source/helper/purpenv/Proxy.hxx:36
    Proxy m_from css::uno::Environment
cppu/source/helper/purpenv/Proxy.hxx:37
    Proxy m_to css::uno::Environment
cppu/source/uno/cascade_mapping.cxx:40
    MediatorMapping m_from uno::Environment
cppu/source/uno/cascade_mapping.cxx:41
    MediatorMapping m_interm uno::Environment
cppu/source/uno/cascade_mapping.cxx:42
    MediatorMapping m_to uno::Environment
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
cui/source/options/optcolor.cxx:253
    ColorConfigWindow_Impl aModuleOptions class SvtModuleOptions
cui/source/options/optpath.cxx:67
    OptPath_Impl m_aDefOpt class SvtDefaultOptions
dbaccess/source/core/api/RowSetBase.hxx:85
    dbaccess::ORowSetBase m_aEmptyValue connectivity::ORowSetValue
dbaccess/source/core/api/RowSetBase.hxx:96
    dbaccess::ORowSetBase m_aErrors ::connectivity::SQLError
dbaccess/source/core/dataaccess/documentcontainer.cxx:65
    dbaccess::LocalNameApproval m_aErrors ::connectivity::SQLError
dbaccess/source/core/inc/ContentHelper.hxx:109
    dbaccess::OContentHelper m_aErrorHelper const ::connectivity::SQLError
dbaccess/source/filter/hsqldb/parseschema.hxx:36
    dbahsql::SchemaParser m_PrimaryKeys std::map<OUString, std::vector<OUString> >
dbaccess/source/ui/control/tabletree.cxx:234
    dbaui::(anonymous namespace)::OViewSetter m_aEqualFunctor ::comphelper::UStringMixEqual
dbaccess/source/ui/inc/charsetlistbox.hxx:44
    dbaui::CharSetListBox m_aCharSets class dbaui::OCharsetDisplay
dbaccess/source/ui/inc/directsql.hxx:65
    dbaui::DirectSQLDialog m_aColorConfig const svtools::ColorConfig
dbaccess/source/ui/inc/WCopyTable.hxx:261
    dbaui::OCopyTableWizard m_aLocale css::lang::Locale
drawinglayer/source/processor2d/vclprocessor2d.hxx:84
    drawinglayer::processor2d::VclProcessor2D maDrawinglayerOpt const class SvtOptionsDrawinglayer
editeng/source/editeng/impedit.hxx:454
    ImpEditEngine maColorConfig svtools::ColorConfig
embeddedobj/source/inc/commonembobj.hxx:103
    OCommonEmbeddedObject m_aClassName class rtl::OUString
embeddedobj/source/inc/oleembobj.hxx:124
    OleEmbeddedObject m_pOleComponent class OleComponent *
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:183
    OleEmbeddedObject m_aLinkURL class rtl::OUString
embeddedobj/source/inc/oleembobj.hxx:189
    OleEmbeddedObject m_bFromClipboard _Bool
extensions/source/propctrlr/eformshelper.hxx:61
    pcr::EFormsHelper m_aSubmissionUINames pcr::MapStringToPropertySet
extensions/source/propctrlr/eformshelper.hxx:63
    pcr::EFormsHelper m_aBindingUINames pcr::MapStringToPropertySet
filter/source/graphicfilter/eps/eps.cxx:116
    PSWriter pVDev ScopedVclPtrInstance<class VirtualDevice>
filter/source/graphicfilter/icgm/cgm.hxx:60
    CGM mbPicture _Bool
filter/source/graphicfilter/icgm/chart.hxx:44
    DataNode nBoxX1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:45
    DataNode nBoxY1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:46
    DataNode nBoxX2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:47
    DataNode nBoxY2 sal_Int16
filter/source/graphicfilter/idxf/dxf2mtf.hxx:50
    DXF2GDIMetaFile aDefaultLineInfo const class LineInfo
filter/source/graphicfilter/idxf/dxfreprd.hxx:76
    DXFRepresentation aPalette class DXFPalette
filter/source/graphicfilter/iras/iras.cxx:53
    RASReader mnRepCount sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:52
    TGAFileFooter nSignature sal_uInt32 [4]
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:90
    XMLFilterSettingsDialog maModuleOpt class SvtModuleOptions
framework/inc/dispatch/dispatchprovider.hxx:81
    framework::DispatchProvider m_aProtocolHandlerCache class framework::HandlerCache
framework/inc/helper/uiconfigelementwrapperbase.hxx:128
    framework::UIConfigElementWrapperBase m_bConfigListening _Bool
framework/inc/xml/menudocumenthandler.hxx:133
    framework::OReadMenuBarHandler m_bMenuMode _Bool
framework/inc/xml/menudocumenthandler.hxx:160
    framework::OReadMenuHandler m_bMenuPopupMode _Bool
framework/inc/xml/menudocumenthandler.hxx:190
    framework::OReadMenuPopupHandler m_bMenuMode _Bool
framework/source/fwe/classes/addonsoptions.cxx:343
    framework::AddonsOptions_Impl m_aEmptyAddonToolBar Sequence<Sequence<struct com::sun::star::beans::PropertyValue> >
framework/source/fwe/classes/addonsoptions.cxx:344
    framework::AddonsOptions_Impl m_aEmptyAddonNotebookBar Sequence<Sequence<struct com::sun::star::beans::PropertyValue> >
i18npool/inc/textconversion.hxx:80
    i18npool::(anonymous) code sal_Unicode
i18npool/inc/textconversion.hxx:81
    i18npool::(anonymous) address sal_Int16
i18npool/inc/textconversion.hxx:82
    i18npool::(anonymous) count sal_Int16
include/basic/codecompletecache.hxx:46
    CodeCompleteOptions aMiscOptions class SvtMiscOptions
include/basic/sbstar.hxx:50
    StarBASIC aErrorHdl Link<class StarBASIC *, _Bool>
include/basic/sbstar.hxx:51
    StarBASIC aBreakHdl Link<class StarBASIC *, enum BasicDebugFlags>
include/comphelper/interfacecontainer3.hxx:232
    comphelper::OInterfaceContainerHelper3::NotifySingleListener m_pMethod const comphelper::OInterfaceContainerHelper3::NotifySingleListener::NotificationMethod
include/comphelper/parallelsort.hxx:164
    comphelper::(anonymous namespace)::Binner maLabels uint8_t [mnMaxStaticSize]
include/connectivity/DriversConfig.hxx:75
    connectivity::DriversConfig m_aNode connectivity::DriversConfig::OSharedConfigNode
include/connectivity/sdbcx/VCatalog.hxx:69
    connectivity::sdbcx::OCatalog m_pGroups std::unique_ptr<OCollection>
include/connectivity/sdbcx/VDescriptor.hxx:53
    connectivity::sdbcx::ODescriptor m_aCase comphelper::UStringMixEqual
include/connectivity/sdbcx/VGroup.hxx:55
    connectivity::sdbcx::OGroup m_pUsers std::unique_ptr<OUsers>
include/connectivity/sdbcx/VUser.hxx:55
    connectivity::sdbcx::OUser m_pGroups std::unique_ptr<OGroups>
include/connectivity/sqlparse.hxx:109
    connectivity::OSQLParser_Data aErrors ::connectivity::SQLError
include/drawinglayer/processor3d/defaultprocessor3d.hxx:90
    drawinglayer::processor3d::DefaultProcessor3D maDrawinglayerOpt const class SvtOptionsDrawinglayer
include/editeng/brushitem.hxx:51
    SvxBrushItem maSecOptions class SvtSecurityOptions
include/filter/msfilter/svdfppt.hxx:709
    PPTExtParaSheet aExtParaLevel struct PPTExtParaLevel [5]
include/filter/msfilter/svdfppt.hxx:880
    ImplPPTParaPropSet nDontKnow1 sal_uInt32
include/filter/msfilter/svdfppt.hxx:881
    ImplPPTParaPropSet nDontKnow2 sal_uInt32
include/filter/msfilter/svdfppt.hxx:882
    ImplPPTParaPropSet nDontKnow2bit06 sal_uInt16
include/oox/core/contexthandler2.hxx:217
    oox::core::ContextHandler2Helper mnRootStackSize const size_t
include/oox/ole/axbinarywriter.hxx:151
    oox::ole::AxBinaryPropertyWriter maStreamProps oox::ole::AxBinaryPropertyWriter::ComplexPropVector
include/registry/refltype.hxx:65
    RTUik m_Data1 const sal_uInt32
include/registry/refltype.hxx:66
    RTUik m_Data2 const sal_uInt16
include/registry/refltype.hxx:67
    RTUik m_Data3 const sal_uInt16
include/registry/refltype.hxx:68
    RTUik m_Data4 const sal_uInt32
include/registry/refltype.hxx:69
    RTUik m_Data5 const sal_uInt32
include/sfx2/charmapcontrol.hxx:46
    SfxCharmapCtrl m_pFavCharView VclPtr<class SvxCharViewControl> [16]
include/sfx2/msg.hxx:95
    SfxTypeAttrib nAID sal_uInt16
include/sfx2/msg.hxx:96
    SfxTypeAttrib pName const char *
include/sfx2/msg.hxx:105
    SfxType createSfxPoolItemFunc const std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:106
    SfxType pType const std::type_info *
include/sfx2/msg.hxx:107
    SfxType nAttribs const sal_uInt16
include/sfx2/msg.hxx:108
    SfxType aAttrib struct SfxTypeAttrib [1]
include/sfx2/msg.hxx:118
    SfxType0 pType const std::type_info *
include/sfx2/sidebar/ResourceManager.hxx:110
    sfx2::sidebar::ResourceManager maMiscOptions const class SvtMiscOptions
include/svl/ondemand.hxx:55
    OnDemandLocaleDataWrapper aSysLocale class SvtSysLocale
include/svtools/editsyntaxhighlighter.hxx:32
    MultiLineEditSyntaxHighlight m_aColorConfig const svtools::ColorConfig
include/svx/dialcontrol.hxx:112
    svx::DialControl::DialControl_Impl mnLinkedFieldValueMultiplyer sal_Int32
include/svx/graphctl.hxx:52
    GraphCtrl xVD ScopedVclPtrInstance<class VirtualDevice>
include/svx/sdr/overlay/overlayanimatedbitmapex.hxx:51
    sdr::overlay::OverlayAnimatedBitmapEx mbOverlayState _Bool
include/svx/sdr/overlay/overlaymanager.hxx:72
    sdr::overlay::OverlayManager maDrawinglayerOpt const class SvtOptionsDrawinglayer
include/svx/svdmark.hxx:140
    SdrMarkList maPointName class rtl::OUString
include/svx/svdmark.hxx:141
    SdrMarkList maGluePointName class rtl::OUString
include/svx/svdoedge.hxx:160
    SdrEdgeObj mbBoundRectCalculationRunning _Bool
include/svx/svdpntv.hxx:167
    SdrPaintView maDrawinglayerOpt const class SvtOptionsDrawinglayer
include/test/sheet/xdatapilottable.hxx:31
    apitest::XDataPilotTable xCellForChange css::uno::Reference<css::table::XCell>
include/test/sheet/xdatapilottable.hxx:32
    apitest::XDataPilotTable xCellForCheck css::uno::Reference<css::table::XCell>
include/test/sheet/xnamedranges.hxx:49
    apitest::XNamedRanges xSheet css::uno::Reference<css::sheet::XSpreadsheet>
include/test/sheet/xspreadsheets2.hxx:46
    apitest::XSpreadsheets2 xDocument css::uno::Reference<css::sheet::XSpreadsheetDocument>
include/unoidl/unoidl.hxx:443
    unoidl::ConstantValue  union unoidl::ConstantValue::(anonymous at /media/disk2/libo7/include/unoidl/unoidl.hxx:443:5)
include/unoidl/unoidl.hxx:444
    unoidl::ConstantValue::(anonymous) booleanValue _Bool
include/unoidl/unoidl.hxx:445
    unoidl::ConstantValue::(anonymous) byteValue sal_Int8
include/unoidl/unoidl.hxx:446
    unoidl::ConstantValue::(anonymous) shortValue sal_Int16
include/unoidl/unoidl.hxx:447
    unoidl::ConstantValue::(anonymous) unsignedShortValue sal_uInt16
include/unoidl/unoidl.hxx:448
    unoidl::ConstantValue::(anonymous) longValue sal_Int32
include/unoidl/unoidl.hxx:449
    unoidl::ConstantValue::(anonymous) unsignedLongValue sal_uInt32
include/unoidl/unoidl.hxx:450
    unoidl::ConstantValue::(anonymous) hyperValue sal_Int64
include/unoidl/unoidl.hxx:451
    unoidl::ConstantValue::(anonymous) unsignedHyperValue sal_uInt64
include/unoidl/unoidl.hxx:452
    unoidl::ConstantValue::(anonymous) floatValue float
include/unoidl/unoidl.hxx:453
    unoidl::ConstantValue::(anonymous) doubleValue double
include/unotest/bootstrapfixturebase.hxx:52
    test::BootstrapFixtureBase m_directories class test::Directories
include/vcl/headbar.hxx:231
    HeaderBar maDragHdl Link<class HeaderBar *, void>
include/vcl/opengl/OpenGLContext.hxx:48
    OpenGLCapabilitySwitch mbLimitedShaderRegisters _Bool
include/vcl/opengl/OpenGLContext.hxx:167
    OpenGLContext mpLastFramebuffer class OpenGLFramebuffer *
include/vcl/ppdparser.hxx:127
    psp::PPDParser::PPDConstraint m_pKey1 const class psp::PPDKey *
io/source/stm/odata.cxx:571
    io_stm::ODataOutputStream::writeDouble(double)::(anonymous union)::(anonymous) n2 sal_uInt32
io/source/stm/odata.cxx:571
    io_stm::ODataOutputStream::writeDouble(double)::(anonymous union)::(anonymous) n1 sal_uInt32
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:51
    GtvLokDialogPrivate m_nChildKeyModifier guint32
libreofficekit/source/gtk/lokdocview.cxx:84
    LOKDocViewPrivateImpl m_bIsLoading gboolean
lingucomponent/source/languageguessing/simpleguesser.cxx:76
    textcat_t fprint void **
lingucomponent/source/languageguessing/simpleguesser.cxx:78
    textcat_t size uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:79
    textcat_t maxsize uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:81
    textcat_t output char [1024]
linguistic/source/dlistimp.hxx:56
    DicList aOpt class LinguOptions
oox/qa/token/tokenmap-test.cxx:34
    oox::TokenmapTest tokenMap const class oox::TokenMap
oox/qa/unit/vba_compression.cxx:71
    TestVbaCompression m_directories const test::Directories
oox/source/drawingml/chart/objectformatter.cxx:713
    oox::drawingml::chart::ObjectFormatterData maFromLocale const struct com::sun::star::lang::Locale
registry/source/reflwrit.cxx:140
    writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b1 sal_uInt32
registry/source/reflwrit.cxx:141
    writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b2 sal_uInt32
registry/source/reflwrit.cxx:181
    (anonymous namespace)::CPInfo::(anonymous) aUik struct RTUik *
reportdesign/source/ui/inc/ColorListener.hxx:35
    rptui::OColorListener m_aColorConfig const svtools::ColorConfig
sal/osl/unx/process.cxx:825
    osl_procStat signal char [24]
sal/osl/unx/process.cxx:826
    osl_procStat blocked char [24]
sal/osl/unx/process.cxx:827
    osl_procStat sigignore char [24]
sal/osl/unx/process.cxx:828
    osl_procStat sigcatch char [24]
sal/rtl/alloc_arena.hxx:100
    rtl_arena_st m_hash_table_0 struct rtl_arena_segment_type *[64]
sal/rtl/digest.cxx:182
    DigestContextMD2 m_state sal_uInt32 [16]
sal/rtl/digest.cxx:183
    DigestContextMD2 m_chksum sal_uInt32 [16]
sal/rtl/uuid.cxx:64
    UUID clock_seq_low sal_uInt8
sal/rtl/uuid.cxx:65
    UUID node sal_uInt8 [6]
sc/inc/compiler.hxx:126
    ScRawToken::(anonymous union)::(anonymous) eItem const class ScTableRefToken::Item
sc/inc/compiler.hxx:127
    ScRawToken::(anonymous) table const struct (anonymous struct at /media/disk2/libo7/sc/inc/compiler.hxx:124:9)
sc/inc/compiler.hxx:132
    ScRawToken::(anonymous) pMat class ScMatrix *const
sc/inc/formulagroup.hxx:39
    sc::FormulaGroupEntry::(anonymous) mpCells class ScFormulaCell **const
sc/inc/reordermap.hxx:21
    sc::ColRowReorderMapType maData sc::ColRowReorderMapType::DataType
sc/source/core/inc/adiasync.hxx:42
    ScAddInAsync::(anonymous) pStr class rtl::OUString *
sc/source/core/inc/interpre.hxx:102
    ScTokenStack pPointer const formula::FormulaToken *[512]
sc/source/filter/excel/xltoolbar.cxx:26
    MSOExcelCommandConvertor msoToOOcmd IdToString
sc/source/filter/excel/xltoolbar.cxx:27
    MSOExcelCommandConvertor tcidToOOcmd IdToString
sc/source/filter/inc/autofilterbuffer.hxx:181
    oox::xls::FilterColumn mxSettings std::shared_ptr<FilterSettingsBase>
sc/source/filter/inc/commentsbuffer.hxx:42
    oox::xls::CommentModel maAnchor const css::awt::Rectangle
sc/source/filter/inc/htmlpars.hxx:56
    ScHTMLStyles maEmpty const class rtl::OUString
sc/source/filter/inc/namebuff.hxx:79
    RangeNameBufferWK3::Entry nAbsInd sal_uInt16
sc/source/filter/inc/qproform.hxx:55
    QProToSc mnAddToken const struct TokenId
sc/source/filter/inc/stylesbuffer.hxx:676
    oox::xls::Dxf mxAlignment std::shared_ptr<Alignment>
sc/source/filter/inc/stylesbuffer.hxx:678
    oox::xls::Dxf mxProtection std::shared_ptr<Protection>
sc/source/filter/inc/stylesbuffer.hxx:767
    oox::xls::CellStyleBuffer maBuiltinStyles oox::xls::CellStyleBuffer::CellStyleVector
sc/source/filter/inc/stylesbuffer.hxx:768
    oox::xls::CellStyleBuffer maUserStyles oox::xls::CellStyleBuffer::CellStyleVector
sc/source/filter/inc/xepage.hxx:122
    XclExpChartPageSettings maData struct XclPageData
sc/source/filter/inc/xistyle.hxx:518
    XclImpXFBuffer maBuiltinStyles XclImpXFBuffer::XclImpStyleList
sc/source/filter/inc/xistyle.hxx:519
    XclImpXFBuffer maUserStyles XclImpXFBuffer::XclImpStyleList
sc/source/filter/inc/xltracer.hxx:82
    XclTracer mbEnabled _Bool
sc/source/filter/xml/xmlcelli.hxx:96
    ScXMLTableRowCellContext mbEditEngineHasText _Bool
sc/source/ui/inc/csvruler.hxx:39
    ScCsvRuler maBackgrDev ScopedVclPtrInstance<class VirtualDevice>
sc/source/ui/inc/csvruler.hxx:40
    ScCsvRuler maRulerDev ScopedVclPtrInstance<class VirtualDevice>
sc/source/ui/inc/tabcont.hxx:38
    ScTabControl bErrorShown _Bool
sc/source/ui/vba/vbaformatconditions.hxx:37
    ScVbaFormatConditions mxSheetConditionalEntries css::uno::Reference<css::sheet::XSheetConditionalEntries>
sc/source/ui/vba/vbaformatconditions.hxx:38
    ScVbaFormatConditions mxStyles css::uno::Reference<ov::excel::XStyles>
sc/source/ui/vba/vbaformatconditions.hxx:39
    ScVbaFormatConditions mxRangeParent css::uno::Reference<ov::excel::XRange>
sc/source/ui/vba/vbaformatconditions.hxx:40
    ScVbaFormatConditions mxParentRangePropertySet css::uno::Reference<css::beans::XPropertySet>
sc/source/ui/vba/vbaworksheet.hxx:50
    ScVbaWorksheet mxButtons ::rtl::Reference<ScVbaSheetObjectsBase> [2]
sd/inc/Outliner.hxx:277
    SdOutliner mpFirstObj class SdrObject *
sd/inc/sdmod.hxx:119
    SdModule gImplImpressPropertySetInfoCache SdExtPropertySetInfoCache
sd/inc/sdmod.hxx:120
    SdModule gImplDrawPropertySetInfoCache SdExtPropertySetInfoCache
sd/source/core/CustomAnimationCloner.cxx:68
    sd::CustomAnimationClonerImpl maSourceNodeVector std::vector<Reference<XAnimationNode> >
sd/source/core/CustomAnimationCloner.cxx:69
    sd::CustomAnimationClonerImpl maCloneNodeVector std::vector<Reference<XAnimationNode> >
sd/source/ui/inc/unopage.hxx:165
    SdDrawPage maTypeSequence css::uno::Sequence<css::uno::Type>
sd/source/ui/inc/unopage.hxx:226
    SdMasterPage maTypeSequence css::uno::Sequence<css::uno::Type>
sd/source/ui/sidebar/MasterPageContainer.cxx:140
    sd::sidebar::MasterPageContainer::Implementation maLargePreviewBeingCreated class Image
sd/source/ui/sidebar/MasterPageContainer.cxx:141
    sd::sidebar::MasterPageContainer::Implementation maSmallPreviewBeingCreated class Image
sd/source/ui/sidebar/MasterPageContainer.cxx:146
    sd::sidebar::MasterPageContainer::Implementation maLargePreviewNotAvailable class Image
sd/source/ui/sidebar/MasterPageContainer.cxx:147
    sd::sidebar::MasterPageContainer::Implementation maSmallPreviewNotAvailable class Image
sd/source/ui/slideshow/showwindow.hxx:99
    sd::ShowWindow mbMouseCursorHidden _Bool
sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx:142
    sd::slidesorter::cache::PageCacheManager::RecentlyUsedPageCaches maMap std::map<key_type, mapped_type>
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:97
    sd::slidesorter::controller::Animator maElapsedTime const ::canvas::tools::ElapsedTime
sd/source/ui/table/TableDesignPane.hxx:90
    sd::TableDesignWidget m_aCheckBoxes VclPtr<class CheckBox> [6]
sdext/source/pdfimport/inc/pdfihelper.hxx:102
    pdfi::GraphicsContext BlendMode sal_Int8
sdext/source/pdfimport/tree/style.hxx:43
    pdfi::StyleContainer::Style Contents const class rtl::OUString
sfx2/source/appl/lnkbase2.cxx:95
    sfx2::ImplDdeItem pLink class sfx2::SvBaseLink *
slideshow/source/engine/slideshowimpl.cxx:156
    (anonymous namespace)::FrameSynchronization maTimer const canvas::tools::ElapsedTime
sot/source/sdstor/ucbstorage.cxx:399
    UCBStorageStream_Impl m_aKey const class rtl::OString
starmath/source/view.cxx:862
    SmViewShell_Impl aOpts class SvtMiscOptions
store/source/storbios.cxx:57
    OStoreSuperBlock m_aMarked OStoreSuperBlock::L
svl/source/crypto/cryptosign.cxx:283
    (anonymous namespace)::PKIStatusInfo status SECItem
svl/source/crypto/cryptosign.cxx:303
    (anonymous namespace)::TimeStampResp status struct (anonymous namespace)::PKIStatusInfo
svl/source/crypto/cryptosign.cxx:304
    (anonymous namespace)::TimeStampResp timeStampToken SECItem
svl/source/misc/strmadpt.cxx:51
    SvDataPipe_Impl::Page m_aBuffer sal_Int8 [1]
svl/source/uno/pathservice.cxx:35
    PathService m_aOptions const class SvtPathOptions
svtools/source/control/tabbar.cxx:200
    ImplTabBarItem maHelpId const class rtl::OString
svtools/source/dialogs/insdlg.cxx:45
    OleObjectDescriptor cbSize const sal_uInt32
svtools/source/dialogs/insdlg.cxx:46
    OleObjectDescriptor clsid const ClsId
svtools/source/dialogs/insdlg.cxx:47
    OleObjectDescriptor dwDrawAspect const sal_uInt32
svtools/source/dialogs/insdlg.cxx:48
    OleObjectDescriptor sizel const class Size
svtools/source/dialogs/insdlg.cxx:49
    OleObjectDescriptor pointl const class Point
svtools/source/dialogs/insdlg.cxx:50
    OleObjectDescriptor dwStatus const sal_uInt32
svtools/source/dialogs/insdlg.cxx:51
    OleObjectDescriptor dwFullUserTypeName sal_uInt32
svtools/source/dialogs/insdlg.cxx:52
    OleObjectDescriptor dwSrcOfCopy sal_uInt32
svtools/source/table/gridtablerenderer.cxx:69
    svt::table::CachedSortIndicator m_sortAscending class BitmapEx
svtools/source/table/gridtablerenderer.cxx:70
    svt::table::CachedSortIndicator m_sortDescending class BitmapEx
svx/inc/sdr/overlay/overlayrectangle.hxx:44
    sdr::overlay::OverlayRectangle mbOverlayState _Bool
svx/source/inc/datanavi.hxx:215
    svxform::XFormsPage m_aMethodString const class svxform::MethodString
svx/source/inc/datanavi.hxx:216
    svxform::XFormsPage m_aReplaceString const class svxform::ReplaceString
svx/source/inc/datanavi.hxx:526
    svxform::AddSubmissionDialog m_aMethodString const class svxform::MethodString
svx/source/inc/datanavi.hxx:527
    svxform::AddSubmissionDialog m_aReplaceString const class svxform::ReplaceString
svx/source/inc/gridcell.hxx:527
    DbPatternField m_pValueFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
svx/source/inc/gridcell.hxx:528
    DbPatternField m_pPaintFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
svx/source/svdraw/svdpdf.hxx:174
    ImpSdrPdfImport maDash const class XDash
sw/inc/acmplwrd.hxx:42
    SwAutoCompleteWord m_LookupTree const editeng::Trie
sw/inc/calc.hxx:197
    SwCalc m_aSysLocale const class SvtSysLocale
sw/inc/hints.hxx:230
    SwAttrSetChg m_bDelSet const _Bool
sw/inc/shellio.hxx:146
    SwReader pStg const tools::SvRef<SotStorage>
sw/inc/swevent.hxx:71
    SwCallMouseEvent::(anonymous union)::(anonymous) pFormat const class SwFrameFormat *
sw/source/core/access/accfrmobjmap.hxx:100
    SwAccessibleChildMap maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/acchypertextdata.hxx:40
    SwAccessibleHyperTextData maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/accmap.cxx:102
    SwAccessibleContextMap_Impl maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/accmap.cxx:278
    SwAccessibleShapeMap_Impl maMap std::map<key_type, mapped_type, SwShapeFunc>
sw/source/core/access/accmap.cxx:631
    SwAccessibleEventMap_Impl maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/accmap.cxx:671
    SwAccessibleSelectedParas_Impl maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/doc/swstylemanager.cxx:58
    SwStyleManager aAutoCharPool class StylePool
sw/source/core/doc/swstylemanager.cxx:59
    SwStyleManager aAutoParaPool class StylePool
sw/source/core/doc/tblrwcl.cxx:84
    CpyTabFrame::(anonymous) nSize SwTwips
sw/source/core/inc/swblocks.hxx:69
    SwImpBlocks m_bInPutMuchBlocks _Bool
sw/source/filter/inc/rtf.hxx:32
    RTFSurround::(anonymous) nVal sal_uInt8
sw/source/ui/dbui/dbinsdlg.cxx:120
    DB_Column::(anonymous) pText class rtl::OUString *const
sw/source/ui/dbui/dbinsdlg.cxx:122
    DB_Column::(anonymous) nFormat const sal_uInt32
sw/source/uibase/dbui/mmconfigitem.cxx:109
    SwMailMergeConfigItem_Impl m_aFemaleGreetingLines std::vector<OUString>
sw/source/uibase/dbui/mmconfigitem.cxx:111
    SwMailMergeConfigItem_Impl m_aMaleGreetingLines std::vector<OUString>
sw/source/uibase/dbui/mmconfigitem.cxx:113
    SwMailMergeConfigItem_Impl m_aNeutralGreetingLines std::vector<OUString>
sw/source/uibase/inc/fldmgr.hxx:79
    SwInsertField_Data m_aDBDataSource const css::uno::Any
toolkit/source/awt/vclxtoolkit.cxx:430
    (anonymous namespace)::VCLXToolkit mxSelection css::uno::Reference<css::datatransfer::clipboard::XClipboard>
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/hierarchy/hierarchydatasupplier.cxx:74
    hierarchy_ucp::DataSupplier_Impl m_aIterator const class HierarchyEntry::iterator
ucbhelper/source/client/proxydecider.cxx:124
    ucbhelper::proxydecider_impl::InternetProxyDecider_Impl m_aEmptyProxy const struct ucbhelper::InternetProxyServer
ucbhelper/source/provider/propertyvalueset.cxx:88
    ucbhelper_impl::PropertyValue aString class rtl::OUString
ucbhelper/source/provider/propertyvalueset.cxx:89
    ucbhelper_impl::PropertyValue bBoolean _Bool
ucbhelper/source/provider/propertyvalueset.cxx:90
    ucbhelper_impl::PropertyValue nByte sal_Int8
ucbhelper/source/provider/propertyvalueset.cxx:91
    ucbhelper_impl::PropertyValue nShort sal_Int16
ucbhelper/source/provider/propertyvalueset.cxx:92
    ucbhelper_impl::PropertyValue nInt sal_Int32
ucbhelper/source/provider/propertyvalueset.cxx:93
    ucbhelper_impl::PropertyValue nLong sal_Int64
ucbhelper/source/provider/propertyvalueset.cxx:97
    ucbhelper_impl::PropertyValue aBytes Sequence<sal_Int8>
ucbhelper/source/provider/propertyvalueset.cxx:98
    ucbhelper_impl::PropertyValue aDate struct com::sun::star::util::Date
ucbhelper/source/provider/propertyvalueset.cxx:99
    ucbhelper_impl::PropertyValue aTime struct com::sun::star::util::Time
ucbhelper/source/provider/propertyvalueset.cxx:100
    ucbhelper_impl::PropertyValue aTimestamp struct com::sun::star::util::DateTime
ucbhelper/source/provider/propertyvalueset.cxx:101
    ucbhelper_impl::PropertyValue xBinaryStream Reference<class com::sun::star::io::XInputStream>
ucbhelper/source/provider/propertyvalueset.cxx:102
    ucbhelper_impl::PropertyValue xCharacterStream Reference<class com::sun::star::io::XInputStream>
ucbhelper/source/provider/propertyvalueset.cxx:103
    ucbhelper_impl::PropertyValue xRef Reference<class com::sun::star::sdbc::XRef>
ucbhelper/source/provider/propertyvalueset.cxx:104
    ucbhelper_impl::PropertyValue xBlob Reference<class com::sun::star::sdbc::XBlob>
ucbhelper/source/provider/propertyvalueset.cxx:105
    ucbhelper_impl::PropertyValue xClob Reference<class com::sun::star::sdbc::XClob>
ucbhelper/source/provider/propertyvalueset.cxx:106
    ucbhelper_impl::PropertyValue xArray Reference<class com::sun::star::sdbc::XArray>
unoidl/source/sourceprovider-scanner.hxx:147
    unoidl::detail::SourceProviderInterfaceTypeEntityPad directMandatoryBases std::vector<DirectBase>
unoidl/source/sourceprovider-scanner.hxx:148
    unoidl::detail::SourceProviderInterfaceTypeEntityPad directOptionalBases std::vector<DirectBase>
unoidl/source/sourceprovider-scanner.hxx:247
    unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directMandatoryBaseServices std::vector<unoidl::AnnotatedReference>
unoidl/source/sourceprovider-scanner.hxx:248
    unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directOptionalBaseServices std::vector<unoidl::AnnotatedReference>
unoidl/source/sourceprovider-scanner.hxx:249
    unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directMandatoryBaseInterfaces std::vector<unoidl::AnnotatedReference>
unoidl/source/sourceprovider-scanner.hxx:250
    unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directOptionalBaseInterfaces std::vector<unoidl::AnnotatedReference>
unoidl/source/unoidl-read.cxx:146
    (anonymous namespace)::Entity dependencies std::set<OUString>
unoidl/source/unoidl-read.cxx:147
    (anonymous namespace)::Entity interfaceDependencies std::set<OUString>
unoidl/source/unoidlprovider.cxx:86
    unoidl::detail::(anonymous namespace)::Memory16 byte const unsigned char [2]
unoidl/source/unoidlprovider.cxx:96
    unoidl::detail::(anonymous namespace)::Memory32 byte const unsigned char [4]
unoidl/source/unoidlprovider.cxx:127
    unoidl::detail::(anonymous namespace)::Memory64 byte const unsigned char [8]
unoidl/source/unoidlprovider.cxx:455
    unoidl::detail::MapEntry name const struct unoidl::detail::(anonymous namespace)::Memory32
unoidl/source/unoidlprovider.cxx:456
    unoidl::detail::MapEntry data const struct unoidl::detail::(anonymous namespace)::Memory32
unotools/source/config/pathoptions.cxx:84
    SvtPathOptions_Impl m_aEmptyString const class rtl::OUString
unotools/source/config/saveopt.cxx:76
    SvtSaveOptions_Impl bROUserAutoSave _Bool
vcl/inc/BitmapFastScaleFilter.hxx:31
    BitmapFastScaleFilter maSize const class Size
vcl/inc/printerinfomanager.hxx:74
    psp::PrinterInfoManager::SystemPrintQueue m_aComment class rtl::OUString
vcl/inc/salwtype.hxx:157
    SalWheelMouseEvent mbDeltaIsPixel _Bool
vcl/inc/salwtype.hxx:204
    SalSurroundingTextSelectionChangeEvent mnStart const sal_uLong
vcl/inc/salwtype.hxx:205
    SalSurroundingTextSelectionChangeEvent mnEnd const sal_uLong
vcl/inc/salwtype.hxx:211
    SalQueryCharPositionEvent mnCharPos sal_uLong
vcl/inc/svdata.hxx:271
    ImplSVNWFData mbMenuBarDockingAreaCommonBG _Bool
vcl/inc/toolbox.h:108
    vcl::ToolBoxLayoutData m_aLineItemIds std::vector<sal_uInt16>
vcl/inc/unx/saldisp.hxx:282
    SalDisplay m_aInvalidScreenData const struct SalDisplay::ScreenData
vcl/inc/WidgetThemeLibrary.hxx:21
    vcl::WidgetDrawStyle maFaceColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:22
    vcl::WidgetDrawStyle maCheckedColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:23
    vcl::WidgetDrawStyle maLightColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:24
    vcl::WidgetDrawStyle maLightBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:25
    vcl::WidgetDrawStyle maShadowColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:26
    vcl::WidgetDrawStyle maDarkShadowColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:27
    vcl::WidgetDrawStyle maButtonTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:28
    vcl::WidgetDrawStyle maButtonRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:29
    vcl::WidgetDrawStyle maRadioCheckTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:30
    vcl::WidgetDrawStyle maGroupTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:31
    vcl::WidgetDrawStyle maLabelTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:32
    vcl::WidgetDrawStyle maWindowColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:33
    vcl::WidgetDrawStyle maWindowTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:34
    vcl::WidgetDrawStyle maDialogColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:35
    vcl::WidgetDrawStyle maDialogTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:36
    vcl::WidgetDrawStyle maWorkspaceColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:37
    vcl::WidgetDrawStyle maMonoColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:38
    vcl::WidgetDrawStyle maFieldColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:39
    vcl::WidgetDrawStyle maFieldTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:40
    vcl::WidgetDrawStyle maFieldRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:41
    vcl::WidgetDrawStyle maActiveColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:42
    vcl::WidgetDrawStyle maActiveTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:43
    vcl::WidgetDrawStyle maActiveBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:44
    vcl::WidgetDrawStyle maDeactiveColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:45
    vcl::WidgetDrawStyle maDeactiveTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:46
    vcl::WidgetDrawStyle maDeactiveBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:47
    vcl::WidgetDrawStyle maMenuColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:48
    vcl::WidgetDrawStyle maMenuBarColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:49
    vcl::WidgetDrawStyle maMenuBarRolloverColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:50
    vcl::WidgetDrawStyle maMenuBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:51
    vcl::WidgetDrawStyle maMenuTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:52
    vcl::WidgetDrawStyle maMenuBarTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:53
    vcl::WidgetDrawStyle maMenuBarRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:54
    vcl::WidgetDrawStyle maMenuBarHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:55
    vcl::WidgetDrawStyle maMenuHighlightColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:56
    vcl::WidgetDrawStyle maMenuHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:57
    vcl::WidgetDrawStyle maHighlightColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:58
    vcl::WidgetDrawStyle maHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:59
    vcl::WidgetDrawStyle maActiveTabColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:60
    vcl::WidgetDrawStyle maInactiveTabColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:61
    vcl::WidgetDrawStyle maTabTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:62
    vcl::WidgetDrawStyle maTabRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:63
    vcl::WidgetDrawStyle maTabHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:64
    vcl::WidgetDrawStyle maDisableColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:65
    vcl::WidgetDrawStyle maHelpColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:66
    vcl::WidgetDrawStyle maHelpTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:67
    vcl::WidgetDrawStyle maLinkColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:68
    vcl::WidgetDrawStyle maVisitedLinkColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:69
    vcl::WidgetDrawStyle maToolTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:70
    vcl::WidgetDrawStyle maFontColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:108
    vcl::WidgetThemeLibrary_t isNativeControlSupported _Bool (*)(enum ControlType, enum ControlPart)
vcl/inc/WidgetThemeLibrary.hxx:109
    vcl::WidgetThemeLibrary_t getRegion _Bool (*)(enum ControlType, enum ControlPart, enum ControlState, const vcl::rectangle_t &, vcl::rectangle_t &, vcl::rectangle_t &)
vcl/inc/WidgetThemeLibrary.hxx:113
    vcl::WidgetThemeLibrary_t drawPushButton _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:114
    vcl::WidgetThemeLibrary_t drawRadiobutton _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:115
    vcl::WidgetThemeLibrary_t drawCheckbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:116
    vcl::WidgetThemeLibrary_t drawCombobox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:117
    vcl::WidgetThemeLibrary_t drawEditbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:118
    vcl::WidgetThemeLibrary_t drawScrollbar _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:119
    vcl::WidgetThemeLibrary_t drawSpinButtons _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:120
    vcl::WidgetThemeLibrary_t drawSpinbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:121
    vcl::WidgetThemeLibrary_t drawTabItem _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:122
    vcl::WidgetThemeLibrary_t drawTabPane _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:123
    vcl::WidgetThemeLibrary_t drawTabHeader _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:124
    vcl::WidgetThemeLibrary_t drawTabBody _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:125
    vcl::WidgetThemeLibrary_t drawSlider _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:126
    vcl::WidgetThemeLibrary_t drawFixedline _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:127
    vcl::WidgetThemeLibrary_t drawToolbar _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:128
    vcl::WidgetThemeLibrary_t drawProgress _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:129
    vcl::WidgetThemeLibrary_t drawWindowsBackground _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:131
    vcl::WidgetThemeLibrary_t drawListbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:132
    vcl::WidgetThemeLibrary_t drawFrame _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:133
    vcl::WidgetThemeLibrary_t drawListNode _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:134
    vcl::WidgetThemeLibrary_t drawListNet _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:135
    vcl::WidgetThemeLibrary_t drawListHeader _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:137
    vcl::WidgetThemeLibrary_t updateSettings _Bool (*)(struct vcl::WidgetDrawStyle &)
vcl/source/app/settings.cxx:184
    ImplStyleData maDialogStyle struct DialogStyle
vcl/source/control/roadmapwizard.cxx:62
    vcl::RoadmapWizardImpl aStateDescriptors vcl::(anonymous namespace)::StateDescriptions
vcl/source/control/tabctrl.cxx:78
    ImplTabCtrlData maLayoutPageIdToLine std::unordered_map<int, int>
vcl/source/filter/jpeg/Exif.hxx:51
    Exif::ExifIFD tag sal_uInt8 [2]
vcl/source/filter/jpeg/Exif.hxx:52
    Exif::ExifIFD type sal_uInt8 [2]
vcl/source/filter/jpeg/Exif.hxx:53
    Exif::ExifIFD count sal_uInt8 [4]
vcl/source/filter/jpeg/Exif.hxx:54
    Exif::ExifIFD offset sal_uInt8 [4]
vcl/source/filter/jpeg/Exif.hxx:58
    Exif::TiffHeader byteOrder const sal_uInt16
vcl/source/filter/jpeg/transupp.h:132
    (anonymous) slow_hflip boolean
vcl/source/filter/jpeg/transupp.h:144
    (anonymous) crop_width_set JCROP_CODE
vcl/source/filter/jpeg/transupp.h:146
    (anonymous) crop_height_set JCROP_CODE
vcl/source/filter/jpeg/transupp.h:148
    (anonymous) crop_xoffset_set JCROP_CODE
vcl/source/filter/jpeg/transupp.h:150
    (anonymous) crop_yoffset_set JCROP_CODE
vcl/source/fontsubset/sft.cxx:1038
    vcl::subHeader2 firstCode const sal_uInt16
vcl/source/fontsubset/sft.cxx:1039
    vcl::subHeader2 entryCount const sal_uInt16
vcl/source/fontsubset/sft.cxx:1040
    vcl::subHeader2 idDelta const sal_uInt16
vcl/source/gdi/dibtools.cxx:52
    (anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30
vcl/source/gdi/dibtools.cxx:53
    (anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30
vcl/source/gdi/dibtools.cxx:54
    (anonymous namespace)::CIEXYZ aXyzZ FXPT2DOT30
vcl/source/gdi/dibtools.cxx:65
    (anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:66
    (anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:67
    (anonymous namespace)::CIEXYZTriple aXyzBlue struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:107
    (anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32
vcl/source/gdi/dibtools.cxx:108
    (anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32
vcl/source/gdi/dibtools.cxx:109
    (anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32
vcl/source/gdi/dibtools.cxx:110
    (anonymous namespace)::DIBV5Header nV5AlphaMask sal_uInt32
vcl/source/gdi/dibtools.cxx:112
    (anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple
vcl/source/gdi/dibtools.cxx:113
    (anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32
vcl/source/gdi/dibtools.cxx:114
    (anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32
vcl/source/gdi/dibtools.cxx:115
    (anonymous namespace)::DIBV5Header nV5GammaBlue sal_uInt32
vcl/source/gdi/dibtools.cxx:117
    (anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32
vcl/source/gdi/dibtools.cxx:118
    (anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32
vcl/source/gdi/dibtools.cxx:119
    (anonymous namespace)::DIBV5Header nV5Reserved sal_uInt32
vcl/source/gdi/pdfwriter_impl.hxx:279
    vcl::PDFWriterImpl::TransparencyEmit m_pSoftMaskStream std::unique_ptr<SvMemoryStream>
vcl/source/treelist/headbar.cxx:40
    ImplHeadItem maHelpId const class rtl::OString
vcl/source/treelist/headbar.cxx:41
    ImplHeadItem maImage const class Image
vcl/source/window/menuitemlist.hxx:56
    MenuItemData aAccessibleName const class rtl::OUString
vcl/unx/gtk3/a11y/atkwrapper.hxx:47
    AtkObjectWrapper aParent const AtkObject
vcl/unx/gtk3/a11y/atkwrapper.hxx:75
    AtkObjectWrapperClass aParentClass GtkWidgetAccessibleClass
vcl/unx/gtk3/gtk3gloactiongroup.cxx:28
    GLOAction parent_instance GObject
vcl/unx/gtk3/gtk3glomenu.cxx:17
    GLOMenu parent_instance const GMenuModel
vcl/unx/gtk3/gtk3gtkinst.cxx:1596
     out gpointer *
writerfilter/inc/ooxml/QNameToString.hxx:41
    writerfilter::QNameToString mMap writerfilter::QNameToString::Map
writerfilter/source/ooxml/OOXMLFactory.hxx:63
    writerfilter::ooxml::AttributeInfo m_nToken const writerfilter::Token_t
writerfilter/source/ooxml/OOXMLFactory.hxx:64
    writerfilter::ooxml::AttributeInfo m_nResource const enum writerfilter::ooxml::ResourceType
writerfilter/source/ooxml/OOXMLFactory.hxx:65
    writerfilter::ooxml::AttributeInfo m_nRef const Id
xmloff/inc/MultiPropertySetHelper.hxx:78
    MultiPropertySetHelper aEmptyAny const css::uno::Any
xmloff/source/chart/SchXMLChartContext.cxx:444
    (anonymous namespace)::NewDonutSeries msStyleName const class rtl::OUString
xmloff/source/chart/SchXMLChartContext.hxx:52
    SeriesDefaultsAndStyles maErrorIndicatorDefault const css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:53
    SeriesDefaultsAndStyles maErrorCategoryDefault const css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:54
    SeriesDefaultsAndStyles maConstantErrorLowDefault const css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:55
    SeriesDefaultsAndStyles maConstantErrorHighDefault const css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:56
    SeriesDefaultsAndStyles maPercentageErrorDefault const css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:57
    SeriesDefaultsAndStyles maErrorMarginDefault const css::uno::Any
xmloff/source/core/xmlexp.cxx:254
    SvXMLExport_Impl maSaveOptions const class SvtSaveOptions