blob: f7ff385efe8a2c82c024b22c8b998158d278c300 (
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
|
avmedia/inc/mediacontrol.hxx:74
avmedia::MediaControl maIdle
avmedia MediaControl Idle
avmedia/source/framework/soundhandler.hxx:123
avmedia::SoundHandler m_aUpdateIdle
avmedia SoundHandler Update
basctl/source/basicide/baside2.hxx:88
basctl::EditorWindow aHighlighter
0
basctl/source/inc/bastype2.hxx:182
basctl::TreeListBox nMode
7
basctl/source/inc/dlged.hxx:132
basctl::DlgEditor aMarkIdle
basctl DlgEditor Mark
binaryurp/source/proxy.hxx:81
binaryurp::Proxy references_
1
binaryurp/source/writerstate.hxx:41
binaryurp::WriterState typeCache
256
binaryurp/source/writerstate.hxx:43
binaryurp::WriterState oidCache
256
binaryurp/source/writerstate.hxx:45
binaryurp::WriterState tidCache
256
bridges/inc/bridge.hxx:90
bridges::cpp_uno::shared::Bridge nRef
1
bridges/inc/cppinterfaceproxy.hxx:90
bridges::cpp_uno::shared::CppInterfaceProxy nRef
1
bridges/inc/unointerfaceproxy.hxx:86
bridges::cpp_uno::shared::UnoInterfaceProxy nRef
1
bridges/source/jni_uno/jni_bridge.h:53
jni_uno::Bridge m_ref
1
bridges/source/jni_uno/jni_uno2java.cxx:389
jni_uno::UNO_proxy m_ref
1
chart2/source/controller/dialogs/DataBrowser.cxx:211
chart::impl::SeriesHeader m_aUpdateDataTimer
UpdateDataTimer
chart2/source/controller/dialogs/DataBrowser.hxx:161
chart::DataBrowser m_bLiveUpdate
1
chart2/source/controller/inc/ChartController.hxx:382
chart::ChartController m_aLifeTimeManager
0
chart2/source/controller/inc/TitleDialogData.hxx:34
chart::TitleDialogData aPossibilityList
7
chart2/source/controller/inc/TitleDialogData.hxx:35
chart::TitleDialogData aExistenceList
7
chart2/source/controller/inc/TitleDialogData.hxx:36
chart::TitleDialogData aTextList
7
chart2/source/model/main/DataPoint.hxx:108
chart::DataPoint m_bNoParentPropAllowed
0
comphelper/source/misc/threadpool.cxx:39
comphelper gbIsWorkerThread
1
connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.hxx:43
connectivity::mysqlc::MySqlFieldInfo length
0
connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.hxx:44
connectivity::mysqlc::MySqlFieldInfo type
0
connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.hxx:45
connectivity::mysqlc::MySqlFieldInfo mysql_type
0
connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.hxx:46
connectivity::mysqlc::MySqlFieldInfo charsetNumber
0
connectivity/source/drivers/mysqlc/mysqlc_resultsetmetadata.hxx:47
connectivity::mysqlc::MySqlFieldInfo flags
0
connectivity/source/inc/dbase/DIndexIter.hxx:36
connectivity::dbase::OIndexIterator m_pOperator
0
connectivity/source/inc/dbase/DIndexIter.hxx:37
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:65
connectivity::writer::OWriterTable m_nStartCol
0
cppu/source/uno/copy.hxx:39
cppu::(anonymous namespace)::SequencePrefix nRefCount
1
cui/source/inc/acccfg.hxx:96
SfxAcceleratorConfigPage m_aUpdateDataTimer
UpdateDataTimer
cui/source/inc/cfg.hxx:357
SvxConfigPage m_aUpdateDataTimer
UpdateDataTimer
cui/source/inc/linkdlg.hxx:46
SvBaseLinksDlg aUpdateIdle
cui SvBaseLinksDlg UpdateIdle
cui/source/inc/thesdlg.hxx:32
SvxThesaurusDialog m_aModifyIdle
cui SvxThesaurusDialog LookUp Modify
cui/source/options/optgdlg.cxx:1054
LanguageConfig_Impl aLanguageOptions
0
cui/source/options/optjava.hxx:60
SvxJavaOptionsPage m_aResetIdle
cui options SvxJavaOptionsPage Reset
dbaccess/source/ui/inc/directsql.hxx:64
dbaui::DirectSQLDialog m_aHighlighter
1
dbaccess/source/ui/inc/indexdialog.hxx:43
dbaui::DbaIndexDialog m_bEditingActive
0
desktop/source/app/app.cxx:503
desktop::Desktop::Init bTryHardOfficeconfigBroken
0
desktop/source/app/cmdlineargs.hxx:137
desktop::CommandLineArgs m_quickstart
0
drawinglayer/source/primitive2d/sceneprimitive2d.cxx:375
drawinglayer::primitive2d::ScenePrimitive2D::create2DDecomposition bMultithreadAllowed
0
drawinglayer/source/primitive2d/sceneprimitive2d.cxx:479
drawinglayer::primitive2d::ScenePrimitive2D::create2DDecomposition bAddOutlineToCreated3DSceneRepresentation
0
drawinglayer/source/processor2d/vclhelperbufferdevice.cxx:332
drawinglayer::impBufferDevice::paint bDoSaveForVisualControl
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:947
drawinglayer::processor2d::VclMetafileProcessor2D::processGraphicPrimitive2D bSuppressPDFExtOutDevDataSupport
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:1279
drawinglayer::processor2d::VclMetafileProcessor2D::processTextHierarchyParagraphPrimitive2D bSuppressPDFExtOutDevDataSupport
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:2046
drawinglayer::processor2d::VclMetafileProcessor2D::processUnifiedTransparencePrimitive2D bForceToMetafile
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:2140
drawinglayer::processor2d::VclMetafileProcessor2D::processTransparencePrimitive2D bForceToBigTransparentVDev
0
drawinglayer/source/tools/converters.cxx:91
drawinglayer::convertToBitmapEx bDoSaveForVisualControl
0
editeng/source/editeng/impedit.hxx:477
ImpEditEngine nBigTextObjectStart
20
emfio/source/reader/emfreader.cxx:1376
emfio::EmfReader::ReadEnhWMF bDoSaveForVisualControl
0
extensions/source/bibliography/bibcont.hxx:70
BibBookContainer aIdle
extensions BibBookContainer Split Idle
extensions/source/propctrlr/browserline.hxx:60
pcr::OBrowserLine m_pBrowseButton
0
extensions/source/propctrlr/browserline.hxx:61
pcr::OBrowserLine m_pAdditionalBrowseButton
0
filter/source/msfilter/msdffimp.cxx:2704
DffPropertyReader::ApplyAttributes bCheckShadow
0
filter/source/msfilter/viscache.hxx:30
Impl_OlePres nFormat
3
fpicker/source/office/commonpicker.hxx:66
svt::OCommonPicker m_pDlg
0
framework/source/services/autorecovery.cxx:391
(anonymous namespace)::AutoRecovery m_aTimer
Auto save timer
framework/source/uiconfiguration/imagemanagerimpl.hxx:182
framework::ImageManagerImpl m_aResourceString
private:resource/images/moduleimages
helpcompiler/inc/BasCodeTagger.hxx:29
BasicCodeTagger m_Highlighter
0
i18npool/source/localedata/localedata.cxx:51
/media/disk2/libo4/i18npool/source/localedata/localedata.cxx lcl_DATA_EN
localedata_en
i18npool/source/localedata/localedata.cxx:52
/media/disk2/libo4/i18npool/source/localedata/localedata.cxx lcl_DATA_ES
localedata_es
i18npool/source/localedata/localedata.cxx:53
/media/disk2/libo4/i18npool/source/localedata/localedata.cxx lcl_DATA_EURO
localedata_euro
i18npool/source/localedata/localedata.cxx:54
/media/disk2/libo4/i18npool/source/localedata/localedata.cxx lcl_DATA_OTHERS
localedata_others
idlc/source/idlccompile.cxx:50
/media/disk2/libo4/idlc/source/idlccompile.cxx yydebug
0
include/basegfx/pixel/bpixel.hxx:42
basegfx::BPixel::(anonymous union)::(anonymous) mnValue
0
include/basegfx/pixel/bpixel.hxx:43
basegfx::BPixel::(anonymous) maCombinedRGBO
0
include/basic/sbxvar.hxx:73
SbxValues::(anonymous) pData
0
include/canvas/rendering/irendermodule.hxx:36
canvas::Vertex g
1
include/canvas/rendering/irendermodule.hxx:36
canvas::Vertex r
1
include/canvas/rendering/irendermodule.hxx:36
canvas::Vertex b
1
include/canvas/rendering/irendermodule.hxx:38
canvas::Vertex z
0
include/comphelper/parallelsort.hxx:89
comphelper::(anonymous namespace)::ProfileZone mbDummy
1
include/editeng/swafopt.hxx:58
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:57
i18nutil::Mapping nmap
0
include/o3tl/cow_wrapper.hxx:198
o3tl::cow_wrapper::impl_t m_ref_count
1
include/o3tl/vector_pool.hxx:93
o3tl::detail::struct_from_value::type nextFree
-1
include/oox/core/contexthandler2.hxx:217
oox::core::ContextHandler2Helper mnRootStackSize
0
include/oox/dump/dumperbase.hxx:1680
oox::dump::RecordObjectBase mbBinaryOnly
0
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/sfx2/templatedlg.hxx:123
SfxTemplateManagerDlg m_aUpdateDataTimer
UpdateDataTimer
include/svtools/filechangedchecker.hxx:31
FileChangedChecker mIdle
SVTools FileChangedChecker Idle
include/svtools/svparser.hxx:55
SvParser pImplData
0
include/svtools/svparser.hxx:73
SvParser::TokenStackType nTokenValue
0
include/svtools/svparser.hxx:74
SvParser::TokenStackType bTokenHasValue
0
include/svtools/tabbar.hxx:323
TabBar mnOffY
0
include/svx/ctredlin.hxx:75
SvxRedlinTable aDaTiFirst
0
include/svx/ctredlin.hxx:76
SvxRedlinTable aDaTiLast
0
include/svx/deflt3d.hxx:39
E3dDefaultAttributes bDefaultCubePosIsCenter
0
include/svx/deflt3d.hxx:46
E3dDefaultAttributes bDefaultLatheSmoothed
1
include/svx/deflt3d.hxx:47
E3dDefaultAttributes bDefaultLatheSmoothFrontBack
0
include/svx/deflt3d.hxx:49
E3dDefaultAttributes bDefaultLatheCloseFront
1
include/svx/deflt3d.hxx:50
E3dDefaultAttributes bDefaultLatheCloseBack
1
include/svx/deflt3d.hxx:53
E3dDefaultAttributes bDefaultExtrudeSmoothed
1
include/svx/deflt3d.hxx:54
E3dDefaultAttributes bDefaultExtrudeSmoothFrontBack
0
include/svx/dialcontrol.hxx:111
svx::DialControl::DialControl_Impl mpLinkField
0
include/svx/dialcontrol.hxx:112
svx::DialControl::DialControl_Impl mnLinkedFieldValueMultiplyer
0
include/svx/dialcontrol.hxx:119
svx::DialControl::DialControl_Impl mbNoRot
0
include/svx/fillctrl.hxx:53
SvxFillToolBoxControl mpFillControl
0
include/svx/fontwork.hxx:97
SvxFontWorkDialog aInputIdle
SvxFontWorkDialog Input
include/svx/graphctl.hxx:53
GraphCtrl aUpdateIdle
svx GraphCtrl Update
include/svx/numvset.hxx:127
SvxBmpNumValueSet aFormatIdle
SvxBmpNumValueSet FormatIdle
include/svx/svdcrtv.hxx:50
SdrCreateView nAutoCloseDistPix
5
include/svx/svdcrtv.hxx:51
SdrCreateView nFreeHandMinDistPix
10
include/svx/svdmark.hxx:143
SdrMarkList mbPointNameOk
0
include/svx/svdmark.hxx:144
SdrMarkList mbGluePointNameOk
0
include/svx/svdmrkv.hxx:110
SdrMarkView mnFrameHandlesLimit
50
include/vcl/ITiledRenderable.hxx:47
vcl::ITiledRenderable mnTilePixelHeight
256
include/vcl/ITiledRenderable.hxx:47
vcl::ITiledRenderable mnTilePixelWidth
256
include/vcl/opengl/OpenGLContext.hxx:48
OpenGLCapabilitySwitch mbLimitedShaderRegisters
0
include/vcl/settings.hxx:148
DialogStyle content_area_border
2
include/vcl/settings.hxx:149
DialogStyle content_area_spacing
0
include/vcl/settings.hxx:150
DialogStyle button_spacing
6
include/vcl/settings.hxx:151
DialogStyle action_area_border
5
include/vcl/settings.hxx:162
FrameStyle left
0
include/vcl/settings.hxx:163
FrameStyle right
0
include/vcl/settings.hxx:164
FrameStyle top
0
include/vcl/settings.hxx:165
FrameStyle bottom
0
include/vcl/slider.hxx:40
Slider mnChannelPixOffset
0
include/vcl/treelistbox.hxx:225
SvTreeListBox nDragOptions
7
libreofficekit/source/gtk/lokdocview.cxx:84
LOKDocViewPrivateImpl m_bIsLoading
0
odk/source/unoapploader/unx/unoapploader.c:39
/media/disk2/libo4/odk/source/unoapploader/unx/unoapploader.c PATHSEPARATOR
:
odk/source/unoapploader/unx/unoapploader.c:81
main ENVVARNAME
LD_LIBRARY_PATH
oox/source/core/contexthandler2.cxx:36
oox::core::ElementInfo maChars
0
opencl/source/opencl_device.cxx:52
(anonymous namespace)::LibreOfficeDeviceEvaluationIO inputSize
15360
opencl/source/opencl_device.cxx:53
(anonymous namespace)::LibreOfficeDeviceEvaluationIO outputSize
15360
package/inc/ZipFile.hxx:61
ZipFile aInflater
1
package/source/zipapi/XUnbufferedStream.hxx:57
XUnbufferedStream maInflater
1
pyuno/source/module/pyuno_gc.cxx:30
pyuno g_destructorsOfStaticObjectsHaveBeenCalled
1
pyuno/source/module/pyuno_impl.hxx:311
pyuno::RuntimeCargo valid
1
sal/osl/unx/sockimpl.hxx:39
oslSocketImpl m_bIsInShutdown
1
sal/qa/osl/condition/osl_Condition_Const.h:41
/media/disk2/libo4/sal/qa/osl/condition/osl_Condition.cxx aTestCon
testcondition
sal/qa/osl/file/osl_File_Const.h:114
extern aCanURL3
ca@#;+.,$//tmp/678nonical//name
sal/qa/osl/file/osl_File_Const.h:127
extern aRelURL1
relative/file1
sal/qa/osl/file/osl_File_Const.h:128
extern aRelURL2
relative/./file2
sal/qa/osl/file/osl_File_Const.h:129
extern aRelURL3
relative/../file3
sal/qa/osl/file/osl_File_Const.h:143
extern aSysPathLnk
/tmp/link.file
sal/qa/osl/file/osl_File_Const.h:144
extern aFifoSys
/tmp/tmpdir/fifo
sal/qa/osl/file/osl_File_Const.h:151
extern aTypeURL1
file:///dev/ccv
sal/qa/osl/file/osl_File_Const.h:152
extern aTypeURL2
file:///devices/pseudo/tcp@0:tcp
sal/qa/osl/file/osl_File_Const.h:153
extern aTypeURL3
file:///lib
sal/qa/osl/file/osl_File_Const.h:168
extern aVolURL2
file:///dev/floppy/0u1440
sal/qa/osl/file/osl_File_Const.h:170
extern aVolURL3
file:///proc
sal/qa/osl/file/osl_File_Const.h:171
extern aVolURL4
file:///staroffice
sal/qa/osl/file/osl_File_Const.h:172
extern aVolURL5
file:///tmp
sal/qa/osl/file/osl_File_Const.h:173
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:214
myThread m_aFlag
0
sal/qa/osl/process/osl_Thread.cxx:254
OCountThread m_aFlag
0
sal/qa/osl/process/osl_Thread.cxx:318
ONoScheduleThread m_aFlag
0
sal/qa/osl/process/osl_Thread.cxx:359
OAddThread m_aFlag
0
sal/qa/rtl/process/rtl_Process_Const.h:30
extern suParam0
-join
sal/qa/rtl/process/rtl_Process_Const.h:31
extern suParam1
-with
sal/qa/rtl/process/rtl_Process_Const.h:32
extern suParam2
-child
sal/qa/rtl/process/rtl_Process_Const.h:33
extern suParam3
-process
sal/qa/rtl/strings/test_ostring_stringliterals.cxx:22
/media/disk2/libo4/sal/qa/rtl/strings/test_ostring_stringliterals.cxx rtl_string_unittest_non_const_literal_function
0
sax/source/tools/fastserializer.hxx:231
sax_fastparser::FastSaxSerializer mbXescape
1
sc/inc/compiler.hxx:110
ScRawToken::(anonymous union)::(anonymous) eInForceArray
0
sc/inc/dpfilteredcache.hxx:93
ScDPFilteredCache::Criterion mpFilter
0
sc/inc/drwlayer.hxx:219
/media/disk2/libo4/sc/source/core/data/drwlayer.cxx bDrawIsInUndo
0
sc/inc/global.hxx:917
/media/disk2/libo4/sc/source/core/data/global.cxx pScActiveViewShell
0
sc/inc/global.hxx:918
/media/disk2/libo4/sc/source/core/data/global.cxx nScClickMouseModifier
0
sc/inc/global.hxx:919
/media/disk2/libo4/sc/source/core/data/global.cxx nScFillModeMouseModifier
0
sc/inc/listenercontext.hxx:46
sc::EndListeningContext maSet
0
sc/inc/markmulti.hxx:78
ScMultiSelIter aMarkArrayIter
0
sc/inc/refdata.hxx:37
ScSingleRefData::(anonymous) mnFlagValue
0
sc/inc/scmod.hxx:83
ScModule m_aIdleTimer
sc ScModule IdleTimer
sc/inc/scmod.hxx:84
ScModule m_aSpellIdle
sc ScModule SpellIdle
sc/inc/table.hxx:180
ScTable mpRowHeights
0
sc/qa/unit/screenshots/screenshots.cxx:40
ScScreenshotTest mCsv
some, strings, here, separated, by, commas
sc/qa/unit/ucalc.hxx:42
Test::RangeNameDef mnIndex
1
sc/source/core/data/documentimport.cxx:632
(anonymous namespace)::CellStoreInitializer::Impl maAttrs
1048576
sc/source/core/inc/parclass.hxx:94
ScParameterClassification::RunData bHasForceArray
1
sc/source/core/tool/scmatrix.cxx:346
/media/disk2/libo4/sc/source/core/tool/scmatrix.cxx bElementsMaxFetched
1
sc/source/filter/inc/extlstcontext.hxx:20
/media/disk2/libo4/sc/source/filter/oox/condformatbuffer.cxx rStyleIdx
0
sc/source/filter/inc/orcusinterface.hxx:179
ScOrcusConditionalFormat meEntryType
0
sc/source/filter/inc/xltracer.hxx:82
XclTracer mbEnabled
0
sc/source/ui/inc/acredlin.hxx:50
ScAcceptChgDlg aSelectionIdle
ScAcceptChgDlg SelectionIdle
sc/source/ui/inc/acredlin.hxx:51
ScAcceptChgDlg aReOpenIdle
ScAcceptChgDlg ReOpenIdle
sc/source/ui/inc/autostyl.hxx:58
ScAutoStyleList aTimer
ScAutoStyleList Timer
sc/source/ui/inc/autostyl.hxx:59
ScAutoStyleList aInitIdle
ScAutoStyleList InitIdle
sc/source/ui/inc/checklistmenu.hxx:156
ScMenuFloatingWindow::MenuItemData mpAction
0
sc/source/ui/inc/checklistmenu.hxx:157
ScMenuFloatingWindow::MenuItemData mpSubMenuWin
0
sc/source/ui/inc/conflictsdlg.hxx:124
ScConflictsDlg maSelectionIdle
ScConflictsDlg SelectionIdle
sc/source/ui/inc/retypepassdlg.hxx:86
ScRetypePassDlg mpDocItem
0
sc/source/ui/inc/viewdata.hxx:289
ScViewData aLogicMode
0
sc/source/ui/inc/viewfunc.hxx:376
/media/disk2/libo4/sc/source/ui/view/viewfun4.cxx bPasteIsDrop
0
sc/source/ui/inc/viewfunc.hxx:377
/media/disk2/libo4/sc/source/ui/view/viewfun7.cxx bPasteIsMove
0
sd/inc/sdpptwrp.hxx:44
SdPPTFilter pBas
0
sd/source/filter/html/htmlex.hxx:114
HtmlExport mbAutoSlide
1
sd/source/ui/framework/module/ShellStackGuard.hxx:82
sd::framework::ShellStackGuard maPrinterPollingIdle
sd ShellStackGuard PrinterPollingIdle
sd/source/ui/inc/DrawController.hxx:292
sd::DrawController mpCurrentPage
0
sd/source/ui/inc/pubdlg.hxx:150
SdPublishingDlg aAssistentFunc
6
sd/source/ui/inc/View.hxx:239
sd::View maDropErrorIdle
sd View DropError
sd/source/ui/inc/View.hxx:240
sd::View maDropInsertFileIdle
sd View DropInsertFile
sd/source/ui/inc/ViewTabBar.hxx:146
sd::ViewTabBar mpTabPage
0
sd/source/ui/inc/WindowUpdater.hxx:96
sd::WindowUpdater maCTLOptions
0
sd/source/ui/presenter/SlideRenderer.hxx:82
sd::presenter::SlideRenderer maPreviewRenderer
1
sd/source/ui/sidebar/PanelBase.hxx:54
sd::sidebar::PanelBase mpWrappedControl
0
sd/source/ui/slidesorter/cache/SlsBitmapFactory.hxx:45
sd::slidesorter::cache::BitmapFactory maRenderer
0
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:92
sd::slidesorter::controller::Animator maIdle
sd slidesorter controller Animator
sdext/source/pdfimport/pdfparse/pdfparse.cxx:59
StringEmitContext m_aBuf
256
sfx2/inc/autoredactdialog.hxx:108
SfxAutoRedactDialog m_bIsValidState
1
sfx2/source/appl/lnkbase2.cxx:77
sfx2::ImplBaseLinkData::tDDEType pItem
0
sfx2/source/appl/lnkbase2.cxx:82
sfx2::ImplBaseLinkData::(anonymous) DDEType
0
sfx2/source/appl/newhelp.hxx:291
SfxHelpIndexWindow_Impl aIdle
sfx2 appl SfxHelpIndexWindow_Impl
sfx2/source/appl/newhelp.hxx:423
SfxHelpTextWindow_Impl aSelectIdle
sfx2 appl SfxHelpTextWindow_Impl Select
sfx2/source/control/itemdel.cxx:31
SfxItemDisruptor_Impl m_Idle
sfx SfxItemDisruptor_Impl::Delete
slideshow/source/engine/slideshowimpl.cxx:486
(anonymous namespace)::SlideShowImpl maFrameSynchronization
0.02
soltools/cpp/_cpp.c:31
/media/disk2/libo4/soltools/cpp/_cpp.c nerrs
1
soltools/cpp/_eval.c:734
tokval cvlen
20
soltools/cpp/_macro.c:168
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
/media/disk2/libo4/soltools/mkdepend/pr.c printed
1
soltools/mkdepend/def.h:185
/media/disk2/libo4/soltools/mkdepend/main.c printed
0
soltools/mkdepend/def.h:189
/media/disk2/libo4/soltools/mkdepend/main.c show_where_not
0
starmath/inc/edit.hxx:54
SmEditWindow aModifyIdle
SmEditWindow ModifyIdle
starmath/source/cfgitem.hxx:102
SmMathConfig vFontPickList
5
stoc/source/corereflection/lrucache.hxx:52
LRU_Cache _pBlock
0
stoc/source/inspect/introspection.cxx:1508
(anonymous namespace)::Cache::Data hits
1
stoc/source/security/access_controller.cxx:65
(anonymous) s_envType
gcc3
stoc/source/security/access_controller.cxx:303
(anonymous namespace)::AccessController m_rec
0
stoc/source/security/lru_cache.h:54
stoc_sec::lru_cache m_block
0
svgio/inc/svgstyleattributes.hxx:185
svgio::svgreader::SvgStyleAttributes mpSvgGradientNodeFill
0
svgio/inc/svgstyleattributes.hxx:186
svgio::svgreader::SvgStyleAttributes mpSvgGradientNodeStroke
0
svgio/inc/svgstyleattributes.hxx:187
svgio::svgreader::SvgStyleAttributes mpSvgPatternNodeFill
0
svgio/inc/svgstyleattributes.hxx:188
svgio::svgreader::SvgStyleAttributes mpSvgPatternNodeStroke
0
svgio/source/svgreader/svgdocumenthandler.cxx:82
(anonymous namespace)::whiteSpaceHandling bNoGapsForBaselineShift
1
svl/source/crypto/cryptosign.cxx:153
(anonymous namespace)::TimeStampReq extensions
0
svx/inc/sdr/overlay/overlaymanagerbuffered.hxx:44
sdr::overlay::OverlayManagerBuffered maBufferIdle
sdr overlay OverlayManagerBuffered Idle
svx/inc/svdibrow.hxx:96
SdrItemBrowser aIdle
svx svdraw SdrItemBrowser
svx/source/dialog/contimp.hxx:70
SvxSuperContourDlg aUpdateIdle
SvxSuperContourDlg UpdateIdle
svx/source/dialog/contimp.hxx:71
SvxSuperContourDlg aCreateIdle
SvxSuperContourDlg CreateIdle
svx/source/sdr/contact/viewcontactofsdrpage.cxx:105
sdr::contact::ViewContactOfPageShadow::createViewIndependentPrimitive2DSequence bUseOldPageShadow
0
svx/source/sidebar/media/MediaPlaybackPanel.hxx:66
svx::sidebar::MediaPlaybackPanel maIdle
MediaPlaybackPanel
svx/source/unodraw/recoveryui.cxx:68
(anonymous namespace)::RecoveryUI m_pParentWindow
0
sw/inc/authfld.hxx:151
SwAuthorityField m_nTempSequencePos
-1
sw/inc/authfld.hxx:152
SwAuthorityField m_nTempSequencePosRLHidden
-1
sw/inc/checkit.hxx:36
/media/disk2/libo4/sw/source/core/bastyp/init.cxx pCheckIt
0
sw/inc/dbgoutsw.hxx:50
/media/disk2/libo4/sw/source/core/doc/dbgoutsw.cxx bDbgOutStdErr
0
sw/inc/dbgoutsw.hxx:51
/media/disk2/libo4/sw/source/core/doc/dbgoutsw.cxx bDbgOutPrintAttrSet
0
sw/inc/ftninfo.hxx:46
SwEndNoteInfo aFormat
4
sw/inc/hints.hxx:230
SwAttrSetChg m_bDelSet
0
sw/inc/modcfg.hxx:208
SwModuleOptions m_aWebInsertConfig
1
sw/inc/modcfg.hxx:211
SwModuleOptions m_aWebTableConfig
1
sw/inc/swmodule.hxx:266
/media/disk2/libo4/sw/source/uibase/app/swmodule.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:266
/media/disk2/libo4/sw/source/core/frmedt/feshview.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:266
/media/disk2/libo4/sw/source/uibase/ribbar/conform.cxx g_bNoInterrupt
1
sw/inc/swmodule.hxx:266
/media/disk2/libo4/sw/source/uibase/docvw/edtdd.cxx g_bNoInterrupt
0
sw/inc/view.hxx:191
SwView m_pHScrollbar
0
sw/inc/view.hxx:192
SwView m_pVScrollbar
0
sw/inc/view.hxx:697
/media/disk2/libo4/sw/source/uibase/uiview/viewport.cxx bDocSzUpdated
0
sw/inc/view.hxx:697
/media/disk2/libo4/sw/source/uibase/uiview/view.cxx bDocSzUpdated
1
sw/inc/viewopt.hxx:188
SwViewOption m_bTest10
0
sw/source/core/bastyp/calc.cxx:94
CalcOp eOp
0
sw/source/core/doc/docredln.cxx:71
sw_DebugRedline nWatch
0
sw/source/core/docnode/threadmanager.hxx:125
ThreadManager maStartNewThreadIdle
SW ThreadManager StartNewThreadIdle
sw/source/core/inc/blink.hxx:89
/media/disk2/libo4/sw/source/core/text/blink.cxx pBlink
0
sw/source/core/inc/DocumentTimerManager.hxx:76
sw::DocumentTimerManager m_aFireIdleJobsTimer
sw::DocumentTimerManager m_aFireIdleJobsTimer
sw/source/core/inc/fntcache.hxx:57
/media/disk2/libo4/sw/source/core/txtnode/fntcache.cxx pFntCache
0
sw/source/core/inc/fntcache.hxx:58
/media/disk2/libo4/sw/source/core/txtnode/fntcache.cxx pLastFont
0
sw/source/core/inc/frmtool.hxx:144
/media/disk2/libo4/sw/source/core/layout/frmtool.cxx bDontCreateObjects
0
sw/source/core/inc/frmtool.hxx:147
/media/disk2/libo4/sw/source/core/layout/frmtool.cxx bSetCompletePaintOnInvalidate
0
sw/source/core/inc/noteurl.hxx:28
/media/disk2/libo4/sw/source/core/text/noteurl.cxx pNoteURL
0
sw/source/core/inc/swfntcch.hxx:43
/media/disk2/libo4/sw/source/core/txtnode/swfntcch.cxx pSwFontCache
0
sw/source/core/inc/txtfly.hxx:44
/media/disk2/libo4/sw/source/core/text/txtinit.cxx pContourCache
0
sw/source/core/inc/UndoSort.hxx:38
SwSortUndoElement::(anonymous union)::(anonymous) nID
4294967295
sw/source/core/layout/flylay.cxx:305
SwFlyFreeFrame::supportsAutoContour bOverrideHandleContourToAlwaysOff
1
sw/source/core/ole/ndole.cxx:1073
SwOLEObj::tryToGetChartContentAsPrimitive2DSequence bAsynchronousLoadingAllowed
0
sw/source/core/text/pordrop.hxx:30
/media/disk2/libo4/sw/source/core/text/txtinit.cxx pDropCapCache
0
sw/source/filter/inc/rtf.hxx:30
RTFSurround::(anonymous union)::(anonymous) nJunk
0
sw/source/filter/ww8/ww8par3.cxx:335
WW8LST bSimpleList
1
sw/source/filter/ww8/ww8par3.cxx:336
WW8LST bRestartHdn
1
sw/source/filter/ww8/ww8par3.cxx:368
WW8LVL bV6Prev
1
sw/source/filter/ww8/ww8par3.cxx:369
WW8LVL bV6PrSp
1
sw/source/filter/ww8/ww8par3.cxx:370
WW8LVL bV6
1
sw/source/filter/ww8/ww8par5.cxx:1539
SwWW8ImplReader::Read_F_DocInfo aName10
sw/source/filter/ww8/ww8par5.cxx:1540
SwWW8ImplReader::Read_F_DocInfo aName11
TITEL
sw/source/filter/ww8/ww8par5.cxx:1542
SwWW8ImplReader::Read_F_DocInfo aName12
TITRE
sw/source/filter/ww8/ww8par5.cxx:1544
SwWW8ImplReader::Read_F_DocInfo aName13
TITLE
sw/source/filter/ww8/ww8par5.cxx:1546
SwWW8ImplReader::Read_F_DocInfo aName14
TITRO
sw/source/filter/ww8/ww8par5.cxx:1548
SwWW8ImplReader::Read_F_DocInfo aName20
sw/source/filter/ww8/ww8par5.cxx:1549
SwWW8ImplReader::Read_F_DocInfo aName21
ERSTELLDATUM
sw/source/filter/ww8/ww8par5.cxx:1551
SwWW8ImplReader::Read_F_DocInfo aName22
CR
sw/source/filter/ww8/ww8par5.cxx:1553
SwWW8ImplReader::Read_F_DocInfo aName23
CREATED
sw/source/filter/ww8/ww8par5.cxx:1555
SwWW8ImplReader::Read_F_DocInfo aName24
CREADO
sw/source/filter/ww8/ww8par5.cxx:1557
SwWW8ImplReader::Read_F_DocInfo aName30
sw/source/filter/ww8/ww8par5.cxx:1558
SwWW8ImplReader::Read_F_DocInfo aName31
ZULETZTGESPEICHERTZEIT
sw/source/filter/ww8/ww8par5.cxx:1560
SwWW8ImplReader::Read_F_DocInfo aName32
DERNIERENREGISTREMENT
sw/source/filter/ww8/ww8par5.cxx:1562
SwWW8ImplReader::Read_F_DocInfo aName33
SAVED
sw/source/filter/ww8/ww8par5.cxx:1564
SwWW8ImplReader::Read_F_DocInfo aName34
MODIFICADO
sw/source/filter/ww8/ww8par5.cxx:1566
SwWW8ImplReader::Read_F_DocInfo aName40
sw/source/filter/ww8/ww8par5.cxx:1567
SwWW8ImplReader::Read_F_DocInfo aName41
ZULETZTGEDRUCKT
sw/source/filter/ww8/ww8par5.cxx:1569
SwWW8ImplReader::Read_F_DocInfo aName42
DERNIREIMPRESSION
sw/source/filter/ww8/ww8par5.cxx:1571
SwWW8ImplReader::Read_F_DocInfo aName43
LASTPRINTED
sw/source/filter/ww8/ww8par5.cxx:1573
SwWW8ImplReader::Read_F_DocInfo aName44
HUPS PUPS
sw/source/filter/ww8/ww8par5.cxx:1575
SwWW8ImplReader::Read_F_DocInfo aName50
sw/source/filter/ww8/ww8par5.cxx:1576
SwWW8ImplReader::Read_F_DocInfo aName51
BERARBEITUNGSNUMMER
sw/source/filter/ww8/ww8par5.cxx:1578
SwWW8ImplReader::Read_F_DocInfo aName52
NUMRODEREVISION
sw/source/filter/ww8/ww8par5.cxx:1580
SwWW8ImplReader::Read_F_DocInfo aName53
REVISIONNUMBER
sw/source/filter/ww8/ww8par5.cxx:1582
SwWW8ImplReader::Read_F_DocInfo aName54
SNUBBEL BUBBEL
sw/source/filter/ww8/ww8par.hxx:662
WW8FormulaControl mfUnknown
0
sw/source/filter/ww8/ww8par.hxx:669
WW8FormulaControl mhpsCheckBox
20
sw/source/filter/ww8/ww8par.hxx:1026
WW8TabBandDesc bCantSplit90
0
sw/source/filter/ww8/ww8scan.hxx:1161
WW8Fib m_fObfuscated
0
sw/source/filter/ww8/ww8scan.hxx:1507
WW8Fib m_fcPlcffactoid
0
sw/source/filter/ww8/ww8scan.hxx:1509
WW8Fib m_lcbPlcffactoid
0
sw/source/filter/ww8/ww8scan.hxx:1514
WW8Fib m_lcbHplxsdr
0
sw/source/filter/ww8/ww8struc.hxx:895
WW8_TablePos nSp37
2
sw/source/ui/envelp/labfmt.hxx:69
SwLabFormatPage aPreviewIdle
SwLabFormatPage Preview
sw/source/uibase/inc/edtdd.hxx:15
/media/disk2/libo4/sw/source/uibase/docvw/edtwin.cxx g_bExecuteDrag
0
sw/source/uibase/inc/edtwin.hxx:294
/media/disk2/libo4/sw/source/uibase/docvw/edtdd.cxx g_bFrameDrag
0
sw/source/uibase/inc/edtwin.hxx:295
/media/disk2/libo4/sw/source/uibase/docvw/edtwin.cxx g_bDDTimerStarted
0
sw/source/uibase/inc/edtwin.hxx:297
/media/disk2/libo4/sw/source/uibase/docvw/edtwin.cxx g_bDDINetAttr
0
sw/source/uibase/inc/edtwin.hxx:297
/media/disk2/libo4/sw/source/uibase/dochdl/swdtflvr.cxx g_bDDINetAttr
1
sw/source/uibase/inc/instable.hxx:44
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:87
SwSrcEditWindow m_aSyntaxIdle
sw uibase SwSrcEditWindow Syntax
sw/source/uibase/inc/unotools.hxx:45
SwOneExampleFrame m_aLoadedIdle
sw uibase SwOneExampleFrame Loaded
unotools/source/config/saveopt.cxx:76
SvtSaveOptions_Impl bROUserAutoSave
0
vcl/inc/canvasbitmap.hxx:55
vcl::unotools::VclCanvasBitmap m_nEndianness
0
vcl/inc/graphic/Manager.hxx:40
vcl::graphic::Manager maSwapOutTimer
graphic::Manager maSwapOutTimer
vcl/inc/impfontcache.hxx:77
ImplFontCache m_aBoundRectCache
3000
vcl/inc/qt5/Qt5Instance.hxx:64
Qt5Instance m_aUpdateStyleTimer
vcl::qt5 m_aUpdateStyleTimer
vcl/inc/salprn.hxx:43
SalPrinterQueueInfo mnStatus
0
vcl/inc/salprn.hxx:44
SalPrinterQueueInfo mnJobs
4294967295
vcl/inc/salwtype.hxx:157
SalWheelMouseEvent mbDeltaIsPixel
0
vcl/inc/svdata.hxx:269
ImplSVNWFData mnMenuSeparatorBorderX
0
vcl/inc/svdata.hxx:272
ImplSVNWFData mbMenuBarDockingAreaCommonBG
0
vcl/inc/svdata.hxx:276
ImplSVNWFData mbToolboxDropDownSeparate
0
vcl/inc/svdata.hxx:279
ImplSVNWFData mbOpenMenuOnF10
0
vcl/inc/svdata.hxx:292
ImplSVNWFData mbEnableAccel
1
vcl/inc/unx/saldisp.hxx:306
SalDisplay m_bUseRandRWrapper
1
vcl/source/bitmap/BitmapTools.cxx:1053
vcl::bitmap::get_unpremultiply_table inited
1
vcl/source/bitmap/BitmapTools.cxx:1069
vcl::bitmap::get_premultiply_table inited
1
vcl/source/control/imivctl.hxx:117
SvxIconChoiceCtrl_Impl aAutoArrangeIdle
svtools contnr SvxIconChoiceCtrl_Impl AutoArrange
vcl/source/control/imivctl.hxx:118
SvxIconChoiceCtrl_Impl aDocRectChangedIdle
svtools contnr SvxIconChoiceCtrl_Impl DocRectChanged
vcl/source/control/imivctl.hxx:119
SvxIconChoiceCtrl_Impl aVisRectChangedIdle
svtools contnr SvxIconChoiceCtrl_Impl VisRectChanged
vcl/source/control/imivctl.hxx:120
SvxIconChoiceCtrl_Impl aCallSelectHdlIdle
svtools contnr SvxIconChoiceCtrl_Impl CallSelectHdl
vcl/source/control/roadmapwizard.cxx:59
vcl::RoadmapWizardImpl pRoadmap
0
vcl/source/edit/textview.cxx:145
ImpTextView mbSupportProtectAttribute
0
vcl/source/filter/jpeg/transupp.h:128
(anonymous) perfect
0
vcl/source/filter/jpeg/transupp.h:129
(anonymous) trim
0
vcl/source/filter/jpeg/transupp.h:130
(anonymous) force_grayscale
0
vcl/source/filter/jpeg/transupp.h:131
(anonymous) crop
0
vcl/source/filter/jpeg/transupp.h:147
(anonymous) crop_xoffset
0
vcl/source/filter/jpeg/transupp.h:149
(anonymous) crop_yoffset
0
vcl/source/font/font.cxx:540
(anonymous namespace)::WeightSearchEntry weight
5
vcl/source/fontsubset/ttcr.cxx:356
vcl::tdata_post ptr
0
vcl/source/gdi/dibtools.cxx:52
(anonymous namespace)::CIEXYZ aXyzX
0
vcl/source/gdi/dibtools.cxx:53
(anonymous namespace)::CIEXYZ aXyzY
0
vcl/source/gdi/dibtools.cxx:54
(anonymous namespace)::CIEXYZ aXyzZ
0
vcl/source/gdi/dibtools.cxx:107
(anonymous namespace)::DIBV5Header nV5RedMask
0
vcl/source/gdi/dibtools.cxx:108
(anonymous namespace)::DIBV5Header nV5GreenMask
0
vcl/source/gdi/dibtools.cxx:109
(anonymous namespace)::DIBV5Header nV5BlueMask
0
vcl/source/gdi/dibtools.cxx:110
(anonymous namespace)::DIBV5Header nV5AlphaMask
0
vcl/source/gdi/dibtools.cxx:113
(anonymous namespace)::DIBV5Header nV5GammaRed
0
vcl/source/gdi/dibtools.cxx:114
(anonymous namespace)::DIBV5Header nV5GammaGreen
0
vcl/source/gdi/dibtools.cxx:115
(anonymous namespace)::DIBV5Header nV5GammaBlue
0
vcl/source/gdi/dibtools.cxx:117
(anonymous namespace)::DIBV5Header nV5ProfileData
0
vcl/source/gdi/dibtools.cxx:118
(anonymous namespace)::DIBV5Header nV5ProfileSize
0
vcl/source/gdi/dibtools.cxx:119
(anonymous namespace)::DIBV5Header nV5Reserved
0
vcl/source/gdi/pdfwriter_impl.hxx:746
vcl::PDFWriterImpl m_DocDigest
0
vcl/source/window/layout.cxx:226
VclContainer::Command bAddButtonsToMenu
1
vcl/source/window/layout.cxx:227
VclContainer::Command bAddScreenshotButtonToMenu
1
vcl/unx/gtk3/a11y/gtk3atkutil.cxx:743
ooo_atk_util_ensure_event_listener bInited
1
vcl/unx/gtk3/gtk3gtkinst.cxx:11198
(anonymous namespace)::ensure_intercept_drawing_area_accessibility bDone
1
workdir/LexTarget/l10ntools/source/xrmlex.cxx:706
/media/disk2/libo4/workdir/LexTarget/l10ntools/source/xrmlex.cxx bText
0
writerfilter/source/dmapper/SettingsTable.cxx:258
writerfilter::dmapper::SettingsTable_Impl m_pThemeFontLangProps
3
writerfilter/source/rtftok/rtfdocumentimpl.hxx:871
writerfilter::rtftok::RTFDocumentImpl m_nNestedTRLeft
0
writerfilter/source/rtftok/rtfdocumentimpl.hxx:872
writerfilter::rtftok::RTFDocumentImpl m_nTopLevelTRLeft
0
writerfilter/source/rtftok/rtfdocumentimpl.hxx:875
writerfilter::rtftok::RTFDocumentImpl m_nNestedCurrentCellX
0
writerfilter/source/rtftok/rtftokenizer.hxx:72
writerfilter::rtftok::RTFTokenizer s_bControlWordsInitialised
1
writerfilter/source/rtftok/rtftokenizer.hxx:75
writerfilter::rtftok::RTFTokenizer s_bMathControlWordsSorted
1
xmloff/source/text/XMLIndexTemplateContext.hxx:57
/media/disk2/libo4/xmloff/source/text/XMLIndexTemplateContext.cxx aLevelNameTableMap
0
|