blob: c426b4a4258027abb26ad6c0d2642603ac601ea3 (
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
|
avmedia/inc/mediacontrol.hxx:64
avmedia::MediaControl maIdle
avmedia MediaControl Idle
avmedia/inc/mediacontrol.hxx:65
avmedia::MediaControl maChangeTimeIdle
avmedia MediaControl Change Time Idle
avmedia/source/framework/soundhandler.hxx:114
avmedia::SoundHandler m_aUpdateIdle
avmedia SoundHandler Update
basctl/source/basicide/baside2.hxx:84
basctl::EditorWindow aHighlighter
0
basctl/source/inc/dlged.hxx:132
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:391
jni_uno::(anonymous namespace)::UNO_proxy m_ref
1
canvas/inc/rendering/irendermodule.hxx:35
canvas::Vertex b
1\10
canvas/inc/rendering/irendermodule.hxx:35
canvas::Vertex g
1\10
canvas/inc/rendering/irendermodule.hxx:35
canvas::Vertex r
1\10
canvas/inc/rendering/irendermodule.hxx:37
canvas::Vertex z
0\10
chart2/source/controller/dialogs/DataBrowser.cxx:201
chart::impl::SeriesHeader m_aUpdateDataTimer
UpdateDataTimer
chart2/source/controller/inc/ChartController.hxx:377
chart::ChartController m_aLifeTimeManager
0
chart2/source/controller/inc/TitleDialogData.hxx:33
chart::TitleDialogData aPossibilityList
7
chart2/source/controller/inc/TitleDialogData.hxx:34
chart::TitleDialogData aExistenceList
7
chart2/source/controller/inc/TitleDialogData.hxx:35
chart::TitleDialogData aTextList
7
chart2/source/model/main/DataPoint.hxx:107
chart::DataPoint m_bNoParentPropAllowed
0
comphelper/source/misc/threadpool.cxx:37
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:40
connectivity::OColumn m_AutoIncrement
0
connectivity/source/inc/OColumn.hxx:41
connectivity::OColumn m_CaseSensitive
0
connectivity/source/inc/OColumn.hxx:42
connectivity::OColumn m_Searchable
1
connectivity/source/inc/OColumn.hxx:43
connectivity::OColumn m_Currency
0
connectivity/source/inc/OColumn.hxx:44
connectivity::OColumn m_Signed
0
connectivity/source/inc/OColumn.hxx:45
connectivity::OColumn m_ReadOnly
1
connectivity/source/inc/OColumn.hxx:46
connectivity::OColumn m_Writable
0
connectivity/source/inc/OColumn.hxx:47
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/acccfg.hxx:100
SfxAcceleratorConfigPage m_aUpdateDataTimer
UpdateDataTimer
cui/source/inc/AdditionsDialog.hxx:59
AdditionsDialog m_aSearchDataTimer
SearchDataTimer
cui/source/inc/cfg.hxx:372
SvxConfigPage m_aUpdateDataTimer
UpdateDataTimer
cui/source/inc/linkdlg.hxx:45
SvBaseLinksDlg aUpdateIdle
cui SvBaseLinksDlg UpdateIdle
cui/source/inc/thesdlg.hxx:31
SvxThesaurusDialog m_aModifyIdle
cui SvxThesaurusDialog LookUp Modify
cui/source/options/optgdlg.cxx:1010
LanguageConfig_Impl aLanguageOptions
0
cui/source/options/optjava.hxx:59
SvxJavaOptionsPage m_aResetIdle
cui options SvxJavaOptionsPage Reset
dbaccess/source/ui/inc/sqledit.hxx:42
dbaui::SQLEditView m_aHighlighter
1
desktop/source/app/app.cxx:480
desktop::Desktop::Init bTryHardOfficeconfigBroken
0
desktop/source/app/cmdlineargs.hxx:136
desktop::CommandLineArgs m_quickstart
0
drawinglayer/source/primitive2d/sceneprimitive2d.cxx:373
drawinglayer::primitive2d::ScenePrimitive2D::create2DDecomposition bMultithreadAllowed
0
drawinglayer/source/primitive2d/sceneprimitive2d.cxx:481
drawinglayer::primitive2d::ScenePrimitive2D::create2DDecomposition bAddOutlineToCreated3DSceneRepresentation
0
drawinglayer/source/processor2d/vclhelperbufferdevice.cxx:333
drawinglayer::impBufferDevice::paint bDoSaveForVisualControl
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:950
drawinglayer::processor2d::VclMetafileProcessor2D::processGraphicPrimitive2D bSuppressPDFExtOutDevDataSupport
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:1298
drawinglayer::processor2d::VclMetafileProcessor2D::processTextHierarchyParagraphPrimitive2D bSuppressPDFExtOutDevDataSupport
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:2057
drawinglayer::processor2d::VclMetafileProcessor2D::processUnifiedTransparencePrimitive2D bForceToMetafile
0
drawinglayer/source/processor2d/vclmetafileprocessor2d.cxx:2158
drawinglayer::processor2d::VclMetafileProcessor2D::processTransparencePrimitive2D bForceToBigTransparentVDev
0
drawinglayer/source/tools/converters.cxx:91
drawinglayer::convertToBitmapEx bDoSaveForVisualControl
0
editeng/source/editeng/impedit.hxx:530
ImpEditEngine nBigTextObjectStart
20
emfio/qa/cppunit/wmf/wmfimporttest.cxx:34
WmfTest maDataUrl
/emfio/qa/cppunit/wmf/data/
emfio/source/reader/emfreader.cxx:1596
emfio::EmfReader::ReadEnhWMF bDoSaveForVisualControl
0
extensions/source/bibliography/bibcont.hxx:67
BibBookContainer aIdle
extensions BibBookContainer Split Idle
filter/source/msfilter/msdffimp.cxx:2637
DffPropertyReader::ApplyAttributes bCheckShadow
0
filter/source/msfilter/viscache.hxx:29
Impl_OlePres nFormat
3
framework/source/services/autorecovery.cxx:398
(anonymous namespace)::AutoRecovery m_aTimer
Auto save timer
framework/source/uiconfiguration/imagemanagerimpl.hxx:172
framework::ImageManagerImpl m_aResourceString
private:resource/images/moduleimages
helpcompiler/inc/BasCodeTagger.hxx:28
BasicCodeTagger m_Highlighter
0
i18npool/source/localedata/localedata.cxx:50
/home/noel/libo2/i18npool/source/localedata/localedata.cxx lcl_DATA_EN
localedata_en
i18npool/source/localedata/localedata.cxx:51
/home/noel/libo2/i18npool/source/localedata/localedata.cxx lcl_DATA_ES
localedata_es
i18npool/source/localedata/localedata.cxx:52
/home/noel/libo2/i18npool/source/localedata/localedata.cxx lcl_DATA_EURO
localedata_euro
i18npool/source/localedata/localedata.cxx:53
/home/noel/libo2/i18npool/source/localedata/localedata.cxx lcl_DATA_OTHERS
localedata_others
idlc/source/idlccompile.cxx:51
/home/noel/libo2/idlc/source/idlccompile.cxx yydebug
0
include/basegfx/pixel/bpixel.hxx:41
basegfx::BPixel::(anonymous union)::(anonymous) mnValue
0
include/basegfx/pixel/bpixel.hxx:42
basegfx::BPixel::(anonymous) maCombinedRGBA
0
include/basic/sbxvar.hxx:75
SbxValues::(anonymous) pData
0
include/comphelper/parallelsort.hxx:88
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:58
i18nutil::Mapping nmap
0
include/o3tl/cow_wrapper.hxx:203
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:216
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/sfx2/templatedlg.hxx:131
SfxTemplateManagerDlg m_aUpdateDataTimer
UpdateDataTimer
include/svtools/ctrlbox.hxx:339
FontNameBox maUpdateIdle
FontNameBox Preview Update
include/svtools/filechangedchecker.hxx:31
FileChangedChecker mTimer
SVTools FileChangedChecker Timer
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: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/fontwork.hxx:77
SvxFontWorkDialog aInputIdle
SvxFontWorkDialog Input
include/svx/graphctl.hxx:53
GraphCtrl aUpdateIdle
svx GraphCtrl Update
include/svx/numvset.hxx:92
SvxBmpNumValueSet aFormatIdle
SvxBmpNumValueSet FormatIdle
include/svx/srchdlg.hxx:141
SvxSearchDialog m_aPresentIdle
Bring SvxSearchDialog to Foreground
include/svx/svdcrtv.hxx:50
SdrCreateView nAutoCloseDistPix
5
include/svx/svdcrtv.hxx:51
SdrCreateView nFreeHandMinDistPix
10
include/svx/svdmark.hxx:144
SdrMarkList mbPointNameOk
0
include/svx/svdmark.hxx:145
SdrMarkList mbGluePointNameOk
0
include/vcl/settings.hxx:143
DialogStyle content_area_border
2
include/vcl/settings.hxx:144
DialogStyle button_spacing
6
include/vcl/settings.hxx:145
DialogStyle action_area_border
5
include/vcl/toolkit/treelistbox.hxx:212
SvTreeListBox nIndent
20
io/qa/textinputstream.cxx:97
(anonymous namespace)::Input open_
1
libreofficekit/source/gtk/lokdocview.cxx:85
(anonymous namespace)::LOKDocViewPrivateImpl m_bIsLoading
0
lotuswordpro/source/filter/lwppara.hxx:213
LwpPara m_AllText
oox/source/core/contexthandler2.cxx:36
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: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:226
pyuno::RuntimeCargo valid
1
reportdesign/source/ui/inc/DesignView.hxx:62
rptui::ODesignView m_aMarkIdle
reportdesign ODesignView Mark Idle
sal/osl/unx/signal.cxx:81
(anonymous namespace)::SignalAction Action
1
sal/osl/unx/sockimpl.hxx:39
oslSocketImpl m_bIsInShutdown
1
sal/qa/osl/condition/osl_Condition_Const.h:41
/home/noel/libo2/sal/qa/osl/condition/osl_Condition.cxx aTestCon
testcondition
sal/qa/osl/file/osl_File_Const.h:118
extern aPreURL
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/libo2/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/compiler.hxx:112
ScRawToken::(anonymous union)::(anonymous) eInForceArray
0
sc/inc/document.hxx:437
ScDocument aTrackIdle
sc ScDocument Track Idle
sc/inc/drwlayer.hxx:230
/home/noel/libo2/sc/source/core/data/drwlayer.cxx bDrawIsInUndo
0
sc/inc/global.hxx:910
/home/noel/libo2/sc/source/core/data/global.cxx pScActiveViewShell
0
sc/inc/global.hxx:911
/home/noel/libo2/sc/source/core/data/global.cxx nScClickMouseModifier
0
sc/inc/global.hxx:912
/home/noel/libo2/sc/source/core/data/global.cxx nScFillModeMouseModifier
0
sc/inc/markmulti.hxx:80
ScMultiSelIter aMarkArrayIter
0
sc/inc/refdata.hxx:38
ScSingleRefData::(anonymous) mnFlagValue
0
sc/inc/scmod.hxx:81
ScModule m_aIdleTimer
sc ScModule IdleTimer
sc/inc/table.hxx:180
ScTable mpRowHeights
0
sc/qa/extras/check_data_pilot_field.cxx:63
sc_apitest::CheckDataPilotField mMaxFieldIndex
6
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/inc/parclass.hxx:93
ScParameterClassification::RunData bHasForceArray
1
sc/source/core/tool/scmatrix.cxx:344
/home/noel/libo2/sc/source/core/tool/scmatrix.cxx bElementsMaxFetched
1
sc/source/filter/inc/extlstcontext.hxx:19
/home/noel/libo2/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/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/conflictsdlg.hxx:119
ScConflictsDlg maSelectionIdle
ScConflictsDlg SelectionIdle
sc/source/ui/inc/hdrcont.hxx:38
ScHeaderControl aShowHelpTimer
sc HeaderControl Popover Timer
sc/source/ui/inc/viewdata.hxx:288
ScViewData aLogicMode
0
sc/source/ui/inc/viewfunc.hxx:377
/home/noel/libo2/sc/source/ui/view/viewfun7.cxx bPasteIsMove
0
sc/source/ui/view/output2.cxx:119
ScDrawStringsVars mCachedGlyphs
1000
sccomp/source/solver/SwarmSolver.cxx:124
(anonymous namespace)::SwarmSolver mfResultValue
0\10
sd/inc/sdpptwrp.hxx:43
SdPPTFilter pBas
0
sd/source/filter/html/htmlex.hxx:116
HtmlExport mbAutoSlide
1
sd/source/ui/framework/module/ShellStackGuard.hxx:83
sd::framework::ShellStackGuard maPrinterPollingIdle
sd ShellStackGuard PrinterPollingIdle
sd/source/ui/inc/CustomAnimationPane.hxx:143
sd::CustomAnimationPane maIdle
sd idle treeview select
sd/source/ui/inc/pubdlg.hxx:157
SdPublishingDlg aAssistentFunc
6
sd/source/ui/inc/View.hxx:262
sd::View maDropErrorIdle
sd View DropError
sd/source/ui/inc/View.hxx:263
sd::View maDropInsertFileIdle
sd View DropInsertFile
sd/source/ui/inc/WindowUpdater.hxx:97
sd::WindowUpdater maCTLOptions
0
sd/source/ui/presenter/SlideRenderer.hxx:81
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/pdfimport/pdfparse/pdfparse.cxx:60
(anonymous namespace)::StringEmitContext m_aBuf
256
sfx2/inc/autoredactdialog.hxx:97
SfxAutoRedactDialog m_bIsValidState
1
sfx2/source/appl/lnkbase2.cxx:79
sfx2::ImplBaseLinkData::tDDEType pItem
0
sfx2/source/appl/lnkbase2.cxx:84
sfx2::ImplBaseLinkData::(anonymous) DDEType
0
sfx2/source/appl/lnkbase2.cxx:103
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:227
SfxHelpIndexWindow_Impl aIdle
sfx2 appl SfxHelpIndexWindow_Impl
sfx2/source/appl/newhelp.hxx:347
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:473
(anonymous namespace)::SlideShowImpl maFrameSynchronization
0.02\10
soltools/cpp/_cpp.c:31
/home/noel/libo2/soltools/cpp/_cpp.c nerrs
1
soltools/cpp/_eval.c:742
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
/home/noel/libo2/soltools/mkdepend/main.c printed
0
soltools/mkdepend/def.h:185
/home/noel/libo2/soltools/mkdepend/pr.c printed
1
soltools/mkdepend/def.h:189
/home/noel/libo2/soltools/mkdepend/main.c show_where_not
0
starmath/inc/cfgitem.hxx:105
SmMathConfig vFontPickList
5
starmath/inc/edit.hxx:55
SmEditWindow aModifyIdle
SmEditWindow ModifyIdle
stoc/source/corereflection/lrucache.hxx:52
LRU_Cache _pBlock
0
stoc/source/inspect/introspection.cxx:1506
(anonymous namespace)::Cache::Data hits
1
stoc/source/security/access_controller.cxx:65
(anonymous) s_envType
gcc3
stoc/source/security/access_controller.cxx:304
(anonymous namespace)::AccessController m_rec
0
stoc/source/security/lru_cache.h:54
stoc_sec::lru_cache m_block
0
svgio/source/svgreader/svgdocumenthandler.cxx:82
(anonymous namespace)::whiteSpaceHandling bNoGapsForBaselineShift
1
svl/source/crypto/cryptosign.cxx:151
(anonymous namespace)::TimeStampReq extensions
0
svx/inc/sdr/overlay/overlaymanagerbuffered.hxx:42
sdr::overlay::OverlayManagerBuffered maBufferIdle
sdr overlay OverlayManagerBuffered Idle
svx/source/dialog/contimp.hxx:70
SvxSuperContourDlg aUpdateIdle
SvxSuperContourDlg UpdateIdle
svx/source/dialog/contimp.hxx:71
SvxSuperContourDlg aCreateIdle
SvxSuperContourDlg CreateIdle
svx/source/inc/StylesPreviewWindow.hxx:61
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:49
SvxPopupWindowListBox m_nVisRows
10
svx/source/unodraw/recoveryui.cxx:63
(anonymous namespace)::RecoveryUI m_pParentWindow
0
sw/inc/authfld.hxx:156
SwAuthorityField m_nTempSequencePos
-1
sw/inc/authfld.hxx:157
SwAuthorityField m_nTempSequencePosRLHidden
-1
sw/inc/checkit.hxx:38
/home/noel/libo2/sw/source/core/bastyp/init.cxx pCheckIt
0
sw/inc/dbgoutsw.hxx:51
/home/noel/libo2/sw/source/core/doc/dbgoutsw.cxx bDbgOutStdErr
0
sw/inc/dbgoutsw.hxx:52
/home/noel/libo2/sw/source/core/doc/dbgoutsw.cxx bDbgOutPrintAttrSet
0
sw/inc/ftninfo.hxx:46
SwEndNoteInfo m_aFormat
4
sw/inc/hints.hxx:272
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:265
/home/noel/libo2/sw/source/core/frmedt/feshview.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:265
/home/noel/libo2/sw/source/uibase/app/swmodule.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:265
/home/noel/libo2/sw/source/uibase/docvw/edtdd.cxx g_bNoInterrupt
0
sw/inc/swmodule.hxx:265
/home/noel/libo2/sw/source/uibase/ribbar/conform.cxx g_bNoInterrupt
1
sw/inc/view.hxx:201
SwView m_pHScrollbar
0
sw/inc/view.hxx:202
SwView m_pVScrollbar
0
sw/inc/view.hxx:719
/home/noel/libo2/sw/source/uibase/uiview/view.cxx bDocSzUpdated
1
sw/inc/view.hxx:719
/home/noel/libo2/sw/source/uibase/uiview/viewport.cxx bDocSzUpdated
0
sw/inc/viewopt.hxx:195
SwViewOption m_bTest10
0
sw/source/core/bastyp/calc.cxx:99
CalcOp eOp
0
sw/source/core/doc/docredln.cxx:67
sw_DebugRedline nWatch
0
sw/source/core/docnode/threadmanager.hxx:125
ThreadManager maStartNewThreadIdle
SW ThreadManager StartNewThreadIdle
sw/source/core/inc/DocumentTimerManager.hxx:75
sw::DocumentTimerManager m_aFireIdleJobsTimer
sw::DocumentTimerManager m_aFireIdleJobsTimer
sw/source/core/inc/fntcache.hxx:60
/home/noel/libo2/sw/source/core/txtnode/fntcache.cxx pFntCache
0
sw/source/core/inc/fntcache.hxx:61
/home/noel/libo2/sw/source/core/txtnode/fntcache.cxx pLastFont
0
sw/source/core/inc/frmtool.hxx:154
/home/noel/libo2/sw/source/core/layout/frmtool.cxx bDontCreateObjects
0
sw/source/core/inc/frmtool.hxx:157
/home/noel/libo2/sw/source/core/layout/frmtool.cxx bSetCompletePaintOnInvalidate
0
sw/source/core/inc/noteurl.hxx:28
/home/noel/libo2/sw/source/core/text/noteurl.cxx pNoteURL
0
sw/source/core/inc/swfntcch.hxx:43
/home/noel/libo2/sw/source/core/txtnode/swfntcch.cxx pSwFontCache
0
sw/source/core/inc/txtfly.hxx:44
/home/noel/libo2/sw/source/core/text/txtinit.cxx pContourCache
0
sw/source/core/inc/UndoSort.hxx:38
SwSortUndoElement::(anonymous union)::(anonymous) nID
4294967295
sw/source/core/inc/UndoSplitMove.hxx:57
SwUndoMove m_bJoinNext
0
sw/source/core/layout/flylay.cxx:306
SwFlyFreeFrame::supportsAutoContour bOverrideHandleContourToAlwaysOff
1
sw/source/core/ole/ndole.cxx:1089
SwOLEObj::tryToGetChartContentAsPrimitive2DSequence bAsynchronousLoadingAllowed
0
sw/source/core/text/pordrop.hxx:32
/home/noel/libo2/sw/source/core/text/txtinit.cxx pDropCapCache
0
sw/source/filter/inc/rtf.hxx:31
RTFSurround::(anonymous union)::(anonymous) nJunk
0
sw/source/filter/ww8/ww8par3.cxx:340
(anonymous namespace)::WW8LST bSimpleList
1
sw/source/filter/ww8/ww8par3.cxx:341
(anonymous namespace)::WW8LST bRestartHdn
1
sw/source/filter/ww8/ww8par3.cxx:375
(anonymous namespace)::WW8LVL bV6Prev
1
sw/source/filter/ww8/ww8par3.cxx:376
(anonymous namespace)::WW8LVL bV6PrSp
1
sw/source/filter/ww8/ww8par3.cxx:377
(anonymous namespace)::WW8LVL bV6
1
sw/source/filter/ww8/ww8par5.cxx:1566
SwWW8ImplReader::Read_F_DocInfo aName10
\15
sw/source/filter/ww8/ww8par5.cxx:1567
SwWW8ImplReader::Read_F_DocInfo aName11
TITEL
sw/source/filter/ww8/ww8par5.cxx:1569
SwWW8ImplReader::Read_F_DocInfo aName12
TITRE
sw/source/filter/ww8/ww8par5.cxx:1571
SwWW8ImplReader::Read_F_DocInfo aName13
TITLE
sw/source/filter/ww8/ww8par5.cxx:1573
SwWW8ImplReader::Read_F_DocInfo aName14
TITRO
sw/source/filter/ww8/ww8par5.cxx:1575
SwWW8ImplReader::Read_F_DocInfo aName20
\21
sw/source/filter/ww8/ww8par5.cxx:1576
SwWW8ImplReader::Read_F_DocInfo aName21
ERSTELLDATUM
sw/source/filter/ww8/ww8par5.cxx:1578
SwWW8ImplReader::Read_F_DocInfo aName22
CR\-55\-55
sw/source/filter/ww8/ww8par5.cxx:1580
SwWW8ImplReader::Read_F_DocInfo aName23
CREATED
sw/source/filter/ww8/ww8par5.cxx:1582
SwWW8ImplReader::Read_F_DocInfo aName24
CREADO
sw/source/filter/ww8/ww8par5.cxx:1584
SwWW8ImplReader::Read_F_DocInfo aName30
\22
sw/source/filter/ww8/ww8par5.cxx:1585
SwWW8ImplReader::Read_F_DocInfo aName31
ZULETZTGESPEICHERTZEIT
sw/source/filter/ww8/ww8par5.cxx:1587
SwWW8ImplReader::Read_F_DocInfo aName32
DERNIERENREGISTREMENT
sw/source/filter/ww8/ww8par5.cxx:1589
SwWW8ImplReader::Read_F_DocInfo aName33
SAVED
sw/source/filter/ww8/ww8par5.cxx:1591
SwWW8ImplReader::Read_F_DocInfo aName34
MODIFICADO
sw/source/filter/ww8/ww8par5.cxx:1593
SwWW8ImplReader::Read_F_DocInfo aName40
\23
sw/source/filter/ww8/ww8par5.cxx:1594
SwWW8ImplReader::Read_F_DocInfo aName41
ZULETZTGEDRUCKT
sw/source/filter/ww8/ww8par5.cxx:1596
SwWW8ImplReader::Read_F_DocInfo aName42
DERNI\-56REIMPRESSION
sw/source/filter/ww8/ww8par5.cxx:1598
SwWW8ImplReader::Read_F_DocInfo aName43
LASTPRINTED
sw/source/filter/ww8/ww8par5.cxx:1600
SwWW8ImplReader::Read_F_DocInfo aName44
HUPS PUPS
sw/source/filter/ww8/ww8par5.cxx:1602
SwWW8ImplReader::Read_F_DocInfo aName50
\24
sw/source/filter/ww8/ww8par5.cxx:1603
SwWW8ImplReader::Read_F_DocInfo aName51
\-36BERARBEITUNGSNUMMER
sw/source/filter/ww8/ww8par5.cxx:1605
SwWW8ImplReader::Read_F_DocInfo aName52
NUM\-55RODEREVISION
sw/source/filter/ww8/ww8par5.cxx:1607
SwWW8ImplReader::Read_F_DocInfo aName53
REVISIONNUMBER
sw/source/filter/ww8/ww8par5.cxx:1609
SwWW8ImplReader::Read_F_DocInfo aName54
SNUBBEL BUBBEL
sw/source/filter/ww8/ww8par.hxx:669
WW8FormulaControl mfUnknown
0
sw/source/filter/ww8/ww8par.hxx:676
WW8FormulaControl mhpsCheckBox
20
sw/source/filter/ww8/ww8par.hxx:1035
WW8TabBandDesc bCantSplit90
0
sw/source/filter/ww8/ww8scan.hxx:1165
WW8Fib m_fObfuscated
0
sw/source/filter/ww8/ww8scan.hxx:1511
WW8Fib m_fcPlcffactoid
0
sw/source/filter/ww8/ww8scan.hxx:1513
WW8Fib m_lcbPlcffactoid
0
sw/source/filter/ww8/ww8scan.hxx:1518
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:68
SwLabFormatPage aPreviewIdle
SwLabFormatPage Preview
sw/source/uibase/inc/edtdd.hxx:15
/home/noel/libo2/sw/source/uibase/docvw/edtwin.cxx g_bExecuteDrag
0
sw/source/uibase/inc/edtwin.hxx:300
/home/noel/libo2/sw/source/uibase/docvw/edtdd.cxx g_bFrameDrag
0
sw/source/uibase/inc/edtwin.hxx:301
/home/noel/libo2/sw/source/uibase/docvw/edtwin.cxx g_bDDTimerStarted
0
sw/source/uibase/inc/edtwin.hxx:303
/home/noel/libo2/sw/source/uibase/dochdl/swdtflvr.cxx g_bDDINetAttr
1
sw/source/uibase/inc/edtwin.hxx:303
/home/noel/libo2/sw/source/uibase/docvw/edtwin.cxx g_bDDINetAttr
0
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:84
SwSrcEditWindow m_aSyntaxIdle
sw uibase SwSrcEditWindow Syntax
sw/source/uibase/inc/unotools.hxx:46
SwOneExampleFrame m_aLoadedIdle
sw uibase SwOneExampleFrame Loaded
unotools/source/config/saveopt.cxx:82
(anonymous namespace)::SvtSaveOptions_Impl bROUserAutoSave
0
vcl/headless/svpgdi.cxx:598
(anonymous) nMinimalSquareSizeToBuffer
4096
vcl/headless/svpgdi.cxx:1641
SvpSalGraphics::drawPolyLine bDoDirectCairoStroke
1
vcl/inc/canvasbitmap.hxx:53
vcl::unotools::VclCanvasBitmap m_nEndianness
0
vcl/inc/graphic/Manager.hxx:41
vcl::graphic::Manager maSwapOutTimer
graphic::Manager maSwapOutTimer
vcl/inc/impfontcache.hxx:75
ImplFontCache m_aBoundRectCache
3000
vcl/inc/printdlg.hxx:209
vcl::PrintDialog maUpdatePreviewIdle
Print Dialog Update Preview Idle
vcl/inc/printdlg.hxx:211
vcl::PrintDialog maUpdatePreviewNoCacheIdle
Print Dialog Update Preview (no cache) Idle
vcl/inc/qt5/Qt5Instance.hxx:67
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:164
SalWheelMouseEvent mbDeltaIsPixel
0
vcl/inc/svdata.hxx:316
ImplSVNWFData mbMenuBarDockingAreaCommonBG
0
vcl/qa/cppunit/png/PngFilterTest.cxx:35
PngFilterTest maDataUrl
/vcl/qa/cppunit/png/data/
vcl/qa/cppunit/svm/svmtest.cxx:33
SvmTest maDataUrl
/vcl/qa/cppunit/svm/data/
vcl/source/bitmap/bitmap.cxx:159
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 nV5RedMask
0
vcl/source/bitmap/dibtools.cxx:108
(anonymous namespace)::DIBV5Header nV5GreenMask
0
vcl/source/bitmap/dibtools.cxx:109
(anonymous namespace)::DIBV5Header nV5BlueMask
0
vcl/source/bitmap/dibtools.cxx:110
(anonymous namespace)::DIBV5Header nV5AlphaMask
0
vcl/source/bitmap/dibtools.cxx:113
(anonymous namespace)::DIBV5Header nV5GammaRed
0
vcl/source/bitmap/dibtools.cxx:114
(anonymous namespace)::DIBV5Header nV5GammaGreen
0
vcl/source/bitmap/dibtools.cxx:115
(anonymous namespace)::DIBV5Header nV5GammaBlue
0
vcl/source/bitmap/dibtools.cxx:117
(anonymous namespace)::DIBV5Header nV5ProfileData
0
vcl/source/bitmap/dibtools.cxx:118
(anonymous namespace)::DIBV5Header nV5ProfileSize
0
vcl/source/bitmap/dibtools.cxx:119
(anonymous namespace)::DIBV5Header nV5Reserved
0
vcl/source/control/imivctl.hxx:123
SvxIconChoiceCtrl_Impl aAutoArrangeIdle
svtools contnr SvxIconChoiceCtrl_Impl AutoArrange
vcl/source/control/imivctl.hxx:124
SvxIconChoiceCtrl_Impl aDocRectChangedIdle
svtools contnr SvxIconChoiceCtrl_Impl DocRectChanged
vcl/source/control/imivctl.hxx:125
SvxIconChoiceCtrl_Impl aVisRectChangedIdle
svtools contnr SvxIconChoiceCtrl_Impl VisRectChanged
vcl/source/control/imivctl.hxx:126
SvxIconChoiceCtrl_Impl aCallSelectHdlIdle
svtools contnr SvxIconChoiceCtrl_Impl CallSelectHdl
vcl/source/control/roadmapwizard.cxx:60
vcl::RoadmapWizardImpl pRoadmap
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:697
(anonymous namespace)::WeightSearchEntry weight
5
vcl/source/fontsubset/ttcr.cxx:350
vcl::(anonymous namespace)::tdata_post ptr
0
vcl/source/gdi/pdfwriter_impl.hxx:766
vcl::PDFWriterImpl m_DocDigest
0
vcl/unx/gtk3/a11y/gtk3atkutil.cxx:629
ooo_atk_util_ensure_event_listener bInited
1
vcl/unx/gtk3/gtk3gtkinst.cxx:16767
(anonymous namespace)::ensure_intercept_drawing_area_accessibility bDone
1
vcl/unx/gtk3/gtk3gtkinst.cxx:16795
(anonymous namespace)::ensure_disable_ctrl_page_up_down_bindings bDone
1
workdir/LexTarget/l10ntools/source/xrmlex.cxx:706
/home/noel/libo2/workdir/LexTarget/l10ntools/source/xrmlex.cxx bText
0
writerfilter/source/dmapper/DomainMapper_Impl.hxx:159
writerfilter::dmapper::FieldParagraph m_bRemove
0
writerfilter/source/dmapper/SettingsTable.cxx:271
writerfilter::dmapper::SettingsTable_Impl m_pThemeFontLangProps
3
writerfilter/source/rtftok/rtfdocumentimpl.hxx:876
writerfilter::rtftok::RTFDocumentImpl m_nNestedTRLeft
0
writerfilter/source/rtftok/rtfdocumentimpl.hxx:877
writerfilter::rtftok::RTFDocumentImpl m_nTopLevelTRLeft
0
writerfilter/source/rtftok/rtfdocumentimpl.hxx:880
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
xmloff/source/text/XMLIndexTemplateContext.hxx:56
/home/noel/libo2/xmloff/source/text/XMLIndexTemplateContext.cxx aLevelNameTableMap
0
|