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
|
-1.0/atk/atkobject.h:477
_AtkPropertyValues property_name
accessible-table-column-header
-1.0/atk/atkobject.h:531
_AtkObject layer
0
/certt.h:760
CERTVerifyLogStr count
0
/certt.h:762
CERTVerifyLogStr tail
0
/certt.h:1171
CERTRevocationTests number_of_defined_methods
2
/certt.h:1195
CERTRevocationTests number_of_preferred_methods
0
/certt.h:1204
CERTRevocationTests preferred_methods
0
/certt.h:1211
CERTRevocationTests cert_rev_method_independent_flags
1
/certt.h:1221
CERTValParamInValueStr::(unnamed union at /usr/include/nss/certt.h:1220:5) b
1
/certt.h:1259
CERTValParamOutValueStr::(unnamed union at /usr/include/nss/certt.h:1255:5) cert
0
/cmst.h:488
NSSCMSAttributeStr encoded
1
/extensions/Xrender.h:68
_XRenderPictureAttributes repeat
1
/extensions/Xrender.h:74
_XRenderPictureAttributes clip_mask
0
/secoidt.h:523
SECOidDataStr offset
0
/secoidt.h:525
SECOidDataStr mechanism
544
/secoidt.h:526
SECOidDataStr supportedExtension
1
/SM/SMlib.h:137
(anonymous struct)::(unnamed struct at /usr/include/X11/SM/SMlib.h:135:5) client_data
0
/SM/SMlib.h:142
(anonymous struct)::(unnamed struct at /usr/include/X11/SM/SMlib.h:140:5) client_data
0
/SM/SMlib.h:147
(anonymous struct)::(unnamed struct at /usr/include/X11/SM/SMlib.h:145:5) client_data
0
/SM/SMlib.h:152
(anonymous struct)::(unnamed struct at /usr/include/X11/SM/SMlib.h:150:5) client_data
0
/Xlib.h:186
XGCValues line_width
1
/Xlib.h:193
XGCValues fill_rule
0
/Xlib.h:200
XGCValues subwindow_mode
0
/Xlib.h:201
XGCValues graphics_exposures
0
/Xlib.h:228
Visual ext_data
0
/Xlib.h:291
XSetWindowAttributes background_pixmap
0
/Xlib.h:292
XSetWindowAttributes background_pixel
0
/Xlib.h:294
XSetWindowAttributes border_pixel
0
/Xlib.h:300
XSetWindowAttributes save_under
1
/Xlib.h:313
XWindowAttributes visual
0
/Xlib.h:333
XWindowAttributes screen
0
/Xlib.h:362
_XImage xoffset
0
/Xlib.h:363
_XImage format
2
/Xlib.h:375
_XImage obdata
0
/Xlib.h:404
XWindowChanges stack_mode
0
/Xlib.h:413
XColor flags
7
/Xlib.h:576
XButtonEvent type
5
/Xlib.h:588
XButtonEvent same_screen
1
/Xlib.h:637
XFocusChangeEvent send_event
1
/Xlib.h:873
XSelectionEvent send_event
1
/Xlib.h:898
XClientMessageEvent type
33
/Xutil.h:166
XTextProperty format
8
/Xutil.h:300
XVisualInfo colormap_size
0
/Xutil.h:301
XVisualInfo bits_per_rgb
8
a-11-openjdk-amd64/include/jawt.h:247
jawt version
65539
a-11-openjdk-amd64/include/jni.h:1880
JavaVMInitArgs version
65538
a-11-openjdk-amd64/include/jni.h:1884
JavaVMInitArgs ignoreUnrecognized
1
avmedia/source/framework/soundhandler.hxx:114
avmedia::SoundHandler m_aUpdateIdle
avmedia SoundHandler Update
b.h:89
z_stream_s total_in
0
basctl/source/basicide/baside2.hxx:86
basctl::EditorWindow aHighlighter
0
basctl/source/inc/dlged.hxx:131
basctl::DlgEditor aMarkIdle
basctl DlgEditor Mark
binaryurp/source/proxy.hxx:80
binaryurp::Proxy references_
1
binaryurp/source/writerstate.hxx:40
binaryurp::WriterState typeCache
256
binaryurp/source/writerstate.hxx:42
binaryurp::WriterState oidCache
256
binaryurp/source/writerstate.hxx:44
binaryurp::WriterState tidCache
256
bridges/inc/bridge.hxx:89
bridges::cpp_uno::shared::Bridge nRef
1
bridges/inc/cppinterfaceproxy.hxx:82
bridges::cpp_uno::shared::CppInterfaceProxy nRef
1
bridges/inc/unointerfaceproxy.hxx:83
bridges::cpp_uno::shared::UnoInterfaceProxy nRef
1
bridges/source/jni_uno/jni_bridge.h:52
jni_uno::Bridge m_ref
1
bridges/source/jni_uno/jni_uno2java.cxx:390
jni_uno::(anonymous namespace)::UNO_proxy m_ref
1
canvas/inc/rendering/irendermodule.hxx:36
canvas::Vertex b
1\10
canvas/inc/rendering/irendermodule.hxx:36
canvas::Vertex g
1\10
canvas/inc/rendering/irendermodule.hxx:36
canvas::Vertex r
1\10
canvas/inc/rendering/irendermodule.hxx:38
canvas::Vertex z
0\10
chart2/source/controller/inc/ChartController.hxx:385
chart::ChartController m_aLifeTimeManager
0
chart2/source/controller/inc/TitleDialogData.hxx:37
chart::TitleDialogData aTextList
7
chart2/source/model/main/DataPoint.hxx:104
chart::DataPoint m_bNoParentPropAllowed
0
comphelper/source/misc/threadpool.cxx:39
comphelper gbIsWorkerThread
1
connectivity/source/inc/dbase/DIndexIter.hxx:33
connectivity::dbase::OIndexIterator m_pOperator
0
connectivity/source/inc/dbase/DIndexIter.hxx:34
connectivity::dbase::OIndexIterator m_pOperand
0
connectivity/source/inc/OColumn.hxx:41
connectivity::OColumn m_AutoIncrement
0
connectivity/source/inc/OColumn.hxx:42
connectivity::OColumn m_CaseSensitive
0
connectivity/source/inc/OColumn.hxx:43
connectivity::OColumn m_Searchable
1
connectivity/source/inc/OColumn.hxx:44
connectivity::OColumn m_Currency
0
connectivity/source/inc/OColumn.hxx:45
connectivity::OColumn m_Signed
0
connectivity/source/inc/OColumn.hxx:46
connectivity::OColumn m_ReadOnly
1
connectivity/source/inc/OColumn.hxx:47
connectivity::OColumn m_Writable
0
connectivity/source/inc/OColumn.hxx:48
connectivity::OColumn m_DefinitelyWritable
0
connectivity/source/inc/writer/WTable.hxx:43
connectivity::writer::OWriterTable m_nStartCol
0
cppu/source/uno/copy.hxx:38
cppu::(anonymous namespace)::SequencePrefix nRefCount
1
cui/source/inc/thesdlg.hxx:33
SvxThesaurusDialog m_aModifyIdle
cui SvxThesaurusDialog LookUp Modify
cui/source/options/optgdlg.cxx:988
LanguageConfig_Impl aCTLLanguageOptions
0
cui/source/options/optjava.hxx:59
SvxJavaOptionsPage m_aResetIdle
cui options SvxJavaOptionsPage Reset
db.h:567
addrinfo ai_flags
2
db.h:569
addrinfo ai_socktype
1
db.h:570
addrinfo ai_protocol
6
dbaccess/source/ui/inc/QueryTextView.hxx:35
dbaui::OQueryTextView m_timerUndoActionCreation
dbaccess OQueryTextView m_timerUndoActionCreation
dbaccess/source/ui/inc/QueryTextView.hxx:37
dbaui::OQueryTextView m_timerInvalidate
dbaccess OQueryTextView m_timerInvalidate
dbaccess/source/ui/inc/sqledit.hxx:43
dbaui::SQLEditView m_aHighlighter
1
dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx:57
dbaui::OSelectionBrowseBox m_timerInvalidate
dbaccess OSelectionBrowseBox m_timerInvalidate
dbaccess/source/ui/tabledesign/TEditControl.hxx:70
dbaui::OTableEditorCtrl::ClipboardInvalidator m_aInvalidateTimer
dbaccess ClipboardInvalidator
desktop/inc/lib/init.hxx:224
desktop::CallbackFlushHandler::PerViewIdData set
0
desktop/source/app/app.cxx:493
desktop::Desktop::Init bTryHardOfficeconfigBroken
0
desktop/source/app/cmdlineargs.hxx:135
desktop::CommandLineArgs m_quickstart
0
desktop/source/deployment/gui/license_dialog.cxx:44
dp_gui::(anonymous namespace)::LicenseDialogImpl m_aResized
desktop LicenseDialogImpl m_aResized
desktop/source/deployment/gui/license_dialog.cxx:45
dp_gui::(anonymous namespace)::LicenseDialogImpl m_aRepeat
LicenseDialogImpl m_aRepeat
drawinglayer/source/primitive2d/glowprimitive2d.cxx:209
drawinglayer::primitive2d::GlowPrimitive2D::create2DDecomposition bDoSaveForVisualControl
0
drawinglayer/source/primitive2d/sceneprimitive2d.cxx:371
drawinglayer::primitive2d::ScenePrimitive2D::create2DDecomposition bMultithreadAllowed
0
drawinglayer/source/primitive2d/sceneprimitive2d.cxx:479
drawinglayer::primitive2d::ScenePrimitive2D::create2DDecomposition bAddOutlineToCreated3DSceneRepresentation
0
drawinglayer/source/primitive2d/shadowprimitive2d.cxx:256
drawinglayer::primitive2d::ShadowPrimitive2D::create2DDecomposition bDoSaveForVisualControl
0
drawinglayer/source/primitive2d/softedgeprimitive2d.cxx:199
drawinglayer::primitive2d::SoftEdgePrimitive2D::create2DDecomposition bDoSaveForVisualControl
0
drawinglayer/source/processor2d/vclhelperbufferdevice.cxx:460
drawinglayer::impBufferDevice::paint bDoSaveForVisualControl
0
drawinglayer/source/processor2d/vclhelperbufferdevice.cxx:539
drawinglayer::impBufferDevice::paint bUseNew
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:1014
drawinglayer::processor2d::VclMetafileProcessor2D::processGraphicPrimitive2D bSuppressPDFExtOutDevDataSupport
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:1331
drawinglayer::processor2d::VclMetafileProcessor2D::processTextHierarchyParagraphPrimitive2D bSuppressPDFExtOutDevDataSupport
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:2167
drawinglayer::processor2d::VclMetafileProcessor2D::processUnifiedTransparencePrimitive2D bForceToMetafile
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:2268
drawinglayer::processor2d::VclMetafileProcessor2D::processTransparencePrimitive2D bForceToBigTransparentVDev
0
drawinglayer/source/tools/converters.cxx:225
drawinglayer::convertToBitmapEx bDoSaveForVisualControl
0
editeng/source/editeng/impedit.hxx:538
ImpEditEngine nBigTextObjectStart
20
emfio/qa/cppunit/wmf/wmfimporttest.cxx:34
WmfTest maDataUrl
/emfio/qa/cppunit/wmf/data/
emfio/source/reader/emfreader.cxx:1505
emfio::EmfReader::ReadEnhWMF bDoSaveForVisualControl
0
etype2/freetype/ftcolor.h:347
FT_LayerIterator_ p
0
etype2/freetype/ftimage.h:266
FT_Bitmap_ num_grays
256
etype2/freetype/ftimage.h:665
FT_Outline_Funcs_ shift
0
etype2/freetype/ftimage.h:666
FT_Outline_Funcs_ delta
0
extensions/source/bibliography/toolbar.hxx:145
BibToolBar aIdle
BibToolBar
external/bluez_bluetooth/inc/bluetooth/rfcomm.h:43
sockaddr_rc rc_family
31
external/bluez_bluetooth/inc/bluetooth/rfcomm.h:45
sockaddr_rc rc_channel
5
external/sane/inc/sane/sane.h:170
SANE_Parameters format
5
filter/source/msfilter/msdffimp.cxx:2694
DffPropertyReader::ApplyAttributes bCheckShadow
0
filter/source/msfilter/viscache.hxx:29
Impl_OlePres nFormat
3
framework/source/uiconfiguration/imagemanagerimpl.hxx:173
framework::ImageManagerImpl m_aResourceString
private:resource/images/moduleimages
go-1.0/pango/pango-attributes.h:309
_PangoAttribute start_index
0
go-1.0/pango/pango-attributes.h:310
_PangoAttribute end_index
2147483647
helpcompiler/inc/BasCodeTagger.hxx:27
BasicCodeTagger m_Highlighter
0
i18npool/source/localedata/localedata.cxx:52
/home/noel/libo/i18npool/source/localedata/localedata.cxx lcl_DATA_EN
localedata_en
i18npool/source/localedata/localedata.cxx:53
/home/noel/libo/i18npool/source/localedata/localedata.cxx lcl_DATA_ES
localedata_es
i18npool/source/localedata/localedata.cxx:54
/home/noel/libo/i18npool/source/localedata/localedata.cxx lcl_DATA_EURO
localedata_euro
i18npool/source/localedata/localedata.cxx:55
/home/noel/libo/i18npool/source/localedata/localedata.cxx lcl_DATA_OTHERS
localedata_others
include/basegfx/pixel/bpixel.hxx:41
basegfx::BPixel::(anonymous union)::(unnamed struct at /home/noel/libo/include/basegfx/pixel/bpixel.hxx:39:13) mnValue
0
include/basegfx/pixel/bpixel.hxx:42
basegfx::BPixel::(unnamed union at /home/noel/libo/include/basegfx/pixel/bpixel.hxx:29:9) maCombinedRGBA
0
include/basic/sbxvar.hxx:75
SbxValues::(anonymous union at /home/noel/libo/include/basic/sbxvar.hxx:43:5) pData
0
include/comphelper/parallelsort.hxx:88
comphelper::(anonymous namespace)::ProfileZone mbDummy
1
include/editeng/swafopt.hxx:59
editeng::SortedAutoCompleteStrings owning_
1
include/filter/msfilter/dffpropset.hxx:33
DffPropFlags bSet
0
include/filter/msfilter/dffpropset.hxx:34
DffPropFlags bComplex
1
include/filter/msfilter/dffpropset.hxx:35
DffPropFlags bBlip
1
include/i18nutil/casefolding.hxx:59
i18nutil::Mapping nmap
0
include/o3tl/cow_wrapper.hxx:200
o3tl::cow_wrapper::impl_t m_ref_count
1
include/o3tl/vector_pool.hxx:94
o3tl::detail::struct_from_value::type nextFree
-1
include/oox/core/contexthandler2.hxx:231
oox::core::ContextHandler2Helper mnRootStackSize
0
include/oox/dump/dumperbase.hxx:1680
oox::dump::RecordObjectBase mbBinaryOnly
0
include/oox/ole/axcontrol.hxx:426
oox::ole::ComCtlModelBase mbCommonPart
1
include/oox/ole/axcontrol.hxx:427
oox::ole::ComCtlModelBase mbComplexPart
1
include/sfx2/msg.hxx:187
SfxSlot nGroupId
0
include/sfx2/msg.hxx:191
SfxSlot nValue
0
include/sfx2/msg.hxx:196
SfxSlot pType
0
include/sfx2/msg.hxx:200
SfxSlot pFirstArgDef
0
include/sfx2/msg.hxx:201
SfxSlot nArgDefCount
0
include/svtools/ctrlbox.hxx:330
FontNameBox maUpdateIdle
FontNameBox Preview Update
include/svtools/svparser.hxx:55
SvParser pImplData
0
include/svtools/svparser.hxx:72
SvParser::TokenStackType nTokenValue
0
include/svtools/svparser.hxx:73
SvParser::TokenStackType bTokenHasValue
0
include/svtools/tabbar.hxx:323
TabBar mnOffY
0
include/svx/ctredlin.hxx:92
SvxRedlinTable aDaTiFirst
0
include/svx/ctredlin.hxx:93
SvxRedlinTable aDaTiLast
0
include/svx/deflt3d.hxx:40
E3dDefaultAttributes bDefaultCubePosIsCenter
0
include/svx/deflt3d.hxx:47
E3dDefaultAttributes bDefaultLatheSmoothed
1
include/svx/deflt3d.hxx:48
E3dDefaultAttributes bDefaultLatheSmoothFrontBack
0
include/svx/deflt3d.hxx:50
E3dDefaultAttributes bDefaultLatheCloseFront
1
include/svx/deflt3d.hxx:51
E3dDefaultAttributes bDefaultLatheCloseBack
1
include/svx/deflt3d.hxx:54
E3dDefaultAttributes bDefaultExtrudeSmoothed
1
include/svx/deflt3d.hxx:55
E3dDefaultAttributes bDefaultExtrudeSmoothFrontBack
0
include/svx/diagram/IDiagramHelper.hxx:72
svx::diagram::IDiagramHelper mbUseDiagramThemeData
0
include/svx/diagram/IDiagramHelper.hxx:77
svx::diagram::IDiagramHelper mbUseDiagramModelData
1
include/svx/diagram/IDiagramHelper.hxx:81
svx::diagram::IDiagramHelper mbForceThemePtrRecreation
0
include/svx/fontwork.hxx:77
SvxFontWorkDialog aInputIdle
SvxFontWorkDialog Input
include/svx/graphctl.hxx:53
GraphCtrl aUpdateIdle
svx GraphCtrl Update
include/svx/srchdlg.hxx:142
SvxSearchDialog m_aPresentIdle
Bring SvxSearchDialog to Foreground
include/svx/svdcrtv.hxx:50
SdrCreateView mnAutoCloseDistPix
5
include/svx/svdcrtv.hxx:51
SdrCreateView mnFreeHandMinDistPix
10
include/svx/svdmark.hxx:144
SdrMarkList mbPointNameOk
0
include/svx/svdmark.hxx:145
SdrMarkList mbGluePointNameOk
0
include/vcl/animate/Animation.hxx:105
Animation maTimer
vcl::Animation
include/vcl/menubarupdateicon.hxx:49
MenuBarUpdateIconManager maTimeoutTimer
MenuBarUpdateIconManager
include/vcl/settings.hxx:142
DialogStyle content_area_border
2
include/vcl/settings.hxx:143
DialogStyle button_spacing
6
include/vcl/settings.hxx:144
DialogStyle action_area_border
5
include/vcl/toolkit/treelistbox.hxx:208
SvTreeListBox nIndent
20
include/vcl/weldutils.hxx:410
weld::ButtonPressRepeater m_aRepeat
vcl ButtonPressRepeater m_aRepeat
inet/in.h:247
sockaddr_in sin_family
2
io/qa/textinputstream.cxx:97
(anonymous namespace)::Input open_
1
libreofficekit/source/gtk/lokdocview.cxx:86
(anonymous namespace)::LOKDocViewPrivateImpl m_bIsLoading
0
lingucomponent/source/spellcheck/languagetool/languagetoolimp.hxx:51
LanguageToolGrammarChecker mCachedResults
10
lotuswordpro/source/filter/lwppara.hxx:213
LwpPara m_AllText
oox/source/core/contexthandler2.cxx:40
oox::core::ElementInfo maChars
0
opencl/source/opencl_device.cxx:54
(anonymous namespace)::LibreOfficeDeviceEvaluationIO inputSize
15360
opencl/source/opencl_device.cxx:55
(anonymous namespace)::LibreOfficeDeviceEvaluationIO outputSize
15360
package/inc/ZipFile.hxx:56
ZipFile aInflater
1
package/source/zipapi/XUnbufferedStream.hxx:55
XUnbufferedStream maInflater
1
pyuno/source/module/pyuno_gc.cxx:30
pyuno g_destructorsOfStaticObjectsHaveBeenCalled
1
pyuno/source/module/pyuno_impl.hxx:226
pyuno::RuntimeCargo valid
1
ro/cairo.h:194
_cairo_matrix yy
1
sal/osl/unx/signal.cxx:59
(anonymous namespace)::SignalAction Action
1
sal/osl/unx/sockimpl.hxx:39
oslSocketImpl m_bIsInShutdown
1
sal/qa/osl/file/osl_File_Const.h:118
extern aPreURL
file:///
sal/qa/osl/file/osl_File_Const.h:119
extern aRootURL
file:////
sal/qa/osl/file/osl_File_Const.h:131
extern aCanURL3
ca@#;+.,$//tmp/678nonical//name
sal/qa/osl/file/osl_File_Const.h:132
extern aCanURL4
canonical.name
sal/qa/osl/file/osl_File_Const.h:144
extern aRelURL1
relative/file1
sal/qa/osl/file/osl_File_Const.h:145
extern aRelURL2
relative/./file2
sal/qa/osl/file/osl_File_Const.h:146
extern aRelURL3
relative/../file3
sal/qa/osl/file/osl_File_Const.h:168
extern aTypeURL1
file:///dev/ccv
sal/qa/osl/file/osl_File_Const.h:169
extern aTypeURL2
file:///devices/pseudo/tcp@0:tcp
sal/qa/osl/file/osl_File_Const.h:170
extern aTypeURL3
file:///lib
sal/qa/osl/file/osl_File_Const.h:185
extern aVolURL2
file:///dev/floppy/0u1440
sal/qa/osl/file/osl_File_Const.h:187
extern aVolURL3
file:///proc
sal/qa/osl/file/osl_File_Const.h:188
extern aVolURL4
file:///staroffice
sal/qa/osl/file/osl_File_Const.h:189
extern aVolURL5
file:///tmp
sal/qa/osl/file/osl_File_Const.h:190
extern aVolURL6
file:///cdrom
sal/qa/osl/process/osl_process.cxx:151
Test_osl_executeProcess env_param_
-env
sal/qa/osl/process/osl_Thread.cxx:224
(anonymous namespace)::myThread m_aFlag
0
sal/qa/osl/process/osl_Thread.cxx:264
(anonymous namespace)::OCountThread m_aFlag
0
sal/qa/osl/process/osl_Thread.cxx:327
(anonymous namespace)::ONoScheduleThread m_aFlag
0
sal/qa/osl/process/osl_Thread.cxx:368
(anonymous namespace)::OAddThread m_aFlag
0
sal/qa/rtl/process/rtl_Process_Const.h:29
extern suParam0
-join
sal/qa/rtl/process/rtl_Process_Const.h:30
extern suParam1
-with
sal/qa/rtl/process/rtl_Process_Const.h:31
extern suParam2
-child
sal/qa/rtl/process/rtl_Process_Const.h:32
extern suParam3
-process
sal/qa/rtl/strings/test_ostring_stringliterals.cxx:22
/home/noel/libo/sal/qa/rtl/strings/test_ostring_stringliterals.cxx rtl_string_unittest_non_const_literal_function
0
sal/qa/rtl/strings/test_strings_replace.cxx:24
(anonymous) s_bar
bar
sal/qa/rtl/strings/test_strings_replace.cxx:25
(anonymous) s_bars
bars
sal/qa/rtl/strings/test_strings_replace.cxx:26
(anonymous) s_foo
foo
sal/qa/rtl/strings/test_strings_replace.cxx:27
(anonymous) s_other
other
sal/qa/rtl/strings/test_strings_replace.cxx:28
(anonymous) s_xa
xa
sal/qa/rtl/strings/test_strings_replace.cxx:29
(anonymous) s_xx
xx
sax/source/tools/fastserializer.hxx:232
sax_fastparser::FastSaxSerializer mbXescape
1
sc/inc/cellvalue.hxx:111
ScRefCellValue
0\10
sc/inc/cellvalue.hxx:112
ScRefCellValue::(anonymous union at /home/noel/libo/sc/inc/cellvalue.hxx:111:5) mfValue
0\10
sc/inc/compiler.hxx:117
ScRawToken::(anonymous union)::(unnamed struct at /home/noel/libo/sc/inc/compiler.hxx:115:9) eInForceArray
0
sc/inc/drwlayer.hxx:231
/home/noel/libo/sc/source/core/data/drwlayer.cxx bDrawIsInUndo
0
sc/inc/global.hxx:924
/home/noel/libo/sc/source/core/data/global.cxx pScActiveViewShell
0
sc/inc/global.hxx:925
/home/noel/libo/sc/source/core/data/global.cxx nScClickMouseModifier
0
sc/inc/global.hxx:926
/home/noel/libo/sc/source/core/data/global.cxx nScFillModeMouseModifier
0
sc/inc/markmulti.hxx:81
ScMultiSelIter aMarkArrayIter
0
sc/inc/refdata.hxx:38
ScSingleRefData::(anonymous union at /home/noel/libo/sc/inc/refdata.hxx:36:5) mnFlagValue
0
sc/inc/table.hxx:190
ScTable mpRowHeights
0
sc/qa/extras/sccheck_data_pilot_field.cxx:59
sc_apitest::CheckDataPilotField mMaxFieldIndex
6
sc/qa/unit/helper/qahelper.hxx:65
RangeNameDef mnIndex
1
sc/qa/unit/screenshots/screenshots.cxx:40
ScScreenshotTest mCsv
some, strings, here, separated, by, commas
sc/source/core/data/queryiter.cxx:1151
ScQueryCellIteratorAccessSpecific<ScQueryCellIteratorAccess::SortedCache>::SortedCacheIndexer mLowIndex
0
sc/source/core/inc/parclass.hxx:93
ScParameterClassification::RunData bHasForceArray
1
sc/source/core/inc/sharedstringpoolpurge.hxx:42
sc::SharedStringPoolPurge mTimer
SharedStringPoolPurge
sc/source/core/tool/scmatrix.cxx:346
/home/noel/libo/sc/source/core/tool/scmatrix.cxx bElementsMaxFetched
1
sc/source/filter/inc/extlstcontext.hxx:19
/home/noel/libo/sc/source/filter/oox/condformatbuffer.cxx rStyleIdx
0
sc/source/filter/inc/orcusinterface.hxx:186
ScOrcusConditionalFormat meEntryType
0
sc/source/filter/inc/xltracer.hxx:81
XclTracer mbEnabled
0
sc/source/ui/inc/viewdata.hxx:288
ScViewData aLogicMode
0
sc/source/ui/inc/viewfunc.hxx:382
/home/noel/libo/sc/source/ui/view/viewfun7.cxx bPasteIsMove
0
sccomp/source/solver/SwarmSolver.cxx:124
(anonymous namespace)::SwarmSolver mfResultValue
0\10
sd/source/filter/html/htmlex.hxx:117
HtmlExport mbAutoSlide
1
sd/source/ui/inc/CustomAnimationPane.hxx:144
sd::CustomAnimationPane maIdle
sd idle treeview select
sd/source/ui/inc/View.hxx:271
sd::View maDropErrorIdle
sd View DropError
sd/source/ui/inc/View.hxx:272
sd::View maDropInsertFileIdle
sd View DropInsertFile
sd/source/ui/inc/WindowUpdater.hxx:97
sd::WindowUpdater maCTLOptions
0
sd/source/ui/presenter/SlideRenderer.hxx:78
sd::presenter::SlideRenderer maPreviewRenderer
1
sd/source/ui/slidesorter/cache/SlsBitmapFactory.hxx:41
sd::slidesorter::cache::BitmapFactory maRenderer
0
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:91
sd::slidesorter::controller::Animator maIdle
sd slidesorter controller Animator
sdext/source/minimizer/optimizerdialog.hxx:191
OptimizerDialog mnCurrentStep
0
sdext/source/minimizer/optimizerdialog.hxx:192
OptimizerDialog mnTabIndex
0
sdext/source/pdfimport/pdfparse/pdfparse.cxx:61
(anonymous namespace)::StringEmitContext m_aBuf
256
sfx2/inc/autoredactdialog.hxx:102
SfxAutoRedactDialog m_bIsValidState
1
sfx2/source/appl/lnkbase2.cxx:61
sfx2::ImplBaseLinkData::tDDEType pItem
0
sfx2/source/appl/lnkbase2.cxx:66
sfx2::ImplBaseLinkData::(anonymous union at /home/noel/libo/sfx2/source/appl/lnkbase2.cxx:64:5) DDEType
0
sfx2/source/appl/lnkbase2.cxx:85
sfx2::(anonymous namespace)::ImplDdeItem bIsInDTOR
1
sfx2/source/appl/newhelp.hxx:94
IndexTabPage_Impl aFactoryIdle
sfx2 appl IndexTabPage_Impl Factory
sfx2/source/appl/newhelp.hxx:95
IndexTabPage_Impl aAutoCompleteIdle
sfx2 appl IndexTabPage_Impl AutoComplete
sfx2/source/appl/newhelp.hxx:228
SfxHelpIndexWindow_Impl aIdle
sfx2 appl SfxHelpIndexWindow_Impl
sfx2/source/appl/newhelp.hxx:348
SfxHelpTextWindow_Impl aSelectIdle
sfx2 appl SfxHelpTextWindow_Impl Select
slideshow/source/engine/slideshowimpl.cxx:476
(anonymous namespace)::SlideShowImpl maFrameSynchronization
0.02\10
solenv/lockfile/dotlockfile.c:44
/home/noel/libo/solenv/lockfile/dotlockfile.c quiet
1
soltools/cpp/_cpp.c:31
/home/noel/libo/soltools/cpp/_cpp.c nerrs
1
soltools/cpp/_eval.c:742
tokval cvlen
20
soltools/cpp/_macro.c:172
doadefine onestr
1
soltools/cpp/cpp.h:120
includelist deleted
1
soltools/mkdepend/def.h:116
inclist i_notified
1
soltools/mkdepend/def.h:118
inclist i_searched
1
soltools/mkdepend/def.h:185
/home/noel/libo/soltools/mkdepend/pr.c printed
1
soltools/mkdepend/def.h:185
/home/noel/libo/soltools/mkdepend/main.c printed
0
soltools/mkdepend/def.h:189
/home/noel/libo/soltools/mkdepend/main.c show_where_not
0
starmath/inc/cfgitem.hxx:105
SmMathConfig vFontPickList
5
stoc/source/corereflection/lrucache.hxx:52
LRU_Cache _pBlock
0
stoc/source/inspect/introspection.cxx:1509
(anonymous namespace)::Cache::Data hits
1
stoc/source/security/access_controller.cxx:67
(anonymous) s_envType
gcc3
stoc/source/security/access_controller.cxx:302
(anonymous namespace)::AccessController m_rec
0
stoc/source/security/lru_cache.h:54
stoc_sec::lru_cache m_block
0
svl/source/crypto/cryptosign.cxx:139
(anonymous namespace)::TimeStampReq extensions
0
svx/source/dialog/imapimp.hxx:33
IMapOwnData aIdle
svx IMapOwnData
svx/source/inc/fmtextcontrolshell.hxx:109
svx::FmTextControlShell m_aClipboardInvalidation
svx FmTextControlShell m_aClipboardInvalidation
svx/source/inc/StylesPreviewWindow.hxx:60
StyleItemController m_eStyleFamily
2
svx/source/sdr/contact/viewcontactofsdrpage.cxx:104
sdr::contact::ViewContactOfPageShadow::createViewIndependentPrimitive2DSequence bUseOldPageShadow
0
svx/source/sidebar/media/MediaPlaybackPanel.hxx:58
svx::sidebar::MediaPlaybackPanel maIdle
MediaPlaybackPanel
svx/source/tbxctrls/lboxctrl.cxx:51
SvxPopupWindowListBox m_nVisRows
10
svx/source/unodraw/recoveryui.cxx:64
(anonymous namespace)::RecoveryUI m_pParentWindow
0
sw/inc/authfld.hxx:157
SwAuthorityField m_nTempSequencePos
-1
sw/inc/authfld.hxx:158
SwAuthorityField m_nTempSequencePosRLHidden
-1
sw/inc/checkit.hxx:38
/home/noel/libo/sw/source/core/bastyp/init.cxx pCheckIt
0
sw/inc/dbgoutsw.hxx:51
/home/noel/libo/sw/source/core/doc/dbgoutsw.cxx bDbgOutStdErr
0
sw/inc/dbgoutsw.hxx:52
/home/noel/libo/sw/source/core/doc/dbgoutsw.cxx bDbgOutPrintAttrSet
0
sw/inc/ftninfo.hxx:46
SwEndNoteInfo m_aFormat
4
sw/inc/hints.hxx:308
SwAttrSetChg m_bDelSet
0
sw/inc/modcfg.hxx:210
SwModuleOptions m_aWebInsertConfig
1
sw/inc/modcfg.hxx:213
SwModuleOptions m_aWebTableConfig
1
sw/inc/swmodule.hxx:266
/home/noel/libo/sw/source/core/frmedt/feshview.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:266
/home/noel/libo/sw/source/uibase/app/swmodule.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:266
/home/noel/libo/sw/source/uibase/docvw/edtdd.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:266
/home/noel/libo/sw/source/uibase/ribbar/conform.cxx g_bNoInterrupt
1
sw/inc/textboxhelper.hxx:211
SwTextBoxNode m_bIsCloningInProgress
0
sw/inc/view.hxx:202
SwView m_pHScrollbar
0
sw/inc/view.hxx:203
SwView m_pVScrollbar
0
sw/inc/view.hxx:724
/home/noel/libo/sw/source/uibase/uiview/viewport.cxx bDocSzUpdated
0
sw/inc/view.hxx:724
/home/noel/libo/sw/source/uibase/uiview/view.cxx bDocSzUpdated
1
sw/inc/viewopt.hxx:50
ViewOptFlags1 bRef
1
sw/inc/viewopt.hxx:263
SwViewOption m_bTest10
0
sw/qa/extras/tiledrendering/tiledrendering.cxx:406
testGetTextSelectionLineLimit::TestBody sExpectedHtml
Estonian employs the <a href="https://en.wikipedia.org/wiki/Latin_script">Latin script</a> as the basis for <a href="https://en.wikipedia.org/wiki/Estonian_alphabet">its alphabet</a>, which adds the letters <a href="https://en.wikipedia.org/wiki/%C3%84"><i>\-61\-92</i></a>, <a href="https://en.wikipedia.org/wiki/%C3%96"><i>\-61\-74</i></a>, <a href="https://en.wikipedia.org/wiki/%C3%9C"><i>\-61\-68</i></a>, and <a href="https://en.wikipedia.org/wiki/%C3%95"><i>\-61\-75</i></a>, plus the later additions <a href="https://en.wikipedia.org/wiki/%C5%A0"><i>\-59\-95</i></a> and <a href="https://en.wikipedia.org/wiki/%C5%BD"><i>\-59\-66</i></a>. The letters <i>c</i>, <i>q</i>, <i>w</i>, <i>x</i> and <i>y</i> are limited to <a href="https://en.wikipedia.org/wiki/Proper_names">proper names</a> of foreign origin, and <i>f</i>, <i>z</i>, <i>\-59\-95</i>, and <i>\-59\-66</i> appear in loanwords and foreign names only. <i>\-61\-106</i> and <i>\-61\-100</i> are pronounced similarly to their equivalents in Swedish and German. Unlike in standard German but like Swedish (when followed by 'r') and Finnish, <i>\-61\-124</i> is pronounced [\-61\-90], as in English <i>mat</i>. The vowels \-61\-124, \-61\-106 and \-61\-100 are clearly separate <a href="https://en.wikipedia.org/wiki/Phonemes">phonemes</a> and inherent in Estonian, although the letter shapes come from German. The letter <a href="https://en.wikipedia.org/wiki/%C3%95"><i>\-61\-75</i></a> denotes /\-55\-92/, unrounded /o/, or a <a href="https://en.wikipedia.org/wiki/Close-mid_back_unrounded_vowel">close-mid back unrounded vowel</a>. It is almost identical to the <a href="https://en.wikipedia.org/wiki/Bulgarian_language">Bulgarian</a> <a href="https://en.wikipedia.org/wiki/%D0%AA">\-47\-118</a> /\-55\-92\-52\-98/ and the <a href="https://en.wikipedia.org/wiki/Vietnamese_language">Vietnamese</a> <a href="https://en.wikipedia.org/wiki/%C6%A0">\-58\-95</a>, and is also used to transcribe the Russian <a href="https://en.wikipedia.org/wiki/%D0%AB">\-47\-117</a>.
sw/source/core/bastyp/calc.cxx:101
CalcOp eOp
0
sw/source/core/doc/docredln.cxx:73
sw_DebugRedline nWatch
0
sw/source/core/inc/fntcache.hxx:57
/home/noel/libo/sw/source/core/txtnode/fntcache.cxx pFntCache
0
sw/source/core/inc/fntcache.hxx:58
/home/noel/libo/sw/source/core/txtnode/fntcache.cxx pLastFont
0
sw/source/core/inc/frmtool.hxx:154
/home/noel/libo/sw/source/core/layout/frmtool.cxx bSetCompletePaintOnInvalidate
0
sw/source/core/inc/noteurl.hxx:28
/home/noel/libo/sw/source/core/text/noteurl.cxx pNoteURL
0
sw/source/core/inc/swfntcch.hxx:43
/home/noel/libo/sw/source/core/txtnode/swfntcch.cxx pSwFontCache
0
sw/source/core/inc/txtfly.hxx:46
/home/noel/libo/sw/source/core/text/txtinit.cxx pContourCache
0
sw/source/core/inc/UndoSort.hxx:39
SwSortUndoElement::(anonymous union)::(unnamed struct at /home/noel/libo/sw/source/core/inc/UndoSort.hxx:38:9) nID
4294967295
sw/source/core/inc/UndoSplitMove.hxx:57
SwUndoMove m_bJoinNext
0
sw/source/core/layout/flylay.cxx:304
SwFlyFreeFrame::supportsAutoContour bOverrideHandleContourToAlwaysOff
1
sw/source/core/ole/ndole.cxx:1131
SwOLEObj::tryToGetChartContentAsPrimitive2DSequence bAsynchronousLoadingAllowed
0
sw/source/core/text/pordrop.hxx:32
/home/noel/libo/sw/source/core/text/txtinit.cxx pDropCapCache
0
sw/source/filter/inc/rtf.hxx:31
RTFSurround::(anonymous union)::(unnamed struct at /home/noel/libo/sw/source/filter/inc/rtf.hxx:27:9) nJunk
0
sw/source/filter/ww8/ww8par3.cxx:342
(anonymous namespace)::WW8LST bSimpleList
1
sw/source/filter/ww8/ww8par3.cxx:343
(anonymous namespace)::WW8LST bRestartHdn
1
sw/source/filter/ww8/ww8par3.cxx:377
(anonymous namespace)::WW8LVL bV6Prev
1
sw/source/filter/ww8/ww8par3.cxx:378
(anonymous namespace)::WW8LVL bV6PrSp
1
sw/source/filter/ww8/ww8par3.cxx:379
(anonymous namespace)::WW8LVL bV6
1
sw/source/filter/ww8/ww8par5.cxx:1600
SwWW8ImplReader::Read_F_DocInfo aName10
\15
sw/source/filter/ww8/ww8par5.cxx:1601
SwWW8ImplReader::Read_F_DocInfo aName11
TITEL
sw/source/filter/ww8/ww8par5.cxx:1603
SwWW8ImplReader::Read_F_DocInfo aName12
TITRE
sw/source/filter/ww8/ww8par5.cxx:1605
SwWW8ImplReader::Read_F_DocInfo aName13
TITLE
sw/source/filter/ww8/ww8par5.cxx:1607
SwWW8ImplReader::Read_F_DocInfo aName14
TITRO
sw/source/filter/ww8/ww8par5.cxx:1609
SwWW8ImplReader::Read_F_DocInfo aName20
\21
sw/source/filter/ww8/ww8par5.cxx:1610
SwWW8ImplReader::Read_F_DocInfo aName21
ERSTELLDATUM
sw/source/filter/ww8/ww8par5.cxx:1612
SwWW8ImplReader::Read_F_DocInfo aName22
CR\-55\-55
sw/source/filter/ww8/ww8par5.cxx:1614
SwWW8ImplReader::Read_F_DocInfo aName23
CREATED
sw/source/filter/ww8/ww8par5.cxx:1616
SwWW8ImplReader::Read_F_DocInfo aName24
CREADO
sw/source/filter/ww8/ww8par5.cxx:1618
SwWW8ImplReader::Read_F_DocInfo aName30
\22
sw/source/filter/ww8/ww8par5.cxx:1619
SwWW8ImplReader::Read_F_DocInfo aName31
ZULETZTGESPEICHERTZEIT
sw/source/filter/ww8/ww8par5.cxx:1621
SwWW8ImplReader::Read_F_DocInfo aName32
DERNIERENREGISTREMENT
sw/source/filter/ww8/ww8par5.cxx:1623
SwWW8ImplReader::Read_F_DocInfo aName33
SAVED
sw/source/filter/ww8/ww8par5.cxx:1625
SwWW8ImplReader::Read_F_DocInfo aName34
MODIFICADO
sw/source/filter/ww8/ww8par5.cxx:1627
SwWW8ImplReader::Read_F_DocInfo aName40
\23
sw/source/filter/ww8/ww8par5.cxx:1628
SwWW8ImplReader::Read_F_DocInfo aName41
ZULETZTGEDRUCKT
sw/source/filter/ww8/ww8par5.cxx:1630
SwWW8ImplReader::Read_F_DocInfo aName42
DERNI\-56REIMPRESSION
sw/source/filter/ww8/ww8par5.cxx:1632
SwWW8ImplReader::Read_F_DocInfo aName43
LASTPRINTED
sw/source/filter/ww8/ww8par5.cxx:1634
SwWW8ImplReader::Read_F_DocInfo aName44
HUPS PUPS
sw/source/filter/ww8/ww8par5.cxx:1636
SwWW8ImplReader::Read_F_DocInfo aName50
\24
sw/source/filter/ww8/ww8par5.cxx:1637
SwWW8ImplReader::Read_F_DocInfo aName51
\-36BERARBEITUNGSNUMMER
sw/source/filter/ww8/ww8par5.cxx:1639
SwWW8ImplReader::Read_F_DocInfo aName52
NUM\-55RODEREVISION
sw/source/filter/ww8/ww8par5.cxx:1641
SwWW8ImplReader::Read_F_DocInfo aName53
REVISIONNUMBER
sw/source/filter/ww8/ww8par5.cxx:1643
SwWW8ImplReader::Read_F_DocInfo aName54
SNUBBEL BUBBEL
sw/source/filter/ww8/ww8par.hxx:659
WW8FormulaControl mfUnknown
0
sw/source/filter/ww8/ww8par.hxx:666
WW8FormulaControl mhpsCheckBox
20
sw/source/filter/ww8/ww8par.hxx:1062
WW8TabBandDesc bCantSplit90
0
sw/source/filter/ww8/ww8scan.hxx:1166
WW8Fib m_fObfuscated
0
sw/source/filter/ww8/ww8scan.hxx:1512
WW8Fib m_fcPlcffactoid
0
sw/source/filter/ww8/ww8scan.hxx:1514
WW8Fib m_lcbPlcffactoid
0
sw/source/filter/ww8/ww8scan.hxx:1519
WW8Fib m_lcbHplxsdr
0
sw/source/filter/ww8/ww8struc.hxx:542
WW8_TCell fUnused
0
sw/source/filter/ww8/ww8struc.hxx:899
WW8_TablePos nSp37
2
sw/source/ui/envelp/labfmt.hxx:67
SwLabFormatPage m_aPreviewIdle
SwLabFormatPage Preview
sw/source/uibase/inc/edtdd.hxx:15
/home/noel/libo/sw/source/uibase/docvw/edtwin.cxx g_bExecuteDrag
0
sw/source/uibase/inc/edtwin.hxx:76
SwEditWin m_aTimer
SwEditWin
sw/source/uibase/inc/edtwin.hxx:298
/home/noel/libo/sw/source/uibase/docvw/edtdd.cxx g_bFrameDrag
0
sw/source/uibase/inc/edtwin.hxx:299
/home/noel/libo/sw/source/uibase/docvw/edtwin.cxx g_bDDTimerStarted
0
sw/source/uibase/inc/edtwin.hxx:300
/home/noel/libo/sw/source/uibase/dochdl/swdtflvr.cxx g_bDDINetAttr
1
sw/source/uibase/inc/edtwin.hxx:300
/home/noel/libo/sw/source/uibase/docvw/edtwin.cxx g_bDDINetAttr
0
sw/source/uibase/inc/instable.hxx:45
SwInsTableDlg minTableIndexInLb
1
sw/source/uibase/inc/pview.hxx:178
SwPagePreview m_pHScrollbar
0
sw/source/uibase/inc/pview.hxx:179
SwPagePreview m_pVScrollbar
0
sw/source/uibase/inc/srcedtw.hxx:85
SwSrcEditWindow m_aSyntaxIdle
sw uibase SwSrcEditWindow Syntax
sw/source/uibase/inc/unotools.hxx:50
SwOneExampleFrame m_aLoadedIdle
sw uibase SwOneExampleFrame Loaded
sw/source/uibase/inc/workctrl.hxx:120
NavElementBox_Base m_bRelease
1
tconfig/fontconfig.h:261
_FcValue type
3
ucb/source/ucp/webdav-curl/DAVResourceAccess.hxx:55
http_dav_ucp::DAVResourceAccess m_nRedirectLimit
5
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:322
(anonymous namespace)::WebDAVResponseParser maLockType
0
unotest/source/cpp/macros_test.cxx:181
unotest::(anonymous namespace)::Valid now
0
vcl/inc/impfontcache.hxx:75
ImplFontCache m_aBoundRectCache
3000
vcl/inc/pdf/pdfwriter_impl.hxx:816
vcl::PDFWriterImpl m_DocDigest
0
vcl/inc/salinst.hxx:83
SalInstance m_bSupportsBitmap32
0
vcl/inc/salprn.hxx:43
SalPrinterQueueInfo mnStatus
0
vcl/inc/salprn.hxx:44
SalPrinterQueueInfo mnJobs
4294967295
vcl/inc/salwtype.hxx:171
SalWheelMouseEvent mbDeltaIsPixel
0
vcl/inc/sft.hxx:177
vcl::TTGlobalFontInfo_ fsSelection
0
vcl/inc/svdata.hxx:323
ImplSVNWFData mbMenuBarDockingAreaCommonBG
0
vcl/inc/svdata.hxx:330
ImplSVNWFData mbNoFrameJunctionForPopups
0
vcl/qa/cppunit/png/PngFilterTest.cxx:157
PngFilterTest maDataUrl
/vcl/qa/cppunit/png/data/
vcl/qa/cppunit/svm/svmtest.cxx:42
SvmTest maDataUrl
/vcl/qa/cppunit/svm/data/
vcl/source/app/salvtables.cxx:248
SalFlashAttention m_aFlashTimer
SalFlashAttention
vcl/source/bitmap/bitmap.cxx:163
Bitmap::~Bitmap save
0
vcl/source/bitmap/dibtools.cxx:52
(anonymous namespace)::CIEXYZ aXyzX
0
vcl/source/bitmap/dibtools.cxx:53
(anonymous namespace)::CIEXYZ aXyzY
0
vcl/source/bitmap/dibtools.cxx:54
(anonymous namespace)::CIEXYZ aXyzZ
0
vcl/source/bitmap/dibtools.cxx:107
(anonymous namespace)::DIBV5Header nV5AlphaMask
0
vcl/source/bitmap/dibtools.cxx:110
(anonymous namespace)::DIBV5Header nV5GammaRed
0
vcl/source/bitmap/dibtools.cxx:111
(anonymous namespace)::DIBV5Header nV5GammaGreen
0
vcl/source/bitmap/dibtools.cxx:112
(anonymous namespace)::DIBV5Header nV5GammaBlue
0
vcl/source/bitmap/dibtools.cxx:114
(anonymous namespace)::DIBV5Header nV5ProfileData
0
vcl/source/bitmap/dibtools.cxx:115
(anonymous namespace)::DIBV5Header nV5ProfileSize
0
vcl/source/bitmap/dibtools.cxx:116
(anonymous namespace)::DIBV5Header nV5Reserved
0
vcl/source/control/quickselectionengine.cxx:38
vcl::QuickSelectionEngine_Data aSearchTimeout
vcl::QuickSelectionEngine_Data aSearchTimeout
vcl/source/control/roadmapwizard.cxx:60
vcl::RoadmapWizardImpl pRoadmap
0
vcl/source/filter/jpeg/transupp.h:128
jpeg_transform_info perfect
0
vcl/source/filter/jpeg/transupp.h:129
jpeg_transform_info trim
0
vcl/source/filter/jpeg/transupp.h:130
jpeg_transform_info force_grayscale
0
vcl/source/filter/jpeg/transupp.h:131
jpeg_transform_info crop
0
vcl/source/filter/jpeg/transupp.h:147
jpeg_transform_info crop_xoffset
0
vcl/source/filter/jpeg/transupp.h:149
jpeg_transform_info crop_yoffset
0
vcl/source/font/font.cxx:773
(anonymous namespace)::WeightSearchEntry weight
5
vcl/source/outdev/textline.cxx:97
(anonymous namespace)::WavyLineCache m_aItems
10
vcl/unx/generic/fontmanager/fontconfig.cxx:127
(anonymous namespace)::CachedFontConfigFontOptions lru_options_cache
10
vcl/unx/gtk3/a11y/atkutil.cxx:619
ooo_atk_util_ensure_event_listener bInited
1
vcl/unx/gtk3/gtkinst.cxx:23204
(anonymous namespace)::ensure_intercept_drawing_area_accessibility bDone
1
vcl/unx/gtk3/gtkinst.cxx:23232
(anonymous namespace)::ensure_disable_ctrl_page_up_down_bindings bDone
1
writerfilter/source/dmapper/DomainMapper_Impl.hxx:169
writerfilter::dmapper::FieldParagraph m_bRemove
0
writerfilter/source/dmapper/SettingsTable.cxx:99
writerfilter::dmapper::SettingsTable_Impl m_pThemeFontLangProps
3
writerfilter/source/rtftok/rtfcharsets.hxx:21
writerfilter::rtftok nRTFEncodings
31
writerfilter/source/rtftok/rtfdocumentimpl.hxx:889
writerfilter::rtftok::RTFDocumentImpl m_nNestedTRLeft
0
writerfilter/source/rtftok/rtfdocumentimpl.hxx:890
writerfilter::rtftok::RTFDocumentImpl m_nTopLevelTRLeft
0
writerfilter/source/rtftok/rtfdocumentimpl.hxx:893
writerfilter::rtftok::RTFDocumentImpl m_nNestedCurrentCellX
0
writerfilter/source/rtftok/rtftokenizer.hxx:60
writerfilter::rtftok::RTFTokenizer s_bControlWordsInitialised
1
writerfilter/source/rtftok/rtftokenizer.hxx:63
writerfilter::rtftok::RTFTokenizer s_bMathControlWordsSorted
1
xml2/libxml/parser.h:263
_xmlParserCtxt recovery
1
xml2/libxml/parser.h:749
_xmlSAXHandler initialized
3740122799
xmloff/source/style/prstylei.cxx:271
XMLPropStyleContext::CreateAndInsert s_FillStyle
FillStyle
xmloff/source/text/XMLIndexTemplateContext.hxx:56
/home/noel/libo/xmloff/source/text/XMLIndexTemplateContext.cxx aLevelNameTableMap
0
xslt/xsltInternals.h:1704
_xsltTransformContext state
2
|