summaryrefslogtreecommitdiffstats
path: root/compilerplugins/clang/unusedfields.only-used-in-constructor.results
blob: 196a586da4227d4b90b39c8b29a6b2e426e8bd97 (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
basegfx/source/polygon/b2dpolygontriangulator.cxx:112
    basegfx::(anonymous namespace)::Triangulator maStartEntries basegfx::(anonymous namespace)::EdgeEntries
basegfx/source/polygon/b2dtrapezoid.cxx:205
    basegfx::trapezoidhelper::(anonymous namespace)::PointBlockAllocator maFirstStackBlock class basegfx::B2DPoint[32]
basegfx/source/polygon/b2dtrapezoid.cxx:256
    basegfx::trapezoidhelper::(anonymous namespace)::TrapezoidSubdivider maPoints std::vector<B2DPoint>
basic/qa/cppunit/basictest.hxx:27
    MacroSnippet maDll class BasicDLL
basic/qa/cppunit/test_global_array.cxx:25
    (anonymous namespace)::GlobalArrayTest lib class BasicDLL
basic/qa/cppunit/test_global_as_new.cxx:25
    (anonymous namespace)::GlobalAsNewTest lib class BasicDLL
binaryurp/source/unmarshal.hxx:86
    binaryurp::Unmarshal buffer_ com::sun::star::uno::Sequence<sal_Int8>
binaryurp/source/writer.hxx:136
    binaryurp::Writer state_ struct binaryurp::WriterState
canvas/source/tools/surfaceproxy.hxx:104
    canvas::SurfaceProxy mpPageManager canvas::PageManagerSharedPtr
canvas/source/vcl/impltools.hxx:114
    vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
chart2/source/controller/accessibility/AccessibleChartShape.hxx:78
    chart::AccessibleChartShape m_aShapeTreeInfo ::accessibility::AccessibleShapeTreeInfo
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:71
    chart::ThreeD_SceneIllumination_TabPage m_aModelChangeListener class chart::ModifyListenerCallBack
chart2/source/controller/inc/dlg_View3D.hxx:46
    chart::View3DDialog m_aControllerLocker class chart::ControllerLockHelper
chart2/source/controller/inc/RangeSelectionListener.hxx:65
    chart::RangeSelectionListener m_aControllerLockGuard class chart::ControllerLockGuardUNO
connectivity/source/commontools/RowFunctionParser.cxx:372
    connectivity::(anonymous namespace)::ExpressionGrammar::definition unaryFunction ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:373
    connectivity::(anonymous namespace)::ExpressionGrammar::definition assignment ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:374
    connectivity::(anonymous namespace)::ExpressionGrammar::definition argument ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:374
    connectivity::(anonymous namespace)::ExpressionGrammar::definition integer ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:375
    connectivity::(anonymous namespace)::ExpressionGrammar::definition andExpression ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:375
    connectivity::(anonymous namespace)::ExpressionGrammar::definition orExpression ::boost::spirit::classic::rule<ScannerT>
connectivity/source/drivers/evoab2/EApi.h:121
    (anonymous) address_format char *
connectivity/source/drivers/evoab2/EApi.h:125
    (anonymous) ext char *
connectivity/source/drivers/firebird/Driver.hxx:48
    connectivity::firebird::FirebirdDriver m_firebirdTMPDirectory ::utl::TempFile
connectivity/source/drivers/firebird/Driver.hxx:49
    connectivity::firebird::FirebirdDriver m_firebirdLockDirectory ::utl::TempFile
connectivity/source/drivers/postgresql/pq_statics.hxx:104
    pq_sdbc_driver::ImplementationStatics types css::uno::Sequence<css::uno::Type>
connectivity/source/inc/component/CResultSet.hxx:41
    connectivity::component::OComponentResultSet m_bBookmarkable _Bool
connectivity/source/inc/dbase/DResultSet.hxx:40
    connectivity::dbase::ODbaseResultSet m_bBookmarkable _Bool
connectivity/source/inc/file/FStatement.hxx:84
    connectivity::file::OStatement_Base m_aCursorName rtl::OUString
connectivity/source/inc/file/FStatement.hxx:85
    connectivity::file::OStatement_Base m_nMaxFieldSize sal_Int32
connectivity/source/inc/file/FStatement.hxx:86
    connectivity::file::OStatement_Base m_nMaxRows sal_Int32
connectivity/source/inc/file/FStatement.hxx:87
    connectivity::file::OStatement_Base m_nQueryTimeOut sal_Int32
connectivity/source/inc/file/FStatement.hxx:88
    connectivity::file::OStatement_Base m_nFetchSize sal_Int32
connectivity/source/inc/file/FStatement.hxx:89
    connectivity::file::OStatement_Base m_nResultSetType sal_Int32
connectivity/source/inc/file/FStatement.hxx:90
    connectivity::file::OStatement_Base m_nFetchDirection sal_Int32
connectivity/source/inc/file/FStatement.hxx:91
    connectivity::file::OStatement_Base m_nResultSetConcurrency sal_Int32
connectivity/source/inc/file/FStatement.hxx:92
    connectivity::file::OStatement_Base m_bEscapeProcessing _Bool
connectivity/source/inc/flat/EResultSet.hxx:39
    connectivity::flat::OFlatResultSet m_bBookmarkable _Bool
connectivity/source/inc/java/lang/Object.hxx:37
    connectivity::SDBThreadAttach m_aGuard jvmaccess::class VirtualMachine::AttachGuard
cppcanvas/source/mtfrenderer/textaction.cxx:806
    cppcanvas::internal::(anonymous namespace)::EffectTextAction maTextLineInfo const tools::TextLineInfo
cppcanvas/source/mtfrenderer/textaction.cxx:1627
    cppcanvas::internal::(anonymous namespace)::OutlineAction maTextLineInfo const tools::TextLineInfo
cppu/source/threadpool/threadpool.cxx:352
    _uno_ThreadPool dummy sal_Int32
cppu/source/typelib/typelib.cxx:56
    (anonymous namespace)::AlignSize_Impl nInt16 sal_Int16
cppu/source/uno/check.cxx:38
    (anonymous namespace)::C1 n1 sal_Int16
cppu/source/uno/check.cxx:67
    (anonymous namespace)::D d sal_Int16
cppu/source/uno/check.cxx:68
    (anonymous namespace)::D e sal_Int32
cppu/source/uno/check.cxx:72
    (anonymous namespace)::E a sal_Bool
cppu/source/uno/check.cxx:73
    (anonymous namespace)::E b sal_Bool
cppu/source/uno/check.cxx:74
    (anonymous namespace)::E c sal_Bool
cppu/source/uno/check.cxx:75
    (anonymous namespace)::E d sal_Int16
cppu/source/uno/check.cxx:76
    (anonymous namespace)::E e sal_Int32
cppu/source/uno/check.cxx:81
    (anonymous namespace)::M n sal_Int32
cppu/source/uno/check.cxx:82
    (anonymous namespace)::M o sal_Int16
cppu/source/uno/check.cxx:91
    (anonymous namespace)::N2 m struct (anonymous namespace)::M
cppu/source/uno/check.cxx:92
    (anonymous namespace)::N2 p sal_Int16
cppu/source/uno/check.cxx:97
    (anonymous namespace)::O p double
cppu/source/uno/check.cxx:98
    (anonymous namespace)::O q sal_Int16
cppu/source/uno/check.cxx:107
    (anonymous namespace)::P p2 double
cppu/source/uno/check.cxx:115
    (anonymous namespace)::second a int
cppu/source/uno/check.cxx:126
    (anonymous namespace)::Char1 c1 char
cppu/source/uno/check.cxx:130
    (anonymous namespace)::Char2 c2 char
cppu/source/uno/check.cxx:134
    (anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:258
    (anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
cui/source/dialogs/colorpicker.cxx:740
    cui::(anonymous namespace)::ColorPickerDialog m_aColorPrevious class cui::(anonymous namespace)::ColorPreviewControl
cui/source/factory/dlgfact.cxx:1226
    (anonymous namespace)::SvxMacroAssignDialog_Impl m_aItems class SfxItemSet
cui/source/inc/AdditionsDialog.hxx:47
    AdditionInfo sReleaseVersion rtl::OUString
cui/source/inc/AdditionsDialog.hxx:84
    AdditionsDialog m_sTag rtl::OUString
cui/source/inc/cfgutil.hxx:241
    SvxScriptSelectorDialog m_aStylesInfo struct SfxStylesInfo_Impl
cui/source/inc/cuitabarea.hxx:223
    SvxAreaTabPage maFixed_ChangeType enum ChangeType
cui/source/inc/cuitabarea.hxx:231
    SvxAreaTabPage m_aXFillAttr class XFillAttrSetItem
cui/source/inc/tabstpge.hxx:84
    SvxTabulatorTabPage m_aLeftWin class TabWin_Impl
cui/source/inc/tabstpge.hxx:85
    SvxTabulatorTabPage m_aRightWin class TabWin_Impl
cui/source/inc/tabstpge.hxx:86
    SvxTabulatorTabPage m_aCenterWin class TabWin_Impl
cui/source/inc/tabstpge.hxx:87
    SvxTabulatorTabPage m_aDezWin class TabWin_Impl
cui/source/options/optcolor.cxx:240
    (anonymous namespace)::ColorConfigWindow_Impl::Entry m_aDefaultColor class Color
dbaccess/source/core/api/RowSet.hxx:108
    dbaccess::ORowSet m_aURL rtl::OUString
dbaccess/source/core/api/RowSet.hxx:123
    dbaccess::ORowSet m_nMaxFieldSize sal_Int32
dbaccess/source/core/api/RowSet.hxx:125
    dbaccess::ORowSet m_nQueryTimeOut sal_Int32
dbaccess/source/core/api/RowSet.hxx:127
    dbaccess::ORowSet m_nTransactionIsolation sal_Int32
dbaccess/source/core/api/RowSet.hxx:139
    dbaccess::ORowSet m_bIsBookmarkable _Bool
dbaccess/source/core/api/RowSet.hxx:141
    dbaccess::ORowSet m_bCanUpdateInsertedRows _Bool
dbaccess/source/core/api/RowSet.hxx:457
    dbaccess::ORowSetClone m_nFetchDirection sal_Int32
dbaccess/source/core/api/RowSet.hxx:458
    dbaccess::ORowSetClone m_nFetchSize sal_Int32
dbaccess/source/core/api/RowSet.hxx:459
    dbaccess::ORowSetClone m_bIsBookmarkable _Bool
dbaccess/source/core/dataaccess/connection.hxx:101
    dbaccess::OConnection m_nInAppend std::atomic<std::size_t>
dbaccess/source/core/inc/databasecontext.hxx:84
    dbaccess::ODatabaseContext m_aBasicDLL class BasicDLL
drawinglayer/inc/texture/texture3d.hxx:54
    drawinglayer::texture::GeoTexSvxBitmapEx maBitmapEx class BitmapEx
drawinglayer/inc/texture/texture3d.hxx:55
    drawinglayer::texture::GeoTexSvxBitmapEx maBitmap class Bitmap
drawinglayer/inc/texture/texture3d.hxx:57
    drawinglayer::texture::GeoTexSvxBitmapEx maTransparence class Bitmap
drawinglayer/source/tools/emfphelperdata.hxx:197
    emfplushelper::EmfPlusHelperData mnFrameRight sal_Int32
drawinglayer/source/tools/emfphelperdata.hxx:198
    emfplushelper::EmfPlusHelperData mnFrameBottom sal_Int32
editeng/source/editeng/impedit.hxx:527
    ImpEditEngine aSelFuncSet class EditSelFunctionSet
embeddedobj/source/msole/olecomponent.hxx:51
    OleComponent m_pInterfaceContainer comphelper::OMultiTypeInterfaceContainerHelper2 *
embeddedobj/source/msole/olecomponent.hxx:53
    OleComponent m_bDisposed _Bool
embeddedobj/source/msole/olecomponent.hxx:54
    OleComponent m_bModified _Bool
embeddedobj/source/msole/olecomponent.hxx:55
    OleComponent m_pNativeImpl struct OleComponentNative_Impl *
embeddedobj/source/msole/olecomponent.hxx:57
    OleComponent m_pUnoOleObject class OleEmbeddedObject *
embeddedobj/source/msole/olecomponent.hxx:58
    OleComponent m_pOleWrapClientSite class OleWrapperClientSite *
embeddedobj/source/msole/olecomponent.hxx:59
    OleComponent m_pImplAdviseSink class OleWrapperAdviseSink *
embeddedobj/source/msole/olecomponent.hxx:61
    OleComponent m_nOLEMiscFlags sal_Int32
embeddedobj/source/msole/olecomponent.hxx:62
    OleComponent m_nAdvConn sal_Int32
embeddedobj/source/msole/olecomponent.hxx:64
    OleComponent m_aVerbList css::uno::Sequence<css::embed::VerbDescriptor>
embeddedobj/source/msole/olecomponent.hxx:65
    OleComponent m_aDataFlavors css::uno::Sequence<css::datatransfer::DataFlavor>
embeddedobj/source/msole/olecomponent.hxx:69
    OleComponent m_bOleInitialized _Bool
extensions/source/bibliography/datman.cxx:410
    (anonymous namespace)::DBChangeDialog_Impl aConfig class DBChangeDialogConfig_Impl
filter/source/graphicfilter/icgm/chart.hxx:48
    DataNode nBoxX1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:49
    DataNode nBoxY1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:50
    DataNode nBoxX2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:51
    DataNode nBoxY2 sal_Int16
helpcompiler/inc/HelpCompiler.hxx:201
    HelpCompiler lang const std::string
include/basic/basmgr.hxx:57
    BasicError nReason enum BasicErrorReason
include/drawinglayer/primitive2d/textlayoutdevice.hxx:64
    drawinglayer::primitive2d::TextLayouterDevice maSolarGuard class SolarMutexGuard
include/filter/msfilter/svdfppt.hxx:889
    ImplPPTParaPropSet nDontKnow1 sal_uInt32
include/filter/msfilter/svdfppt.hxx:890
    ImplPPTParaPropSet nDontKnow2 sal_uInt32
include/filter/msfilter/svdfppt.hxx:891
    ImplPPTParaPropSet nDontKnow2bit06 sal_uInt16
include/LibreOfficeKit/LibreOfficeKitGtk.h:33
    _LOKDocView aDrawingArea GtkDrawingArea
include/LibreOfficeKit/LibreOfficeKitGtk.h:38
    _LOKDocViewClass parent_class GtkDrawingAreaClass
include/oox/export/shapes.hxx:104
    oox::drawingml::ShapeExport maShapeMap oox::drawingml::ShapeExport::ShapeHashMap
include/registry/registry.hxx:34
    Registry_Api acquire void (*)(RegHandle)
include/sfx2/classificationhelper.hxx:134
    sfx::ClassificationKeyCreator m_ePolicyType const enum SfxClassificationPolicyType
include/sfx2/msg.hxx:117
    SfxType0 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:119
    SfxType0 nAttribs sal_uInt16
include/sfx2/msg.hxx:132
    SfxType1 aAttrib struct SfxTypeAttrib[1]
include/sfx2/msg.hxx:132
    SfxType1 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:132
    SfxType1 nAttribs sal_uInt16
include/sfx2/msg.hxx:132
    SfxType1 pType const std::type_info *
include/sfx2/msg.hxx:133
    SfxType2 aAttrib struct SfxTypeAttrib[2]
include/sfx2/msg.hxx:133
    SfxType2 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:133
    SfxType2 nAttribs sal_uInt16
include/sfx2/msg.hxx:133
    SfxType2 pType const std::type_info *
include/sfx2/msg.hxx:134
    SfxType3 aAttrib struct SfxTypeAttrib[3]
include/sfx2/msg.hxx:134
    SfxType3 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:134
    SfxType3 nAttribs sal_uInt16
include/sfx2/msg.hxx:134
    SfxType3 pType const std::type_info *
include/sfx2/msg.hxx:135
    SfxType4 aAttrib struct SfxTypeAttrib[4]
include/sfx2/msg.hxx:135
    SfxType4 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:135
    SfxType4 nAttribs sal_uInt16
include/sfx2/msg.hxx:135
    SfxType4 pType const std::type_info *
include/sfx2/msg.hxx:136
    SfxType5 aAttrib struct SfxTypeAttrib[5]
include/sfx2/msg.hxx:136
    SfxType5 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:136
    SfxType5 nAttribs sal_uInt16
include/sfx2/msg.hxx:136
    SfxType5 pType const std::type_info *
include/sfx2/msg.hxx:137
    SfxType6 aAttrib struct SfxTypeAttrib[6]
include/sfx2/msg.hxx:137
    SfxType6 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:137
    SfxType6 nAttribs sal_uInt16
include/sfx2/msg.hxx:137
    SfxType6 pType const std::type_info *
include/sfx2/msg.hxx:138
    SfxType7 aAttrib struct SfxTypeAttrib[7]
include/sfx2/msg.hxx:138
    SfxType7 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:138
    SfxType7 nAttribs sal_uInt16
include/sfx2/msg.hxx:138
    SfxType7 pType const std::type_info *
include/sfx2/msg.hxx:139
    SfxType8 aAttrib struct SfxTypeAttrib[8]
include/sfx2/msg.hxx:139
    SfxType8 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:139
    SfxType8 nAttribs sal_uInt16
include/sfx2/msg.hxx:139
    SfxType8 pType const std::type_info *
include/sfx2/msg.hxx:140
    SfxType10 aAttrib struct SfxTypeAttrib[10]
include/sfx2/msg.hxx:140
    SfxType10 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:140
    SfxType10 nAttribs sal_uInt16
include/sfx2/msg.hxx:140
    SfxType10 pType const std::type_info *
include/sfx2/msg.hxx:141
    SfxType11 aAttrib struct SfxTypeAttrib[11]
include/sfx2/msg.hxx:141
    SfxType11 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:141
    SfxType11 nAttribs sal_uInt16
include/sfx2/msg.hxx:141
    SfxType11 pType const std::type_info *
include/sfx2/msg.hxx:143
    SfxType13 aAttrib struct SfxTypeAttrib[13]
include/sfx2/msg.hxx:143
    SfxType13 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:143
    SfxType13 nAttribs sal_uInt16
include/sfx2/msg.hxx:143
    SfxType13 pType const std::type_info *
include/sfx2/msg.hxx:144
    SfxType14 aAttrib struct SfxTypeAttrib[14]
include/sfx2/msg.hxx:144
    SfxType14 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:144
    SfxType14 nAttribs sal_uInt16
include/sfx2/msg.hxx:144
    SfxType14 pType const std::type_info *
include/sfx2/msg.hxx:145
    SfxType16 aAttrib struct SfxTypeAttrib[16]
include/sfx2/msg.hxx:145
    SfxType16 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:145
    SfxType16 nAttribs sal_uInt16
include/sfx2/msg.hxx:145
    SfxType16 pType const std::type_info *
include/sfx2/msg.hxx:146
    SfxType17 aAttrib struct SfxTypeAttrib[17]
include/sfx2/msg.hxx:146
    SfxType17 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:146
    SfxType17 nAttribs sal_uInt16
include/sfx2/msg.hxx:146
    SfxType17 pType const std::type_info *
include/sfx2/msg.hxx:147
    SfxType23 aAttrib struct SfxTypeAttrib[23]
include/sfx2/msg.hxx:147
    SfxType23 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:147
    SfxType23 nAttribs sal_uInt16
include/sfx2/msg.hxx:147
    SfxType23 pType const std::type_info *
include/svl/itemset.hxx:274
    SfxItemSetFixed m_aItems const class SfxPoolItem *[NITEMS]
include/svx/ClassificationDialog.hxx:35
    svx::ClassificationDialog maInternationalHelper class SfxClassificationHelper
include/svx/ClassificationDialog.hxx:37
    svx::ClassificationDialog m_bPerParagraph const _Bool
include/svx/imapdlg.hxx:91
    SvxIMapDlg aIMapItem class SvxIMapDlgItem
include/vcl/commandevent.hxx:310
    CommandGestureData mfX const double
include/vcl/commandevent.hxx:311
    CommandGestureData mfY const double
include/vcl/commandevent.hxx:314
    CommandGestureData meOrientation const enum PanningOrientation
include/vcl/pdf/PDFAnnotationMarker.hxx:67
    vcl::pdf::PDFAnnotationMarkerHighlight meTextMarkerType enum vcl::pdf::PDFTextMarkerType
include/xmloff/shapeimport.hxx:57
    SdXML3DLightContext mbSpecular _Bool
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:51
    GtvApplicationWindow parent_instance GtkApplicationWindow
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:55
    GtvApplicationWindow doctype LibreOfficeKitDocumentType
libreofficekit/qa/gtktiledviewer/gtv-application-window.hxx:74
    GtvApplicationWindowClass parentClass GtkApplicationWindowClass
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:26
    GtvApplication parent GtkApplication
libreofficekit/qa/gtktiledviewer/gtv-application.hxx:31
    GtvApplicationClass parentClass GtkApplicationClass
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:28
    GtvCalcHeaderBar parent GtkDrawingArea
libreofficekit/qa/gtktiledviewer/gtv-calc-header-bar.hxx:37
    GtvCalcHeaderBarClass parentClass GtkDrawingAreaClass
libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.hxx:26
    GtvCommentsSidebar parent GtkBox
libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.hxx:35
    GtvCommentsSidebarClass parentClass GtkBoxClass
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.hxx:28
    GtvLokDialog parent GtkDialog
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.hxx:33
    GtvLokDialogClass parentClass GtkDialogClass
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:28
    GtvMainToolbar parent GtkBox
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:36
    GtvMainToolbarClass parentClass GtkBoxClass
lingucomponent/source/languageguessing/simpleguesser.cxx:75
    (anonymous namespace)::textcat_t maxsize uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:77
    (anonymous namespace)::textcat_t output char[1024]
lotuswordpro/source/filter/bento.hxx:351
    OpenStormBento::CBenNamedObject cNameListElmt class OpenStormBento::CBenNamedObjectListElmt
lotuswordpro/source/filter/clone.hxx:23
    detail::has_clone::(anonymous) a char[2]
oox/source/drawingml/diagram/layoutnodecontext.cxx:93
    oox::drawingml::(anonymous namespace)::AlgorithmContext mnRevision sal_Int32
oox/source/drawingml/diagram/layoutnodecontext.cxx:135
    oox::drawingml::(anonymous namespace)::ChooseContext msName rtl::OUString
oox/source/ppt/timenodelistcontext.cxx:205
    oox::ppt::(anonymous namespace)::MediaNodeContext mbFullScrn _Bool
oox/source/ppt/timenodelistcontext.cxx:400
    oox::ppt::(anonymous namespace)::SequenceTimeNodeContext mbConcurrent _Bool
oox/source/ppt/timenodelistcontext.cxx:401
    oox::ppt::(anonymous namespace)::SequenceTimeNodeContext mnNextAc sal_Int32
oox/source/ppt/timenodelistcontext.cxx:401
    oox::ppt::(anonymous namespace)::SequenceTimeNodeContext mnPrevAc sal_Int32
oox/source/ppt/timenodelistcontext.cxx:639
    oox::ppt::(anonymous namespace)::AnimContext mnValueType sal_Int32
oox/source/ppt/timenodelistcontext.cxx:721
    oox::ppt::(anonymous namespace)::AnimScaleContext mbZoomContents _Bool
oox/source/ppt/timenodelistcontext.cxx:861
    oox::ppt::(anonymous namespace)::AnimMotionContext msPtsTypes rtl::OUString
oox/source/ppt/timenodelistcontext.cxx:862
    oox::ppt::(anonymous namespace)::AnimMotionContext mnPathEditMode sal_Int32
oox/source/ppt/timenodelistcontext.cxx:863
    oox::ppt::(anonymous namespace)::AnimMotionContext mnAngle sal_Int32
pyuno/source/module/pyuno_callable.cxx:45
    pyuno::(anonymous namespace)::PyUNO_callable ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:138
    pyuno::(anonymous) ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:238
    pyuno::stRuntimeImpl ob_base PyObject
reportdesign/source/core/api/ReportDefinition.cxx:239
    reportdesign::(anonymous namespace)::OStyle m_aSize awt::Size
sal/qa/osl/condition/osl_Condition.cxx:72
    osl_Condition::ctors bRes1 _Bool
sal/qa/osl/condition/osl_Condition.cxx:202
    osl_Condition::wait bRes2 _Bool
sal/qa/osl/condition/osl_Condition.cxx:273
    osl_Condition::check bRes2 _Bool
sal/qa/osl/file/osl_File.cxx:1387
    osl_FileStatus::isValid rItem_link class osl::DirectoryItem
sal/qa/osl/file/osl_File.cxx:1564
    osl_FileStatus::getFileType m_aFifoItem class osl::DirectoryItem
sal/qa/osl/file/osl_File.cxx:1564
    osl_FileStatus::getFileType m_aVolumeItem class osl::DirectoryItem
sal/qa/osl/file/osl_File.cxx:1565
    osl_FileStatus::getFileType m_aLinkItem class osl::DirectoryItem
sal/qa/osl/file/osl_File.cxx:1565
    osl_FileStatus::getFileType m_aSocketItem class osl::DirectoryItem
sal/qa/osl/file/osl_File.cxx:1565
    osl_FileStatus::getFileType m_aSpecialItem class osl::DirectoryItem
sal/qa/osl/file/osl_File.cxx:2039
    osl_FileStatus::getLinkTargetURL rItem class osl::DirectoryItem
sal/qa/osl/module/osl_Module.cxx:70
    osl_Module::ctors bRes1 _Bool
sal/qa/osl/module/osl_Module.cxx:114
    osl_Module::getUrlFromAddress bRes1 _Bool
sal/qa/osl/module/osl_Module.cxx:174
    osl_Module::load bRes1 _Bool
sal/qa/osl/module/osl_Module.cxx:201
    osl_Module::unload bRes1 _Bool
sal/qa/osl/module/osl_Module.cxx:342
    osl_Module::getFunctionSymbol bRes1 _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:358
    osl_Pipe::clear bRes1 _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:523
    osl_Pipe::getError bRes _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:523
    osl_Pipe::getError bRes1 _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:561
    osl_Pipe::getHandle bRes1 _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:848
    osl_StreamPipe::recv bRes _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:848
    osl_StreamPipe::recv bRes1 _Bool
sal/qa/osl/process/osl_process.cxx:151
    Test_osl_executeProcess env_param_ const rtl::OUString
sal/qa/osl/security/osl_Security.cxx:59
    osl_Security::ctors bRes _Bool
sal/qa/osl/security/osl_Security.cxx:59
    osl_Security::ctors bRes1 _Bool
sal/qa/osl/security/osl_Security.cxx:124
    osl_Security::getUserIdent bRes1 _Bool
sal/qa/osl/security/osl_Security.cxx:154
    osl_Security::getUserName bRes1 _Bool
sal/qa/osl/security/osl_Security.cxx:188
    osl_Security::getConfigDir bRes1 _Bool
sal/textenc/textenc.cxx:405
    (anonymous namespace)::FullTextEncodingData module_ osl::Module
sc/inc/compiler.hxx:266
    ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:267
    ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:269
    ScCompiler::AddInMap pUpper const char *
sc/inc/editutil.hxx:113
    ScEnginePoolHelper bDeleteEnginePool _Bool
sc/inc/queryevaluator.hxx:61
    ScQueryEvaluator mnEntryCount const SCSIZE
sc/inc/queryevaluator.hxx:65
    ScQueryEvaluator maBool _Bool[32]
sc/inc/queryevaluator.hxx:66
    ScQueryEvaluator maTest _Bool[32]
sc/inc/token.hxx:402
    SingleDoubleRefModifier aDub struct ScComplexRefData
sc/source/core/data/document.cxx:1236
    (anonymous namespace)::BroadcastRecalcOnRefMoveGuard aSwitch sc::AutoCalcSwitch
sc/source/core/data/document.cxx:1237
    (anonymous namespace)::BroadcastRecalcOnRefMoveGuard aBulk class ScBulkBroadcast
sc/source/core/data/table2.cxx:802
    (anonymous namespace)::TransClipHandler mnEndRow size_t
sc/source/filter/inc/htmlpars.hxx:626
    ScHTMLQueryParser mnUnusedId ScHTMLTableId
sc/source/filter/inc/sheetdatacontext.hxx:50
    oox::xls::SheetDataContext aReleaser class SolarMutexReleaser
sc/source/filter/inc/XclImpChangeTrack.hxx:55
    XclImpChangeTrack xInStrm tools::SvRef<SotStorageStream>
sc/source/filter/inc/xetable.hxx:1016
    XclExpCellTable maArrayBfr class XclExpArrayBuffer
sc/source/filter/inc/xetable.hxx:1017
    XclExpCellTable maShrfmlaBfr class XclExpShrfmlaBuffer
sc/source/filter/inc/xiescher.hxx:1205
    XclImpDffPropSet maDummyStrm class SvMemoryStream
sc/source/filter/inc/xihelper.hxx:327
    XclImpCachedValue mxTokArr XclImpCachedValue::ScTokenArrayPtr
sc/source/filter/inc/xistream.hxx:171
    XclImpBiff8StdDecrypter maCodec ::msfilter::MSCodec_Std97
sc/source/filter/inc/xistream.hxx:193
    XclImpBiff8CryptoAPIDecrypter maCodec ::msfilter::MSCodec_CryptoAPI
sc/source/filter/oox/worksheethelper.cxx:388
    oox::xls::WorksheetGlobals mxProgressBar oox::ISegmentProgressBarRef
sc/source/filter/xml/xmldrani.hxx:71
    ScXMLDatabaseRangeContext bIsSelection _Bool
sc/source/filter/xml/xmlexternaltabi.hxx:110
    ScXMLExternalRefCellContext mnCellType sal_Int16
sc/source/filter/xml/xmltransformationi.hxx:154
    ScXMLDateTimeContext aType rtl::OUString
sc/source/ui/inc/acredlin.hxx:51
    ScAcceptChgDlg aReOpenIdle class Idle
sc/source/ui/inc/msgpool.hxx:34
    ScMessagePool aGlobalStringItem class SfxStringItem
sc/source/ui/inc/msgpool.hxx:35
    ScMessagePool aGlobalSearchItem class SvxSearchItem
sc/source/ui/inc/msgpool.hxx:36
    ScMessagePool aGlobalSortItem class ScSortItem
sc/source/ui/inc/msgpool.hxx:37
    ScMessagePool aGlobalQueryItem class ScQueryItem
sc/source/ui/inc/msgpool.hxx:38
    ScMessagePool aGlobalSubTotalItem class ScSubTotalItem
sc/source/ui/inc/msgpool.hxx:39
    ScMessagePool aGlobalConsolidateItem class ScConsolidateItem
sc/source/ui/inc/msgpool.hxx:40
    ScMessagePool aGlobalPivotItem class ScPivotItem
sc/source/ui/inc/msgpool.hxx:41
    ScMessagePool aGlobalSolveItem class ScSolveItem
sc/source/ui/inc/msgpool.hxx:42
    ScMessagePool aGlobalUserListItem class ScUserListItem
sc/source/ui/inc/msgpool.hxx:43
    ScMessagePool aCondFormatDlgItem class ScCondFormatDlgItem
sc/source/ui/inc/notemark.hxx:45
    ScNoteMarker m_aTimer class Timer
sc/source/ui/inc/PivotLayoutTreeListBase.hxx:47
    ScPivotLayoutTreeListBase maDropTargetHelper class ScPivotLayoutTreeDropTarget
sc/source/ui/inc/xmlsourcedlg.hxx:60
    ScXMLSourceDlg maCustomCompare struct CustomCompare
sccomp/source/solver/DifferentialEvolution.hxx:34
    DifferentialEvolutionAlgorithm maRandomDevice std::random_device
sccomp/source/solver/ParticelSwarmOptimization.hxx:55
    ParticleSwarmOptimizationAlgorithm maRandomDevice std::random_device
scripting/source/stringresource/stringresource.cxx:1254
    stringresource::(anonymous namespace)::BinaryInput m_aData Sequence<sal_Int8>
sd/inc/anminfo.hxx:51
    SdAnimationInfo maSecondSoundFile rtl::OUString
sd/source/filter/eppt/epptbase.hxx:347
    PPTWriterBase maFraction class Fraction
sd/source/filter/ppt/pptin.hxx:81
    SdPPTImport maParam struct PowerPointImportParam
sd/source/ui/inc/AccessibleDocumentViewBase.hxx:258
    accessibility::AccessibleDocumentViewBase maViewForwarder class accessibility::AccessibleViewForwarder
sd/source/ui/inc/CustomAnimationList.hxx:127
    sd::CustomAnimationList maDropTargetHelper class sd::CustomAnimationListDropTarget
sd/source/ui/inc/OutlineBulletDlg.hxx:43
    sd::OutlineBulletDlg m_aInputSet class SfxItemSet
sd/source/ui/remotecontrol/Receiver.hxx:34
    sd::Receiver pTransmitter class sd::Transmitter *
sd/source/ui/remotecontrol/ZeroconfService.hxx:32
    sd::ZeroconfService port uint
sd/source/ui/view/DocumentRenderer.cxx:1317
    sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
sd/source/ui/view/viewshel.cxx:1157
    sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1158
    sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
sd/source/ui/view/viewshel.cxx:1159
    sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
sd/source/ui/view/viewshel.cxx:1160
    sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
    (anonymous namespace)::PDFGrammar::definition boolean rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
    (anonymous namespace)::PDFGrammar::definition comment rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
    (anonymous namespace)::PDFGrammar::definition name rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
    (anonymous namespace)::PDFGrammar::definition null_object rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
    (anonymous namespace)::PDFGrammar::definition simple_type rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
    (anonymous namespace)::PDFGrammar::definition stream rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:265
    (anonymous namespace)::PDFGrammar::definition stringtype rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
    (anonymous namespace)::PDFGrammar::definition array rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
    (anonymous namespace)::PDFGrammar::definition dict_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
    (anonymous namespace)::PDFGrammar::definition dict_element rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
    (anonymous namespace)::PDFGrammar::definition dict_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
    (anonymous namespace)::PDFGrammar::definition objectref rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:266
    (anonymous namespace)::PDFGrammar::definition value rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:267
    (anonymous namespace)::PDFGrammar::definition array_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:267
    (anonymous namespace)::PDFGrammar::definition array_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:267
    (anonymous namespace)::PDFGrammar::definition object rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:267
    (anonymous namespace)::PDFGrammar::definition object_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:267
    (anonymous namespace)::PDFGrammar::definition object_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:268
    (anonymous namespace)::PDFGrammar::definition trailer rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:268
    (anonymous namespace)::PDFGrammar::definition xref rule<ScannerT>
sfx2/inc/autoredactdialog.hxx:99
    SfxAutoRedactDialog m_xDocShell class SfxObjectShellLock
sfx2/source/dialog/basedlgs.cxx:46
    SfxModelessDialog_Impl aMoveIdle class Idle
sfx2/source/doc/doctempl.cxx:105
    DocTempl::(anonymous namespace)::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
sfx2/source/inc/templdgi.hxx:93
    SfxCommonTemplateDialog_Impl m_aStyleListUpdateFamily Link<void *, void>
slideshow/source/engine/animationnodes/animationbasenode.hxx:88
    slideshow::internal::AnimationBaseNode mpSubsetManager slideshow::internal::SubsettableShapeManagerSharedPtr
slideshow/source/engine/opengl/TransitionImpl.cxx:1991
    (anonymous namespace)::ThreeFloats x GLfloat
slideshow/source/engine/opengl/TransitionImpl.cxx:1991
    (anonymous namespace)::ThreeFloats y GLfloat
slideshow/source/engine/opengl/TransitionImpl.cxx:1991
    (anonymous namespace)::ThreeFloats z GLfloat
slideshow/source/engine/opengl/TransitionImpl.hxx:297
    Vertex normal glm::vec3
slideshow/source/engine/opengl/TransitionImpl.hxx:298
    Vertex texcoord glm::vec2
slideshow/source/engine/slide/slideimpl.cxx:199
    slideshow::internal::(anonymous namespace)::SlideImpl mpBox2DWorld box2d::utils::Box2DWorldSharedPtr
slideshow/source/engine/smilfunctionparser.cxx:493
    slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition multiplicativeExpression ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:494
    slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition unaryExpression ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:495
    slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition basicExpression ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:496
    slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition unaryFunction ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:497
    slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition binaryFunction ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:498
    slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::classic::rule<ScannerT>
starmath/inc/mathml/mathmlMo.hxx:63
    moOperatorData m_motxt rtl::OUString
starmath/inc/mathml/mathmlMo.hxx:64
    moOperatorData m_form enum moOpDF
starmath/inc/mathml/mathmlMo.hxx:65
    moOperatorData m_priority sal_uInt16
starmath/inc/mathml/mathmlMo.hxx:66
    moOperatorData m_lspace sal_uInt16
starmath/inc/mathml/mathmlMo.hxx:67
    moOperatorData m_rspace sal_uInt16
starmath/inc/mathml/mathmlMo.hxx:68
    moOperatorData m_properties enum moOpDP
starmath/inc/view.hxx:246
    SmViewShell maGraphicController class SmGraphicController
svgio/inc/svgcharacternode.hxx:84
    svgio::svgreader::SvgTextPosition maY ::std::vector<double>
svl/source/crypto/cryptosign.cxx:108
    (anonymous namespace)::Extension extnID SECItem
svl/source/crypto/cryptosign.cxx:109
    (anonymous namespace)::Extension critical SECItem
svl/source/crypto/cryptosign.cxx:110
    (anonymous namespace)::Extension extnValue SECItem
svl/source/crypto/cryptosign.cxx:268
    (anonymous namespace)::PKIStatusInfo statusString SECItem
svl/source/crypto/cryptosign.cxx:269
    (anonymous namespace)::PKIStatusInfo failInfo SECItem
svx/inc/GalleryControl.hxx:43
    svx::sidebar::GalleryControl mpGallery class Gallery *
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1087
    (anonymous namespace)::ExpressionGrammar::definition multiplicativeExpression ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1088
    (anonymous namespace)::ExpressionGrammar::definition unaryExpression ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1089
    (anonymous namespace)::ExpressionGrammar::definition basicExpression ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1090
    (anonymous namespace)::ExpressionGrammar::definition unaryFunction ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1091
    (anonymous namespace)::ExpressionGrammar::definition binaryFunction ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1092
    (anonymous namespace)::ExpressionGrammar::definition ternaryFunction ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1093
    (anonymous namespace)::ExpressionGrammar::definition funcRef_decl ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1094
    (anonymous namespace)::ExpressionGrammar::definition functionReference ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1095
    (anonymous namespace)::ExpressionGrammar::definition modRef_decl ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1096
    (anonymous namespace)::ExpressionGrammar::definition modifierReference ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1097
    (anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::classic::rule<ScannerT>
svx/source/dialog/contimp.hxx:75
    SvxSuperContourDlg aContourItem class SvxContourDlgItem
svx/source/dialog/framelinkarray.cxx:455
    svx::frame::(anonymous namespace)::MergedCellIterator mnFirstRow sal_Int32
svx/source/dialog/imapwnd.hxx:87
    IMapWindow maItemInfos struct SfxItemInfo[1]
svx/source/dialog/weldeditview.cxx:458
    (anonymous namespace)::WeldEditSource m_rEditAcc class WeldEditAccessible &
svx/source/inc/datanavi.hxx:190
    svxform::XFormsPage m_aDropHelper class svxform::DataTreeDropTarget
svx/source/svdraw/svdcrtv.cxx:48
    ImplConnectMarkerOverlay maObjects sdr::overlay::OverlayObjectList
svx/source/svdraw/svdmrkv.cxx:135
    MarkingSubSelectionOverlay maObjects sdr::overlay::OverlayObjectList
svx/source/tbxctrls/extrusioncontrols.hxx:66
    svx::ExtrusionDirectionWindow maImgDirection class Image[9]
svx/source/xml/xmleohlp.cxx:71
    OutputStorageWrapper_Impl aTempFile class utl::TempFile
svx/source/xml/xmlgrhlp.cxx:93
    (anonymous namespace)::GraphicInputStream maTempFile utl::TempFile
sw/inc/unosett.hxx:146
    SwXNumberingRules m_pImpl ::sw::UnoImplPtr<Impl>
sw/qa/core/test_ToxTextGenerator.cxx:140
    (anonymous namespace)::ToxTextGeneratorWithMockedChapterField mChapterFieldType class SwChapterFieldType
sw/qa/extras/tiledrendering/tiledrendering.cxx:876
    (anonymous namespace)::ViewCallback m_callbackWrapper class TestLokCallbackWrapper
sw/qa/extras/uiwriter/uiwriter7.cxx:2258
    (anonymous namespace)::IdleTask maIdle class Idle
sw/source/core/crsr/crbm.cxx:62
    (anonymous namespace)::CursorStateHelper m_aSaveState class SwCursorSaveState
sw/source/core/inc/ftnboss.hxx:34
    SwSaveFootnoteHeight aGuard class SwFrameDeleteGuard
sw/source/core/inc/swfont.hxx:980
    SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/layout/dbg_lay.cxx:179
    SwImplEnterLeave m_nAction enum DbgAction
sw/source/core/text/inftxt.cxx:533
    (anonymous namespace)::SwTransparentTextGuard m_aContentVDev ScopedVclPtrInstance<class VirtualDevice>
sw/source/core/text/inftxt.hxx:675
    SwTextSlot aText rtl::OUString
sw/source/core/text/porfld.cxx:142
    (anonymous namespace)::SwFieldSlot aText rtl::OUString
sw/source/core/text/redlnitr.hxx:78
    SwRedlineItr m_nNdIdx const SwNodeOffset
sw/source/core/unocore/unolinebreak.cxx:43
    SwXLineBreak::Impl m_rThis class SwXLineBreak &
sw/source/uibase/docvw/romenu.hxx:34
    SwReadOnlyPopup m_aBuilder class VclBuilder
sw/source/uibase/docvw/romenu.hxx:46
    SwReadOnlyPopup m_nReadonlyGraphictogallery sal_uInt16
sw/source/uibase/docvw/romenu.hxx:50
    SwReadOnlyPopup m_nReadonlyBackgroundtogallery sal_uInt16
sw/source/uibase/inc/condedit.hxx:43
    ConditionEdit m_aDropTargetHelper class ConditionEditDropTarget
sw/source/uibase/inc/conttree.hxx:296
    SwGlobalTree m_aDropTargetHelper class SwGlobalTreeDropTarget
sw/source/uibase/inc/olmenu.hxx:77
    SwSpellPopup m_aBuilder class VclBuilder
sw/source/uibase/inc/swuicnttab.hxx:241
    SwTokenWindow m_aAdjustPositionsIdle class Idle
sw/source/uibase/inc/tmpdlg.hxx:35
    SwTemplateDlgController bNewStyle _Bool
sw/source/uibase/inc/uivwimp.hxx:93
    SwView_Impl m_xTmpSelDocShell class SfxObjectShellLock
sw/source/uibase/inc/unodispatch.hxx:45
    SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard class SolarMutexGuard
toolkit/source/awt/stylesettings.cxx:74
    toolkit::(anonymous namespace)::StyleMethodGuard m_aGuard class SolarMutexGuard
ucb/source/ucp/gio/gio_mount.hxx:73
    OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:76
    OOoMountOperationClass _gtk_reserved1 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:77
    OOoMountOperationClass _gtk_reserved2 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:78
    OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:79
    OOoMountOperationClass _gtk_reserved4 void (*)(void)
vcl/inc/graphic/Manager.hxx:41
    vcl::graphic::Manager maSwapOutTimer class Timer
vcl/inc/headless/BitmapHelper.hxx:32
    BitmapHelper aTmpBmp class SvpSalBitmap
vcl/inc/pdf/pdfbuildin_fonts.hxx:34
    vcl::pdf::BuildinFont m_nAscent const int
vcl/inc/pdf/pdfbuildin_fonts.hxx:35
    vcl::pdf::BuildinFont m_nDescent const int
vcl/inc/pdf/pdfbuildin_fonts.hxx:42
    vcl::pdf::BuildinFont m_aWidths const int[256]
vcl/inc/qt5/QtAccessibleWidget.hxx:156
    QtAccessibleWidget m_pObject class QObject *
vcl/inc/qt5/QtClipboard.hxx:39
    QtClipboard m_aClipboardName const rtl::OUString
vcl/inc/qt5/QtClipboard.hxx:40
    QtClipboard m_aClipboardMode const class QClipboard::Mode
vcl/inc/qt5/QtClipboard.hxx:43
    QtClipboard m_bOwnClipboardChange _Bool
vcl/inc/qt5/QtClipboard.hxx:45
    QtClipboard m_bDoClear _Bool
vcl/inc/qt5/QtFilePicker.hxx:70
    QtFilePicker m_aNamedFilterList class QStringList
vcl/inc/qt5/QtFilePicker.hxx:71
    QtFilePicker m_aTitleToFilterMap QHash<class QString, class QString>
vcl/inc/qt5/QtFilePicker.hxx:73
    QtFilePicker m_aNamedFilterToExtensionMap QHash<class QString, class QString>
vcl/inc/qt5/QtFilePicker.hxx:74
    QtFilePicker m_aCurrentFilter class QString
vcl/inc/qt5/QtFilePicker.hxx:77
    QtFilePicker m_aCustomWidgetsMap QHash<sal_Int16, class QWidget *>
vcl/inc/qt5/QtFilePicker.hxx:79
    QtFilePicker m_bIsFolderPicker const _Bool
vcl/inc/qt5/QtFilePicker.hxx:81
    QtFilePicker m_pParentWidget class QWidget *
vcl/inc/qt5/QtFrame.hxx:85
    QtFrame m_bGraphicsInUse _Bool
vcl/inc/qt5/QtFrame.hxx:87
    QtFrame m_pParent class QtFrame *
vcl/inc/qt5/QtFrame.hxx:88
    QtFrame m_ePointerStyle enum PointerStyle
vcl/inc/qt5/QtFrame.hxx:92
    QtFrame m_pDragSource class QtDragSource *
vcl/inc/qt5/QtFrame.hxx:93
    QtFrame m_pDropTarget class QtDropTarget *
vcl/inc/qt5/QtFrame.hxx:94
    QtFrame m_bInDrag _Bool
vcl/inc/qt5/QtFrame.hxx:96
    QtFrame m_bDefaultSize _Bool
vcl/inc/qt5/QtFrame.hxx:97
    QtFrame m_bDefaultPos _Bool
vcl/inc/qt5/QtFrame.hxx:98
    QtFrame m_bFullScreen _Bool
vcl/inc/qt5/QtFrame.hxx:99
    QtFrame m_bFullScreenSpanAll _Bool
vcl/inc/qt5/QtFrame.hxx:100
    QtFrame m_nRestoreScreen sal_uInt32
vcl/inc/qt5/QtFrame.hxx:101
    QtFrame m_aRestoreGeometry class QRect
vcl/inc/qt5/QtFrame.hxx:104
    QtFrame m_ScreenSaverInhibitor class ScreenSaverInhibitor
vcl/inc/qt5/QtFrame.hxx:110
    QtFrame m_nInputLanguage LanguageType
vcl/inc/qt5/QtInstance.hxx:56
    QtInstance m_aWaitingYieldCond osl::Condition
vcl/inc/qt5/QtInstance.hxx:58
    QtInstance m_pTimer class QtTimer *
vcl/inc/qt5/QtInstance.hxx:59
    QtInstance m_bSleeping _Bool
vcl/inc/qt5/QtInstance.hxx:63
    QtInstance m_pFakeArgvFreeable std::vector<FreeableCStr>
vcl/inc/qt5/QtInstance.hxx:67
    QtInstance m_aUpdateStyleTimer class Timer
vcl/inc/qt5/QtInstance.hxx:68
    QtInstance m_bUpdateFonts _Bool
vcl/inc/qt5/QtMainWindow.hxx:31
    QtMainWindow m_rFrame class QtFrame &
vcl/inc/qt5/QtMenu.hxx:44
    QtMenu mpParentSalMenu class QtMenu *
vcl/inc/qt5/QtMenu.hxx:45
    QtMenu mpFrame class QtFrame *
vcl/inc/qt5/QtMenu.hxx:46
    QtMenu mbMenuBar _Bool
vcl/inc/qt5/QtMenu.hxx:47
    QtMenu mpQMenuBar class QMenuBar *
vcl/inc/qt5/QtMenu.hxx:51
    QtMenu mpQMenu class QMenu *
vcl/inc/qt5/QtMenu.hxx:52
    QtMenu mpCloseButton class QPushButton *
vcl/inc/qt5/QtMenu.hxx:53
    QtMenu maCloseButtonConnection struct QMetaObject::Connection
vcl/inc/qt5/QtMenu.hxx:110
    QtMenuItem mpParentMenu class QtMenu *
vcl/inc/qt5/QtMenu.hxx:111
    QtMenuItem mpSubMenu class QtMenu *
vcl/inc/qt5/QtMenu.hxx:115
    QtMenuItem mnId sal_uInt16
vcl/inc/qt5/QtMenu.hxx:116
    QtMenuItem mnType enum MenuItemType
vcl/inc/qt5/QtMenu.hxx:117
    QtMenuItem mbVisible _Bool
vcl/inc/qt5/QtMenu.hxx:118
    QtMenuItem mbEnabled _Bool
vcl/inc/qt5/QtMenu.hxx:119
    QtMenuItem maImage class Image
vcl/inc/qt5/QtObject.hxx:40
    QtObject m_pRegion class QRegion
vcl/inc/qt5/QtObject.hxx:67
    QtObjectWindow m_rParent class QtObject &
vcl/inc/qt5/QtWidget.hxx:38
    QtWidget m_bNonEmptyIMPreeditSeen _Bool
vcl/inc/qt5/QtWidget.hxx:39
    QtWidget m_nDeltaX int
vcl/inc/qt5/QtWidget.hxx:40
    QtWidget m_nDeltaY int
vcl/inc/salvtables.hxx:556
    SalInstanceEntry m_aTextFilter class WeldTextFilter
vcl/inc/salvtables.hxx:941
    SalInstanceComboBoxWithEdit m_aTextFilter class WeldTextFilter
vcl/inc/svimpbox.hxx:120
    SvImpLBox m_aFctSet class ImpLBSelEng
vcl/inc/unx/i18n_ic.hxx:40
    SalI18N_InputContext maPreeditStartCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:41
    SalI18N_InputContext maPreeditDoneCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:42
    SalI18N_InputContext maPreeditDrawCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:43
    SalI18N_InputContext maPreeditCaretCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:44
    SalI18N_InputContext maCommitStringCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:45
    SalI18N_InputContext maSwitchIMCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:46
    SalI18N_InputContext maDestroyCallback XIMCallback
vcl/source/gdi/jobset.cxx:36
    (anonymous namespace)::ImplOldJobSetupData cDeviceName char[32]
vcl/source/gdi/jobset.cxx:37
    (anonymous namespace)::ImplOldJobSetupData cPortName char[32]
vcl/source/pdf/PDFiumLibrary.cxx:389
    vcl::pdf::(anonymous namespace)::PDFiumDocumentImpl m_aFormCallbacks FPDF_FORMFILLINFO
vcl/unx/gtk3/a11y/atkhypertext.cxx:31
    (anonymous namespace)::HyperLink atk_hyper_link const AtkHyperlink
vcl/unx/gtk3/a11y/atkwrapper.hxx:50
    AtkObjectWrapper aParent AtkObject
vcl/unx/gtk3/a11y/atkwrapper.hxx:79
    AtkObjectWrapperClass aParentClass GtkWidgetAccessibleClass
vcl/unx/gtk3/customcellrenderer.hxx:19
    _CustomCellRenderer parent GtkCellRendererText
vcl/unx/gtk3/customcellrenderer.hxx:29
    (anonymous) parent_class GtkCellRendererTextClass
vcl/unx/gtk3/gloactiongroup.cxx:27
    (anonymous namespace)::GLOAction parent_instance GObject
vcl/unx/gtk3/glomenu.cxx:14
    GLOMenu parent_instance const GMenuModel
vcl/unx/gtk3/gtkinst.cxx:7169
    (anonymous namespace)::GtkInstanceAssistant m_pButtonBox GtkButtonBox *
vcl/unx/gtk3/gtkinst.cxx:10599
    (anonymous namespace)::GtkInstanceMenuToggleButton m_pContainer GtkBox *
vcl/unx/gtk3/gtkinst.cxx:10601
    (anonymous namespace)::GtkInstanceMenuToggleButton m_pMenuButton GtkMenuButton *
vcl/unx/gtk3/gtkinst.cxx:19869
    (anonymous namespace)::GtkInstanceComboBox m_pOverlay GtkOverlay *
vcl/unx/gtk3/gtkinst.cxx:19875
    (anonymous namespace)::GtkInstanceComboBox m_pMenuTextRenderer GtkCellRenderer *
writerfilter/source/dmapper/PropertyMap.hxx:219
    writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
xmloff/source/text/XMLTextListBlockContext.hxx:34
    XMLTextListBlockContext msListStyleName rtl::OUString
xmloff/source/text/XMLTextListBlockContext.hxx:40
    XMLTextListBlockContext mbSetDefaults _Bool