blob: 60969744699625cacee37ce815cbc570ca7b448f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
|
basctl/source/basicide/basicbox.hxx:69
basctl::DocListenerBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/basidesh.hxx:85
basctl::Shell m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/bastype2.hxx:180
basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/dlged.hxx:121
basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
basegfx/source/polygon/b2dtrapezoid.cxx:201
basegfx::trapezoidhelper::PointBlockAllocator maFirstStackBlock class basegfx::B2DPoint [32]
basic/source/runtime/dllmgr.hxx:48
SbiDllMgr impl_ std::unique_ptr<Impl>
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:115
__cxxabiv1::__cxa_exception exceptionDestructor void (*)(void *)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:116
__cxxabiv1::__cxa_exception unexpectedHandler std::unexpected_handler
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:117
__cxxabiv1::__cxa_exception terminateHandler std::terminate_handler
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:118
__cxxabiv1::__cxa_exception nextException struct __cxxabiv1::__cxa_exception *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:119
__cxxabiv1::__cxa_exception handlerCount int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:120
__cxxabiv1::__cxa_exception handlerSwitchValue int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:121
__cxxabiv1::__cxa_exception actionRecord const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:122
__cxxabiv1::__cxa_exception languageSpecificData const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:123
__cxxabiv1::__cxa_exception catchTemp void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:125
__cxxabiv1::__cxa_exception unwindHeader struct _Unwind_Exception
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:135
__cxxabiv1::__cxa_eh_globals uncaughtExceptions unsigned int
bridges/source/jni_uno/jni_java2uno.cxx:148
jni_uno::largest n sal_Int64
bridges/source/jni_uno/jni_java2uno.cxx:149
jni_uno::largest d double
bridges/source/jni_uno/jni_java2uno.cxx:150
jni_uno::largest p void *
bridges/source/jni_uno/jni_java2uno.cxx:151
jni_uno::largest a uno_Any
canvas/source/opengl/ogl_canvasbitmap.hxx:71
oglcanvas::CanvasBitmap mbHasAlpha _Bool
canvas/source/vcl/canvasbitmap.hxx:117
vclcanvas::CanvasBitmap mxDevice css::uno::Reference<css::rendering::XGraphicDevice>
canvas/source/vcl/impltools.hxx:117
vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
chart2/source/controller/inc/RangeSelectionListener.hxx:62
chart::RangeSelectionListener m_aControllerLockGuard class chart::ControllerLockGuardUNO
chart2/source/inc/LifeTime.hxx:198
apphelper::LifeTimeGuard m_guard osl::ClearableMutexGuard
chart2/source/view/inc/GL3DRenderer.hxx:54
chart::opengl3D::MaterialParameters pad float
chart2/source/view/inc/GL3DRenderer.hxx:55
chart::opengl3D::MaterialParameters pad1 float
chart2/source/view/inc/GL3DRenderer.hxx:64
chart::opengl3D::LightSource pad1 float
chart2/source/view/inc/GL3DRenderer.hxx:65
chart::opengl3D::LightSource pad2 float
chart2/source/view/inc/GL3DRenderer.hxx:66
chart::opengl3D::LightSource pad3 float
comphelper/qa/container/comphelper_ifcontainer.cxx:45
ContainerListener m_pStats struct ContainerStats *
comphelper/source/container/enumerablemap.cxx:299
comphelper::MapEnumeration m_xKeepMapAlive Reference<class com::sun::star::uno::XInterface>
compilerplugins/clang/test/datamembershadow.cxx:17
Bar x int
compilerplugins/clang/test/datamembershadow.cxx:21
Foo x int
compilerplugins/clang/test/finalprotected.cxx:17
S g1 int
compilerplugins/clang/test/finalprotected.cxx:20
S h1 int
compilerplugins/clang/test/finalprotected.cxx:29
S2 g1 int
compilerplugins/clang/test/finalprotected.cxx:32
S2 h1 int
compilerplugins/clang/test/passstuffbyref.cxx:13
S mv1 class rtl::OUString
compilerplugins/clang/test/passstuffbyref.cxx:14
S mv2 class rtl::OUString
compilerplugins/clang/test/salbool.cxx:15
S b sal_Bool
compilerplugins/clang/test/unnecessaryoverride-dtor.hxx:42
IncludedDerived3 m rtl::Reference<Incomplete>
configmgr/source/components.cxx:163
configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
connectivity/source/drivers/mork/MDatabaseMetaData.hxx:29
connectivity::mork::ODatabaseMetaData m_pMetaDataHelper std::unique_ptr<MDatabaseMetaDataHelper>
connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx:55
connectivity::mozab::ProfileStruct product enum com::sun::star::mozilla::MozillaProductType
connectivity/source/inc/dbase/DTable.hxx:60
connectivity::dbase::ODbaseTable::DBFHeader db_aedat sal_uInt8 [3]
connectivity/source/inc/dbase/DTable.hxx:70
connectivity::dbase::ODbaseTable::DBFColumn db_adr sal_uInt32
connectivity/source/inc/OTypeInfo.hxx:31
connectivity::OTypeInfo aTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:32
connectivity::OTypeInfo aLiteralPrefix class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:33
connectivity::OTypeInfo aLiteralSuffix class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:34
connectivity::OTypeInfo aCreateParams class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:35
connectivity::OTypeInfo aLocalTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:37
connectivity::OTypeInfo nPrecision sal_Int32
connectivity/source/inc/OTypeInfo.hxx:39
connectivity::OTypeInfo nMaximumScale sal_Int16
connectivity/source/inc/OTypeInfo.hxx:40
connectivity::OTypeInfo nMinimumScale sal_Int16
connectivity/source/inc/OTypeInfo.hxx:43
connectivity::OTypeInfo nSearchType sal_Int16
connectivity/source/inc/OTypeInfo.hxx:44
connectivity::OTypeInfo nNumPrecRadix sal_Int16
connectivity/source/inc/OTypeInfo.hxx:46
connectivity::OTypeInfo bCurrency _Bool
connectivity/source/inc/OTypeInfo.hxx:47
connectivity::OTypeInfo bAutoIncrement _Bool
connectivity/source/inc/OTypeInfo.hxx:48
connectivity::OTypeInfo bNullable _Bool
connectivity/source/inc/OTypeInfo.hxx:49
connectivity::OTypeInfo bCaseSensitive _Bool
connectivity/source/inc/OTypeInfo.hxx:50
connectivity::OTypeInfo bUnsigned _Bool
cppcanvas/source/mtfrenderer/emfpbrush.hxx:102
cppcanvas::internal::EMFPBrush wrapMode sal_Int32
cppcanvas/source/mtfrenderer/emfppen.hxx:41
cppcanvas::internal::EMFPPen pen_transformation struct cppcanvas::internal::XForm
cppu/source/threadpool/threadpool.cxx:377
_uno_ThreadPool dummy sal_Int32
cppu/source/typelib/typelib.cxx:61
AlignSize_Impl nInt16 sal_Int16
cppu/source/typelib/typelib.cxx:68
AlignSize_Impl dDouble double
cppu/source/uno/check.cxx:38
(anonymous namespace)::C1 n1 sal_Int16
cppu/source/uno/check.cxx:67
(anonymous namespace)::D d sal_Int16
cppu/source/uno/check.cxx:68
(anonymous namespace)::D e sal_Int32
cppu/source/uno/check.cxx:72
(anonymous namespace)::E a sal_Bool
cppu/source/uno/check.cxx:73
(anonymous namespace)::E b sal_Bool
cppu/source/uno/check.cxx:74
(anonymous namespace)::E c sal_Bool
cppu/source/uno/check.cxx:75
(anonymous namespace)::E d sal_Int16
cppu/source/uno/check.cxx:76
(anonymous namespace)::E e sal_Int32
cppu/source/uno/check.cxx:81
(anonymous namespace)::M n sal_Int32
cppu/source/uno/check.cxx:82
(anonymous namespace)::M o sal_Int16
cppu/source/uno/check.cxx:91
(anonymous namespace)::N2 m struct (anonymous namespace)::M
cppu/source/uno/check.cxx:92
(anonymous namespace)::N2 p sal_Int16
cppu/source/uno/check.cxx:97
(anonymous namespace)::O p double
cppu/source/uno/check.cxx:98
(anonymous namespace)::O q sal_Int16
cppu/source/uno/check.cxx:107
(anonymous namespace)::P p2 double
cppu/source/uno/check.cxx:115
(anonymous namespace)::second a int
cppu/source/uno/check.cxx:120
(anonymous namespace)::AlignSize_Impl nInt16 sal_Int16
cppu/source/uno/check.cxx:121
(anonymous namespace)::AlignSize_Impl dDouble double
cppu/source/uno/check.cxx:126
(anonymous namespace)::Char1 c1 char
cppu/source/uno/check.cxx:130
(anonymous namespace)::Char2 c2 char
cppu/source/uno/check.cxx:134
(anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:138
(anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
cui/source/inc/cuihyperdlg.hxx:43
SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
cui/source/inc/cuihyperdlg.hxx:63
SvxHpLinkDlg maCtrl class SvxHlinkCtrl
cui/source/inc/cuitabarea.hxx:251
SvxAreaTabPage maFixed_ChangeType enum ChangeType
dbaccess/source/core/dataaccess/documentdefinition.cxx:298
dbaccess::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface>
dbaccess/source/sdbtools/connection/connectiondependent.hxx:116
sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard
dbaccess/source/sdbtools/connection/connectiontools.hxx:48
sdbtools::ConnectionTools m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/sdbtools/connection/objectnames.hxx:44
sdbtools::ObjectNames m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/sdbtools/connection/tablename.cxx:56
sdbtools::TableName_Impl m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/ui/misc/dbaundomanager.cxx:137
dbaui::UndoManagerMethodGuard m_aGuard ::osl::ResettableMutexGuard
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:121
dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
embeddedobj/source/inc/oleembobj.hxx:127
OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:139
OleEmbeddedObject m_xClosePreventer css::uno::Reference<css::util::XCloseListener>
embeddedobj/source/inc/oleembobj.hxx:161
OleEmbeddedObject m_bHasSizeToSet _Bool
embeddedobj/source/inc/oleembobj.hxx:162
OleEmbeddedObject m_aSizeToSet css::awt::Size
embeddedobj/source/inc/oleembobj.hxx:163
OleEmbeddedObject m_nAspectToSet sal_Int64
embeddedobj/source/inc/oleembobj.hxx:168
OleEmbeddedObject m_bGotStatus _Bool
embeddedobj/source/inc/oleembobj.hxx:169
OleEmbeddedObject m_nStatus sal_Int64
embeddedobj/source/inc/oleembobj.hxx:170
OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:184
OleEmbeddedObject m_bFromClipboard _Bool
extensions/source/propctrlr/propertyhandler.hxx:80
pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
extensions/source/scanner/scanner.hxx:46
ScannerManager maProtector osl::Mutex
filter/source/graphicfilter/icgm/chart.hxx:44
DataNode nBoxX1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:45
DataNode nBoxY1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:46
DataNode nBoxX2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:47
DataNode nBoxY2 sal_Int16
filter/source/graphicfilter/ipsd/ipsd.cxx:44
(anonymous) nPad1 sal_uInt32
filter/source/graphicfilter/ipsd/ipsd.cxx:45
(anonymous) nPad2 sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:33
TGAFileHeader nColorMapFirstEntryIndex sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:36
TGAFileHeader nColorMapXOrigin sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:37
TGAFileHeader nColorMapYOrigin sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:49
TGAFileFooter nDeveloperDirectoryOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:51
TGAFileFooter nPadByte sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:52
TGAFileFooter nStringTerminator sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:60
TGAExtension sAuthorName char [41]
filter/source/graphicfilter/itga/itga.cxx:61
TGAExtension sAuthorComment char [324]
filter/source/graphicfilter/itga/itga.cxx:62
TGAExtension sDateTimeStamp char [12]
filter/source/graphicfilter/itga/itga.cxx:64
TGAExtension sSoftwareID char [41]
filter/source/graphicfilter/itga/itga.cxx:65
TGAExtension nSoftwareVersionNumber sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:66
TGAExtension nSoftwareVersionLetter sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:67
TGAExtension nKeyColor sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:68
TGAExtension nPixelAspectRatioNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:69
TGAExtension nPixelAspectRatioDeNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:70
TGAExtension nGammaValueNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:71
TGAExtension nGammaValueDeNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:72
TGAExtension nColorCorrectionOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:73
TGAExtension nPostageStampOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:74
TGAExtension nScanLineOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:75
TGAExtension nAttributesType sal_uInt8
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
XMLFilterListBox m_aEnsureResMgr class EnsureResMgr
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
XMLFilterSettingsDialog maEnsureResMgr class EnsureResMgr
formula/source/core/api/FormulaCompiler.cxx:49
formula::(anonymous namespace)::FormulaCompilerRecursionGuard rRecursion short &
framework/inc/dispatch/oxt_handler.hxx:95
framework::Oxt_Handler m_xSelfHold css::uno::Reference<css::uno::XInterface>
framework/inc/services/layoutmanager.hxx:270
framework::LayoutManager m_bGlobalSettings _Bool
framework/source/layoutmanager/toolbarlayoutmanager.hxx:287
framework::ToolbarLayoutManager m_pGlobalSettings class framework::GlobalSettings *
framework/source/layoutmanager/toolbarlayoutmanager.hxx:292
framework::ToolbarLayoutManager m_bGlobalSettings _Bool
hwpfilter/source/drawdef.h:69
BAREHWPDOProperty line_pstyle int
hwpfilter/source/drawdef.h:70
BAREHWPDOProperty line_hstyle int
hwpfilter/source/drawdef.h:71
BAREHWPDOProperty line_tstyle int
hwpfilter/source/drawdef.h:72
BAREHWPDOProperty line_color unsigned int
hwpfilter/source/drawdef.h:73
BAREHWPDOProperty line_width hunit
hwpfilter/source/drawdef.h:74
BAREHWPDOProperty fill_color unsigned int
hwpfilter/source/drawdef.h:75
BAREHWPDOProperty pattern_type uint
hwpfilter/source/drawdef.h:76
BAREHWPDOProperty pattern_color unsigned int
hwpfilter/source/drawdef.h:77
BAREHWPDOProperty hmargin hunit
hwpfilter/source/drawdef.h:78
BAREHWPDOProperty vmargin hunit
hwpfilter/source/drawdef.h:79
BAREHWPDOProperty flag uint
hwpfilter/source/drawdef.h:87
GradationProperty fromcolor int
hwpfilter/source/drawdef.h:88
GradationProperty tocolor int
hwpfilter/source/drawdef.h:89
GradationProperty gstyle int
hwpfilter/source/drawdef.h:90
GradationProperty angle int
hwpfilter/source/drawdef.h:91
GradationProperty center_x int
hwpfilter/source/drawdef.h:92
GradationProperty center_y int
hwpfilter/source/drawdef.h:93
GradationProperty nstep int
hwpfilter/source/drawdef.h:101
BitmapProperty offset1 ZZPoint
hwpfilter/source/drawdef.h:102
BitmapProperty offset2 ZZPoint
hwpfilter/source/drawdef.h:103
BitmapProperty szPatternFile char [261]
hwpfilter/source/drawdef.h:104
BitmapProperty pictype char
hwpfilter/source/drawdef.h:112
RotationProperty rot_originx int
hwpfilter/source/drawdef.h:113
RotationProperty rot_originy int
hwpfilter/source/drawdef.h:114
RotationProperty parall ZZParall
hwpfilter/source/drawdef.h:158
HWPDOProperty offset1 ZZPoint
hwpfilter/source/drawdef.h:159
HWPDOProperty offset2 ZZPoint
hwpfilter/source/drawdef.h:209
HWPDrawingObject offset ZZPoint
hwpfilter/source/drawdef.h:218
HWPDrawingObject vrect ZZRect
hwpfilter/source/hbox.h:131
DateFormat format hchar [40]
hwpfilter/source/hbox.h:168
Tab leader unsigned short
hwpfilter/source/hbox.h:197
CellLine key unsigned char
hwpfilter/source/hbox.h:198
CellLine top unsigned char
hwpfilter/source/hbox.h:199
CellLine bottom unsigned char
hwpfilter/source/hbox.h:200
CellLine left unsigned char
hwpfilter/source/hbox.h:201
CellLine right unsigned char
hwpfilter/source/hbox.h:202
CellLine color short
hwpfilter/source/hbox.h:203
CellLine shade unsigned char
hwpfilter/source/hbox.h:219
Cell p short
hwpfilter/source/hbox.h:228
Cell diagonal unsigned char
hwpfilter/source/hbox.h:295
FBox option short
hwpfilter/source/hbox.h:296
FBox ctrl_ch hchar
hwpfilter/source/hbox.h:303
FBox cap_margin short
hwpfilter/source/hbox.h:305
FBox smart_linesp unsigned char
hwpfilter/source/hbox.h:334
TxtBox dummy1 short
hwpfilter/source/hbox.h:335
TxtBox cap_len short
hwpfilter/source/hbox.h:336
TxtBox next_box short
hwpfilter/source/hbox.h:337
TxtBox dummy2 short
hwpfilter/source/hbox.h:338
TxtBox reserved1 unsigned char
hwpfilter/source/hbox.h:343
TxtBox num short
hwpfilter/source/hbox.h:345
TxtBox dummy3 short
hwpfilter/source/hbox.h:346
TxtBox baseline short
hwpfilter/source/hbox.h:360
TxtBox protect short
hwpfilter/source/hbox.h:537
PicDefFile path char [256]
hwpfilter/source/hbox.h:538
PicDefFile img void *
hwpfilter/source/hbox.h:539
PicDefFile skipfind _Bool
hwpfilter/source/hbox.h:555
PicDefOle embname char [16]
hwpfilter/source/hbox.h:556
PicDefOle hwpole void *
hwpfilter/source/hbox.h:566
PicDefDraw vrect ZZRect
hwpfilter/source/hbox.h:567
PicDefDraw mbrcnt int
hwpfilter/source/hbox.h:580
(anonymous) picfile struct PicDefFile
hwpfilter/source/hbox.h:582
(anonymous) picole struct PicDefOle
hwpfilter/source/hbox.h:598
Picture reserved hchar [2]
hwpfilter/source/hbox.h:605
Picture dummy1 short
hwpfilter/source/hbox.h:606
Picture dummy2 short
hwpfilter/source/hbox.h:607
Picture reserved1 uchar
hwpfilter/source/hbox.h:615
Picture num short
hwpfilter/source/hbox.h:650
Line reserved hchar [2]
hwpfilter/source/hbox.h:653
Line reserved2 char [8]
hwpfilter/source/hbox.h:669
Hidden reserved hchar [2]
hwpfilter/source/hbox.h:672
Hidden info unsigned char [8]
hwpfilter/source/hbox.h:686
HeaderFooter reserved hchar [2]
hwpfilter/source/hbox.h:689
HeaderFooter info unsigned char [8]
hwpfilter/source/hbox.h:716
Footnote reserved hchar [2]
hwpfilter/source/hbox.h:719
Footnote info unsigned char [8]
hwpfilter/source/hbox.h:776
NewNum type unsigned short
hwpfilter/source/hbox.h:777
NewNum number unsigned short
hwpfilter/source/hbox.h:816
PageNumCtrl kind unsigned short
hwpfilter/source/hbox.h:820
PageNumCtrl what unsigned short
hwpfilter/source/hbox.h:851
Compose compose hchar [3]
hwpfilter/source/hbox.h:868
Hyphen width hchar
hwpfilter/source/hbox.h:884
TocMark kind hchar
hwpfilter/source/hbox.h:902
IndexMark pgno unsigned short
hwpfilter/source/hinfo.h:73
PaperBackInfo luminance int
hwpfilter/source/hinfo.h:74
PaperBackInfo contrast int
hwpfilter/source/hinfo.h:75
PaperBackInfo effect char
hwpfilter/source/hinfo.h:109
DocChainInfo chain_page_no unsigned char
hwpfilter/source/hinfo.h:110
DocChainInfo chain_footnote_no unsigned char
hwpfilter/source/hinfo.h:155
HWPInfo cur_col short
hwpfilter/source/hinfo.h:159
HWPInfo cur_row short
hwpfilter/source/hinfo.h:169
HWPInfo readonly short
hwpfilter/source/hinfo.h:174
HWPInfo chain_info struct DocChainInfo
hwpfilter/source/hinfo.h:183
HWPInfo countfn short
hwpfilter/source/hinfo.h:186
HWPInfo fnchar unsigned char
hwpfilter/source/hinfo.h:195
HWPInfo empty_line_hide unsigned char
hwpfilter/source/hinfo.h:196
HWPInfo table_move unsigned char
hwpfilter/source/hinfo.h:198
HWPInfo reserved3 unsigned char
hwpfilter/source/hinfo.h:234
CharShape reserved unsigned char [4]
hwpfilter/source/hinfo.h:278
ParaShape condense unsigned char
hwpfilter/source/hinfo.h:284
ParaShape outline_continue unsigned char
hwpfilter/source/hpara.h:61
LineInfo pos unsigned short
hwpfilter/source/hpara.h:70
LineInfo softbreak unsigned short
hwpfilter/source/hpara.h:105
HWPPara pstyno unsigned char
hwpfilter/source/htags.h:31
EmPicture type char [16]
hwpfilter/source/htags.h:46
HyperText macro char [325]
hwpfilter/source/htags.h:48
HyperText reserve char [3]
idl/inc/database.hxx:103
SvIdlDataBase aIFaceName class rtl::OString
include/comphelper/componentbase.hxx:130
comphelper::ComponentMethodGuard m_aMutexGuard ::osl::ResettableMutexGuard
include/comphelper/MasterPropertySet.hxx:38
comphelper::SlaveData mxSlave css::uno::Reference<css::beans::XPropertySet>
include/connectivity/OSubComponent.hxx:54
connectivity::OSubComponent m_xParent css::uno::Reference<css::uno::XInterface>
include/drawinglayer/primitive2d/textlayoutdevice.hxx:61
drawinglayer::primitive2d::TextLayouterDevice maSolarGuard class SolarMutexGuard
include/editeng/outliner.hxx:405
DrawPortionInfo mnPara sal_Int32
include/editeng/unotext.hxx:606
SvxUnoTextRangeEnumeration mxParentText css::uno::Reference<css::text::XText>
include/filter/msfilter/mstoolbar.hxx:121
TBCExtraInfo wstrHelpFile class WString
include/filter/msfilter/mstoolbar.hxx:122
TBCExtraInfo idHelpContext sal_Int32
include/filter/msfilter/mstoolbar.hxx:123
TBCExtraInfo wstrTag class WString
include/filter/msfilter/mstoolbar.hxx:125
TBCExtraInfo wstrParam class WString
include/filter/msfilter/mstoolbar.hxx:126
TBCExtraInfo tbcu sal_Int8
include/filter/msfilter/mstoolbar.hxx:127
TBCExtraInfo tbmg sal_Int8
include/filter/msfilter/mstoolbar.hxx:144
TBCGeneralInfo descriptionText class WString
include/filter/msfilter/mstoolbar.hxx:161
TBCBitMap cbDIB sal_Int32
include/filter/msfilter/mstoolbar.hxx:191
TBCCDData cwstrMRU sal_Int16
include/filter/msfilter/mstoolbar.hxx:192
TBCCDData iSel sal_Int16
include/filter/msfilter/mstoolbar.hxx:193
TBCCDData cLines sal_Int16
include/filter/msfilter/mstoolbar.hxx:194
TBCCDData dxWidth sal_Int16
include/filter/msfilter/mstoolbar.hxx:195
TBCCDData wstrEdit class WString
include/filter/msfilter/mstoolbar.hxx:260
TBCHeader bSignature sal_Int8
include/filter/msfilter/mstoolbar.hxx:261
TBCHeader bVersion sal_Int8
include/filter/msfilter/mstoolbar.hxx:266
TBCHeader bPriority sal_uInt8
include/filter/msfilter/mstoolbar.hxx:304
TB bSignature sal_uInt8
include/filter/msfilter/mstoolbar.hxx:305
TB bVersion sal_uInt8
include/filter/msfilter/mstoolbar.hxx:307
TB ltbid sal_Int32
include/filter/msfilter/mstoolbar.hxx:309
TB cRowsDefault sal_uInt16
include/filter/msfilter/mstoolbar.hxx:328
SRECT left sal_Int16
include/filter/msfilter/mstoolbar.hxx:329
SRECT top sal_Int16
include/filter/msfilter/mstoolbar.hxx:330
SRECT right sal_Int16
include/filter/msfilter/mstoolbar.hxx:331
SRECT bottom sal_Int16
include/filter/msfilter/mstoolbar.hxx:341
TBVisualData tbds sal_Int8
include/filter/msfilter/mstoolbar.hxx:342
TBVisualData tbv sal_Int8
include/filter/msfilter/mstoolbar.hxx:343
TBVisualData tbdsDock sal_Int8
include/filter/msfilter/mstoolbar.hxx:344
TBVisualData iRow sal_Int8
include/filter/msfilter/mstoolbar.hxx:346
TBVisualData rcDock class SRECT
include/filter/msfilter/mstoolbar.hxx:347
TBVisualData rcFloat class SRECT
include/filter/msfilter/svdfppt.hxx:79
PptCurrentUserAtom nMagic sal_uInt32
include/filter/msfilter/svdfppt.hxx:81
PptCurrentUserAtom nDocFileVersion sal_uInt16
include/filter/msfilter/svdfppt.hxx:82
PptCurrentUserAtom nMajorVersion sal_uInt8
include/filter/msfilter/svdfppt.hxx:83
PptCurrentUserAtom nMinorVersion sal_uInt8
include/filter/msfilter/svdfppt.hxx:109
SdHyperlinkEntry nPrivate1 sal_Int32
include/filter/msfilter/svdfppt.hxx:110
SdHyperlinkEntry nPrivate2 sal_Int32
include/filter/msfilter/svdfppt.hxx:111
SdHyperlinkEntry nPrivate3 sal_Int32
include/filter/msfilter/svdfppt.hxx:112
SdHyperlinkEntry nInfo sal_Int32
include/filter/msfilter/svdfppt.hxx:125
PptInteractiveInfoAtom nOleVerb sal_uInt8
include/filter/msfilter/svdfppt.hxx:127
PptInteractiveInfoAtom nFlags sal_uInt8
include/filter/msfilter/svdfppt.hxx:131
PptInteractiveInfoAtom nUnknown1 sal_uInt8
include/filter/msfilter/svdfppt.hxx:132
PptInteractiveInfoAtom nUnknown2 sal_uInt8
include/filter/msfilter/svdfppt.hxx:133
PptInteractiveInfoAtom nUnknown3 sal_uInt8
include/filter/msfilter/svdfppt.hxx:191
PptDocumentAtom n1stPageNumber sal_uInt16
include/filter/msfilter/svdfppt.hxx:275
PptFontEntityAtom lfClipPrecision sal_uInt8
include/filter/msfilter/svdfppt.hxx:276
PptFontEntityAtom lfQuality sal_uInt8
include/filter/msfilter/svdfppt.hxx:290
PptUserEditAtom nLastSlideID sal_Int32
include/filter/msfilter/svdfppt.hxx:291
PptUserEditAtom nVersion sal_uInt32
include/filter/msfilter/svdfppt.hxx:334
PptSlidePersistEntry aNotesAtom struct PptNotesAtom
include/filter/msfilter/svdfppt.hxx:678
PPTExtParaLevel mpfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:680
PPTExtParaLevel mcfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:837
PPTStyleSheet maTxSI struct PPTTextSpecInfo
include/filter/msfilter/svdfppt.hxx:863
ImplPPTParaPropSet nDontKnow1 sal_uInt32
include/filter/msfilter/svdfppt.hxx:864
ImplPPTParaPropSet nDontKnow2 sal_uInt32
include/filter/msfilter/svdfppt.hxx:865
ImplPPTParaPropSet nDontKnow2bit06 sal_uInt16
include/filter/msfilter/svdfppt.hxx:900
ImplPPTCharPropSet mnANSITypeface sal_uInt16
include/filter/msfilter/svdfppt.hxx:1011
StyleTextProp9 mpfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:1013
StyleTextProp9 mncfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:1015
StyleTextProp9 mnPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:1016
StyleTextProp9 mfBidi sal_uInt16
include/LibreOfficeKit/LibreOfficeKitGtk.h:33
_LOKDocView aDrawingArea GtkDrawingArea
include/LibreOfficeKit/LibreOfficeKitGtk.h:38
_LOKDocViewClass parent_class GtkDrawingAreaClass
include/oox/ole/axbinaryreader.hxx:238
oox::ole::AxBinaryPropertyReader maDummyPicData oox::StreamDataSequence
include/oox/ole/axbinaryreader.hxx:239
oox::ole::AxBinaryPropertyReader maDummyString class rtl::OUString
include/oox/ole/axbinaryreader.hxx:240
oox::ole::AxBinaryPropertyReader maDummyArrayString oox::ole::AxArrayString
include/oox/ole/axcontrol.hxx:603
oox::ole::AxTabStripModel mnTabData sal_uInt32
include/oox/ole/axcontrol.hxx:604
oox::ole::AxTabStripModel mnVariousPropertyBits sal_uInt32
include/oox/ole/axcontrol.hxx:606
oox::ole::AxTabStripModel maTabNames std::vector< ::rtl::OUString>
include/oox/ole/axcontrol.hxx:826
oox::ole::AxContainerModelBase mnBorderColor sal_uInt32
include/oox/ole/axcontrol.hxx:829
oox::ole::AxContainerModelBase mnCycleType sal_Int32
include/oox/ole/axcontrol.hxx:831
oox::ole::AxContainerModelBase mnPicAlign sal_Int32
include/oox/ole/axcontrol.hxx:832
oox::ole::AxContainerModelBase mnPicSizeMode sal_Int32
include/oox/ole/axcontrol.hxx:833
oox::ole::AxContainerModelBase mbPicTiling _Bool
include/oox/ole/vbacontrol.hxx:100
oox::ole::VbaSiteModel mnHelpContextId sal_Int32
include/oox/ole/vbacontrol.hxx:105
oox::ole::VbaSiteModel mnGroupId sal_uInt16
include/sfx2/msg.hxx:117
SfxType0 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:119
SfxType0 nAttribs sal_uInt16
include/svtools/genericunodialog.hxx:170
svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
include/svtools/unoevent.hxx:159
SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
include/svx/AccessibleShapeInfo.hxx:66
accessibility::AccessibleShapeInfo mpChildrenManager class accessibility::IAccessibleParent *
include/svx/bmpmask.hxx:129
SvxBmpMask aSelItem class SvxBmpMaskSelectItem
include/svx/imapdlg.hxx:118
SvxIMapDlg aIMapItem class SvxIMapDlgItem
include/vcl/uitest/uiobject.hxx:241
TabPageUIObject mxTabPage VclPtr<class TabPage>
include/vcl/vclptr.hxx:58
vcl::detail::UpCast::S c char [2]
include/xmloff/formlayerexport.hxx:174
xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport>
include/xmloff/maptype.hxx:88
XMLPropertyMapEntry mnContextId sal_Int16
include/xmloff/maptype.hxx:89
XMLPropertyMapEntry mnEarliestODFVersionForExport class SvtSaveOptions::ODFDefaultVersion
lingucomponent/source/languageguessing/simpleguesser.cxx:79
textcat_t maxsize uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:81
textcat_t output char [1024]
lotuswordpro/source/filter/clone.hxx:23
detail::has_clone::(anonymous) a char [2]
lotuswordpro/source/filter/lwpcelllayout.hxx:124
LwpCellLayout cLayDiagonalLine class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:97
LwpTextStyle m_aDescription class LwpAtomHolder
lotuswordpro/source/filter/lwpcharacterstyle.hxx:98
LwpTextStyle m_aLangOverride class LwpTextLanguageOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:99
LwpTextStyle m_aTxtAttrOverride class LwpTextAttributeOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:101
LwpTextStyle m_aCharacterBorderOverride class LwpCharacterBorderOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:102
LwpTextStyle m_aAmikakeOverride class LwpAmikakeOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:104
LwpTextStyle m_CharacterBorder class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:105
LwpTextStyle m_Amikake class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:106
LwpTextStyle m_FaceStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:108
LwpTextStyle m_SizeStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:109
LwpTextStyle m_AttributeStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:110
LwpTextStyle m_FontStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:111
LwpTextStyle m_CharacterBorderStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:112
LwpTextStyle m_AmikakeStyle class LwpObjectID
lotuswordpro/source/filter/lwpcontent.hxx:82
LwpContent m_PreviousEnumerated class LwpObjectID
lotuswordpro/source/filter/lwpdivinfo.hxx:95
LwpDivInfo m_LayoutID class LwpObjectID
lotuswordpro/source/filter/lwpdivinfo.hxx:97
LwpDivInfo m_ExternalName class LwpAtomHolder
lotuswordpro/source/filter/lwpdivinfo.hxx:98
LwpDivInfo m_ExternalType class LwpAtomHolder
lotuswordpro/source/filter/lwpdivinfo.hxx:104
LwpDivInfo m_TabColor class LwpColor
lotuswordpro/source/filter/lwpdivopts.hxx:112
LwpDivisionOptions m_HyphOpts class LwpHyphenOptions
lotuswordpro/source/filter/lwpdivopts.hxx:114
LwpDivisionOptions m_Lang class LwpTextLanguage
lotuswordpro/source/filter/lwpdoc.hxx:107
LwpDocument m_DivOpts class LwpObjectID
lotuswordpro/source/filter/lwpdoc.hxx:111
LwpDocument m_Epoch class LwpAtomHolder
lotuswordpro/source/filter/lwpdoc.hxx:115
LwpDocument m_STXInfo class LwpObjectID
lotuswordpro/source/filter/lwpdoc.hxx:230
LwpDocSock m_Doc class LwpObjectID
lotuswordpro/source/filter/lwpdocdata.hxx:68
LwpDocOptions encrypt1password class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:69
LwpDocOptions encrypt2password class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:70
LwpDocOptions characterSet class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:71
LwpDocOptions grammerSet class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:84
LwpDocInfo cpVerDocInfo class LwpObjectID
lotuswordpro/source/filter/lwpdocdata.hxx:90
LwpDocControl cGreeting class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:99
LwpDocControl cDocControlOnlyEditor class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:111
LwpFontDescriptionOverrideBase cColor class LwpColor
lotuswordpro/source/filter/lwpdocdata.hxx:112
LwpFontDescriptionOverrideBase cBackgroundColor class LwpColor
lotuswordpro/source/filter/lwpdocdata.hxx:128
LwpFontDescriptionOverride cFaceName class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:129
LwpFontDescriptionOverride cAltFaceName class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:146
LwpEditorAttr cInitials class LwpAtomHolder
lotuswordpro/source/filter/lwpdrawobj.hxx:294
LwpDrawTextBox m_aVector struct SdwPoint
lotuswordpro/source/filter/lwpfilehdr.hxx:68
LwpFileHeader m_nAppRevision sal_uInt16
lotuswordpro/source/filter/lwpfilehdr.hxx:69
LwpFileHeader m_nAppReleaseNo sal_uInt16
lotuswordpro/source/filter/lwpfilehdr.hxx:70
LwpFileHeader m_nRequiredAppRevision sal_uInt16
lotuswordpro/source/filter/lwpfilehdr.hxx:71
LwpFileHeader m_nRequiredFileRevision sal_uInt16
lotuswordpro/source/filter/lwpfootnote.hxx:248
LwpFootnoteOptions m_EndnoteDivisionNumbering class LwpFootnoteNumberOptions
lotuswordpro/source/filter/lwpfootnote.hxx:249
LwpFootnoteOptions m_EndnoteDivisionGroupNumbering class LwpFootnoteNumberOptions
lotuswordpro/source/filter/lwpfootnote.hxx:252
LwpFootnoteOptions m_FootnoteContinuedSeparator class LwpFootnoteSeparatorOptions
lotuswordpro/source/filter/lwpfoundry.hxx:93
LwpObjectManager m_Division class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:128
LwpContentManager m_EnumTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:129
LwpContentManager m_OleObjCount class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:132
LwpContentManager m_GrapTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:133
LwpContentManager m_OleHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:134
LwpContentManager m_OleTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:149
LwpPieceManager m_GeometryPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:150
LwpPieceManager m_ScalePieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:151
LwpPieceManager m_MarginsPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:152
LwpPieceManager m_ColumnsPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:153
LwpPieceManager m_BorderStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:154
LwpPieceManager m_GutterStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:155
LwpPieceManager m_BackgroundStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:156
LwpPieceManager m_JoinStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:157
LwpPieceManager m_ShadowPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:158
LwpPieceManager m_NumericsPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:159
LwpPieceManager m_RelativityPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:160
LwpPieceManager m_AlignmentPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:161
LwpPieceManager m_IndentPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:162
LwpPieceManager m_ParaBorderPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:163
LwpPieceManager m_SpacingPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:164
LwpPieceManager m_BreaksPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:165
LwpPieceManager m_NumberingPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:166
LwpPieceManager m_TabPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:167
LwpPieceManager m_CharacterBorderPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:168
LwpPieceManager m_AmikakePieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:170
LwpPieceManager m_ParaBackgroundPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:171
LwpPieceManager m_ExternalBorderStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:172
LwpPieceManager m_ExternalJoinStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:207
LwpFoundry m_ObjMgr class LwpObjectManager
lotuswordpro/source/filter/lwpfoundry.hxx:208
LwpFoundry m_MarkerHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:209
LwpFoundry m_FootnoteMgr class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:217
LwpFoundry m_DefaultClickStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:220
LwpFoundry m_TableStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:222
LwpFoundry m_DftFrameStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:223
LwpFoundry m_DftPageStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:224
LwpFoundry m_DftTableStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:225
LwpFoundry m_DftCellStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:226
LwpFoundry m_DftColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:227
LwpFoundry m_DftLeftColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:228
LwpFoundry m_DftRighColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:231
LwpFoundry m_DdeLinkHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:232
LwpFoundry m_DirtBagHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:233
LwpFoundry m_NamedOutlineSeqHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:234
LwpFoundry m_EnumLayoutHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:235
LwpFoundry m_EnumLayoutTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:237
LwpFoundry m_NamedObjects class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:240
LwpFoundry m_SmartTextMgr class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:246
LwpFoundry m_DftDropCapStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:247
LwpFoundry m_DftHeaderStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:249
LwpFoundry m_DftFooterStyle class LwpObjectID
lotuswordpro/source/filter/lwpfrib.hxx:75
ModifierInfo Language class LwpTextLanguageOverride
lotuswordpro/source/filter/lwpfribtext.hxx:169
LwpFribDocVar m_aName class LwpAtomHolder
lotuswordpro/source/filter/lwplayout.hxx:235
LwpVirtualLayout m_NextEnumerated class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:236
LwpVirtualLayout m_PreviousEnumerated class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:327
LwpLayoutMisc m_aContentStyle class LwpAtomHolder
lotuswordpro/source/filter/lwplayout.hxx:404
LwpMiddleLayout m_aStyleStuff class LwpLayoutStyle
lotuswordpro/source/filter/lwplayout.hxx:405
LwpMiddleLayout m_aMiscStuff class LwpLayoutMisc
lotuswordpro/source/filter/lwplayout.hxx:411
LwpMiddleLayout m_LayExtBorderStuff class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:434
LwpLayout m_LayJoinStuff class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:436
LwpLayout m_LayExtJoinStuff class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:501
LwpPlacableLayout m_Script class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:99
LwpLayoutGeometry m_ContainerRotor class LwpRotor
lotuswordpro/source/filter/lwplaypiece.hxx:146
LwpLayoutMargins m_ExtraMargins class LwpMargins
lotuswordpro/source/filter/lwplaypiece.hxx:186
LwpExternalBorder m_LeftName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:187
LwpExternalBorder m_TopName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:188
LwpExternalBorder m_RightName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:189
LwpExternalBorder m_BottomName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:201
LwpLayoutExternalBorder m_ExtranalBorder class LwpExternalBorder
lotuswordpro/source/filter/lwplaypiece.hxx:293
LwpJoinStuff m_Color class LwpColor
lotuswordpro/source/filter/lwplaypiece.hxx:304
LwpLayoutJoins m_JoinStuff class LwpJoinStuff
lotuswordpro/source/filter/lwpmarker.hxx:85
LwpMarker m_objLayout class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:86
LwpMarker m_objMarkerList class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:87
LwpMarker m_objContent class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:97
LwpFribRange m_StartPara class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:98
LwpFribRange m_EndPara class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:107
LwpStoryMarker m_Range class LwpFribRange
lotuswordpro/source/filter/lwpmarker.hxx:164
LwpCHBlkMarker m_Mirror class LwpAtomHolder
lotuswordpro/source/filter/lwpmarker.hxx:235
LwpFieldMark m_objFormulaStory class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:236
LwpFieldMark m_objResultContent class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:260
LwpRubyMarker m_objLayout class LwpObjectID
lotuswordpro/source/filter/lwpoleobject.hxx:105
LwpGraphicOleObject m_pPrevObj class LwpObjectID
lotuswordpro/source/filter/lwpoleobject.hxx:106
LwpGraphicOleObject m_pNextObj class LwpObjectID
lotuswordpro/source/filter/lwppagehint.hxx:75
LwpSLVListHead m_ListHead class LwpObjectID
lotuswordpro/source/filter/lwppagehint.hxx:84
LwpContentHintHead m_ListHead class LwpSLVListHead
lotuswordpro/source/filter/lwppagehint.hxx:93
LwpFootnoteSeenHead m_ListHead class LwpSLVListHead
lotuswordpro/source/filter/lwppagehint.hxx:109
LwpPageHint m_ContentHints class LwpContentHintHead
lotuswordpro/source/filter/lwppagehint.hxx:115
LwpPageHint m_BeforeText class LwpAtomHolder
lotuswordpro/source/filter/lwppagehint.hxx:116
LwpPageHint m_AfterText class LwpAtomHolder
lotuswordpro/source/filter/lwppagehint.hxx:119
LwpPageHint m_CurrentSection class LwpObjectID
lotuswordpro/source/filter/lwppagehint.hxx:121
LwpPageHint m_FootnoteSeen class LwpFootnoteSeenHead
lotuswordpro/source/filter/lwppagelayout.hxx:95
LwpPageLayout m_PrinterBinName class LwpAtomHolder
lotuswordpro/source/filter/lwppagelayout.hxx:98
LwpPageLayout m_PaperName class LwpAtomHolder
lotuswordpro/source/filter/lwppara.hxx:95
LwpNotifyListPersistent m_Head class LwpObjectID
lotuswordpro/source/filter/lwppara.hxx:104
LwpForked3NotifyList m_PersistentList class LwpNotifyListPersistent
lotuswordpro/source/filter/lwppara.hxx:197
LwpPara m_Hint class LwpPoint
lotuswordpro/source/filter/lwpparastyle.hxx:116
LwpParaStyle m_KinsokuOptsOverride class LwpKinsokuOptsOverride
lotuswordpro/source/filter/lwprowlayout.hxx:125
LwpRowHeadingLayout cRowLayout class LwpObjectID
lotuswordpro/source/filter/lwpsection.hxx:102
LwpSection m_Color class LwpColor
lotuswordpro/source/filter/lwpsection.hxx:130
LwpIndexSection m_TextMarker class LwpAtomHolder
lotuswordpro/source/filter/lwpsection.hxx:131
LwpIndexSection m_ParentName class LwpAtomHolder
lotuswordpro/source/filter/lwpsection.hxx:132
LwpIndexSection m_DivisionName class LwpAtomHolder
lotuswordpro/source/filter/lwpsection.hxx:133
LwpIndexSection m_SectionName class LwpAtomHolder
lotuswordpro/source/filter/lwpstory.hxx:78
LwpStory m_FirstParaStyle class LwpObjectID
lotuswordpro/source/filter/lwptable.hxx:103
LwpForkedNotifyList m_PersistentList class LwpNotifyListPersistent
lotuswordpro/source/filter/lwptable.hxx:129
LwpTable m_CPNotifyList class LwpForkedNotifyList
lotuswordpro/source/filter/lwptable.hxx:170
LwpParallelColumns cDefaultLeftColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwptable.hxx:171
LwpParallelColumns cDefaultRightColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:113
LwpRowList cParent class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:188
LwpFolder cParent class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:189
LwpFolder cqTable class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:206
LwpDependent cFormulaInfo class LwpObjectID
lotuswordpro/source/filter/lwptoc.hxx:121
LwpTocSuperLayout m_TextMarker class LwpAtomHolder
lotuswordpro/source/filter/lwptoc.hxx:122
LwpTocSuperLayout m_ParentName class LwpAtomHolder
lotuswordpro/source/filter/lwptoc.hxx:123
LwpTocSuperLayout m_DivisionName class LwpAtomHolder
lotuswordpro/source/filter/lwptoc.hxx:124
LwpTocSuperLayout m_SectionName class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:94
LwpAutoRunMacroOptions m_OpenName class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:95
LwpAutoRunMacroOptions m_CloseName class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:96
LwpAutoRunMacroOptions m_NewName class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:113
LwpMergeOptions m_RecordFile class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:114
LwpMergeOptions m_DescriptionFile class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:115
LwpMergeOptions m_Filter class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:131
LwpUIDocument m_ARMacroOpts class LwpAutoRunMacroOptions
lotuswordpro/source/filter/lwpuidoc.hxx:132
LwpUIDocument m_MergedOpts class LwpMergeOptions
lotuswordpro/source/filter/lwpuidoc.hxx:133
LwpUIDocument m_SheetFullPath class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:135
LwpUIDocument m_InitialSaveAsType class LwpAtomHolder
mysqlc/source/mysqlc_connection.hxx:74
connectivity::mysqlc::ConnectionSettings quoteIdentifier rtl::OUString
oox/source/drawingml/chart/objectformatter.cxx:705
oox::drawingml::chart::ObjectFormatterData maModelObjHelper class oox::ModelObjectHelper
opencl/source/openclwrapper.cxx:302
opencl::(anonymous namespace)::OpenCLEnv mpOclCmdQueue cl_command_queue [1]
package/source/zipapi/MemoryByteGrabber.hxx:29
MemoryByteGrabber maBuffer const css::uno::Sequence<sal_Int8>
pyuno/source/module/pyuno_impl.hxx:226
pyuno::(anonymous) ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:326
pyuno::stRuntimeImpl ob_base PyObject
registry/source/reflread.cxx:578
FieldList m_pCP class ConstantPool *
registry/source/reflread.cxx:764
ReferenceList m_pCP class ConstantPool *
registry/source/reflread.cxx:868
MethodList m_pCP class ConstantPool *
reportdesign/source/ui/inc/ReportWindow.hxx:54
rptui::OReportWindow m_pObjFac ::std::unique_ptr<DlgEdFactory>
sal/osl/unx/thread.cxx:93
osl_thread_priority_st m_Highest int
sal/osl/unx/thread.cxx:94
osl_thread_priority_st m_Above_Normal int
sal/osl/unx/thread.cxx:95
osl_thread_priority_st m_Normal int
sal/osl/unx/thread.cxx:96
osl_thread_priority_st m_Below_Normal int
sal/osl/unx/thread.cxx:97
osl_thread_priority_st m_Lowest int
sal/osl/unx/thread.cxx:115
osl_thread_global_st m_priority struct osl_thread_priority_st
sc/inc/compiler.hxx:259
ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:260
ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:262
ScCompiler::AddInMap pUpper const char *
sc/inc/formulalogger.hxx:42
sc::FormulaLogger maMessages std::vector<OUString>
sc/qa/unit/ucalc_column.cxx:103
aInputs aName const char *
sc/source/core/data/document.cxx:1256
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch sc::AutoCalcSwitch
sc/source/core/data/document.cxx:1257
(anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk class ScBulkBroadcast
sc/source/core/data/formulacell.cxx:1771
StackCleaner pInt class ScInterpreter *
sc/source/filter/excel/xltoolbar.hxx:23
TBCCmd cmdID sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:54
ScCTB ectbid sal_uInt32
sc/source/filter/excel/xltoolbar.hxx:72
CTBS bSignature sal_uInt8
sc/source/filter/excel/xltoolbar.hxx:73
CTBS bVersion sal_uInt8
sc/source/filter/excel/xltoolbar.hxx:74
CTBS reserved1 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:75
CTBS reserved2 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:76
CTBS reserved3 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:79
CTBS ictbView sal_uInt16
sc/source/filter/inc/root.hxx:96
LOTUS_ROOT aActRange class ScRange
sc/source/filter/inc/sheetdatacontext.hxx:61
oox::xls::SheetDataContext aReleaser class SolarMutexReleaser
sc/source/filter/inc/XclImpChangeTrack.hxx:138
XclImpChTrFmlConverter rChangeTrack class XclImpChangeTrack &
sc/source/ui/inc/docsh.hxx:438
ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector>
scaddins/source/analysis/analysishelper.hxx:205
sca::analysis::FuncDataBase nUINameID sal_uInt16
scaddins/source/analysis/analysishelper.hxx:206
sca::analysis::FuncDataBase nDescrID sal_uInt16
scaddins/source/analysis/analysishelper.hxx:207
sca::analysis::FuncDataBase bDouble _Bool
scaddins/source/analysis/analysishelper.hxx:208
sca::analysis::FuncDataBase bWithOpt _Bool
scaddins/source/analysis/analysishelper.hxx:210
sca::analysis::FuncDataBase nNumOfParams sal_uInt16
scaddins/source/analysis/analysishelper.hxx:211
sca::analysis::FuncDataBase eCat enum sca::analysis::FDCategory
scaddins/source/datefunc/datefunc.hxx:58
ScaFuncDataBase nUINameID sal_uInt16
scaddins/source/datefunc/datefunc.hxx:59
ScaFuncDataBase nDescrID sal_uInt16
scaddins/source/datefunc/datefunc.hxx:61
ScaFuncDataBase nParamCount sal_uInt16
scaddins/source/datefunc/datefunc.hxx:62
ScaFuncDataBase eCat enum ScaCategory
scaddins/source/datefunc/datefunc.hxx:63
ScaFuncDataBase bDouble _Bool
scaddins/source/datefunc/datefunc.hxx:64
ScaFuncDataBase bWithOpt _Bool
scaddins/source/pricing/pricing.hxx:68
sca::pricing::ScaFuncDataBase nUINameID sal_uInt16
scaddins/source/pricing/pricing.hxx:69
sca::pricing::ScaFuncDataBase nDescrID sal_uInt16
scaddins/source/pricing/pricing.hxx:71
sca::pricing::ScaFuncDataBase nParamCount sal_uInt16
scaddins/source/pricing/pricing.hxx:72
sca::pricing::ScaFuncDataBase eCat enum sca::pricing::ScaCategory
scaddins/source/pricing/pricing.hxx:73
sca::pricing::ScaFuncDataBase bDouble _Bool
scaddins/source/pricing/pricing.hxx:74
sca::pricing::ScaFuncDataBase bWithOpt _Bool
sd/source/filter/ppt/ppt97animations.hxx:41
Ppt97AnimationInfoAtom nSlideCount sal_uInt16
sd/source/filter/ppt/ppt97animations.hxx:47
Ppt97AnimationInfoAtom nOLEVerb sal_uInt8
sd/source/filter/ppt/ppt97animations.hxx:50
Ppt97AnimationInfoAtom nUnknown1 sal_uInt8
sd/source/filter/ppt/ppt97animations.hxx:51
Ppt97AnimationInfoAtom nUnknown2 sal_uInt8
sd/source/ui/remotecontrol/ZeroconfService.hxx:36
sd::ZeroconfService port uint
sd/source/ui/sidebar/MasterPageContainerProviders.hxx:136
sd::sidebar::TemplatePreviewProvider msURL class rtl::OUString
sd/source/ui/slidesorter/inc/controller/SlsVisibleAreaManager.hxx:64
sd::slidesorter::controller::VisibleAreaManager::TemporaryDisabler mrVisibleAreaManager class sd::slidesorter::controller::VisibleAreaManager &
sd/source/ui/table/TableDesignPane.hxx:113
sd::TableDesignPane aImpl class sd::TableDesignWidget
sd/source/ui/view/DocumentRenderer.cxx:1335
sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
sd/source/ui/view/viewshel.cxx:1236
sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1237
sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
sd/source/ui/view/viewshel.cxx:1238
sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
sd/source/ui/view/viewshel.cxx:1239
sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
sd/source/ui/view/ViewShellBase.cxx:201
sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
sfx2/source/doc/doctempl.cxx:119
DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
sfx2/source/doc/docundomanager.cxx:198
sfx2::UndoManagerGuard m_guard class SfxModelGuard
sfx2/source/inc/docundomanager.hxx:92
SfxModelGuard m_aGuard class SolarMutexResettableGuard
sfx2/source/view/classificationcontroller.cxx:59
sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener
slideshow/source/engine/activities/activityparameters.hxx:107
slideshow::internal::ActivityParameters mrEventQueue class slideshow::internal::EventQueue &
slideshow/source/engine/activities/activityparameters.hxx:119
slideshow::internal::ActivityParameters mnMinDuration const double
slideshow/source/engine/activities/activityparameters.hxx:121
slideshow::internal::ActivityParameters mnAccelerationFraction const double
slideshow/source/engine/activities/activityparameters.hxx:122
slideshow::internal::ActivityParameters mnDecelerationFraction const double
slideshow/source/engine/activities/activityparameters.hxx:125
slideshow::internal::ActivityParameters mnMinNumberOfFrames const sal_uInt32
slideshow/source/engine/activities/activityparameters.hxx:128
slideshow::internal::ActivityParameters mbAutoReverse const _Bool
slideshow/source/engine/opengl/TransitionImpl.hxx:296
Vertex normal glm::vec3
slideshow/source/engine/opengl/TransitionImpl.hxx:297
Vertex texcoord glm::vec2
slideshow/source/inc/transitioninfo.hxx:119
slideshow::internal::TransitionInfo mbScaleIsotrophically _Bool
starmath/inc/view.hxx:163
SmCmdBoxWindow aController class SmEditController
starmath/inc/view.hxx:224
SmViewShell maGraphicController class SmGraphicController
svtools/source/svhtml/htmlkywd.cxx:558
HTML_OptionEntry union HTML_OptionEntry::(anonymous at /home/noel/libo3/svtools/source/svhtml/htmlkywd.cxx:558:5)
svtools/source/svhtml/htmlkywd.cxx:560
HTML_OptionEntry::(anonymous) sToken const sal_Char *
svtools/source/svhtml/htmlkywd.cxx:561
HTML_OptionEntry::(anonymous) pUToken const class rtl::OUString *
svtools/source/uno/treecontrolpeer.cxx:69
LockGuard mrLock sal_Int32 &
svx/source/dialog/contimp.hxx:57
SvxSuperContourDlg aContourItem class SvxContourDlgItem
svx/source/sidebar/line/LinePropertyPanel.hxx:97
svx::sidebar::LinePropertyPanel maStyleControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:98
svx::sidebar::LinePropertyPanel maDashControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:100
svx::sidebar::LinePropertyPanel maStartControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:101
svx::sidebar::LinePropertyPanel maEndControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:102
svx::sidebar::LinePropertyPanel maLineEndListControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:103
svx::sidebar::LinePropertyPanel maLineStyleListControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:104
svx::sidebar::LinePropertyPanel maTransControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:105
svx::sidebar::LinePropertyPanel maEdgeStyle sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:106
svx::sidebar::LinePropertyPanel maCapStyle sfx2::sidebar::ControllerItem
svx/source/table/tablertfimporter.cxx:53
sdr::table::RTFCellDefault maItemSet class SfxItemSet
sw/inc/doc.hxx:328
SwDoc mxForbiddenCharsTable rtl::Reference<SvxForbiddenCharactersTable>
sw/inc/shellio.hxx:147
SwReader aFileName class rtl::OUString
sw/qa/extras/uiwriter/uiwriter.cxx:3767
PortionItem msText class rtl::OUString
sw/source/core/crsr/crbm.cxx:64
(anonymous namespace)::CursorStateHelper m_aSaveState class SwCursorSaveState
sw/source/core/frmedt/fetab.cxx:90
TableWait m_pWait const std::unique_ptr<SwWait>
sw/source/core/layout/dbg_lay.cxx:164
SwImplEnterLeave nAction enum DbgAction
sw/source/filter/html/htmlcss1.cxx:77
SwCSS1ItemIds nFormatBreak sal_uInt16
sw/source/filter/html/htmlcss1.cxx:78
SwCSS1ItemIds nFormatPageDesc sal_uInt16
sw/source/filter/html/htmlcss1.cxx:79
SwCSS1ItemIds nFormatKeep sal_uInt16
sw/source/uibase/inc/uivwimp.hxx:95
SwView_Impl xTmpSelDocSh class SfxObjectShellLock
sw/source/uibase/inc/unodispatch.hxx:46
SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard class SolarMutexGuard
toolkit/source/awt/stylesettings.cxx:91
toolkit::StyleMethodGuard m_aGuard class SolarMutexGuard
ucb/source/ucp/gio/gio_mount.hxx:46
OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:49
OOoMountOperationClass _gtk_reserved1 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:50
OOoMountOperationClass _gtk_reserved2 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:51
OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:52
OOoMountOperationClass _gtk_reserved4 void (*)(void)
unoidl/source/legacyprovider.cxx:87
unoidl::detail::(anonymous namespace)::Cursor manager_ rtl::Reference<Manager>
unoidl/source/unoidlprovider.cxx:672
unoidl::detail::(anonymous namespace)::UnoidlCursor reference1_ rtl::Reference<UnoidlProvider>
unoidl/source/unoidlprovider.cxx:673
unoidl::detail::(anonymous namespace)::UnoidlCursor reference2_ rtl::Reference<UnoidlModuleEntity>
vcl/inc/opengl/RenderList.hxx:29
Vertex color glm::vec4
vcl/inc/opengl/RenderList.hxx:30
Vertex lineData glm::vec4
vcl/inc/opengl/zone.hxx:46
OpenGLVCLContextZone aZone class OpenGLZone
vcl/inc/salmenu.hxx:42
SalMenuButtonItem mnId sal_uInt16
vcl/inc/salmenu.hxx:43
SalMenuButtonItem maImage class Image
vcl/inc/salmenu.hxx:44
SalMenuButtonItem maToolTipText class rtl::OUString
vcl/source/filter/wmf/enhwmf.cxx:325
(anonymous namespace)::BLENDFUNCTION aBlendOperation unsigned char
vcl/source/filter/wmf/enhwmf.cxx:326
(anonymous namespace)::BLENDFUNCTION aBlendFlags unsigned char
vcl/source/gdi/jobset.cxx:34
ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:35
ImplOldJobSetupData cPortName char [32]
vcl/source/gdi/pdfwriter_impl.cxx:5448
(anonymous namespace)::(anonymous) extnID SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5449
(anonymous namespace)::(anonymous) critical SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5450
(anonymous namespace)::(anonymous) extnValue SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5819
(anonymous namespace)::(anonymous) statusString SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5820
(anonymous namespace)::(anonymous) failInfo SECItem
vcl/source/uitest/uno/uitest_uno.cxx:35
UITestUnoObj mpUITest std::unique_ptr<UITest>
vcl/unx/generic/dtrans/X11_clipboard.hxx:45
x11::X11Clipboard m_xSelectionManager css::uno::Reference<css::lang::XInitialization>
vcl/unx/generic/dtrans/X11_dndcontext.hxx:40
x11::DropTargetDropContext m_xManagerRef css::uno::Reference<XInterface>
vcl/unx/generic/dtrans/X11_dndcontext.hxx:56
x11::DropTargetDragContext m_xManagerRef css::uno::Reference<XInterface>
vcl/unx/generic/dtrans/X11_dndcontext.hxx:71
x11::DragSourceContext m_xManagerRef css::uno::Reference<XInterface>
vcl/unx/gtk/a11y/atkhypertext.cxx:29
(anonymous) atk_hyper_link AtkHyperlink
vcl/unx/gtk/a11y/atkwrapper.hxx:45
AtkObjectWrapper aParent AtkObject
vcl/unx/gtk/a11y/atkwrapper.hxx:72
AtkObjectWrapperClass aParentClass AtkObjectClass
vcl/unx/gtk/gloactiongroup.cxx:28
GLOAction parent_instance GObject
vcl/unx/gtk/glomenu.cxx:20
GLOMenu parent_instance GMenuModel
writerfilter/source/rtftok/rtfdocumentimpl.hxx:220
writerfilter::rtftok::RTFParserState m_pDocumentImpl class writerfilter::rtftok::RTFDocumentImpl *
xmloff/source/chart/SchXMLPlotAreaContext.hxx:170
SchXMLCoordinateRegionContext m_rPositioning class SchXMLPositionAttributesHelper &
xmlsecurity/source/helper/ooxmlsecexporter.cxx:32
OOXMLSecExporter::Impl m_xComponentContext const uno::Reference<uno::XComponentContext> &
|