blob: baab2f3339c043477e0ac5adebd06f5cd876ea5f (
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
|
basegfx/source/polygon/b2dpolygontriangulator.cxx:107
basegfx::(anonymous namespace)::Triangulator maStartEntries EdgeEntries
basegfx/source/polygon/b2dtrapezoid.cxx:208
basegfx::trapezoidhelper::(anonymous namespace)::PointBlockAllocator maFirstStackBlock B2DPoint[32]
basegfx/source/polygon/b2dtrapezoid.cxx:259
basegfx::trapezoidhelper::(anonymous namespace)::TrapezoidSubdivider maPoints std::vector<B2DPoint>
basic/qa/cppunit/basictest.hxx:27
MacroSnippet maDll BasicDLL
basic/qa/cppunit/test_global_array.cxx:25
(anonymous namespace)::GlobalArrayTest lib BasicDLL
basic/qa/cppunit/test_global_as_new.cxx:25
(anonymous namespace)::GlobalAsNewTest lib BasicDLL
binaryurp/source/unmarshal.hxx:86
binaryurp::Unmarshal buffer_ com::sun::star::uno::Sequence<sal_Int8>
binaryurp/source/writer.hxx:135
binaryurp::Writer state_ WriterState
canvas/source/tools/surfaceproxy.hxx:104
canvas::SurfaceProxy mpPageManager PageManagerSharedPtr
canvas/source/vcl/impltools.hxx:119
vclcanvas::tools::LocalGuard aSolarGuard SolarMutexGuard
chart2/source/controller/accessibility/AccessibleChartShape.hxx:78
chart::AccessibleChartShape m_aShapeTreeInfo ::accessibility::AccessibleShapeTreeInfo
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:70
chart::ThreeD_SceneIllumination_TabPage m_aModelChangeListener ModifyListenerCallBack
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:76
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light1 LightButton
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:77
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light2 LightButton
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:78
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light3 LightButton
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:79
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light4 LightButton
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:80
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light5 LightButton
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:81
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light6 LightButton
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:82
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light7 LightButton
chart2/source/controller/dialogs/tp_3D_SceneIllumination.hxx:83
chart::ThreeD_SceneIllumination_TabPage m_aBtn_Light8 LightButton
chart2/source/controller/inc/dlg_View3D.hxx:46
chart::View3DDialog m_aControllerLocker ControllerLockHelper
chart2/source/controller/inc/RangeSelectionListener.hxx:65
chart::RangeSelectionListener m_aControllerLockGuard ControllerLockGuardUNO
chart2/source/view/charttypes/AreaChart.hxx:68
chart::AreaChart m_aMainPosHelper PlottingPositionHelper
connectivity/source/commontools/RowFunctionParser.cxx:373
connectivity::(anonymous namespace)::ExpressionGrammar::definition unaryFunction ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:374
connectivity::(anonymous namespace)::ExpressionGrammar::definition assignment ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:375
connectivity::(anonymous namespace)::ExpressionGrammar::definition argument ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:375
connectivity::(anonymous namespace)::ExpressionGrammar::definition integer ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:376
connectivity::(anonymous namespace)::ExpressionGrammar::definition andExpression ::boost::spirit::classic::rule<ScannerT>
connectivity/source/commontools/RowFunctionParser.cxx:376
connectivity::(anonymous namespace)::ExpressionGrammar::definition orExpression ::boost::spirit::classic::rule<ScannerT>
connectivity/source/drivers/evoab2/EApi.h:121
EContactAddress address_format char *
connectivity/source/drivers/evoab2/EApi.h:125
EContactAddress ext char *
connectivity/source/drivers/firebird/Driver.hxx:48
connectivity::firebird::FirebirdDriver m_firebirdTMPDirectory ::utl::TempFileNamed
connectivity/source/drivers/firebird/Driver.hxx:49
connectivity::firebird::FirebirdDriver m_firebirdLockDirectory ::utl::TempFileNamed
connectivity/source/drivers/postgresql/pq_statics.hxx:105
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 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:812
cppcanvas::internal::(anonymous namespace)::EffectTextAction maTextLineInfo const tools::TextLineInfo
cppcanvas/source/mtfrenderer/textaction.cxx:1645
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:57
(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:73
(anonymous namespace)::E a sal_Bool
cppu/source/uno/check.cxx:75
(anonymous namespace)::E b sal_Bool
cppu/source/uno/check.cxx:77
(anonymous namespace)::E c sal_Bool
cppu/source/uno/check.cxx:78
(anonymous namespace)::E d sal_Int16
cppu/source/uno/check.cxx:79
(anonymous namespace)::E e sal_Int32
cppu/source/uno/check.cxx:84
(anonymous namespace)::M n sal_Int32
cppu/source/uno/check.cxx:85
(anonymous namespace)::M o sal_Int16
cppu/source/uno/check.cxx:94
(anonymous namespace)::N2 m M
cppu/source/uno/check.cxx:95
(anonymous namespace)::N2 p sal_Int16
cppu/source/uno/check.cxx:100
(anonymous namespace)::O p double
cppu/source/uno/check.cxx:101
(anonymous namespace)::O q sal_Int16
cppu/source/uno/check.cxx:110
(anonymous namespace)::P p2 double
cppu/source/uno/check.cxx:118
(anonymous namespace)::second a int
cppu/source/uno/check.cxx:129
(anonymous namespace)::Char1 c1 char
cppu/source/uno/check.cxx:133
(anonymous namespace)::Char2 c2 char
cppu/source/uno/check.cxx:137
(anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:267
(anonymous namespace)::Char4 chars Char3
cui/source/dialogs/colorpicker.cxx:748
cui::(anonymous namespace)::ColorPickerDialog m_aColorPrevious ColorPreviewControl
cui/source/factory/dlgfact.cxx:1257
(anonymous namespace)::SvxMacroAssignDialog_Impl m_aItems SfxItemSet
cui/source/inc/AdditionsDialog.hxx:47
AdditionInfo sReleaseVersion OUString
cui/source/inc/AdditionsDialog.hxx:83
AdditionsDialog m_sTag OUString
cui/source/inc/cfgutil.hxx:240
SvxScriptSelectorDialog m_aStylesInfo SfxStylesInfo_Impl
cui/source/inc/cuitabarea.hxx:230
SvxAreaTabPage maFixed_ChangeType ChangeType
cui/source/inc/cuitabarea.hxx:238
SvxAreaTabPage m_aXFillAttr XFillAttrSetItem
cui/source/inc/numpages.hxx:224
SvxNumOptionsTabPage m_aRatioTop SvxRatioConnector
cui/source/inc/numpages.hxx:225
SvxNumOptionsTabPage m_aRatioBottom SvxRatioConnector
cui/source/inc/swpossizetabpage.hxx:60
SvxSwPosSizeTabPage m_aRatioTop SvxRatioConnector
cui/source/inc/swpossizetabpage.hxx:61
SvxSwPosSizeTabPage m_aRatioBottom SvxRatioConnector
cui/source/inc/tabstpge.hxx:84
SvxTabulatorTabPage m_aLeftWin TabWin_Impl
cui/source/inc/tabstpge.hxx:85
SvxTabulatorTabPage m_aRightWin TabWin_Impl
cui/source/inc/tabstpge.hxx:86
SvxTabulatorTabPage m_aCenterWin TabWin_Impl
cui/source/inc/tabstpge.hxx:87
SvxTabulatorTabPage m_aDezWin TabWin_Impl
cui/source/inc/transfrm.hxx:95
SvxPositionSizeTabPage m_aRatioTop SvxRatioConnector
cui/source/inc/transfrm.hxx:96
SvxPositionSizeTabPage m_aRatioBottom SvxRatioConnector
cui/source/options/optcolor.cxx:283
(anonymous namespace)::ColorConfigWindow_Impl::Entry m_aDefaultColor Color
dbaccess/source/core/api/RowSet.hxx:108
dbaccess::ORowSet m_aURL 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:453
dbaccess::ORowSetClone m_nFetchDirection sal_Int32
dbaccess/source/core/api/RowSet.hxx:454
dbaccess::ORowSetClone m_nFetchSize sal_Int32
dbaccess/source/core/api/RowSet.hxx:455
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:82
dbaccess::ODatabaseContext m_aBasicDLL BasicDLL
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:79
dbaccess::OSingleSelectQueryComposer m_aNeutralContext ::svxform::ONeutralParseContext
dbaccess/source/ui/inc/opendoccontrols.hxx:37
dbaui::OpenDocumentButton m_sModule OUString
drawinglayer/inc/texture/texture3d.hxx:55
drawinglayer::texture::GeoTexSvxBitmapEx maBitmapEx BitmapEx
drawinglayer/inc/texture/texture3d.hxx:56
drawinglayer::texture::GeoTexSvxBitmapEx maBitmap Bitmap
drawinglayer/inc/texture/texture3d.hxx:58
drawinglayer::texture::GeoTexSvxBitmapEx maTransparence Bitmap
drawinglayer/source/tools/emfphelperdata.hxx:198
emfplushelper::EmfPlusHelperData mnFrameRight sal_Int32
drawinglayer/source/tools/emfphelperdata.hxx:199
emfplushelper::EmfPlusHelperData mnFrameBottom sal_Int32
editeng/source/editeng/impedit.hxx:569
ImpEditEngine maSelFuncSet 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:57
OleComponent m_pUnoOleObject OleEmbeddedObject *
embeddedobj/source/msole/olecomponent.hxx:58
OleComponent m_pOleWrapClientSite OleWrapperClientSite *
embeddedobj/source/msole/olecomponent.hxx:59
OleComponent m_pImplAdviseSink OleWrapperAdviseSink *
embeddedobj/source/msole/olecomponent.hxx:61
OleComponent m_aVerbList css::uno::Sequence<css::embed::VerbDescriptor>
embeddedobj/source/msole/olecomponent.hxx:62
OleComponent m_aDataFlavors css::uno::Sequence<css::datatransfer::DataFlavor>
embeddedobj/source/msole/olecomponent.hxx:66
OleComponent m_bOleInitialized _Bool
extensions/source/bibliography/datman.cxx:410
(anonymous namespace)::DBChangeDialog_Impl aConfig DBChangeDialogConfig_Impl
extensions/source/bibliography/framectr.cxx:126
BibFrameCtrl_Impl aMutex Mutex
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
framework/inc/dispatch/dispatchprovider.hxx:76
framework::DispatchProvider m_aProtocolHandlerCache HandlerCache
helpcompiler/inc/HelpCompiler.hxx:200
HelpCompiler lang const std::string
include/comphelper/seqstream.hxx:75
comphelper::SequenceInputStream m_aData const css::uno::Sequence<sal_Int8>
include/docmodel/theme/FormatScheme.hxx:373
model::DashStop mnDashLength sal_Int32
include/docmodel/theme/FormatScheme.hxx:374
model::DashStop mnStopLength sal_Int32
include/drawinglayer/primitive2d/textlayoutdevice.hxx:64
drawinglayer::primitive2d::TextLayouterDevice maSolarGuard 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/formula/formulahelper.hxx:39
formula::FormulaHelper m_aSysLocale SvtSysLocale
include/LibreOfficeKit/LibreOfficeKitGtk.h:40
_LOKDocView aDrawingArea GtkDrawingArea
include/LibreOfficeKit/LibreOfficeKitGtk.h:45
_LOKDocViewClass parent_class GtkDrawingAreaClass
include/oox/export/shapes.hxx:104
oox::drawingml::ShapeExport maShapeMap ShapeHashMap
include/registry/registry.hxx:34
Registry_Api acquire void (*)(RegHandle)
include/sfx2/classificationhelper.hxx:134
sfx::ClassificationKeyCreator m_ePolicyType const SfxClassificationPolicyType
include/sfx2/msg.hxx:133
SfxType1 aAttrib SfxTypeAttrib[1]
include/sfx2/msg.hxx:134
SfxType2 aAttrib SfxTypeAttrib[2]
include/sfx2/msg.hxx:135
SfxType3 aAttrib SfxTypeAttrib[3]
include/sfx2/msg.hxx:136
SfxType4 aAttrib SfxTypeAttrib[4]
include/sfx2/msg.hxx:137
SfxType5 aAttrib SfxTypeAttrib[5]
include/sfx2/msg.hxx:138
SfxType6 aAttrib SfxTypeAttrib[6]
include/sfx2/msg.hxx:139
SfxType7 aAttrib SfxTypeAttrib[7]
include/sfx2/msg.hxx:140
SfxType8 aAttrib SfxTypeAttrib[8]
include/sfx2/msg.hxx:141
SfxType9 aAttrib SfxTypeAttrib[9]
include/sfx2/msg.hxx:142
SfxType10 aAttrib SfxTypeAttrib[10]
include/sfx2/msg.hxx:143
SfxType11 aAttrib SfxTypeAttrib[11]
include/sfx2/msg.hxx:145
SfxType13 aAttrib SfxTypeAttrib[13]
include/sfx2/msg.hxx:146
SfxType14 aAttrib SfxTypeAttrib[14]
include/sfx2/msg.hxx:147
SfxType16 aAttrib SfxTypeAttrib[16]
include/sfx2/msg.hxx:148
SfxType17 aAttrib SfxTypeAttrib[17]
include/sfx2/msg.hxx:149
SfxType23 aAttrib SfxTypeAttrib[23]
include/svx/ClassificationDialog.hxx:35
svx::ClassificationDialog maInternationalHelper SfxClassificationHelper
include/svx/ClassificationDialog.hxx:37
svx::ClassificationDialog m_bPerParagraph const _Bool
include/svx/dialog/ThemeColorEditDialog.hxx:26
svx::ThemeColorEditDialog maColorSet model::ColorSet
include/svx/fmsrccfg.hxx:100
svxform::FmSearchConfigItem m_aMutex std::mutex
include/svx/imapdlg.hxx:91
SvxIMapDlg aIMapItem SvxIMapDlgItem
include/test/screenshot_test.hxx:36
ScreenshotTest maParent weld::GenericDialogController
include/vcl/commandevent.hxx:317
CommandGesturePanData mfX const double
include/vcl/commandevent.hxx:318
CommandGesturePanData mfY const double
include/vcl/commandevent.hxx:321
CommandGesturePanData meOrientation const PanningOrientation
include/vcl/commandevent.hxx:336
CommandGestureZoomData mfX const double
include/vcl/commandevent.hxx:337
CommandGestureZoomData mfY const double
include/vcl/commandevent.hxx:352
CommandGestureRotateData mfX const double
include/vcl/commandevent.hxx:353
CommandGestureRotateData mfY const double
include/vcl/commandevent.hxx:354
CommandGestureRotateData meEventType const GestureEventRotateType
include/vcl/commandevent.hxx:355
CommandGestureRotateData mfAngleDelta const double
include/vcl/GestureEventRotate.hxx:25
GestureEventRotate mnX sal_Int32
include/vcl/GestureEventRotate.hxx:26
GestureEventRotate mnY sal_Int32
include/vcl/GestureEventRotate.hxx:28
GestureEventRotate meEventType GestureEventRotateType
include/vcl/GestureEventRotate.hxx:32
GestureEventRotate mfAngleDelta double
include/vcl/GestureEventZoom.hxx:25
GestureEventZoom mnX sal_Int32
include/vcl/GestureEventZoom.hxx:26
GestureEventZoom mnY sal_Int32
include/vcl/GestureEventZoom.hxx:28
GestureEventZoom meEventType GestureEventZoomType
include/vcl/GestureEventZoom.hxx:32
GestureEventZoom mfScaleDelta double
include/vcl/idletask.hxx:31
IdleTask maIdle Idle
include/vcl/pdf/PDFAnnotationMarker.hxx:79
vcl::pdf::PDFAnnotationMarkerHighlight meTextMarkerType 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:38
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 CBenNamedObjectListElmt
lotuswordpro/source/filter/clone.hxx:23
detail::has_clone::no a char[2]
oox/source/drawingml/diagram/layoutnodecontext.cxx:92
oox::drawingml::(anonymous namespace)::AlgorithmContext mnRevision sal_Int32
oox/source/drawingml/diagram/layoutnodecontext.cxx:134
oox::drawingml::(anonymous namespace)::ChooseContext msName OUString
oox/source/drawingml/scene3dhelper.cxx:476
oox::(anonymous namespace)::MSOLight fScale double
oox/source/drawingml/scene3dhelper.cxx:477
oox::(anonymous namespace)::MSOLight fOffset double
oox/source/drawingml/scene3dhelper.cxx:479
oox::(anonymous namespace)::MSOLight bDiffuse _Bool
oox/source/ppt/timenodelistcontext.cxx:206
oox::ppt::(anonymous namespace)::MediaNodeContext mbFullScrn _Bool
oox/source/ppt/timenodelistcontext.cxx:401
oox::ppt::(anonymous namespace)::SequenceTimeNodeContext mbConcurrent _Bool
oox/source/ppt/timenodelistcontext.cxx:402
oox::ppt::(anonymous namespace)::SequenceTimeNodeContext mnNextAc sal_Int32
oox/source/ppt/timenodelistcontext.cxx:402
oox::ppt::(anonymous namespace)::SequenceTimeNodeContext mnPrevAc sal_Int32
oox/source/ppt/timenodelistcontext.cxx:640
oox::ppt::(anonymous namespace)::AnimContext mnValueType sal_Int32
oox/source/ppt/timenodelistcontext.cxx:722
oox::ppt::(anonymous namespace)::AnimScaleContext mbZoomContents _Bool
oox/source/ppt/timenodelistcontext.cxx:862
oox::ppt::(anonymous namespace)::AnimMotionContext msPtsTypes OUString
oox/source/ppt/timenodelistcontext.cxx:863
oox::ppt::(anonymous namespace)::AnimMotionContext mnPathEditMode sal_Int32
oox/source/ppt/timenodelistcontext.cxx:864
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:137
pyuno::PyUNO ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:151
pyuno::PyUNO_iterator ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:166
pyuno::PyUNO_list_iterator ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:237
pyuno::stRuntimeImpl ob_base PyObject
reportdesign/source/core/api/ReportDefinition.cxx:241
reportdesign::(anonymous namespace)::OStyle m_aSize awt::Size
sal/qa/osl/condition/osl_Condition.cxx:78
osl_Condition::ctors bRes1 _Bool
sal/qa/osl/condition/osl_Condition.cxx:208
osl_Condition::wait bRes2 _Bool
sal/qa/osl/condition/osl_Condition.cxx:279
osl_Condition::check bRes2 _Bool
sal/qa/osl/file/osl_File.cxx:1383
osl_FileStatus::isValid rItem_link DirectoryItem
sal/qa/osl/file/osl_File.cxx:1560
osl_FileStatus::getFileType m_aFifoItem DirectoryItem
sal/qa/osl/file/osl_File.cxx:1560
osl_FileStatus::getFileType m_aVolumeItem DirectoryItem
sal/qa/osl/file/osl_File.cxx:1561
osl_FileStatus::getFileType m_aLinkItem DirectoryItem
sal/qa/osl/file/osl_File.cxx:1561
osl_FileStatus::getFileType m_aSocketItem DirectoryItem
sal/qa/osl/file/osl_File.cxx:1561
osl_FileStatus::getFileType m_aSpecialItem DirectoryItem
sal/qa/osl/file/osl_File.cxx:2053
osl_FileStatus::getLinkTargetURL rItem 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:353
osl_Pipe::clear bRes1 _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:518
osl_Pipe::getError bRes _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:518
osl_Pipe::getError bRes1 _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:556
osl_Pipe::getHandle bRes1 _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:843
osl_StreamPipe::recv bRes _Bool
sal/qa/osl/pipe/osl_Pipe.cxx:843
osl_StreamPipe::recv bRes1 _Bool
sal/qa/osl/process/osl_process.cxx:139
Test_osl_executeProcess env_param_ const OUString
sal/qa/osl/security/osl_Security.cxx:57
osl_Security::ctors bRes _Bool
sal/qa/osl/security/osl_Security.cxx:57
osl_Security::ctors bRes1 _Bool
sal/qa/osl/security/osl_Security.cxx:122
osl_Security::getUserIdent bRes1 _Bool
sal/qa/osl/security/osl_Security.cxx:152
osl_Security::getUserName bRes1 _Bool
sal/qa/osl/security/osl_Security.cxx:186
osl_Security::getConfigDir bRes1 _Bool
sal/textenc/textenc.cxx:401
(anonymous namespace)::FullTextEncodingData module_ osl::Module
sc/inc/compiler.hxx:268
ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:269
ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:271
ScCompiler::AddInMap pUpper const char *
sc/inc/editutil.hxx:113
ScEnginePoolHelper bDeleteEnginePool _Bool
sc/inc/mtvelements.hxx:172
sc::ColumnBlockConstPosition miSparklinePos SparklineStoreType::const_iterator
sc/inc/patattr.hxx:138
ScPatternAttr m_nSerialNumber sal_uInt32
sc/inc/pivot/PivotTableFormats.hxx:44
sc::PivotTableFormat bSelected _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/SolverSettings.hxx:241
sc::SolverSettings SolverCodesToLOEngines std::map<OUString, OUString>
sc/inc/token.hxx:402
SingleDoubleRefModifier aDub ScComplexRefData
sc/qa/unit/tiledrendering/tiledrendering.cxx:472
(anonymous namespace)::ViewCallback m_callbackWrapper TestLokCallbackWrapper
sc/source/core/data/document.cxx:1221
(anonymous namespace)::BroadcastRecalcOnRefMoveGuard aSwitch sc::AutoCalcSwitch
sc/source/core/data/document.cxx:1222
(anonymous namespace)::BroadcastRecalcOnRefMoveGuard aBulk ScBulkBroadcast
sc/source/core/data/table2.cxx:815
(anonymous namespace)::TransClipHandler mnEndRow size_t
sc/source/core/inc/interpre.hxx:83
VectorSearchArguments nTab2 SCTAB
sc/source/core/inc/interpre.hxx:250
ScInterpreter maResultTokenMap ScResultTokenMap
sc/source/filter/inc/htmlpars.hxx:634
ScHTMLQueryParser mnUnusedId ScHTMLTableId
sc/source/filter/inc/PivotTableFormat.hxx:74
oox::xls::PivotTableReference mrFormat const PivotTableFormat &
sc/source/filter/inc/sheetdatacontext.hxx:50
oox::xls::SheetDataContext aReleaser SolarMutexReleaser
sc/source/filter/inc/xestyle.hxx:773
XclExpDxfs mnDxfId sal_Int32
sc/source/filter/inc/xetable.hxx:1016
XclExpCellTable maArrayBfr XclExpArrayBuffer
sc/source/filter/inc/xetable.hxx:1017
XclExpCellTable maShrfmlaBfr XclExpShrfmlaBuffer
sc/source/filter/inc/xiescher.hxx:1211
XclImpDffPropSet maDummyStrm SvMemoryStream
sc/source/filter/inc/xihelper.hxx:332
XclImpCachedValue mxTokArr 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:396
oox::xls::WorksheetGlobals mxProgressBar 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 OUString
sc/source/ui/inc/acredlin.hxx:51
ScAcceptChgDlg aReOpenIdle Idle
sc/source/ui/inc/namepast.hxx:42
ScNamePasteDlg m_RangeMap std::map<OUString, ScRangeName>
sc/source/ui/inc/notemark.hxx:45
ScNoteMarker m_aTimer Timer
sc/source/ui/inc/PivotLayoutTreeListBase.hxx:47
ScPivotLayoutTreeListBase maDropTargetHelper ScPivotLayoutTreeDropTarget
sc/source/ui/inc/SparklineShell.hxx:37
sc::SparklineShell m_pViewShell ScTabViewShell *
sc/source/ui/inc/xmlsourcedlg.hxx:60
ScXMLSourceDlg maCustomCompare CustomCompare
sc/source/ui/vba/vbachartobject.hxx:43
ScVbaChartObject oShapeHelper std::optional<ov::ShapeHelper>
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:1248
stringresource::(anonymous namespace)::BinaryInput m_aData Sequence<sal_Int8>
sd/inc/anminfo.hxx:51
SdAnimationInfo maSecondSoundFile OUString
sd/source/filter/eppt/epptbase.hxx:348
PPTWriterBase maFraction Fraction
sd/source/filter/ppt/pptin.hxx:81
SdPPTImport maParam PowerPointImportParam
sd/source/ui/inc/AccessibleDocumentViewBase.hxx:258
accessibility::AccessibleDocumentViewBase maViewForwarder AccessibleViewForwarder
sd/source/ui/inc/BulletAndPositionDlg.hxx:75
SvxBulletAndPositionDlg m_aRatioTop SvxRatioConnector
sd/source/ui/inc/BulletAndPositionDlg.hxx:76
SvxBulletAndPositionDlg m_aRatioBottom SvxRatioConnector
sd/source/ui/inc/CustomAnimationList.hxx:127
sd::CustomAnimationList maDropTargetHelper CustomAnimationListDropTarget
sd/source/ui/inc/OutlineBulletDlg.hxx:43
sd::OutlineBulletDlg m_aInputSet SfxItemSet
sd/source/ui/remotecontrol/Receiver.hxx:34
sd::Receiver pTransmitter Transmitter *
sd/source/ui/remotecontrol/ZeroconfService.hxx:33
sd::ZeroconfService port uint
sd/source/ui/view/DocumentRenderer.cxx:1318
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
sd/source/ui/view/viewshel.cxx:1245
sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1246
sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
sd/source/ui/view/viewshel.cxx:1247
sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
sd/source/ui/view/viewshel.cxx:1248
sd::(anonymous namespace)::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
sdext/source/pdfimport/pdfparse/pdfparse.cxx:249
(anonymous namespace)::PDFGrammar::definition boolean rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:249
(anonymous namespace)::PDFGrammar::definition comment rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:249
(anonymous namespace)::PDFGrammar::definition name rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:249
(anonymous namespace)::PDFGrammar::definition null_object rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:249
(anonymous namespace)::PDFGrammar::definition simple_type rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:249
(anonymous namespace)::PDFGrammar::definition stream rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:249
(anonymous namespace)::PDFGrammar::definition stringtype rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:250
(anonymous namespace)::PDFGrammar::definition array rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:250
(anonymous namespace)::PDFGrammar::definition dict_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:250
(anonymous namespace)::PDFGrammar::definition dict_element rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:250
(anonymous namespace)::PDFGrammar::definition dict_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:250
(anonymous namespace)::PDFGrammar::definition objectref rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:250
(anonymous namespace)::PDFGrammar::definition value rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:251
(anonymous namespace)::PDFGrammar::definition array_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:251
(anonymous namespace)::PDFGrammar::definition array_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:251
(anonymous namespace)::PDFGrammar::definition object rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:251
(anonymous namespace)::PDFGrammar::definition object_begin rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:251
(anonymous namespace)::PDFGrammar::definition object_end rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:252
(anonymous namespace)::PDFGrammar::definition trailer rule<ScannerT>
sdext/source/pdfimport/pdfparse/pdfparse.cxx:252
(anonymous namespace)::PDFGrammar::definition xref rule<ScannerT>
sfx2/inc/autoredactdialog.hxx:99
SfxAutoRedactDialog m_xDocShell SfxObjectShellLock
sfx2/source/dialog/basedlgs.cxx:46
SfxModelessDialog_Impl aMoveIdle Idle
sfx2/source/doc/doctempl.cxx:105
DocTempl::(anonymous namespace)::DocTempl_EntryData_Impl mxObjShell SfxObjectShellLock
sfx2/source/inc/templdgi.hxx:92
SfxCommonTemplateDialog_Impl m_aStyleListUpdateFamily Link<void *, void>
slideshow/source/engine/animationnodes/animationbasenode.hxx:88
slideshow::internal::AnimationBaseNode mpSubsetManager 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:200
slideshow::internal::(anonymous namespace)::SlideImpl mpBox2DWorld box2d::utils::Box2DWorldSharedPtr
slideshow/source/engine/smilfunctionparser.cxx:494
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition multiplicativeExpression ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:495
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition unaryExpression ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:496
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition basicExpression ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:497
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition unaryFunction ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:498
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition binaryFunction ::boost::spirit::classic::rule<ScannerT>
slideshow/source/engine/smilfunctionparser.cxx:499
slideshow::internal::(anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::classic::rule<ScannerT>
starmath/inc/mathml/mathmlMo.hxx:64
moOperatorData m_motxt OUString
starmath/inc/mathml/mathmlMo.hxx:65
moOperatorData m_form moOpDF
starmath/inc/mathml/mathmlMo.hxx:66
moOperatorData m_priority sal_uInt16
starmath/inc/mathml/mathmlMo.hxx:67
moOperatorData m_lspace sal_uInt16
starmath/inc/mathml/mathmlMo.hxx:68
moOperatorData m_rspace sal_uInt16
starmath/inc/mathml/mathmlMo.hxx:69
moOperatorData m_properties moOpDP
starmath/inc/view.hxx:252
SmViewShell maGraphicController SmGraphicController
svgio/inc/svgtextposition.hxx:36
svgio::svgreader::SvgTextPosition maY ::std::vector<double>
svl/source/crypto/cryptosign.cxx:115
(anonymous namespace)::Extension extnID SECItem
svl/source/crypto/cryptosign.cxx:116
(anonymous namespace)::Extension critical SECItem
svl/source/crypto/cryptosign.cxx:117
(anonymous namespace)::Extension extnValue SECItem
svl/source/crypto/cryptosign.cxx:275
(anonymous namespace)::PKIStatusInfo statusString SECItem
svl/source/crypto/cryptosign.cxx:276
(anonymous namespace)::PKIStatusInfo failInfo SECItem
svx/inc/GalleryControl.hxx:43
svx::sidebar::GalleryControl mpGallery Gallery *
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1088
(anonymous namespace)::ExpressionGrammar::definition multiplicativeExpression ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1089
(anonymous namespace)::ExpressionGrammar::definition unaryExpression ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1090
(anonymous namespace)::ExpressionGrammar::definition basicExpression ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1091
(anonymous namespace)::ExpressionGrammar::definition unaryFunction ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1092
(anonymous namespace)::ExpressionGrammar::definition binaryFunction ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1093
(anonymous namespace)::ExpressionGrammar::definition ternaryFunction ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1094
(anonymous namespace)::ExpressionGrammar::definition funcRef_decl ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1095
(anonymous namespace)::ExpressionGrammar::definition functionReference ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1096
(anonymous namespace)::ExpressionGrammar::definition modRef_decl ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1097
(anonymous namespace)::ExpressionGrammar::definition modifierReference ::boost::spirit::classic::rule<ScannerT>
svx/source/customshapes/EnhancedCustomShapeFunctionParser.cxx:1098
(anonymous namespace)::ExpressionGrammar::definition identifier ::boost::spirit::classic::rule<ScannerT>
svx/source/dialog/contimp.hxx:74
SvxSuperContourDlg aContourItem SvxContourDlgItem
svx/source/dialog/framelinkarray.cxx:570
svx::frame::(anonymous namespace)::MergedCellIterator mnFirstRow sal_Int32
svx/source/dialog/weldeditview.cxx:457
(anonymous namespace)::WeldEditSource m_rEditAcc WeldEditAccessible &
svx/source/inc/datanavi.hxx:194
svxform::XFormsPage m_aDropHelper DataTreeDropTarget
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:82
svx::sidebar::PosSizePropertyPanel m_aRatioTop SvxRatioConnector
svx/source/sidebar/possize/PosSizePropertyPanel.hxx:83
svx::sidebar::PosSizePropertyPanel m_aRatioBottom SvxRatioConnector
svx/source/svdraw/svdcrtv.cxx:48
ImplConnectMarkerOverlay maObjects sdr::overlay::OverlayObjectList
svx/source/svdraw/svdmrkv.cxx:141
MarkingSelectionOverlay maObjects sdr::overlay::OverlayObjectList
svx/source/svdraw/svdmrkv.cxx:166
MarkingSubSelectionOverlay maObjects sdr::overlay::OverlayObjectList
svx/source/tbxctrls/extrusioncontrols.hxx:66
svx::ExtrusionDirectionWindow maImgDirection Image[9]
svx/source/xml/xmleohlp.cxx:70
OutputStorageWrapper_Impl aTempFile TempFileFast
svx/source/xml/xmlgrhlp.cxx:93
(anonymous namespace)::GraphicInputStream maTempFile utl::TempFileFast
sw/inc/unosett.hxx:143
SwXNumberingRules m_pImpl ::sw::UnoImplPtr<Impl>
sw/qa/core/test_ToxTextGenerator.cxx:140
(anonymous namespace)::ToxTextGeneratorWithMockedChapterField mChapterFieldType SwChapterFieldType
sw/qa/extras/uiwriter/uiwriter5.cxx:67
SwUiWriterTest5 m_aSavedSettings AllSettings
sw/source/core/crsr/crbm.cxx:62
(anonymous namespace)::CursorStateHelper m_aSaveState SwCursorSaveState
sw/source/core/inc/ftnboss.hxx:34
SwSaveFootnoteHeight aGuard SwFrameDeleteGuard
sw/source/core/inc/pamtyp.hxx:79
SwMoveFnCollection fnNds GoNds
sw/source/core/inc/swfont.hxx:995
SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/layout/dbg_lay.cxx:181
SwImplEnterLeave m_nAction DbgAction
sw/source/core/text/inftxt.cxx:556
(anonymous namespace)::SwTransparentTextGuard m_aContentVDev ScopedVclPtrInstance<VirtualDevice>
sw/source/core/text/inftxt.hxx:722
SwTextSlot aText OUString
sw/source/core/text/porfld.cxx:145
(anonymous namespace)::SwFieldSlot aText OUString
sw/source/core/text/porrst.hxx:191
SwBookmarkPortion m_bHasCustomColor _Bool
sw/source/core/text/redlnitr.hxx:78
SwRedlineItr m_nNdIdx const SwNodeOffset
sw/source/ui/inc/condedit.hxx:87
ConditionEdit m_aDropTargetHelper ConditionEditDropTarget<Entry>
sw/source/uibase/docvw/romenu.hxx:35
SwReadOnlyPopup m_aBuilder VclBuilder
sw/source/uibase/docvw/romenu.hxx:47
SwReadOnlyPopup m_nReadonlyGraphictogallery sal_uInt16
sw/source/uibase/docvw/romenu.hxx:51
SwReadOnlyPopup m_nReadonlyBackgroundtogallery sal_uInt16
sw/source/uibase/inc/conttree.hxx:332
SwGlobalTree m_aDropTargetHelper SwGlobalTreeDropTarget
sw/source/uibase/inc/convert.hxx:40
SwConvertTableDlg m_aStrTitle OUString
sw/source/uibase/inc/convert.hxx:41
SwConvertTableDlg m_aStrLabel OUString
sw/source/uibase/inc/convert.hxx:42
SwConvertTableDlg m_aStrClose OUString
sw/source/uibase/inc/convert.hxx:43
SwConvertTableDlg m_aStrDelTitle OUString
sw/source/uibase/inc/convert.hxx:44
SwConvertTableDlg m_aStrDelMsg OUString
sw/source/uibase/inc/convert.hxx:45
SwConvertTableDlg m_aStrRenameTitle OUString
sw/source/uibase/inc/convert.hxx:46
SwConvertTableDlg m_aStrInvalidFormat OUString
sw/source/uibase/inc/convert.hxx:79
SwConvertTableDlg m_pShell SwWrtShell *
sw/source/uibase/inc/frmpage.hxx:79
SwFramePage m_aRatioTop SvxRatioConnector
sw/source/uibase/inc/frmpage.hxx:80
SwFramePage m_aRatioBottom SvxRatioConnector
sw/source/uibase/inc/olmenu.hxx:78
SwSpellPopup m_aBuilder VclBuilder
sw/source/uibase/inc/swuicnttab.hxx:243
SwTokenWindow m_aAdjustPositionsIdle Idle
sw/source/uibase/inc/tmpdlg.hxx:35
SwTemplateDlgController m_bNewStyle _Bool
sw/source/uibase/inc/uivwimp.hxx:95
SwView_Impl m_xTmpSelDocShell SfxObjectShellLock
sw/source/uibase/inc/unodispatch.hxx:43
SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard SolarMutexGuard
sw/source/writerfilter/dmapper/PropertyMap.hxx:249
writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32
toolkit/source/awt/stylesettings.cxx:74
toolkit::(anonymous namespace)::StyleMethodGuard m_aGuard 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:36
vcl::graphic::MemoryManager maSwapOutTimer Timer
vcl/inc/graphic/Manager.hxx:37
vcl::graphic::MemoryManager mnTimeout sal_Int32
vcl/inc/headless/BitmapHelper.hxx:32
BitmapHelper aTmpBmp SvpSalBitmap
vcl/inc/jsdialog/jsdialogbuilder.hxx:737
JSToolbar m_pPopovers std::map<sal_uInt16, weld::Widget *>
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/salprn.hxx:48
SalPrinterQueueInfo moPortName std::optional<OUString>
vcl/inc/salvtables.hxx:621
SalInstanceEntry m_aTextFilter WeldTextFilter
vcl/inc/salvtables.hxx:1014
SalInstanceComboBoxWithEdit m_aTextFilter WeldTextFilter
vcl/inc/sft.hxx:179
vcl::TTGlobalFontInfo_ fsSelection sal_uInt16
vcl/inc/skia/zone.hxx:29
SkiaZone g SolarMutexGuard
vcl/inc/svimpbox.hxx:117
SvImpLBox m_aFctSet ImpLBSelEng
vcl/inc/unx/cpdmgr.hxx:45
psp::CPDPrinter id const char *
vcl/inc/unx/cpdmgr.hxx:46
psp::CPDPrinter name const char *
vcl/inc/unx/cpdmgr.hxx:47
psp::CPDPrinter info const char *
vcl/inc/unx/cpdmgr.hxx:48
psp::CPDPrinter location const char *
vcl/inc/unx/cpdmgr.hxx:49
psp::CPDPrinter make_and_model const char *
vcl/inc/unx/cpdmgr.hxx:50
psp::CPDPrinter printer_state const char *
vcl/inc/unx/cpdmgr.hxx:51
psp::CPDPrinter backend_name const char *
vcl/inc/unx/cpdmgr.hxx:52
psp::CPDPrinter is_accepting_jobs _Bool
vcl/inc/unx/cpdmgr.hxx:53
psp::CPDPrinter backend GDBusProxy *
vcl/inc/unx/cpdmgr.hxx:59
psp::CPDManager m_pConnection GDBusConnection *
vcl/inc/unx/cpdmgr.hxx:60
psp::CPDManager m_aPrintersChanged _Bool
vcl/inc/unx/cpdmgr.hxx:61
psp::CPDManager m_tBackends std::vector<std::pair<std::string, gchar *> >
vcl/inc/unx/cpdmgr.hxx:62
psp::CPDManager m_pBackends std::unordered_map<std::string, GDBusProxy *>
vcl/inc/unx/cpdmgr.hxx:63
psp::CPDManager m_aSpoolFiles std::unordered_map<FILE *, OString, FPtrHash>
vcl/inc/unx/cpdmgr.hxx:64
psp::CPDManager m_aCPDDestMap std::unordered_map<OUString, CPDPrinter *>
vcl/inc/unx/cpdmgr.hxx:65
psp::CPDManager m_aDefaultContexts std::unordered_map<OUString, PPDContext>
vcl/inc/unx/genpspgraphics.h:52
GenPspGraphics m_aCairoCommon CairoCommon
vcl/inc/unx/i18n_ic.hxx:39
SalI18N_InputContext maPreeditStartCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:40
SalI18N_InputContext maPreeditDoneCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:41
SalI18N_InputContext maPreeditDrawCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:42
SalI18N_InputContext maPreeditCaretCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:43
SalI18N_InputContext maCommitStringCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:44
SalI18N_InputContext maSwitchIMCallback XIMCallback
vcl/inc/unx/i18n_ic.hxx:45
SalI18N_InputContext maDestroyCallback XIMCallback
vcl/inc/unx/saldisp.hxx:101
SalColormap m_aPalette std::vector<Color>
vcl/inc/unx/saldisp.hxx:106
SalColormap m_nUsed Pixel
vcl/source/app/salvtables.cxx:245
SalFlashAttention m_aOrigBackground Wallpaper
vcl/source/fontsubset/ttcr.hxx:40
vcl::longHorMetrics aw sal_uInt16
vcl/source/fontsubset/ttcr.hxx:41
vcl::longHorMetrics lsb sal_Int16
vcl/source/gdi/jobset.cxx:39
(anonymous namespace)::ImplOldJobSetupData cDeviceName char[32]
vcl/source/gdi/jobset.cxx:40
(anonymous namespace)::ImplOldJobSetupData cPortName char[32]
vcl/source/pdf/PDFiumLibrary.cxx:463
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:51
AtkObjectWrapper aParent GtkWidgetAccessible
vcl/unx/gtk3/a11y/atkwrapper.hxx:82
AtkObjectWrapperClass aParentClass GtkWidgetAccessibleClass
vcl/unx/gtk3/customcellrenderer.hxx:19
_CustomCellRenderer parent GtkCellRendererText
vcl/unx/gtk3/customcellrenderer.hxx:29
CustomCellRendererClass parent_class GtkCellRendererTextClass
vcl/unx/gtk3/gloactiongroup.cxx:27
(anonymous namespace)::GLOAction parent_instance GObject
vcl/unx/gtk3/glomenu.cxx:16
GLOMenu parent_instance const GMenuModel
vcl/unx/gtk3/gtkinst.cxx:7375
(anonymous namespace)::GtkInstanceAssistant m_pButtonBox GtkButtonBox *
vcl/unx/gtk3/gtkinst.cxx:11072
(anonymous namespace)::GtkInstanceMenuToggleButton m_pContainer GtkBox *
vcl/unx/gtk3/gtkinst.cxx:11074
(anonymous namespace)::GtkInstanceMenuToggleButton m_pMenuButton GtkMenuButton *
vcl/unx/gtk3/gtkinst.cxx:21065
(anonymous namespace)::GtkInstanceComboBox m_pOverlay GtkOverlay *
vcl/unx/gtk3/gtkinst.cxx:21071
(anonymous namespace)::GtkInstanceComboBox m_pMenuTextRenderer GtkCellRenderer *
xmloff/inc/XMLThemeContext.hxx:45
XMLThemeColorsContext m_aColorScheme std::vector<css::util::Color>
xmloff/source/text/XMLTextListBlockContext.hxx:34
XMLTextListBlockContext msListStyleName OUString
xmloff/source/text/XMLTextListBlockContext.hxx:40
XMLTextListBlockContext mbSetDefaults _Bool
|