summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/unusedenumconstants.writeonly.results
blob: 977268921a216337039dca2966a620e9897089ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
basctl/source/basicide/baside3.cxx:843
    enum NameClashMode NO_CLASH
basctl/source/basicide/doceventnotifier.cxx:55
    enum basctl::(anonymous namespace)::ListenerAction RemoveListener
basctl/source/basicide/macrodlg.hxx:32
    enum basctl::MacroExitCode Macro_Close
basctl/source/basicide/macrodlg.hxx:34
    enum basctl::MacroExitCode Macro_New
basctl/source/basicide/macrodlg.hxx:35
    enum basctl::MacroExitCode Macro_Edit
basctl/source/inc/bastype2.hxx:40
    enum BrowseMode All
basctl/source/inc/dlged.hxx:99
    enum basctl::DlgEditor::Mode SELECT
basctl/source/inc/layout.hxx:82
    enum basctl::Layout::SplittedSide::Side Bottom
basctl/source/inc/sbxitem.hxx:30
    enum basctl::ItemType TYPE_SHELL
basctl/source/inc/sbxitem.hxx:31
    enum basctl::ItemType TYPE_LIBRARY
basctl/source/inc/scriptdocument.hxx:46
    enum basctl::LibraryLocation LIBRARY_LOCATION_UNKNOWN
basegfx/source/range/b2drangeclipper.cxx:149
    enum basegfx::(anonymous namespace)::SweepLineEvent::EdgeType FINISHING_EDGE
basegfx/source/range/b2drangeclipper.cxx:155
    enum basegfx::(anonymous namespace)::SweepLineEvent::EdgeDirection PROCEED_UP
basegfx/source/range/b2drangeclipper.cxx:789
    enum basegfx::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/basegfx/source/range/b2drangeclipper.cxx:789:9) NoErase
basegfx/source/range/b2drangeclipper.cxx:789
    enum basegfx::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/basegfx/source/range/b2drangeclipper.cxx:789:9) PerformErase
basic/source/inc/expr.hxx:61
    enum SbiExprMode EXPRMODE_STANDARD
basic/source/inc/expr.hxx:78
    enum SbiNodeType SbxDUMMY
basic/source/inc/expr.hxx:85
    enum RecursiveMode PREVENT_CALL
basic/source/inc/image.hxx:35
    enum SbiImageFlags EXPLICIT
basic/source/inc/image.hxx:36
    enum SbiImageFlags COMPARETEXT
basic/source/inc/image.hxx:37
    enum SbiImageFlags INITCODE
basic/source/inc/image.hxx:38
    enum SbiImageFlags CLASSMODULE
basic/source/inc/iosys.hxx:39
    enum SbiStreamFlags Output
basic/source/inc/namecont.hxx:213
    enum basic::SfxLibraryContainer::InitMode LIBRARY_INIT_FILE
basic/source/inc/namecont.hxx:215
    enum basic::SfxLibraryContainer::InitMode OLD_BASIC_STORAGE
basic/source/runtime/methods.cxx:4250
    enum BasicResponse Ok
basic/source/runtime/methods.cxx:4251
    enum BasicResponse Cancel
basic/source/runtime/methods.cxx:4252
    enum BasicResponse Abort
basic/source/runtime/methods.cxx:4253
    enum BasicResponse Retry
basic/source/runtime/methods.cxx:4254
    enum BasicResponse Ignore
basic/source/runtime/methods.cxx:4255
    enum BasicResponse Yes
basic/source/runtime/methods.cxx:4256
    enum BasicResponse No
binaryurp/source/cache.hxx:35
    enum binaryurp::cache::(unnamed at /home/noel/libo-plugin/binaryurp/qa/../source/cache.hxx:35:1) size
bridges/source/cpp_uno/gcc3_linux_x86-64/abi.hxx:56
    enum x86_64::ReturnKind RegistersGeneral
canvas/inc/rendering/irendermodule.hxx:56
    enum canvas::IRenderModule::PrimitiveType Triangle
canvas/inc/rendering/irendermodule.hxx:57
    enum canvas::IRenderModule::PrimitiveType Quad
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:67
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAX
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:68
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:69
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPMAIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:70
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:71
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STEPHELP_COUNT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:72
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MAX
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:73
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_MIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:74
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPMAIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:75
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_STEPHELP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:76
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TYPE
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:77
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TIME_INCREMENT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:78
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_EXPLICIT_TIME_INCREMENT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:79
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LOGARITHMIC
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:80
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_REVERSEDIRECTION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:81
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_VISIBLE
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:82
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_POSITION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:83
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CROSSOVER_VALUE
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:84
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ORIGIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:85
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_AUTO_ORIGIN
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:86
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARKS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:87
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_HELPMARKS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:88
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MARK_POSITION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:89
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_LABELS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:90
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_NUMBERFORMAT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:91
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:92
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_LABEL_POSITION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:93
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXT_ROTATION
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:94
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_ARRANGE_ORDER
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:95
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TEXTBREAK
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:96
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_CAN_OVERLAP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:97
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_STACKEDTEXT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:98
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_OVERLAP
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:99
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_GAP_WIDTH
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:100
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_DISPLAY_UNITS
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:101
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_BUILTINUNIT
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:102
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_TRY_STAGGERING_FIRST
chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:103
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/AxisWrapper.cxx:65:1) PROP_AXIS_MAJOR_ORIGIN
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:136
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_HAS_MAIN_TITLE
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:137
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_HAS_SUB_TITLE
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:138
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_HAS_LEGEND
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:139
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_LABELS_IN_FIRST_ROW
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:140
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_LABELS_IN_FIRST_COLUMN
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:141
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_ADDIN
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:142
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_BASEDIAGRAM
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:143
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_ADDITIONAL_SHAPES
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:144
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_UPDATE_ADDIN
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:145
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_NULL_DATE
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:146
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_ENABLE_COMPLEX_CHARTTYPES
chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:147
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/ChartDocumentWrapper.cxx:134:1) PROP_DOCUMENT_ENABLE_DATATABLE_DIALOG
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:76
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_SOLIDTYPE
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:77
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_SEGMENT_OFFSET
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:78
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_PERCENT_DIAGONAL
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:79
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_SEPARATOR
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:80
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_NUMBERFORMAT
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:81
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_LINK_NUMBERFORMAT_TO_SOURCE
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:82
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_PERCENTAGE_NUMBERFORMAT
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:83
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_TEXT_WORD_WRAP
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:84
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_PLACEMENT
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:86
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_ATTACHED_AXIS
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:87
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_SHOW_CUSTOM_LEADERLINES
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:88
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_TEXT_ROTATION
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:89
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_STYLE
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:90
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_WIDTH
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:91
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_COLOR
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:92
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_BORDER_TRANS
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:93
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_FILL_STYLE
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:94
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_FILL_COLOR
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:95
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_FILL_BACKGROUND
chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:96
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DataSeriesPointWrapper.cxx:73:1) PROP_SERIES_DATAPOINT_LABEL_FILL_HATCH_NAME
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:89
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_ATTRIBUTED_DATA_POINTS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:90
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_PERCENT_STACKED
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:91
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_STACKED
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:92
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_THREE_D
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:93
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_SOLIDTYPE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:94
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_DEEP
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:95
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_VERTICAL
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:96
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_NUMBER_OF_LINES
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:97
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_STACKED_BARS_CONNECTED
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:98
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_DATAROW_SOURCE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:100
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_GROUP_BARS_PER_AXIS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:101
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_INCLUDE_HIDDEN_CELLS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:103
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_SORT_BY_X_VALUES
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:105
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_STARTING_ANGLE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:106
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_OF_PIE_TYPE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:108
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_RIGHT_ANGLED_AXES
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:109
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_PERSPECTIVE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:110
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_ROTATION_HORIZONTAL
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:111
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_ROTATION_VERTICAL
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:113
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_MISSING_VALUE_TREATMENT
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:115
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_X_AXIS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:116
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_X_AXIS_DESCR
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:117
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_X_AXIS_TITLE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:118
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_X_AXIS_GRID
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:119
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_X_AXIS_HELP_GRID
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:121
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Y_AXIS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:122
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Y_AXIS_DESCR
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:123
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Y_AXIS_TITLE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:124
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Y_AXIS_GRID
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:125
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Y_AXIS_HELP_GRID
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:127
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Z_AXIS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:128
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Z_AXIS_DESCR
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:129
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Z_AXIS_TITLE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:130
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Z_AXIS_GRID
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:131
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_Z_AXIS_HELP_GRID
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:133
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:134
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_DESCR
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:136
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:137
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_DESCR
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:139
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_SECOND_X_AXIS_TITLE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:140
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_HAS_SECOND_Y_AXIS_TITLE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:142
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_AUTOMATIC_SIZE
chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:143
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/DiagramWrapper.cxx:87:1) PROP_DIAGRAM_EXTERNALDATA
chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:207
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:205:1) PROP_LEGEND_ALIGNMENT
chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:208
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/LegendWrapper.cxx:205:1) PROP_LEGEND_EXPANSION
chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:186
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:184:1) PROP_TITLE_STRING
chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:187
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:184:1) PROP_TITLE_FORMATTED_STRINGS
chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:188
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:184:1) PROP_TITLE_VISIBLE
chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:189
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:184:1) PROP_TITLE_TEXT_ROTATION
chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:190
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/TitleWrapper.cxx:184:1) PROP_TITLE_TEXT_STACKED
chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx:102
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedAutomaticPositionProperties.cxx:100:1) PROP_CHART_AUTOMATIC_POSITION
chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx:53
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedDataCaptionProperties.cxx:50:1) PROP_CHART_DATAPOINT_DATA_CAPTION
chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx:117
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedScaleTextProperties.cxx:115:1) PROP_CHART_SCALE_TEXT
chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:168
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:165:1) PROP_CHART_SPLINE_TYPE
chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:169
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:165:1) PROP_CHART_SPLINE_ORDER
chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:170
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSplineProperties.cxx:165:1) PROP_CHART_SPLINE_RESOLUTION
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:934
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_CONST_ERROR_LOW
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:935
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_CONST_ERROR_HIGH
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:936
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_MEAN_VALUE
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:937
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_ERROR_CATEGORY
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:938
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_ERROR_BAR_STYLE
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:939
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_PERCENT_ERROR
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:940
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_ERROR_MARGIN
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:941
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_ERROR_INDICATOR
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:942
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_ERROR_RANGE_POSITIVE
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:943
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_ERROR_RANGE_NEGATIVE
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:944
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_REGRESSION_CURVES
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:945
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_REGRESSION_PROPERTIES
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:946
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_ERROR_PROPERTIES
chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:947
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStatisticProperties.cxx:931:1) PROP_CHART_STATISTIC_MEAN_VALUE_PROPERTIES
chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:252
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:249:1) PROP_CHART_STOCK_VOLUME
chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:253
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedStockProperties.cxx:249:1) PROP_CHART_STOCK_UPDOWN
chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:106
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:103:1) PROP_CHART_SYMBOL_TYPE
chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:107
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:103:1) PROP_CHART_SYMBOL_BITMAP_URL
chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:108
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:103:1) PROP_CHART_SYMBOL_BITMAP
chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:109
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:103:1) PROP_CHART_SYMBOL_SIZE
chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:110
    enum chart::wrapper::(anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/controller/chartapiwrapper/WrappedSymbolProperties.cxx:103:1) PROP_CHART_SYMBOL_AND_LINES
chart2/source/controller/dialogs/DialogModel.hxx:104
    enum chart::DialogModel::MoveDirection Up
chart2/source/controller/dialogs/tp_Scale.cxx:210
    enum chart::(anonymous namespace)::AxisTypeListBoxEntry TYPE_TEXT
chart2/source/controller/inc/AccessibleBase.hxx:281
    enum chart::AccessibleBase::eColorType ACC_BASE_BACKGROUND
chart2/source/controller/inc/ChartController.hxx:95
    enum chart::ChartDrawMode CHARTDRAW_SELECT
chart2/source/controller/main/ChartModelClone.hxx:35
    enum chart::ModelFacet E_MODEL
chart2/source/controller/main/DragMethod_RotateDiagram.hxx:36
    enum chart::DragMethod_RotateDiagram::RotationDirection ROTATIONDIRECTION_FREE
chart2/source/controller/sidebar/ChartElementsPanel.cxx:49
    enum chart::sidebar::(anonymous namespace)::GridType VERT_MINOR
chart2/source/controller/sidebar/ChartElementsPanel.cxx:56
    enum chart::sidebar::(anonymous namespace)::AxisType X_MAIN
chart2/source/controller/sidebar/ChartErrorBarPanel.cxx:39
    enum chart::sidebar::(anonymous namespace)::ErrorBarDirection POSITIVE
chart2/source/inc/CharacterProperties.hxx:44
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_NAME
chart2/source/inc/CharacterProperties.hxx:45
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_STYLE_NAME
chart2/source/inc/CharacterProperties.hxx:46
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_FAMILY
chart2/source/inc/CharacterProperties.hxx:47
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_CHAR_SET
chart2/source/inc/CharacterProperties.hxx:48
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_FONT_PITCH
chart2/source/inc/CharacterProperties.hxx:49
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COLOR
chart2/source/inc/CharacterProperties.hxx:52
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ESCAPEMENT
chart2/source/inc/CharacterProperties.hxx:53
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_CHAR_HEIGHT
chart2/source/inc/CharacterProperties.hxx:54
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_UNDERLINE
chart2/source/inc/CharacterProperties.hxx:55
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_UNDERLINE_COLOR
chart2/source/inc/CharacterProperties.hxx:56
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_UNDERLINE_HAS_COLOR
chart2/source/inc/CharacterProperties.hxx:57
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_OVERLINE
chart2/source/inc/CharacterProperties.hxx:58
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_OVERLINE_COLOR
chart2/source/inc/CharacterProperties.hxx:59
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_OVERLINE_HAS_COLOR
chart2/source/inc/CharacterProperties.hxx:60
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_WEIGHT
chart2/source/inc/CharacterProperties.hxx:61
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_POSTURE
chart2/source/inc/CharacterProperties.hxx:62
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_AUTO_KERNING
chart2/source/inc/CharacterProperties.hxx:63
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_KERNING
chart2/source/inc/CharacterProperties.hxx:68
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ESCAPEMENT_HEIGHT
chart2/source/inc/CharacterProperties.hxx:71
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_STRIKE_OUT
chart2/source/inc/CharacterProperties.hxx:72
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_WORD_MODE
chart2/source/inc/CharacterProperties.hxx:74
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_LOCALE
chart2/source/inc/CharacterProperties.hxx:77
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_SHADOWED
chart2/source/inc/CharacterProperties.hxx:78
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_CONTOURED
chart2/source/inc/CharacterProperties.hxx:79
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_RELIEF
chart2/source/inc/CharacterProperties.hxx:84
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_EMPHASIS
chart2/source/inc/CharacterProperties.hxx:92
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_NAME
chart2/source/inc/CharacterProperties.hxx:93
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_STYLE_NAME
chart2/source/inc/CharacterProperties.hxx:94
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_FAMILY
chart2/source/inc/CharacterProperties.hxx:95
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_CHAR_SET
chart2/source/inc/CharacterProperties.hxx:96
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_FONT_PITCH
chart2/source/inc/CharacterProperties.hxx:97
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_CHAR_HEIGHT
chart2/source/inc/CharacterProperties.hxx:98
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_WEIGHT
chart2/source/inc/CharacterProperties.hxx:99
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_POSTURE
chart2/source/inc/CharacterProperties.hxx:100
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_ASIAN_LOCALE
chart2/source/inc/CharacterProperties.hxx:106
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_NAME
chart2/source/inc/CharacterProperties.hxx:107
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_STYLE_NAME
chart2/source/inc/CharacterProperties.hxx:108
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_FAMILY
chart2/source/inc/CharacterProperties.hxx:109
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_CHAR_SET
chart2/source/inc/CharacterProperties.hxx:110
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_FONT_PITCH
chart2/source/inc/CharacterProperties.hxx:111
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_CHAR_HEIGHT
chart2/source/inc/CharacterProperties.hxx:112
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_WEIGHT
chart2/source/inc/CharacterProperties.hxx:113
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_POSTURE
chart2/source/inc/CharacterProperties.hxx:114
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_CHAR_COMPLEX_LOCALE
chart2/source/inc/CharacterProperties.hxx:115
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_PARA_IS_CHARACTER_DISTANCE
chart2/source/inc/CharacterProperties.hxx:117
    enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) PROP_WRITING_MODE
chart2/source/inc/ChartResourceGroups.hxx:38
    enum chart::(unnamed at /home/noel/libo-plugin/chart2/source/inc/ChartResourceGroups.hxx:35:1) POS_3DSCHEME_REALISTIC
chart2/source/inc/ChartType.hxx:43
    enum chart::(unnamed at /home/noel/libo-plugin/chart2/source/inc/ChartType.hxx:41:1) PROP_PIECHARTTYPE_USE_RINGS
chart2/source/inc/ChartType.hxx:44
    enum chart::(unnamed at /home/noel/libo-plugin/chart2/source/inc/ChartType.hxx:41:1) PROP_PIECHARTTYPE_3DRELATIVEHEIGHT
chart2/source/inc/ChartType.hxx:45
    enum chart::(unnamed at /home/noel/libo-plugin/chart2/source/inc/ChartType.hxx:41:1) PROP_PIECHARTTYPE_SUBTYPE
chart2/source/inc/DataSeriesProperties.hxx:33
    enum chart::DataSeriesProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/DataSeriesProperties.hxx:30:5) PROP_DATASERIES_STACKING_DIRECTION
chart2/source/inc/DataSeriesProperties.hxx:34
    enum chart::DataSeriesProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/DataSeriesProperties.hxx:30:5) PROP_DATASERIES_VARY_COLORS_BY_POINT
chart2/source/inc/DataSeriesProperties.hxx:35
    enum chart::DataSeriesProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/DataSeriesProperties.hxx:30:5) PROP_DATASERIES_ATTACHED_AXIS_INDEX
chart2/source/inc/DataSeriesProperties.hxx:36
    enum chart::DataSeriesProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/DataSeriesProperties.hxx:30:5) PROP_DATASERIES_SHOW_LEGEND_ENTRY
chart2/source/inc/DataSeriesProperties.hxx:37
    enum chart::DataSeriesProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/DataSeriesProperties.hxx:30:5) PROP_DATASERIES_DELETED_LEGEND_ENTRIES
chart2/source/inc/DataSeriesProperties.hxx:38
    enum chart::DataSeriesProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/DataSeriesProperties.hxx:30:5) PROP_DATASERIES_SHOW_CUSTOM_LEADERLINES
chart2/source/inc/Diagram.hxx:57
    enum chart::DiagramPositioningMode Auto
chart2/source/inc/FastPropertyIdRanges.hxx:25
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START
chart2/source/inc/FastPropertyIdRanges.hxx:26
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_DATA_SERIES
chart2/source/inc/FastPropertyIdRanges.hxx:27
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_DATA_POINT
chart2/source/inc/FastPropertyIdRanges.hxx:29
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_LINE_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:30
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_FILL_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:31
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_USERDEF_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:32
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_SCENE_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:35
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_CHART_STATISTIC_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:36
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_CHART_SYMBOL_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:37
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_CHART_DATACAPTION_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:38
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_CHART_SPLINE_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:39
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_CHART_STOCK_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:40
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_CHART_AUTOPOSITION_PROP
chart2/source/inc/FastPropertyIdRanges.hxx:41
    enum chart::FastPropertyIdRanges FAST_PROPERTY_ID_START_SCALE_TEXT_PROP
chart2/source/inc/FillProperties.hxx:39
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_STYLE
chart2/source/inc/FillProperties.hxx:40
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_COLOR
chart2/source/inc/FillProperties.hxx:41
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_TRANSPARENCE
chart2/source/inc/FillProperties.hxx:42
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_TRANSPARENCE_GRADIENT_NAME
chart2/source/inc/FillProperties.hxx:44
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_GRADIENT_NAME
chart2/source/inc/FillProperties.hxx:45
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_GRADIENT_STEPCOUNT
chart2/source/inc/FillProperties.hxx:47
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_HATCH_NAME
chart2/source/inc/FillProperties.hxx:50
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_NAME
chart2/source/inc/FillProperties.hxx:53
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_OFFSETX
chart2/source/inc/FillProperties.hxx:54
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_OFFSETY
chart2/source/inc/FillProperties.hxx:55
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_POSITION_OFFSETX
chart2/source/inc/FillProperties.hxx:56
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_POSITION_OFFSETY
chart2/source/inc/FillProperties.hxx:57
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_RECTANGLEPOINT
chart2/source/inc/FillProperties.hxx:58
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_LOGICALSIZE
chart2/source/inc/FillProperties.hxx:59
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_SIZEX
chart2/source/inc/FillProperties.hxx:60
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_SIZEY
chart2/source/inc/FillProperties.hxx:61
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BITMAP_MODE
chart2/source/inc/FillProperties.hxx:63
    enum chart::FillProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/FillProperties.hxx:36:5) PROP_FILL_BACKGROUND
chart2/source/inc/LinePropertiesHelper.hxx:41
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_STYLE
chart2/source/inc/LinePropertiesHelper.hxx:42
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_DASH
chart2/source/inc/LinePropertiesHelper.hxx:43
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_DASH_NAME
chart2/source/inc/LinePropertiesHelper.hxx:44
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_COLOR
chart2/source/inc/LinePropertiesHelper.hxx:45
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_TRANSPARENCE
chart2/source/inc/LinePropertiesHelper.hxx:46
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_WIDTH
chart2/source/inc/LinePropertiesHelper.hxx:47
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_JOINT
chart2/source/inc/LinePropertiesHelper.hxx:48
    enum chart::LinePropertiesHelper::(unnamed at /home/noel/libo-plugin/chart2/source/inc/LinePropertiesHelper.hxx:38:5) PROP_LINE_CAP
chart2/source/inc/ReferenceSizeProvider.hxx:48
    enum chart::ReferenceSizeProvider::AutoResizeState AUTO_RESIZE_NO
chart2/source/inc/SceneProperties.hxx:40
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_TRANSF_MATRIX
chart2/source/inc/SceneProperties.hxx:41
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_DISTANCE
chart2/source/inc/SceneProperties.hxx:42
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_FOCAL_LENGTH
chart2/source/inc/SceneProperties.hxx:43
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_SHADOW_SLANT
chart2/source/inc/SceneProperties.hxx:44
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_SHADE_MODE
chart2/source/inc/SceneProperties.hxx:45
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_AMBIENT_COLOR
chart2/source/inc/SceneProperties.hxx:46
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_TWO_SIDED_LIGHTING
chart2/source/inc/SceneProperties.hxx:47
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_CAMERA_GEOMETRY
chart2/source/inc/SceneProperties.hxx:48
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_PERSPECTIVE
chart2/source/inc/SceneProperties.hxx:49
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_1
chart2/source/inc/SceneProperties.hxx:50
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_1
chart2/source/inc/SceneProperties.hxx:51
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_1
chart2/source/inc/SceneProperties.hxx:52
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_2
chart2/source/inc/SceneProperties.hxx:53
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_2
chart2/source/inc/SceneProperties.hxx:54
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_2
chart2/source/inc/SceneProperties.hxx:55
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_3
chart2/source/inc/SceneProperties.hxx:56
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_3
chart2/source/inc/SceneProperties.hxx:57
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_3
chart2/source/inc/SceneProperties.hxx:58
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_4
chart2/source/inc/SceneProperties.hxx:59
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_4
chart2/source/inc/SceneProperties.hxx:60
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_4
chart2/source/inc/SceneProperties.hxx:61
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_5
chart2/source/inc/SceneProperties.hxx:62
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_5
chart2/source/inc/SceneProperties.hxx:63
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_5
chart2/source/inc/SceneProperties.hxx:64
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_6
chart2/source/inc/SceneProperties.hxx:65
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_6
chart2/source/inc/SceneProperties.hxx:66
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_6
chart2/source/inc/SceneProperties.hxx:67
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_7
chart2/source/inc/SceneProperties.hxx:68
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_7
chart2/source/inc/SceneProperties.hxx:69
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_7
chart2/source/inc/SceneProperties.hxx:70
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_COLOR_8
chart2/source/inc/SceneProperties.hxx:71
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_DIRECTION_8
chart2/source/inc/SceneProperties.hxx:72
    enum chart::SceneProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/SceneProperties.hxx:37:5) PROP_SCENE_LIGHT_ON_8
chart2/source/inc/ThreeDHelper.hxx:45
    enum chart::CuboidPlanePosition CuboidPlanePosition_Top
chart2/source/inc/TitleHelper.hxx:41
    enum chart::TitleHelper::eTitleType TITLE_BEGIN
chart2/source/inc/UserDefinedProperties.hxx:39
    enum chart::UserDefinedProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_CHART
chart2/source/inc/UserDefinedProperties.hxx:40
    enum chart::UserDefinedProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_TEXT
chart2/source/inc/UserDefinedProperties.hxx:41
    enum chart::UserDefinedProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF_PARA
chart2/source/inc/UserDefinedProperties.hxx:46
    enum chart::UserDefinedProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/UserDefinedProperties.hxx:36:5) PROP_XML_USERDEF
chart2/source/model/main/Axis.cxx:58
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_SHOW
chart2/source/model/main/Axis.cxx:59
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_CROSSOVER_POSITION
chart2/source/model/main/Axis.cxx:60
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_CROSSOVER_VALUE
chart2/source/model/main/Axis.cxx:61
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_DISPLAY_LABELS
chart2/source/model/main/Axis.cxx:62
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_NUMBERFORMAT
chart2/source/model/main/Axis.cxx:63
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_LINK_NUMBERFORMAT_TO_SOURCE
chart2/source/model/main/Axis.cxx:64
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_LABEL_POSITION
chart2/source/model/main/Axis.cxx:65
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_TEXT_ROTATION
chart2/source/model/main/Axis.cxx:66
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_TEXT_BREAK
chart2/source/model/main/Axis.cxx:67
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_TEXT_OVERLAP
chart2/source/model/main/Axis.cxx:68
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_TEXT_STACKED
chart2/source/model/main/Axis.cxx:69
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_TEXT_ARRANGE_ORDER
chart2/source/model/main/Axis.cxx:70
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_REFERENCE_DIAGRAM_SIZE
chart2/source/model/main/Axis.cxx:72
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_MAJOR_TICKMARKS
chart2/source/model/main/Axis.cxx:73
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_MINOR_TICKMARKS
chart2/source/model/main/Axis.cxx:74
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_MARK_POSITION
chart2/source/model/main/Axis.cxx:76
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_DISPLAY_UNITS
chart2/source/model/main/Axis.cxx:77
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_BUILTINUNIT
chart2/source/model/main/Axis.cxx:79
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_TRY_STAGGERING_FIRST
chart2/source/model/main/Axis.cxx:80
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Axis.cxx:56:1) PROP_AXIS_MAJOR_ORIGIN
chart2/source/model/main/BaseCoordinateSystem.cxx:46
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/BaseCoordinateSystem.cxx:44:1) PROP_COORDINATESYSTEM_SWAPXANDYAXIS
chart2/source/model/main/DataPointProperties.hxx:37
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_FILL_STYLE
chart2/source/model/main/DataPointProperties.hxx:38
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_FILL_COLOR
chart2/source/model/main/DataPointProperties.hxx:39
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_FILL_BACKGROUND
chart2/source/model/main/DataPointProperties.hxx:40
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_FILL_HATCH_NAME
chart2/source/model/main/DataPointProperties.hxx:43
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_COLOR
chart2/source/model/main/DataPointProperties.hxx:44
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TRANSPARENCY
chart2/source/model/main/DataPointProperties.hxx:47
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_FILL_STYLE
chart2/source/model/main/DataPointProperties.hxx:48
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TRANSPARENCY_GRADIENT_NAME
chart2/source/model/main/DataPointProperties.hxx:49
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_GRADIENT_NAME
chart2/source/model/main/DataPointProperties.hxx:50
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_GRADIENT_STEPCOUNT
chart2/source/model/main/DataPointProperties.hxx:51
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_HATCH_NAME
chart2/source/model/main/DataPointProperties.hxx:52
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_FILL_BITMAP_NAME
chart2/source/model/main/DataPointProperties.hxx:53
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_FILL_BACKGROUND
chart2/source/model/main/DataPointProperties.hxx:56
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_COLOR
chart2/source/model/main/DataPointProperties.hxx:57
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_STYLE
chart2/source/model/main/DataPointProperties.hxx:58
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_WIDTH
chart2/source/model/main/DataPointProperties.hxx:59
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_DASH_NAME
chart2/source/model/main/DataPointProperties.hxx:60
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_BORDER_TRANSPARENCY
chart2/source/model/main/DataPointProperties.hxx:63
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_SYMBOL_PROP
chart2/source/model/main/DataPointProperties.hxx:64
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_OFFSET
chart2/source/model/main/DataPointProperties.hxx:65
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_GEOMETRY3D
chart2/source/model/main/DataPointProperties.hxx:66
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_NUMBER_FORMAT
chart2/source/model/main/DataPointProperties.hxx:67
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LINK_NUMBERFORMAT_TO_SOURCE
chart2/source/model/main/DataPointProperties.hxx:68
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_PERCENTAGE_NUMBER_FORMAT
chart2/source/model/main/DataPointProperties.hxx:69
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_PLACEMENT
chart2/source/model/main/DataPointProperties.hxx:70
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_REFERENCE_DIAGRAM_SIZE
chart2/source/model/main/DataPointProperties.hxx:71
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TEXT_ROTATION
chart2/source/model/main/DataPointProperties.hxx:76
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_SHOW_ERROR_BOX
chart2/source/model/main/DataPointProperties.hxx:77
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_PERCENT_DIAGONAL
chart2/source/model/main/DataPointProperties.hxx:80
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL
chart2/source/model/main/DataPointProperties.hxx:81
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_SEPARATOR
chart2/source/model/main/DataPointProperties.hxx:82
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_TEXT_WORD_WRAP
chart2/source/model/main/DataPointProperties.hxx:83
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_STYLE
chart2/source/model/main/DataPointProperties.hxx:84
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_COLOR
chart2/source/model/main/DataPointProperties.hxx:85
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_WIDTH
chart2/source/model/main/DataPointProperties.hxx:86
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_DASH
chart2/source/model/main/DataPointProperties.hxx:87
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_DASH_NAME
chart2/source/model/main/DataPointProperties.hxx:88
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_BORDER_TRANS
chart2/source/model/main/DataPointProperties.hxx:89
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_CUSTOM_LABEL_FIELDS
chart2/source/model/main/DataPointProperties.hxx:90
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_CUSTOM_POS
chart2/source/model/main/DataPointProperties.hxx:91
    enum chart::DataPointProperties::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataPointProperties.hxx:35:5) PROP_DATAPOINT_LABEL_CUSTOM_SIZE
chart2/source/model/main/DataTable.cxx:32
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataTable.cxx:30:1) DataTableProperty_HorizontalBorder
chart2/source/model/main/DataTable.cxx:33
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataTable.cxx:30:1) DataTableProperty_VerticalBorder
chart2/source/model/main/DataTable.cxx:34
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataTable.cxx:30:1) DataTableProperty_Outilne
chart2/source/model/main/DataTable.cxx:35
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/DataTable.cxx:30:1) DataTableProperty_Keys
chart2/source/model/main/Diagram.cxx:85
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_REL_POS
chart2/source/model/main/Diagram.cxx:86
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_REL_SIZE
chart2/source/model/main/Diagram.cxx:87
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_POSSIZE_EXCLUDE_LABELS
chart2/source/model/main/Diagram.cxx:88
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_SORT_BY_X_VALUES
chart2/source/model/main/Diagram.cxx:89
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_CONNECT_BARS
chart2/source/model/main/Diagram.cxx:90
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_GROUP_BARS_PER_AXIS
chart2/source/model/main/Diagram.cxx:91
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_INCLUDE_HIDDEN_CELLS
chart2/source/model/main/Diagram.cxx:92
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_STARTING_ANGLE
chart2/source/model/main/Diagram.cxx:93
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_RIGHT_ANGLED_AXES
chart2/source/model/main/Diagram.cxx:97
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_MISSING_VALUE_TREATMENT
chart2/source/model/main/Diagram.cxx:98
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_3DRELATIVEHEIGHT
chart2/source/model/main/Diagram.cxx:100
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_OF_PIE_TYPE
chart2/source/model/main/Diagram.cxx:103
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Diagram.cxx:83:1) PROP_DIAGRAM_EXTERNALDATA
chart2/source/model/main/GridProperties.cxx:43
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/GridProperties.cxx:41:1) PROP_GRID_SHOW
chart2/source/model/main/Legend.cxx:52
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_ANCHOR_POSITION
chart2/source/model/main/Legend.cxx:53
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_EXPANSION
chart2/source/model/main/Legend.cxx:54
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_SHOW
chart2/source/model/main/Legend.cxx:55
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_OVERLAY
chart2/source/model/main/Legend.cxx:56
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_REF_PAGE_SIZE
chart2/source/model/main/Legend.cxx:57
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_REL_POS
chart2/source/model/main/Legend.cxx:58
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Legend.cxx:50:1) PROP_LEGEND_REL_SIZE
chart2/source/model/main/Title.cxx:50
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_PARA_ADJUST
chart2/source/model/main/Title.cxx:51
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_PARA_LAST_LINE_ADJUST
chart2/source/model/main/Title.cxx:52
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_PARA_LEFT_MARGIN
chart2/source/model/main/Title.cxx:53
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_PARA_RIGHT_MARGIN
chart2/source/model/main/Title.cxx:54
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_PARA_TOP_MARGIN
chart2/source/model/main/Title.cxx:55
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_PARA_BOTTOM_MARGIN
chart2/source/model/main/Title.cxx:56
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_PARA_IS_HYPHENATION
chart2/source/model/main/Title.cxx:57
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_VISIBLE
chart2/source/model/main/Title.cxx:59
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_TEXT_ROTATION
chart2/source/model/main/Title.cxx:60
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_TEXT_STACKED
chart2/source/model/main/Title.cxx:61
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_REL_POS
chart2/source/model/main/Title.cxx:63
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/main/Title.cxx:48:1) PROP_TITLE_REF_PAGE_SIZE
chart2/source/model/template/AreaChartTypeTemplate.cxx:44
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/AreaChartTypeTemplate.cxx:42:1) PROP_AREA_TEMPLATE_DIMENSION
chart2/source/model/template/BarChartTypeTemplate.cxx:45
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/BarChartTypeTemplate.cxx:43:1) PROP_BAR_TEMPLATE_DIMENSION
chart2/source/model/template/BarChartTypeTemplate.cxx:46
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/BarChartTypeTemplate.cxx:43:1) PROP_BAR_TEMPLATE_GEOMETRY3D
chart2/source/model/template/CandleStickChartType.cxx:42
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/CandleStickChartType.cxx:40:1) PROP_CANDLESTICKCHARTTYPE_JAPANESE
chart2/source/model/template/CandleStickChartType.cxx:46
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/CandleStickChartType.cxx:40:1) PROP_CANDLESTICKCHARTTYPE_SHOW_FIRST
chart2/source/model/template/CandleStickChartType.cxx:47
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/CandleStickChartType.cxx:40:1) PROP_CANDLESTICKCHARTTYPE_SHOW_HIGH_LOW
chart2/source/model/template/ColumnChartType.cxx:37
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ColumnChartType.cxx:35:1) PROP_BARCHARTTYPE_OVERLAP_SEQUENCE
chart2/source/model/template/ColumnChartType.cxx:38
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ColumnChartType.cxx:35:1) PROP_BARCHARTTYPE_GAPWIDTH_SEQUENCE
chart2/source/model/template/ColumnLineChartTypeTemplate.cxx:51
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ColumnLineChartTypeTemplate.cxx:49:1) PROP_COL_LINE_NUMBER_OF_LINES
chart2/source/model/template/LineChartType.cxx:41
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/LineChartType.cxx:39:1) PROP_LINECHARTTYPE_CURVE_STYLE
chart2/source/model/template/LineChartType.cxx:42
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/LineChartType.cxx:39:1) PROP_LINECHARTTYPE_CURVE_RESOLUTION
chart2/source/model/template/LineChartType.cxx:43
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/LineChartType.cxx:39:1) PROP_LINECHARTTYPE_SPLINE_ORDER
chart2/source/model/template/LineChartTypeTemplate.cxx:50
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/LineChartTypeTemplate.cxx:48:1) PROP_LINECHARTTYPE_TEMPLATE_CURVE_STYLE
chart2/source/model/template/LineChartTypeTemplate.cxx:51
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/LineChartTypeTemplate.cxx:48:1) PROP_LINECHARTTYPE_TEMPLATE_CURVE_RESOLUTION
chart2/source/model/template/LineChartTypeTemplate.cxx:52
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/LineChartTypeTemplate.cxx:48:1) PROP_LINECHARTTYPE_TEMPLATE_SPLINE_ORDER
chart2/source/model/template/PieChartTypeTemplate.cxx:54
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/PieChartTypeTemplate.cxx:52:1) PROP_PIE_TEMPLATE_DEFAULT_OFFSET
chart2/source/model/template/PieChartTypeTemplate.cxx:55
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/PieChartTypeTemplate.cxx:52:1) PROP_PIE_TEMPLATE_OFFSET_MODE
chart2/source/model/template/PieChartTypeTemplate.cxx:56
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/PieChartTypeTemplate.cxx:52:1) PROP_PIE_TEMPLATE_DIMENSION
chart2/source/model/template/PieChartTypeTemplate.cxx:57
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/PieChartTypeTemplate.cxx:52:1) PROP_PIE_TEMPLATE_USE_RINGS
chart2/source/model/template/PieChartTypeTemplate.cxx:58
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/PieChartTypeTemplate.cxx:52:1) PROP_PIE_TEMPLATE_SUB_PIE_TYPE
chart2/source/model/template/ScatterChartType.cxx:45
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ScatterChartType.cxx:43:1) PROP_SCATTERCHARTTYPE_CURVE_STYLE
chart2/source/model/template/ScatterChartType.cxx:46
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ScatterChartType.cxx:43:1) PROP_SCATTERCHARTTYPE_CURVE_RESOLUTION
chart2/source/model/template/ScatterChartType.cxx:47
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ScatterChartType.cxx:43:1) PROP_SCATTERCHARTTYPE_SPLINE_ORDER
chart2/source/model/template/ScatterChartTypeTemplate.cxx:51
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ScatterChartTypeTemplate.cxx:49:1) PROP_SCATTERCHARTTYPE_TEMPLATE_CURVE_STYLE
chart2/source/model/template/ScatterChartTypeTemplate.cxx:52
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ScatterChartTypeTemplate.cxx:49:1) PROP_SCATTERCHARTTYPE_TEMPLATE_CURVE_RESOLUTION
chart2/source/model/template/ScatterChartTypeTemplate.cxx:53
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/ScatterChartTypeTemplate.cxx:49:1) PROP_SCATTERCHARTTYPE_TEMPLATE_SPLINE_ORDER
chart2/source/model/template/StockChartTypeTemplate.cxx:51
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/StockChartTypeTemplate.cxx:49:1) PROP_STOCKCHARTTYPE_TEMPLATE_VOLUME
chart2/source/model/template/StockChartTypeTemplate.cxx:52
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/StockChartTypeTemplate.cxx:49:1) PROP_STOCKCHARTTYPE_TEMPLATE_OPEN
chart2/source/model/template/StockChartTypeTemplate.cxx:53
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/StockChartTypeTemplate.cxx:49:1) PROP_STOCKCHARTTYPE_TEMPLATE_LOW_HIGH
chart2/source/model/template/StockChartTypeTemplate.cxx:54
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/model/template/StockChartTypeTemplate.cxx:49:1) PROP_STOCKCHARTTYPE_TEMPLATE_JAPANESE
chart2/source/tools/CachedDataSequence.cxx:46
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/CachedDataSequence.cxx:43:1) PROP_NUMBERFORMAT_KEY
chart2/source/tools/CachedDataSequence.cxx:47
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/CachedDataSequence.cxx:43:1) PROP_PROPOSED_ROLE
chart2/source/tools/RegressionCurveModel.cxx:41
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_DEGREE
chart2/source/tools/RegressionCurveModel.cxx:42
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_PERIOD
chart2/source/tools/RegressionCurveModel.cxx:43
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_EXTRAPOLATE_FORWARD
chart2/source/tools/RegressionCurveModel.cxx:44
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_EXTRAPOLATE_BACKWARD
chart2/source/tools/RegressionCurveModel.cxx:45
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_FORCE_INTERCEPT
chart2/source/tools/RegressionCurveModel.cxx:46
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_INTERCEPT_VALUE
chart2/source/tools/RegressionCurveModel.cxx:47
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_CURVE_NAME
chart2/source/tools/RegressionCurveModel.cxx:48
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionCurveModel.cxx:39:1) PROPERTY_MOVING_AVERAGE_TYPE
chart2/source/tools/RegressionEquation.cxx:52
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_SHOW
chart2/source/tools/RegressionEquation.cxx:53
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_XNAME
chart2/source/tools/RegressionEquation.cxx:54
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_YNAME
chart2/source/tools/RegressionEquation.cxx:55
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_SHOW_CORRELATION_COEFF
chart2/source/tools/RegressionEquation.cxx:56
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_MAY_HAVE_CORRELATION_COEFF
chart2/source/tools/RegressionEquation.cxx:57
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_REF_PAGE_SIZE
chart2/source/tools/RegressionEquation.cxx:58
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_REL_POS
chart2/source/tools/RegressionEquation.cxx:59
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/RegressionEquation.cxx:50:1) PROP_EQUATION_NUMBER_FORMAT
chart2/source/tools/UncachedDataSequence.cxx:47
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/UncachedDataSequence.cxx:45:1) PROP_NUMBERFORMAT_KEY
chart2/source/tools/UncachedDataSequence.cxx:48
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/UncachedDataSequence.cxx:45:1) PROP_PROPOSED_ROLE
chart2/source/tools/UncachedDataSequence.cxx:49
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/chart2/source/tools/UncachedDataSequence.cxx:45:1) PROP_XML_RANGE
chart2/source/view/axes/VAxisProperties.hxx:51
    enum chart::AxisLabelStaggering SideBySide
chart2/source/view/inc/LegendEntryProvider.hxx:45
    enum chart::LegendSymbolStyle Box
chart2/source/view/inc/ShapeFactory.hxx:66
    enum chart::SymbolEnum Symbol_COUNT
chart2/source/view/inc/ShapeFactory.hxx:73
    enum chart::ShapeFactory::StackPosition Top
codemaker/source/cppumaker/dependencies.hxx:48
    enum codemaker::cppumaker::Dependencies::Kind KIND_NORMAL
comphelper/source/misc/backupfilehelper.cxx:209
    enum (anonymous namespace)::PackageRepository BUNDLED
comphelper/source/misc/backupfilehelper.cxx:209
    enum (anonymous namespace)::PackageRepository SHARED
comphelper/source/misc/backupfilehelper.cxx:209
    enum (anonymous namespace)::PackageRepository USER
comphelper/source/misc/syntaxhighlight.cxx:36
    enum (anonymous namespace)::CharFlags StartNumber
comphelper/source/misc/syntaxhighlight.cxx:37
    enum (anonymous namespace)::CharFlags InNumber
comphelper/source/misc/syntaxhighlight.cxx:38
    enum (anonymous namespace)::CharFlags InHexNumber
comphelper/source/misc/syntaxhighlight.cxx:39
    enum (anonymous namespace)::CharFlags InOctNumber
comphelper/source/misc/syntaxhighlight.cxx:40
    enum (anonymous namespace)::CharFlags StartString
comphelper/source/misc/syntaxhighlight.cxx:41
    enum (anonymous namespace)::CharFlags Operator
comphelper/source/misc/syntaxhighlight.cxx:42
    enum (anonymous namespace)::CharFlags Space
comphelper/source/misc/syntaxhighlight.cxx:43
    enum (anonymous namespace)::CharFlags EOL
configmgr/source/access.hxx:455
    enum configmgr::Access::(unnamed at /home/noel/libo-plugin/configmgr/source/access.hxx:454:5) IS_ANY
configmgr/source/partial.hxx:33
    enum configmgr::Partial::Containment CONTAINS_SUBNODES
connectivity/source/drivers/evoab2/EApi.h:74
    EBookQueryTest E_BOOK_QUERY_IS
connectivity/source/drivers/evoab2/EApi.h:75
    EBookQueryTest E_BOOK_QUERY_CONTAINS
connectivity/source/drivers/evoab2/EApi.h:76
    EBookQueryTest E_BOOK_QUERY_BEGINS_WITH
connectivity/source/drivers/evoab2/EApi.h:77
    EBookQueryTest E_BOOK_QUERY_ENDS_WITH
connectivity/source/inc/java/sql/ConnectionLog.hxx:66
    enum connectivity::java::sql::ConnectionLog::ObjectType CONNECTION
connectivity/source/inc/java/sql/ConnectionLog.hxx:67
    enum connectivity::java::sql::ConnectionLog::ObjectType STATEMENT
connectivity/source/inc/java/sql/ConnectionLog.hxx:68
    enum connectivity::java::sql::ConnectionLog::ObjectType RESULTSET
connectivity/source/inc/java/sql/ConnectionLog.hxx:70
    enum connectivity::java::sql::ConnectionLog::ObjectType ObjectTypeCount
connectivity/source/inc/propertyids.hxx:53
    enum PropertyId PROPERTY_ID_NAME
connectivity/source/inc/propertyids.hxx:54
    enum PropertyId PROPERTY_ID_TYPE
connectivity/source/inc/propertyids.hxx:55
    enum PropertyId PROPERTY_ID_TYPENAME
connectivity/source/inc/propertyids.hxx:56
    enum PropertyId PROPERTY_ID_PRECISION
connectivity/source/inc/propertyids.hxx:57
    enum PropertyId PROPERTY_ID_SCALE
connectivity/source/inc/propertyids.hxx:58
    enum PropertyId PROPERTY_ID_ISNULLABLE
connectivity/source/inc/propertyids.hxx:59
    enum PropertyId PROPERTY_ID_ISAUTOINCREMENT
connectivity/source/inc/propertyids.hxx:60
    enum PropertyId PROPERTY_ID_ISROWVERSION
connectivity/source/inc/propertyids.hxx:61
    enum PropertyId PROPERTY_ID_DESCRIPTION
connectivity/source/inc/propertyids.hxx:62
    enum PropertyId PROPERTY_ID_DEFAULTVALUE
connectivity/source/inc/propertyids.hxx:64
    enum PropertyId PROPERTY_ID_REFERENCEDTABLE
connectivity/source/inc/propertyids.hxx:65
    enum PropertyId PROPERTY_ID_UPDATERULE
connectivity/source/inc/propertyids.hxx:66
    enum PropertyId PROPERTY_ID_DELETERULE
connectivity/source/inc/propertyids.hxx:67
    enum PropertyId PROPERTY_ID_CATALOG
connectivity/source/inc/propertyids.hxx:68
    enum PropertyId PROPERTY_ID_ISUNIQUE
connectivity/source/inc/propertyids.hxx:69
    enum PropertyId PROPERTY_ID_ISPRIMARYKEYINDEX
connectivity/source/inc/propertyids.hxx:70
    enum PropertyId PROPERTY_ID_ISCLUSTERED
connectivity/source/inc/propertyids.hxx:71
    enum PropertyId PROPERTY_ID_ISASCENDING
connectivity/source/inc/propertyids.hxx:72
    enum PropertyId PROPERTY_ID_SCHEMANAME
connectivity/source/inc/propertyids.hxx:73
    enum PropertyId PROPERTY_ID_CATALOGNAME
connectivity/source/inc/propertyids.hxx:76
    enum PropertyId PROPERTY_ID_CHECKOPTION
connectivity/source/inc/propertyids.hxx:77
    enum PropertyId PROPERTY_ID_PASSWORD
connectivity/source/inc/propertyids.hxx:78
    enum PropertyId PROPERTY_ID_RELATEDCOLUMN
connectivity/source/inc/propertyids.hxx:80
    enum PropertyId PROPERTY_ID_FUNCTION
connectivity/source/inc/propertyids.hxx:81
    enum PropertyId PROPERTY_ID_TABLENAME
connectivity/source/inc/propertyids.hxx:82
    enum PropertyId PROPERTY_ID_REALNAME
connectivity/source/inc/propertyids.hxx:83
    enum PropertyId PROPERTY_ID_DBASEPRECISIONCHANGED
connectivity/source/inc/propertyids.hxx:84
    enum PropertyId PROPERTY_ID_ISCURRENCY
connectivity/source/inc/propertyids.hxx:88
    enum PropertyId PROPERTY_ID_HY010
connectivity/source/inc/propertyids.hxx:89
    enum PropertyId PROPERTY_ID_LABEL
connectivity/source/inc/propertyids.hxx:90
    enum PropertyId PROPERTY_ID_DELIMITER
connectivity/source/inc/propertyids.hxx:91
    enum PropertyId PROPERTY_ID_FORMATKEY
connectivity/source/inc/propertyids.hxx:92
    enum PropertyId PROPERTY_ID_LOCALE
connectivity/source/inc/propertyids.hxx:95
    enum PropertyId PROPERTY_ID_AUTOINCREMENTCREATION
connectivity/source/inc/propertyids.hxx:97
    enum PropertyId PROPERTY_ID_PRIVILEGES
connectivity/source/inc/propertyids.hxx:98
    enum PropertyId PROPERTY_ID_HAVINGCLAUSE
connectivity/source/inc/propertyids.hxx:100
    enum PropertyId PROPERTY_ID_ISSIGNED
connectivity/source/inc/propertyids.hxx:101
    enum PropertyId PROPERTY_ID_AGGREGATEFUNCTION
connectivity/source/inc/propertyids.hxx:102
    enum PropertyId PROPERTY_ID_ISSEARCHABLE
connectivity/source/inc/propertyids.hxx:104
    enum PropertyId PROPERTY_ID_APPLYFILTER
connectivity/source/inc/propertyids.hxx:105
    enum PropertyId PROPERTY_ID_FILTER
connectivity/source/inc/propertyids.hxx:106
    enum PropertyId PROPERTY_ID_MASTERFIELDS
connectivity/source/inc/propertyids.hxx:107
    enum PropertyId PROPERTY_ID_DETAILFIELDS
connectivity/source/inc/propertyids.hxx:108
    enum PropertyId PROPERTY_ID_FIELDTYPE
connectivity/source/inc/propertyids.hxx:109
    enum PropertyId PROPERTY_ID_VALUE
connectivity/source/inc/propertyids.hxx:110
    enum PropertyId PROPERTY_ID_ACTIVE_CONNECTION
connectivity/source/inc/TSortIndex.hxx:36
    enum connectivity::TAscendingOrder DESC
cppuhelper/source/servicemanager.hxx:117
    enum cppuhelper::ServiceManager::Data::Implementation::Status STATUS_WRAPPER
cui/inc/tipoftheday.hrc:50
    enum tipModule scalc
cui/inc/tipoftheday.hrc:50
    enum tipModule sdraw
cui/inc/tipoftheday.hrc:50
    enum tipModule simpress
cui/inc/tipoftheday.hrc:50
    enum tipModule soffice
cui/inc/tipoftheday.hrc:50
    enum tipModule swriter
cui/source/dialogs/colorpicker.cxx:59
    enum (anonymous namespace)::UpdateFlags All
cui/source/dialogs/hangulhanjadlg.cxx:88
    enum svx::(anonymous namespace)::PseudoRubyText::RubyPosition eBelow
cui/source/inc/acccfg.hxx:75
    enum StartFileDialogType Open
cui/source/inc/cuitabarea.hxx:82
    enum PageType Area
cui/source/inc/cuitabarea.hxx:86
    enum PageType Shadow
cui/source/inc/cuitabarea.hxx:87
    enum PageType Transparence
cui/source/inc/hldoctp.hxx:51
    enum SvxHyperlinkDocTp::EPathType Invalid
cui/source/inc/scriptdlg.hxx:42
    enum InputDialogMode NEWLIB
cui/source/options/optcolor.cxx:52
    enum (anonymous namespace)::Group Group_General
cui/source/options/optcolor.cxx:57
    enum (anonymous namespace)::Group Group_Basic
cui/source/options/optfltr.cxx:30
    enum MSFltrPg2_CheckBoxEntries Math
cui/source/options/optfltr.cxx:31
    enum MSFltrPg2_CheckBoxEntries Writer
cui/source/options/optfltr.cxx:32
    enum MSFltrPg2_CheckBoxEntries Calc
cui/source/options/optfltr.cxx:33
    enum MSFltrPg2_CheckBoxEntries Impress
cui/source/options/optfltr.cxx:34
    enum MSFltrPg2_CheckBoxEntries SmartArt
cui/source/options/optfltr.cxx:35
    enum MSFltrPg2_CheckBoxEntries Visio
cui/source/options/optfltr.cxx:36
    enum MSFltrPg2_CheckBoxEntries PDF
cui/source/options/optgenrl.cxx:50
    enum (anonymous namespace)::RowType Row_Company
cui/source/options/optgenrl.cxx:51
    enum (anonymous namespace)::RowType Row_Name
cui/source/options/optgenrl.cxx:52
    enum (anonymous namespace)::RowType Row_Name_Russian
cui/source/options/optgenrl.cxx:53
    enum (anonymous namespace)::RowType Row_Name_Eastern
cui/source/options/optgenrl.cxx:54
    enum (anonymous namespace)::RowType Row_Street
cui/source/options/optgenrl.cxx:55
    enum (anonymous namespace)::RowType Row_Street_Russian
cui/source/options/optgenrl.cxx:56
    enum (anonymous namespace)::RowType Row_City
cui/source/options/optgenrl.cxx:57
    enum (anonymous namespace)::RowType Row_City_US
cui/source/options/optgenrl.cxx:58
    enum (anonymous namespace)::RowType Row_Country
cui/source/options/optgenrl.cxx:59
    enum (anonymous namespace)::RowType Row_TitlePos
cui/source/options/optgenrl.cxx:60
    enum (anonymous namespace)::RowType Row_Phone
cui/source/options/optgenrl.cxx:61
    enum (anonymous namespace)::RowType Row_FaxMail
cui/source/tabpages/autocdlg.cxx:335
    enum (anonymous namespace)::OfaAutoFmtOptions USE_REPLACE_TABLE
cui/source/tabpages/autocdlg.cxx:336
    enum (anonymous namespace)::OfaAutoFmtOptions CORR_UPPER
cui/source/tabpages/autocdlg.cxx:337
    enum (anonymous namespace)::OfaAutoFmtOptions BEGIN_UPPER
cui/source/tabpages/autocdlg.cxx:338
    enum (anonymous namespace)::OfaAutoFmtOptions BOLD_UNDERLINE
cui/source/tabpages/autocdlg.cxx:339
    enum (anonymous namespace)::OfaAutoFmtOptions DETECT_URL
cui/source/tabpages/autocdlg.cxx:340
    enum (anonymous namespace)::OfaAutoFmtOptions DETECT_DOI
cui/source/tabpages/autocdlg.cxx:341
    enum (anonymous namespace)::OfaAutoFmtOptions REPLACE_DASHES
cui/source/tabpages/autocdlg.cxx:342
    enum (anonymous namespace)::OfaAutoFmtOptions DEL_SPACES_AT_STT_END
cui/source/tabpages/autocdlg.cxx:343
    enum (anonymous namespace)::OfaAutoFmtOptions DEL_SPACES_BETWEEN_LINES
cui/source/tabpages/autocdlg.cxx:344
    enum (anonymous namespace)::OfaAutoFmtOptions IGNORE_DBLSPACE
cui/source/tabpages/autocdlg.cxx:345
    enum (anonymous namespace)::OfaAutoFmtOptions CORRECT_CAPS_LOCK
cui/source/tabpages/autocdlg.cxx:347
    enum (anonymous namespace)::OfaAutoFmtOptions APPLY_NUMBERING_AFTER_SPACE
cui/source/tabpages/autocdlg.cxx:348
    enum (anonymous namespace)::OfaAutoFmtOptions INSERT_BORDER
cui/source/tabpages/autocdlg.cxx:349
    enum (anonymous namespace)::OfaAutoFmtOptions CREATE_TABLE
cui/source/tabpages/autocdlg.cxx:350
    enum (anonymous namespace)::OfaAutoFmtOptions REPLACE_STYLES
cui/source/tabpages/autocdlg.cxx:351
    enum (anonymous namespace)::OfaAutoFmtOptions DEL_EMPTY_NODE
cui/source/tabpages/autocdlg.cxx:352
    enum (anonymous namespace)::OfaAutoFmtOptions REPLACE_USER_COLL
cui/source/tabpages/autocdlg.cxx:1555
    enum (anonymous namespace)::OfaQuoteOptions ADD_NONBRK_SPACE
cui/source/tabpages/autocdlg.cxx:1556
    enum (anonymous namespace)::OfaQuoteOptions REPLACE_1ST
cui/source/tabpages/autocdlg.cxx:1557
    enum (anonymous namespace)::OfaQuoteOptions TRANSLITERATE_RTL
cui/source/tabpages/autocdlg.cxx:1558
    enum (anonymous namespace)::OfaQuoteOptions REPLACE_ANGLE_QUOTES
cui/source/tabpages/swpossizetabpage.cxx:104
    enum (anonymous namespace)::LB RelPagePrintAreaBottom
cui/source/tabpages/swpossizetabpage.cxx:105
    enum (anonymous namespace)::LB RelPagePrintAreaTop
dbaccess/source/core/dataaccess/databasedocument.hxx:161
    enum dbaccess::ODatabaseDocument::InitState NotInitialized
dbaccess/source/core/dataaccess/databasedocument.hxx:640
    enum dbaccess::DocumentGuard::InitMethod_ InitMethod
dbaccess/source/core/dataaccess/databasedocument.hxx:646
    enum dbaccess::DocumentGuard::DefaultMethod_ DefaultMethod
dbaccess/source/core/dataaccess/databasedocument.hxx:652
    enum dbaccess::DocumentGuard::MethodUsedDuringInit_ MethodUsedDuringInit
dbaccess/source/core/dataaccess/databasedocument.hxx:658
    enum dbaccess::DocumentGuard::MethodWithoutInit_ MethodWithoutInit
dbaccess/source/core/inc/definitioncontainer.hxx:104
    enum dbaccess::ODefinitionContainer::ListenerType ContainerListemers
dbaccess/source/core/inc/ModelImpl.hxx:176
    enum dbaccess::ODatabaseModelImpl::EmbeddedMacros DocumentWide
dbaccess/source/core/inc/objectnameapproval.hxx:49
    enum dbaccess::ObjectNameApproval::ObjectType TypeTable
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:72
    enum dbaccess::OSingleSelectQueryComposer::EColumnType GroupByColumns
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:73
    enum dbaccess::OSingleSelectQueryComposer::EColumnType OrderColumns
dbaccess/source/filter/xml/xmlDataSource.hxx:32
    enum dbaxml::OXMLDataSource::UsedFor eDataSource
dbaccess/source/ui/app/AppView.hxx:71
    enum dbaui::OApplicationView::ChildFocusState PANELSWAP
dbaccess/source/ui/dlg/ConnectionHelper.hxx:32
    enum dbaui::IS_PATH_EXIST PATH_EXIST
dbaccess/source/ui/inc/dbadmin.hxx:105
    enum dbaui::ODbAdminDialog::ApplyResult AR_KEEP
dbaccess/source/ui/inc/dsmeta.hxx:40
    enum dbaui::AuthenticationMode AuthPwd
dbaccess/source/ui/inc/QEnumTypes.hxx:26
    enum dbaui::EOrderDir ORDER_ASC
dbaccess/source/ui/inc/QEnumTypes.hxx:27
    enum dbaui::EOrderDir ORDER_DESC
dbaccess/source/ui/inc/QEnumTypes.hxx:49
    enum dbaui::ETableFieldType TAB_NORMAL_FIELD
dbaccess/source/ui/inc/QEnumTypes.hxx:50
    enum dbaui::ETableFieldType TAB_PRIMARY_FIELD
dbaccess/source/ui/inc/QueryDesignView.hxx:48
    enum dbaui::SqlParseError eIllegalJoinCondition
dbaccess/source/ui/inc/QueryDesignView.hxx:61
    enum dbaui::OQueryDesignView::ChildFocusState TABLEVIEW
dbaccess/source/ui/inc/WCopyTable.hxx:224
    enum dbaui::OCopyTableWizard::Wizard_Button_Style WIZARD_PREV
dbaccess/source/ui/tabledesign/TableFieldDescWin.hxx:37
    enum dbaui::OTableFieldDescWin::ChildFocusState HELP
desktop/inc/app.hxx:66
    enum desktop::Desktop::BootstrapStatus BS_OK
desktop/source/app/officeipcthread.cxx:770
    enum PipeMode PIPEMODE_CONNECTED
desktop/source/app/officeipcthread.hxx:84
    enum desktop::RequestHandler::State Starting
desktop/source/app/userinstall.hxx:32
    enum desktop::userinstall::Status ERROR_OTHER
desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:238
    enum dp_gui::ExtensionCmdQueue::Thread::Input START
desktop/source/deployment/inc/dp_update.hxx:47
    enum dp_misc::UPDATE_SOURCE UPDATE_SOURCE_ONLINE
desktop/source/deployment/registry/component/dp_component.cxx:112
    enum dp_registry::backend::component::(anonymous namespace)::BackendImpl::ComponentPackageImpl::Reg NotRegistered
desktop/source/deployment/registry/component/dp_component.cxx:244
    enum dp_registry::backend::component::(anonymous namespace)::BackendImpl::RcItem RCITEM_COMPONENTS
desktop/source/deployment/registry/inc/dp_backend.h:216
    enum dp_registry::backend::PackageRegistryBackend::Context Document
desktop/source/deployment/registry/inc/dp_backend.h:216
    enum dp_registry::backend::PackageRegistryBackend::Context Tmp
desktop/source/deployment/registry/inc/dp_backend.h:216
    enum dp_registry::backend::PackageRegistryBackend::Context Unknown
desktop/source/lib/init.cxx:6194
    enum (anonymous namespace)::UndoOrRedo REDO
desktop/source/lib/init.cxx:7813
    enum (unnamed at /home/noel/libo-plugin/desktop/source/lib/init.cxx:7810:5) FULL_INIT
desktop/source/migration/services/oo3extensionmigration.hxx:62
    enum migration::OO3ExtensionMigration::ScanResult SCANRESULT_DONTMIGRATE_EXTENSION
desktop/unx/source/start.c:178
    int ProgressExit
desktop/unx/source/start.c:178
    int ProgressRestart
editeng/inc/TextPortion.hxx:47
    enum AsianCompressionFlags Normal
editeng/source/editeng/impedit.hxx:1322
    enum ImpEditEngine::CallbackResult Continue
editeng/source/editeng/impedit.hxx:1340
    enum ImpEditEngine::IterFlag none
editeng/source/editeng/impedit.hxx:1341
    enum ImpEditEngine::IterFlag inclILS
editeng/source/items/paraitem.cxx:70
    enum (anonymous namespace)::SvxSpecialLineSpace User
editeng/source/items/paraitem.cxx:74
    enum (anonymous namespace)::SvxSpecialLineSpace End
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:23
    enum SvXMLAutoCorrectToken NAMESPACE
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:24
    enum SvXMLAutoCorrectToken ABBREVIATED_NAME
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:27
    enum SvXMLAutoCorrectToken NAME
emfio/inc/mtftools.hxx:50
    enum emfio::BackgroundMode OPAQUE
emfio/inc/mtftools.hxx:88
    enum emfio::WMFRasterOp Black
emfio/inc/mtftools.hxx:92
    enum emfio::WMFRasterOp CopyPen
emfio/inc/mtftools.hxx:125
    enum emfio::StretchMode BLACKONWHITE
emfio/inc/mtftools.hxx:126
    enum emfio::StretchMode WHITEONBLACK
emfio/inc/mtftools.hxx:127
    enum emfio::StretchMode COLORONCOLOR
emfio/inc/mtftools.hxx:173
    enum emfio::TextAlignmentMode TA_NOUPDATECP
emfio/inc/mtftools.hxx:175
    enum emfio::TextAlignmentMode TA_LEFT
emfio/inc/mtftools.hxx:176
    enum emfio::TextAlignmentMode TA_RIGHT
emfio/inc/mtftools.hxx:179
    enum emfio::TextAlignmentMode TA_TOP
emfio/inc/mtftools.hxx:192
    enum emfio::TernaryRasterOperation SRCCOPY
emfio/inc/mtftools.hxx:206
    enum emfio::PenStyle PS_COSMETIC
extensions/source/propctrlr/browserlistbox.cxx:126
    enum pcr::PropertyControlContext_Impl::NotificationMode eAsynchronously
extensions/source/propctrlr/eformshelper.hxx:180
    enum pcr::EFormsHelper::ModelElementType Binding
extensions/source/propctrlr/formcomponenthandler.hxx:46
    enum pcr::ComponentClassification eUnknown
extensions/source/propctrlr/formlinkdialog.cxx:77
    enum pcr::FieldLinkRow::LinkParticipant eMasterField
extensions/source/propctrlr/inspectormodelbase.cxx:35
    enum pcr::(anonymous namespace)::ModelPropertyId HAS_HELP_SECTION
extensions/source/propctrlr/inspectormodelbase.cxx:36
    enum pcr::(anonymous namespace)::ModelPropertyId MIN_HELP_TEXT_LINES
extensions/source/propctrlr/inspectormodelbase.cxx:37
    enum pcr::(anonymous namespace)::ModelPropertyId MAX_HELP_TEXT_LINES
extensions/source/propctrlr/inspectormodelbase.cxx:38
    enum pcr::(anonymous namespace)::ModelPropertyId IS_READ_ONLY
extensions/source/propctrlr/pcrcommon.hxx:38
    enum pcr::OwnPropertyId CONTROLCONTEXT
extensions/source/propctrlr/pcrcommon.hxx:39
    enum pcr::OwnPropertyId TABBINGMODEL
extensions/source/update/check/updatehdl.hxx:53
    enum DialogControls THROBBER_CTRL
filter/source/config/cache/filtercache.hxx:140
    enum filter::config::FilterCache::EItemFlushState E_ITEM_UNCHANGED
filter/source/xmlfilteradaptor/XmlFilterAdaptor.hxx:35
    enum FilterType FILTER_IMPORT
filter/source/xsltdialog/typedetectionimport.hxx:47
    enum ImportState e_Unknown
forms/source/inc/FormComponent.hxx:524
    enum frm::OBoundControlModel::ValueChangeInstigator eOther
forms/source/richtext/rtattributes.hxx:39
    enum frm::AttributeCheckState eIndetermined
forms/source/solar/inc/navtoolbar.hxx:38
    enum frm::NavigationToolBar::ImageSize eSmall
forms/source/xforms/submission/submission.hxx:113
    enum CSubmission::SubmissionResult UNKNOWN_ERROR
fpicker/source/office/fpinteraction.hxx:46
    enum svt::OFilePickerInteractionHandler::EInterceptedInteractions E_NOINTERCEPTION
fpicker/source/office/fpsmartcontent.hxx:59
    enum svt::SmartContent::Type Document
fpicker/source/office/fpsmartcontent.hxx:97
    enum svt::SmartContent::InteractionHandlerType IHT_OWN
framework/inc/dispatch/closedispatcher.hxx:66
    enum framework::CloseDispatcher::EOperation E_CLOSE_WIN
framework/inc/jobs/jobdata.hxx:51
    enum framework::JobData::EMode E_UNKNOWN_MODE
framework/inc/jobs/jobdata.hxx:55
    enum framework::JobData::EMode E_SERVICE
framework/inc/jobs/jobdata.hxx:67
    enum framework::JobData::EEnvironment E_UNKNOWN_ENVIRONMENT
framework/inc/jobs/jobresult.hxx:52
    enum framework::JobResult::EParts E_NOPART
framework/inc/jobs/jobresult.hxx:53
    enum framework::JobResult::EParts E_ARGUMENTS
framework/inc/jobs/jobresult.hxx:54
    enum framework::JobResult::EParts E_DEACTIVATE
framework/inc/jobs/jobresult.hxx:55
    enum framework::JobResult::EParts E_DISPATCHRESULT
framework/inc/uielement/menubarmerger.hxx:47
    enum framework::RPResultInfo RP_POPUPMENU_NOT_FOUND
framework/inc/uielement/menubarmerger.hxx:48
    enum framework::RPResultInfo RP_MENUITEM_NOT_FOUND
framework/inc/uielement/togglebuttontoolbarcontroller.hxx:47
    enum framework::ToggleButtonToolbarController::Style ToggleDropDownButton
framework/inc/xml/imagesdocumenthandler.hxx:58
    enum framework::OReadImagesDocumentHandler::Image_XML_Namespace IMG_NS_XLINK
framework/inc/xml/statusbardocumenthandler.hxx:60
    enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Namespace SB_NS_XLINK
framework/inc/xml/toolboxdocumenthandler.hxx:59
    enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Namespace TB_NS_XLINK
framework/source/fwe/classes/addonsoptions.cxx:240
    enum framework::AddonsOptions_Impl::ImageSize IMGSIZE_SMALL
framework/source/fwe/classes/addonsoptions.cxx:241
    enum framework::AddonsOptions_Impl::ImageSize IMGSIZE_BIG
framework/source/inc/loadenv/loadenv.hxx:91
    enum framework::LoadEnv::EContentType E_CAN_BE_HANDLED
framework/source/inc/loadenv/loadenvexception.hxx:55
    enum framework::LoadEnvException::EIDs ID_INVALID_ENVIRONMENT
framework/source/inc/loadenv/loadenvexception.hxx:58
    enum framework::LoadEnvException::EIDs ID_NO_TARGET_FOUND
framework/source/inc/loadenv/loadenvexception.hxx:61
    enum framework::LoadEnvException::EIDs ID_COULD_NOT_REACTIVATE_CONTROLLER
framework/source/inc/loadenv/loadenvexception.hxx:66
    enum framework::LoadEnvException::EIDs ID_STILL_RUNNING
framework/source/inc/loadenv/loadenvexception.hxx:71
    enum framework::LoadEnvException::EIDs ID_GENERAL_ERROR
framework/source/layoutmanager/toolbarlayoutmanager.hxx:55
    enum framework::ToolbarLayoutManager::PreviewFrameDetection PREVIEWFRAME_NO
framework/source/services/autorecovery.cxx:210
    enum (anonymous namespace)::DocState Unknown
framework/source/services/autorecovery.cxx:218
    enum (anonymous namespace)::DocState TrySave
framework/source/services/autorecovery.cxx:229
    enum (anonymous namespace)::DocState Succeeded
framework/source/services/autorecovery.cxx:289
    enum (anonymous namespace)::AutoRecovery::EFailureSafeResult E_COPIED
framework/source/services/autorecovery.cxx:290
    enum (anonymous namespace)::AutoRecovery::EFailureSafeResult E_ORIGINAL_FILE_MISSING
framework/source/services/autorecovery.cxx:291
    enum (anonymous namespace)::AutoRecovery::EFailureSafeResult E_WRONG_TARGET_PATH
framework/source/services/substitutepathvars.cxx:53
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_INST
framework/source/services/substitutepathvars.cxx:54
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_PROG
framework/source/services/substitutepathvars.cxx:55
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_USER
framework/source/services/substitutepathvars.cxx:57
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_HOME
framework/source/services/substitutepathvars.cxx:58
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_TEMP
framework/source/services/substitutepathvars.cxx:60
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERNAME
framework/source/services/substitutepathvars.cxx:61
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_LANGID
framework/source/services/substitutepathvars.cxx:62
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_VLANG
framework/source/services/substitutepathvars.cxx:63
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_INSTPATH
framework/source/services/substitutepathvars.cxx:64
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_PROGPATH
framework/source/services/substitutepathvars.cxx:65
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERPATH
framework/source/services/substitutepathvars.cxx:66
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_INSTURL
framework/source/services/substitutepathvars.cxx:67
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_PROGURL
framework/source/services/substitutepathvars.cxx:68
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERURL
framework/source/services/substitutepathvars.cxx:71
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_BASEINSTURL
framework/source/services/substitutepathvars.cxx:72
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_USERDATAURL
framework/source/services/substitutepathvars.cxx:73
    enum (anonymous namespace)::PreDefVariable PREDEFVAR_BRANDBASEURL
framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx:146
    enum (anonymous namespace)::ModuleUIConfigurationManager::Layer LAYER_DEFAULT
framework/source/uiconfiguration/moduleuiconfigurationmanager.cxx:148
    enum (anonymous namespace)::ModuleUIConfigurationManager::Layer LAYER_COUNT
framework/source/uiconfiguration/windowstateconfiguration.cxx:143
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_DOCKINGAREA
framework/source/uiconfiguration/windowstateconfiguration.cxx:144
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_POS
framework/source/uiconfiguration/windowstateconfiguration.cxx:145
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_SIZE
framework/source/uiconfiguration/windowstateconfiguration.cxx:146
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_UINAME
framework/source/uiconfiguration/windowstateconfiguration.cxx:147
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_INTERNALSTATE
framework/source/uiconfiguration/windowstateconfiguration.cxx:148
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_STYLE
framework/source/uiconfiguration/windowstateconfiguration.cxx:149
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_DOCKPOS
framework/source/uiconfiguration/windowstateconfiguration.cxx:150
    enum (anonymous namespace)::ConfigurationAccess_WindowState::(unnamed at /home/noel/libo-plugin/framework/source/uiconfiguration/windowstateconfiguration.cxx:141:9) WINDOWSTATE_MASK_DOCKSIZE
helpcompiler/inc/BasCodeTagger.hxx:35
    enum BasicCodeTagger::TaggerException NULL_DOCUMENT
helpcompiler/inc/HelpCompiler.hxx:50
    enum fs::convert native
i18nlangtag/source/languagetag/languagetag.cxx:368
    enum LanguageTagImpl::Extraction EXTRACTED_KNOWN_BAD
i18npool/inc/cclass_unicode.hxx:37
    enum ParserFlags ILLEGAL
i18npool/inc/cclass_unicode.hxx:46
    enum ParserFlags WORD_SEP
idl/inc/types.hxx:49
    enum MetaTypeType Enum
idl/inc/types.hxx:49
    enum MetaTypeType Interface
include/avmedia/mediaitem.hxx:52
    enum AVMediaSetMask ALL
include/basegfx/DrawCommands.hxx:34
    enum gfx::DrawCommandType Root
include/basegfx/polygon/b2dpolygontools.hxx:48
    enum CutFlagValue DEFAULT
include/basegfx/utils/common.hxx:28
    enum basegfx::Axis2D Y
include/basic/sbdef.hxx:51
    enum BasicDebugFlags Continue
include/codemaker/commoncpp.hxx:51
    enum codemaker::cpp::IdentifierTranslationMode NonGlobal
include/comphelper/componentbase.hxx:110
    enum comphelper::ComponentMethodGuard::MethodType Default
include/comphelper/configurationhelper.hxx:43
    enum comphelper::EConfigurationModes Standard
include/comphelper/docpasswordhelper.hxx:39
    enum comphelper::DocPasswordVerifierResult Abort
include/comphelper/documentconstants.hxx:104
    enum SfxFilterFlags NOTINFILEDLG
include/comphelper/documentconstants.hxx:112
    enum SfxFilterFlags COMBINED
include/comphelper/errcode.hxx:73
    enum WarningFlag Yes
include/comphelper/lok.hxx:93
    enum comphelper::LibreOfficeKit::Compat none
include/comphelper/lok.hxx:94
    enum comphelper::LibreOfficeKit::Compat scNoGridBackground
include/comphelper/lok.hxx:95
    enum comphelper::LibreOfficeKit::Compat scPrintTwipsMsgs
include/connectivity/parameters.hxx:68
    enum dbtools::ParameterManager::ParameterClassification LinkedByParamName
include/connectivity/sqliterator.hxx:51
    enum connectivity::TraversalParts All
include/connectivity/sqlnode.hxx:223
    enum connectivity::OSQLParseNode::Rule null_predicate_part_2
include/desktop/crashreport.hxx:47
    CrashReporter::tAddKeyHandling AddItem
include/desktop/crashreport.hxx:47
    CrashReporter::tAddKeyHandling Create
include/desktop/crashreport.hxx:47
    CrashReporter::tAddKeyHandling Write
include/desktop/exithelper.h:28
    enum EExitCodes EXITHELPER_FATAL_ERROR
include/desktop/exithelper.h:30
    enum EExitCodes EXITHELPER_CRASH_WITH_RESTART
include/desktop/exithelper.h:32
    enum EExitCodes EXITHELPER_NORMAL_RESTART
include/docmodel/color/ComplexColor.hxx:37
    enum model::SystemColorType Unused
include/docmodel/color/ComplexColor.hxx:38
    enum model::SystemColorType DarkShadow3D
include/docmodel/color/ComplexColor.hxx:39
    enum model::SystemColorType Light3D
include/docmodel/color/ComplexColor.hxx:40
    enum model::SystemColorType ActiveBorder
include/docmodel/color/ComplexColor.hxx:41
    enum model::SystemColorType ActiveCaption
include/docmodel/color/ComplexColor.hxx:42
    enum model::SystemColorType AppWorkspace
include/docmodel/color/ComplexColor.hxx:43
    enum model::SystemColorType Background
include/docmodel/color/ComplexColor.hxx:44
    enum model::SystemColorType ButtonFace
include/docmodel/color/ComplexColor.hxx:45
    enum model::SystemColorType ButtonHighlight
include/docmodel/color/ComplexColor.hxx:46
    enum model::SystemColorType ButtonShadow
include/docmodel/color/ComplexColor.hxx:47
    enum model::SystemColorType ButtonText
include/docmodel/color/ComplexColor.hxx:48
    enum model::SystemColorType CaptionText
include/docmodel/color/ComplexColor.hxx:49
    enum model::SystemColorType GradientActiveCaption
include/docmodel/color/ComplexColor.hxx:50
    enum model::SystemColorType GradientInactiveCaption
include/docmodel/color/ComplexColor.hxx:51
    enum model::SystemColorType GrayText
include/docmodel/color/ComplexColor.hxx:52
    enum model::SystemColorType Highlight
include/docmodel/color/ComplexColor.hxx:53
    enum model::SystemColorType HighlightText
include/docmodel/color/ComplexColor.hxx:54
    enum model::SystemColorType HotLight
include/docmodel/color/ComplexColor.hxx:55
    enum model::SystemColorType InactiveBorder
include/docmodel/color/ComplexColor.hxx:56
    enum model::SystemColorType InactiveCaption
include/docmodel/color/ComplexColor.hxx:57
    enum model::SystemColorType InactiveCaptionText
include/docmodel/color/ComplexColor.hxx:58
    enum model::SystemColorType InfoBack
include/docmodel/color/ComplexColor.hxx:59
    enum model::SystemColorType InfoText
include/docmodel/color/ComplexColor.hxx:60
    enum model::SystemColorType Menu
include/docmodel/color/ComplexColor.hxx:61
    enum model::SystemColorType MenuBar
include/docmodel/color/ComplexColor.hxx:62
    enum model::SystemColorType MenuHighlight
include/docmodel/color/ComplexColor.hxx:63
    enum model::SystemColorType MenuText
include/docmodel/color/ComplexColor.hxx:64
    enum model::SystemColorType ScrollBar
include/docmodel/color/ComplexColor.hxx:65
    enum model::SystemColorType Window
include/docmodel/color/ComplexColor.hxx:66
    enum model::SystemColorType WindowFrame
include/docmodel/color/ComplexColor.hxx:67
    enum model::SystemColorType WindowText
include/docmodel/color/Transformation.hxx:22
    enum model::TransformationType Red
include/docmodel/color/Transformation.hxx:23
    enum model::TransformationType RedMod
include/docmodel/color/Transformation.hxx:24
    enum model::TransformationType RedOff
include/docmodel/color/Transformation.hxx:25
    enum model::TransformationType Green
include/docmodel/color/Transformation.hxx:26
    enum model::TransformationType GreenMod
include/docmodel/color/Transformation.hxx:27
    enum model::TransformationType GreenOff
include/docmodel/color/Transformation.hxx:28
    enum model::TransformationType Blue
include/docmodel/color/Transformation.hxx:29
    enum model::TransformationType BlueMod
include/docmodel/color/Transformation.hxx:30
    enum model::TransformationType BlueOff
include/docmodel/color/Transformation.hxx:32
    enum model::TransformationType AlphaMod
include/docmodel/color/Transformation.hxx:33
    enum model::TransformationType AlphaOff
include/docmodel/color/Transformation.hxx:34
    enum model::TransformationType Hue
include/docmodel/color/Transformation.hxx:35
    enum model::TransformationType HueMod
include/docmodel/color/Transformation.hxx:36
    enum model::TransformationType HueOff
include/docmodel/color/Transformation.hxx:37
    enum model::TransformationType Sat
include/docmodel/color/Transformation.hxx:38
    enum model::TransformationType SatMod
include/docmodel/color/Transformation.hxx:40
    enum model::TransformationType Lum
include/docmodel/color/Transformation.hxx:45
    enum model::TransformationType Gray
include/docmodel/color/Transformation.hxx:46
    enum model::TransformationType Comp
include/docmodel/color/Transformation.hxx:47
    enum model::TransformationType Inv
include/docmodel/color/Transformation.hxx:48
    enum model::TransformationType Gamma
include/docmodel/color/Transformation.hxx:49
    enum model::TransformationType InvGamma
include/docmodel/theme/FormatScheme.hxx:68
    enum model::GradientType Undefined
include/docmodel/theme/FormatScheme.hxx:107
    enum model::PatternPreset Unused
include/docmodel/theme/FormatScheme.hxx:179
    enum model::BitmapMode Unused
include/docmodel/theme/FormatScheme.hxx:341
    enum model::LineEndType Triangle
include/docmodel/theme/FormatScheme.hxx:342
    enum model::LineEndType Stealth
include/docmodel/theme/FormatScheme.hxx:343
    enum model::LineEndType Diamond
include/docmodel/theme/FormatScheme.hxx:344
    enum model::LineEndType Oval
include/docmodel/theme/FormatScheme.hxx:345
    enum model::LineEndType Arrow
include/docmodel/theme/FormatScheme.hxx:350
    enum model::LineEndWidth Unset
include/docmodel/theme/FormatScheme.hxx:351
    enum model::LineEndWidth Small
include/docmodel/theme/FormatScheme.hxx:352
    enum model::LineEndWidth Medium
include/docmodel/theme/FormatScheme.hxx:353
    enum model::LineEndWidth Large
include/docmodel/theme/FormatScheme.hxx:358
    enum model::LineEndLength Unset
include/docmodel/theme/FormatScheme.hxx:359
    enum model::LineEndLength Small
include/docmodel/theme/FormatScheme.hxx:360
    enum model::LineEndLength Medium
include/docmodel/theme/FormatScheme.hxx:361
    enum model::LineEndLength Large
include/docmodel/theme/FormatScheme.hxx:400
    enum model::EffectType Unset
include/docmodel/theme/FormatScheme.hxx:401
    enum model::EffectType OuterShadow
include/docmodel/theme/FormatScheme.hxx:402
    enum model::EffectType InnerShadow
include/docmodel/theme/FormatScheme.hxx:403
    enum model::EffectType Glow
include/docmodel/theme/FormatScheme.hxx:404
    enum model::EffectType SoftEdge
include/docmodel/theme/FormatScheme.hxx:405
    enum model::EffectType Reflection
include/docmodel/theme/FormatScheme.hxx:406
    enum model::EffectType Blur
include/docmodel/theme/ThemeColorType.hxx:25
    enum model::ThemeColorType Accent1
include/docmodel/theme/ThemeColorType.hxx:26
    enum model::ThemeColorType Accent2
include/docmodel/theme/ThemeColorType.hxx:27
    enum model::ThemeColorType Accent3
include/docmodel/theme/ThemeColorType.hxx:28
    enum model::ThemeColorType Accent4
include/docmodel/theme/ThemeColorType.hxx:29
    enum model::ThemeColorType Accent5
include/docmodel/theme/ThemeColorType.hxx:30
    enum model::ThemeColorType Accent6
include/docmodel/theme/ThemeColorType.hxx:31
    enum model::ThemeColorType Hyperlink
include/docmodel/theme/ThemeColorType.hxx:32
    enum model::ThemeColorType FollowedHyperlink
include/docmodel/theme/ThemeColorType.hxx:38
    enum model::ThemeColorUsage Unknown
include/drawinglayer/primitive2d/helplineprimitive2d.hxx:39
    enum drawinglayer::primitive2d::HelplineStyle2D Point
include/drawinglayer/primitive2d/texthierarchyprimitive2d.hxx:113
    enum drawinglayer::primitive2d::FieldType FIELD_TYPE_COMMON
include/editeng/AccessibleContextBase.hxx:61
    enum accessibility::AccessibleContextBase::StringOrigin ManuallySet
include/editeng/AccessibleContextBase.hxx:62
    enum accessibility::AccessibleContextBase::StringOrigin FromShape
include/editeng/AccessibleContextBase.hxx:63
    enum accessibility::AccessibleContextBase::StringOrigin AutomaticallyCreated
include/editeng/boxitem.hxx:186
    enum SvxBoxInfoItemValidFlags VERT
include/editeng/boxitem.hxx:187
    enum SvxBoxInfoItemValidFlags DISTANCE
include/editeng/boxitem.hxx:188
    enum SvxBoxInfoItemValidFlags DISABLE
include/editeng/boxitem.hxx:189
    enum SvxBoxInfoItemValidFlags ALL
include/editeng/editdata.hxx:39
    enum EESelectionMode Std
include/editeng/editeng.hxx:135
    enum GetAttribsFlags ALL
include/editeng/editobj.hxx:55
    enum TextRotation BOTTOMTOTOP
include/editeng/editstat.hxx:44
    enum EEControlBits MARKFIELDS
include/editeng/editstat.hxx:121
    enum SpellCallbackCommand WORDLANGUAGE
include/editeng/editstat.hxx:122
    enum SpellCallbackCommand PARALANGUAGE
include/editeng/editview.hxx:86
    enum ScrollRangeCheck NoNegative
include/editeng/flditem.hxx:311
    enum SvxFileType Var
include/editeng/flditem.hxx:353
    enum SvxAuthorType Var
include/editeng/hangulhanja.hxx:84
    enum editeng::HangulHanjaConversion::ConversionDirection eHanjaToHangul
include/editeng/numitem.hxx:238
    enum SvxNumRuleFlags CHAR_STYLE
include/editeng/numitem.hxx:239
    enum SvxNumRuleFlags BULLET_REL_SIZE
include/editeng/numitem.hxx:240
    enum SvxNumRuleFlags BULLET_COLOR
include/editeng/numitem.hxx:241
    enum SvxNumRuleFlags NO_NUMBERS
include/editeng/numitem.hxx:242
    enum SvxNumRuleFlags ENABLE_LINKED_BMP
include/editeng/numitem.hxx:243
    enum SvxNumRuleFlags ENABLE_EMBEDDED_BMP
include/editeng/numitem.hxx:253
    enum SvxNumRuleType OUTLINE_NUMBERING
include/editeng/numitem.hxx:254
    enum SvxNumRuleType PRESENTATION_NUMBERING
include/editeng/outliner.hxx:192
    enum OutlinerView::MouseTarget Outside
include/editeng/svxrtf.hxx:146
    enum SvxRTFParser::RTF_CharTypeDef NOTDEF_CHARTYPE
include/filter/msfilter/msdffimp.hxx:375
    enum DffSeekToContentMode SEEK_FROM_CURRENT
include/filter/msfilter/ww8fields.hxx:30
    enum ww::eField eXE
include/filter/msfilter/ww8fields.hxx:32
    enum ww::eField eSET
include/filter/msfilter/ww8fields.hxx:35
    enum ww::eField eTC
include/filter/msfilter/ww8fields.hxx:37
    enum ww::eField eRD
include/filter/msfilter/ww8fields.hxx:38
    enum ww::eField eSEQ
include/filter/msfilter/ww8fields.hxx:40
    enum ww::eField eINFO
include/filter/msfilter/ww8fields.hxx:41
    enum ww::eField eTITLE
include/filter/msfilter/ww8fields.hxx:42
    enum ww::eField eSUBJECT
include/filter/msfilter/ww8fields.hxx:43
    enum ww::eField eAUTHOR
include/filter/msfilter/ww8fields.hxx:44
    enum ww::eField eKEYWORDS
include/filter/msfilter/ww8fields.hxx:45
    enum ww::eField eCOMMENTS
include/filter/msfilter/ww8fields.hxx:46
    enum ww::eField eLASTSAVEDBY
include/filter/msfilter/ww8fields.hxx:50
    enum ww::eField eREVNUM
include/filter/msfilter/ww8fields.hxx:51
    enum ww::eField eEDITTIME
include/filter/msfilter/ww8fields.hxx:52
    enum ww::eField eNUMPAGES
include/filter/msfilter/ww8fields.hxx:53
    enum ww::eField eNUMWORDS
include/filter/msfilter/ww8fields.hxx:54
    enum ww::eField eNUMCHARS
include/filter/msfilter/ww8fields.hxx:55
    enum ww::eField eFILENAME
include/filter/msfilter/ww8fields.hxx:56
    enum ww::eField eTEMPLATE
include/filter/msfilter/ww8fields.hxx:61
    enum ww::eField eQUOTE
include/filter/msfilter/ww8fields.hxx:64
    enum ww::eField eASK
include/filter/msfilter/ww8fields.hxx:66
    enum ww::eField eMERGEDATA
include/filter/msfilter/ww8fields.hxx:67
    enum ww::eField eNEXT
include/filter/msfilter/ww8fields.hxx:68
    enum ww::eField eNEXTIF
include/filter/msfilter/ww8fields.hxx:69
    enum ww::eField eSKIPIF
include/filter/msfilter/ww8fields.hxx:70
    enum ww::eField eMERGEREC
include/filter/msfilter/ww8fields.hxx:71
    enum ww::eField eDDEREF
include/filter/msfilter/ww8fields.hxx:72
    enum ww::eField eDDEAUTOREF
include/filter/msfilter/ww8fields.hxx:73
    enum ww::eField eGLOSSREF
include/filter/msfilter/ww8fields.hxx:74
    enum ww::eField ePRINT
include/filter/msfilter/ww8fields.hxx:76
    enum ww::eField eGOTOBUTTON
include/filter/msfilter/ww8fields.hxx:77
    enum ww::eField eMACROBUTTON
include/filter/msfilter/ww8fields.hxx:78
    enum ww::eField eAUTONUMOUT
include/filter/msfilter/ww8fields.hxx:79
    enum ww::eField eAUTONUMLGL
include/filter/msfilter/ww8fields.hxx:80
    enum ww::eField eAUTONUM
include/filter/msfilter/ww8fields.hxx:81
    enum ww::eField eINCLUDETIFF
include/filter/msfilter/ww8fields.hxx:82
    enum ww::eField eLINK
include/filter/msfilter/ww8fields.hxx:83
    enum ww::eField eSYMBOL
include/filter/msfilter/ww8fields.hxx:84
    enum ww::eField eEMBED
include/filter/msfilter/ww8fields.hxx:85
    enum ww::eField eMERGEFIELD
include/filter/msfilter/ww8fields.hxx:86
    enum ww::eField eUSERNAME
include/filter/msfilter/ww8fields.hxx:87
    enum ww::eField eUSERINITIALS
include/filter/msfilter/ww8fields.hxx:88
    enum ww::eField eUSERADDRESS
include/filter/msfilter/ww8fields.hxx:89
    enum ww::eField eBARCODE
include/filter/msfilter/ww8fields.hxx:90
    enum ww::eField eDOCVARIABLE
include/filter/msfilter/ww8fields.hxx:91
    enum ww::eField eSECTION
include/filter/msfilter/ww8fields.hxx:92
    enum ww::eField eSECTIONPAGES
include/filter/msfilter/ww8fields.hxx:93
    enum ww::eField eINCLUDEPICTURE
include/filter/msfilter/ww8fields.hxx:95
    enum ww::eField eFILESIZE
include/filter/msfilter/ww8fields.hxx:99
    enum ww::eField eTOA
include/filter/msfilter/ww8fields.hxx:100
    enum ww::eField eTA
include/filter/msfilter/ww8fields.hxx:101
    enum ww::eField eMERGESEQ
include/filter/msfilter/ww8fields.hxx:102
    enum ww::eField eMACRO
include/filter/msfilter/ww8fields.hxx:103
    enum ww::eField ePRIVATE
include/filter/msfilter/ww8fields.hxx:104
    enum ww::eField eDATABASE
include/filter/msfilter/ww8fields.hxx:106
    enum ww::eField eCOMPARE
include/filter/msfilter/ww8fields.hxx:107
    enum ww::eField ePLUGIN
include/filter/msfilter/ww8fields.hxx:108
    enum ww::eField eSUBSCRIBER
include/filter/msfilter/ww8fields.hxx:110
    enum ww::eField eADVANCE
include/filter/msfilter/ww8fields.hxx:111
    enum ww::eField eDOCPROPERTY
include/filter/msfilter/ww8fields.hxx:116
    enum ww::eField eLISTNUM
include/filter/msfilter/ww8fields.hxx:117
    enum ww::eField eHTMLCONTROL
include/filter/msfilter/ww8fields.hxx:118
    enum ww::eField eBIDIOUTLINE
include/filter/msfilter/ww8fields.hxx:119
    enum ww::eField eADDRESSBLOCK
include/filter/msfilter/ww8fields.hxx:120
    enum ww::eField eGREETINGLINE
include/formula/formula.hxx:46
    enum formula::FormulaDlgMode Edit
include/formula/tokenarray.hxx:62
    enum ScRecalcMode ONLOAD_MUST
include/formula/tokenarray.hxx:64
    enum ScRecalcMode ONLOAD_LENIENT
include/formula/tokenarray.hxx:166
    enum formula::FormulaTokenArrayReferencesIterator::Dummy Flag
include/formula/tokenarray.hxx:259
    enum formula::FormulaTokenArray::ReplaceMode CODE_ONLY
include/formula/vectortoken.hxx:42
    enum formula::VectorRefArray::InitInvalid Invalid
include/framework/desktop.hxx:60
    enum framework::ELoadState E_NOTSET
include/framework/desktop.hxx:61
    enum framework::ELoadState E_SUCCESSFUL
include/framework/desktop.hxx:62
    enum framework::ELoadState E_FAILED
include/framework/framelistanalyzer.hxx:44
    enum FrameAnalyzerFlags All
include/framework/transactionmanager.hxx:79
    enum framework::EExceptionMode E_SOFTEXCEPTIONS
include/i18nutil/transliteration.hxx:75
    enum TransliterationFlags NON_IGNORE_MASK
include/i18nutil/transliteration.hxx:76
    enum TransliterationFlags IGNORE_MASK
include/i18nutil/transliteration.hxx:122
    enum TransliterationFlags IGNORE_DIACRITICS_CTL
include/i18nutil/transliteration.hxx:124
    enum TransliterationFlags IGNORE_KASHIDA_CTL
include/jvmfwk/framework.hxx:181
    enum javaFrameworkError JFW_E_ERROR
include/jvmfwk/framework.hxx:191
    enum javaFrameworkError JFW_E_CONFIGURATION
include/LibreOfficeKit/LibreOfficeKitEnums.h:57
    LibreOfficeKitSelectionType LOK_SELTYPE_COMPLEX
include/linguistic/misc.hxx:62
    enum linguistic::DictionaryError NOT_EXISTS
include/linguistic/misc.hxx:69
    enum linguistic::CapType NOCAP
include/o3tl/unit_conversion.hxx:26
    enum o3tl::Length mm100
include/o3tl/unit_conversion.hxx:27
    enum o3tl::Length mm10
include/o3tl/unit_conversion.hxx:29
    enum o3tl::Length cm
include/o3tl/unit_conversion.hxx:30
    enum o3tl::Length m
include/o3tl/unit_conversion.hxx:31
    enum o3tl::Length km
include/o3tl/unit_conversion.hxx:32
    enum o3tl::Length emu
include/o3tl/unit_conversion.hxx:34
    enum o3tl::Length pt
include/o3tl/unit_conversion.hxx:35
    enum o3tl::Length pc
include/o3tl/unit_conversion.hxx:36
    enum o3tl::Length in1000
include/o3tl/unit_conversion.hxx:37
    enum o3tl::Length in100
include/o3tl/unit_conversion.hxx:38
    enum o3tl::Length in10
include/o3tl/unit_conversion.hxx:39
    enum o3tl::Length in
include/o3tl/unit_conversion.hxx:40
    enum o3tl::Length ft
include/o3tl/unit_conversion.hxx:41
    enum o3tl::Length mi
include/o3tl/unit_conversion.hxx:42
    enum o3tl::Length master
include/o3tl/unit_conversion.hxx:43
    enum o3tl::Length px
include/o3tl/unit_conversion.hxx:44
    enum o3tl::Length ch
include/o3tl/unit_conversion.hxx:45
    enum o3tl::Length line
include/oox/crypto/AgileEngine.hxx:74
    enum oox::crypto::AgileEncryptionPreset AES_256_SHA512
include/oox/drawingml/clrscheme.hxx:37
    enum oox::drawingml::PredefinedClrSchemeId dk1
include/oox/drawingml/clrscheme.hxx:38
    enum oox::drawingml::PredefinedClrSchemeId lt1
include/oox/drawingml/shape.hxx:283
    enum oox::drawingml::Shape::FrameType FRAMETYPE_TABLE
include/oox/export/drawingml.hxx:267
    enum oox::drawingml::GraphicExport::TypeHint Detect
include/oox/ole/axcontrol.hxx:186
    enum oox::ole::ApiDefaultStateMode API_DEFAULTSTATE_SHORT
include/oox/ppt/pptfilterhelpers.hxx:40
    enum oox::ppt::AnimationAttributeEnum STYLEFONTFAMILY
include/oox/token/relationship.hxx:21
    enum oox::Relationship ACTIVEXCONTROLBINARY
include/oox/token/relationship.hxx:22
    enum oox::Relationship CHART
include/oox/token/relationship.hxx:23
    enum oox::Relationship CHARTUSERSHAPES
include/oox/token/relationship.hxx:24
    enum oox::Relationship COMMENTS
include/oox/token/relationship.hxx:25
    enum oox::Relationship COMMENTAUTHORS
include/oox/token/relationship.hxx:26
    enum oox::Relationship COMMENTSEXTENDED
include/oox/token/relationship.hxx:27
    enum oox::Relationship CONTROL
include/oox/token/relationship.hxx:28
    enum oox::Relationship CTRLPROP
include/oox/token/relationship.hxx:29
    enum oox::Relationship CUSTOMXML
include/oox/token/relationship.hxx:30
    enum oox::Relationship CUSTOMXMLPROPS
include/oox/token/relationship.hxx:31
    enum oox::Relationship DIAGRAMCOLORS
include/oox/token/relationship.hxx:32
    enum oox::Relationship DIAGRAMDATA
include/oox/token/relationship.hxx:33
    enum oox::Relationship DIAGRAMDRAWING
include/oox/token/relationship.hxx:34
    enum oox::Relationship DIAGRAMLAYOUT
include/oox/token/relationship.hxx:35
    enum oox::Relationship DIAGRAMQUICKSTYLE
include/oox/token/relationship.hxx:36
    enum oox::Relationship DRAWING
include/oox/token/relationship.hxx:37
    enum oox::Relationship ENDNOTES
include/oox/token/relationship.hxx:38
    enum oox::Relationship EXTERNALLINKPATH
include/oox/token/relationship.hxx:39
    enum oox::Relationship FONT
include/oox/token/relationship.hxx:40
    enum oox::Relationship FONTTABLE
include/oox/token/relationship.hxx:41
    enum oox::Relationship FOOTER
include/oox/token/relationship.hxx:42
    enum oox::Relationship FOOTNOTES
include/oox/token/relationship.hxx:43
    enum oox::Relationship GLOSSARYDOCUMENT
include/oox/token/relationship.hxx:44
    enum oox::Relationship HDPHOTO
include/oox/token/relationship.hxx:45
    enum oox::Relationship HEADER
include/oox/token/relationship.hxx:46
    enum oox::Relationship HYPERLINK
include/oox/token/relationship.hxx:47
    enum oox::Relationship IMAGE
include/oox/token/relationship.hxx:48
    enum oox::Relationship MEDIA
include/oox/token/relationship.hxx:49
    enum oox::Relationship NOTESMASTER
include/oox/token/relationship.hxx:50
    enum oox::Relationship NOTESSLIDE
include/oox/token/relationship.hxx:51
    enum oox::Relationship NUMBERING
include/oox/token/relationship.hxx:52
    enum oox::Relationship OFFICEDOCUMENT
include/oox/token/relationship.hxx:53
    enum oox::Relationship OLEOBJECT
include/oox/token/relationship.hxx:54
    enum oox::Relationship PACKAGE
include/oox/token/relationship.hxx:55
    enum oox::Relationship PRESPROPS
include/oox/token/relationship.hxx:56
    enum oox::Relationship SETTINGS
include/oox/token/relationship.hxx:57
    enum oox::Relationship SHAREDSTRINGS
include/oox/token/relationship.hxx:58
    enum oox::Relationship SLIDE
include/oox/token/relationship.hxx:59
    enum oox::Relationship SLIDELAYOUT
include/oox/token/relationship.hxx:60
    enum oox::Relationship SLIDEMASTER
include/oox/token/relationship.hxx:61
    enum oox::Relationship STYLES
include/oox/token/relationship.hxx:62
    enum oox::Relationship THEME
include/oox/token/relationship.hxx:63
    enum oox::Relationship VBAPROJECT
include/oox/token/relationship.hxx:65
    enum oox::Relationship AUDIO
include/oox/token/relationship.hxx:66
    enum oox::Relationship VMLDRAWING
include/oox/token/relationship.hxx:67
    enum oox::Relationship WORDVBADATA
include/oox/token/relationship.hxx:68
    enum oox::Relationship WORKSHEET
include/registry/regtype.h:43
    enum RegAccessMode READWRITE
include/registry/regtype.h:87
    enum RegError REGISTRY_NOT_OPEN
include/registry/regtype.h:91
    enum RegError REGISTRY_READONLY
include/registry/regtype.h:93
    enum RegError DESTROY_REGISTRY_FAILED
include/registry/regtype.h:97
    enum RegError CANNOT_OPEN_FOR_READWRITE
include/registry/regtype.h:104
    enum RegError KEY_NOT_OPEN
include/registry/regtype.h:108
    enum RegError CREATE_KEY_FAILED
include/registry/regtype.h:110
    enum RegError DELETE_KEY_FAILED
include/registry/regtype.h:116
    enum RegError INVALID_KEY
include/registry/regtype.h:121
    enum RegError SET_VALUE_FAILED
include/registry/regtype.h:123
    enum RegError DELETE_VALUE_FAILED
include/sfx2/app.hxx:70
    enum SfxToolsModule Math
include/sfx2/app.hxx:71
    enum SfxToolsModule Calc
include/sfx2/app.hxx:72
    enum SfxToolsModule Draw
include/sfx2/app.hxx:73
    enum SfxToolsModule Writer
include/sfx2/app.hxx:74
    enum SfxToolsModule Basic
include/sfx2/docfile.hxx:171
    enum SfxMedium::LockFileResult Failed
include/sfx2/docfile.hxx:173
    enum SfxMedium::LockFileResult Succeeded
include/sfx2/docfile.hxx:308
    enum SfxMedium::ShowLockResult NoLock
include/sfx2/frmdescr.hxx:42
    enum ScrollingMode No
include/sfx2/lnkbase.hxx:137
    enum sfx2::SvBaseLink::UpdateResult ERROR_GENERAL
include/sfx2/mailmodelapi.hxx:48
    enum SfxMailModel::SaveResult SAVE_ERROR
include/sfx2/mailmodelapi.hxx:72
    enum SfxMailModel::SendMailResult SEND_MAIL_CANCELLED
include/sfx2/msg.hxx:36
    enum SfxSlotMode TOGGLE
include/sfx2/msg.hxx:37
    enum SfxSlotMode AUTOUPDATE
include/sfx2/msg.hxx:38
    enum SfxSlotMode ASYNCHRON
include/sfx2/msg.hxx:40
    enum SfxSlotMode NORECORD
include/sfx2/msg.hxx:41
    enum SfxSlotMode RECORDPERITEM
include/sfx2/msg.hxx:42
    enum SfxSlotMode RECORDPERSET
include/sfx2/msg.hxx:43
    enum SfxSlotMode RECORDABSOLUTE
include/sfx2/msg.hxx:45
    enum SfxSlotMode METHOD
include/sfx2/msg.hxx:47
    enum SfxSlotMode FASTCALL
include/sfx2/msg.hxx:49
    enum SfxSlotMode MENUCONFIG
include/sfx2/msg.hxx:50
    enum SfxSlotMode TOOLBOXCONFIG
include/sfx2/msg.hxx:51
    enum SfxSlotMode ACCELCONFIG
include/sfx2/msg.hxx:53
    enum SfxSlotMode CONTAINER
include/sfx2/msg.hxx:86
    enum SfxSlotKind Standard
include/sfx2/objface.hxx:46
    enum StatusBarId GenericStatusBar
include/sfx2/objface.hxx:47
    enum StatusBarId WriterStatusBar
include/sfx2/objface.hxx:48
    enum StatusBarId MathStatusBar
include/sfx2/objface.hxx:49
    enum StatusBarId DrawStatusBar
include/sfx2/objface.hxx:50
    enum StatusBarId CalcStatusBar
include/sfx2/objface.hxx:51
    enum StatusBarId BasicIdeStatusBar
include/sfx2/objsh.hxx:197
    enum SfxObjectShell::TriState no
include/sfx2/passwd.hxx:35
    enum SfxShowExtras ALL
include/sfx2/StylePreviewRenderer.hxx:33
    enum sfx2::StylePreviewRenderer::RenderAlign TOP
include/sfx2/toolbarids.hxx:20
    enum ToolbarId FullScreenToolbox
include/sfx2/toolbarids.hxx:21
    enum ToolbarId EnvToolbox
include/sfx2/toolbarids.hxx:24
    enum ToolbarId Basicide_Objectbar
include/sfx2/toolbarids.hxx:25
    enum ToolbarId SvxTbx_Form_Navigation
include/sfx2/toolbarids.hxx:26
    enum ToolbarId SvxTbx_Form_Filter
include/sfx2/toolbarids.hxx:27
    enum ToolbarId SvxTbx_Text_Control_Attributes
include/sfx2/toolbarids.hxx:28
    enum ToolbarId SvxTbx_Controls
include/sfx2/toolbarids.hxx:29
    enum ToolbarId SvxTbx_FormDesign
include/sfx2/toolbarids.hxx:30
    enum ToolbarId Math_Toolbox
include/sfx2/toolbarids.hxx:31
    enum ToolbarId Webtools_Toolbox
include/sfx2/toolbarids.hxx:32
    enum ToolbarId Webtext_Toolbox
include/sfx2/toolbarids.hxx:33
    enum ToolbarId Webframe_Toolbox
include/sfx2/toolbarids.hxx:34
    enum ToolbarId Webgraphic_Toolbox
include/sfx2/toolbarids.hxx:35
    enum ToolbarId Webole_Toolbox
include/sfx2/toolbarids.hxx:36
    enum ToolbarId Draw_Toolbox_Sd
include/sfx2/toolbarids.hxx:37
    enum ToolbarId Slide_Toolbox
include/sfx2/toolbarids.hxx:38
    enum ToolbarId Draw_Obj_Toolbox
include/sfx2/toolbarids.hxx:39
    enum ToolbarId Slide_Obj_Toolbox
include/sfx2/toolbarids.hxx:42
    enum ToolbarId Outline_Toolbox
include/sfx2/toolbarids.hxx:44
    enum ToolbarId Gluepoints_Toolbox
include/sfx2/toolbarids.hxx:45
    enum ToolbarId Draw_Options_Toolbox
include/sfx2/toolbarids.hxx:46
    enum ToolbarId Draw_CommonTask_Toolbox
include/sfx2/toolbarids.hxx:48
    enum ToolbarId Draw_Viewer_Toolbox
include/sfx2/toolbarids.hxx:49
    enum ToolbarId Graphic_Obj_Toolbox
include/sfx2/toolbarids.hxx:52
    enum ToolbarId Text_Toolbox_Sw
include/sfx2/toolbarids.hxx:53
    enum ToolbarId Table_Toolbox
include/sfx2/toolbarids.hxx:54
    enum ToolbarId Frame_Toolbox
include/sfx2/toolbarids.hxx:55
    enum ToolbarId Grafik_Toolbox
include/sfx2/toolbarids.hxx:56
    enum ToolbarId Draw_Toolbox_Sw
include/sfx2/toolbarids.hxx:57
    enum ToolbarId Draw_Text_Toolbox_Sw
include/sfx2/toolbarids.hxx:58
    enum ToolbarId Num_Toolbox
include/sfx2/toolbarids.hxx:59
    enum ToolbarId Ole_Toolbox
include/sfx2/toolbarids.hxx:60
    enum ToolbarId Tools_Toolbox
include/sfx2/toolbarids.hxx:61
    enum ToolbarId PView_Toolbox
include/sfx2/toolbarids.hxx:62
    enum ToolbarId Bezier_Toolbox_Sw
include/sfx2/toolbarids.hxx:63
    enum ToolbarId Module_Toolbox
include/sfx2/toolbarids.hxx:64
    enum ToolbarId Media_Toolbox
include/sfx2/toolbarids.hxx:65
    enum ToolbarId Objectbar_App
include/sfx2/toolbarids.hxx:66
    enum ToolbarId Objectbar_Format
include/sfx2/toolbarids.hxx:67
    enum ToolbarId Text_Toolbox_Sc
include/sfx2/toolbarids.hxx:68
    enum ToolbarId Objectbar_Preview
include/sfx2/toolbarids.hxx:69
    enum ToolbarId Objectbar_Tools
include/sfx2/toolbarids.hxx:70
    enum ToolbarId Draw_Objectbar
include/sfx2/toolbarids.hxx:71
    enum ToolbarId Graphic_Objectbar
include/sfx2/toolbarids.hxx:72
    enum ToolbarId Media_Objectbar
include/sfx2/zoomitem.hxx:41
    enum SvxZoomEnableFlags N75
include/sfx2/zoomitem.hxx:48
    enum SvxZoomEnableFlags ALL
include/sot/exchange.hxx:91
    enum SotExchangeDest CHARTDOC_OLEOBJ
include/sot/exchange.hxx:97
    enum SotExchangeDest DOC_IMAPREGION
include/sot/exchange.hxx:100
    enum SotExchangeDest DOC_URLFIELD
include/sot/exchange.hxx:103
    enum SotExchangeDest SCDOC_FREE_AREA
include/sot/exchange.hxx:104
    enum SotExchangeDest SDDOC_FREE_AREA
include/store/types.h:75
    storeError store_E_AccessViolation
include/store/types.h:77
    storeError store_E_CantSeek
include/store/types.h:78
    storeError store_E_CantRead
include/store/types.h:79
    storeError store_E_CantWrite
include/store/types.h:80
    storeError store_E_InvalidAccess
include/store/types.h:81
    storeError store_E_InvalidHandle
include/store/types.h:82
    storeError store_E_InvalidParameter
include/store/types.h:86
    storeError store_E_NotDirectory
include/store/types.h:87
    storeError store_E_NotFile
include/store/types.h:88
    storeError store_E_NoMoreFiles
include/store/types.h:89
    storeError store_E_NameTooLong
include/store/types.h:90
    storeError store_E_OutOfMemory
include/store/types.h:91
    storeError store_E_OutOfSpace
include/store/types.h:94
    storeError store_E_WrongVersion
include/store/types.h:95
    storeError store_E_Unknown
include/svl/IndexedStyleSheets.hxx:121
    enum svl::IndexedStyleSheets::SearchBehavior ReturnAll
include/svl/inettype.hxx:147
    enum INetContentType CONTENT_TYPE_APP_OCTSTREAM
include/svl/inettype.hxx:148
    enum INetContentType CONTENT_TYPE_APP_PDF
include/svl/inettype.hxx:149
    enum INetContentType CONTENT_TYPE_APP_RTF
include/svl/inettype.hxx:150
    enum INetContentType CONTENT_TYPE_APP_MSWORD
include/svl/inettype.hxx:151
    enum INetContentType CONTENT_TYPE_APP_MSWORD_TEMPL
include/svl/inettype.hxx:152
    enum INetContentType CONTENT_TYPE_APP_STARCALC
include/svl/inettype.hxx:153
    enum INetContentType CONTENT_TYPE_APP_STARCHART
include/svl/inettype.hxx:154
    enum INetContentType CONTENT_TYPE_APP_STARDRAW
include/svl/inettype.hxx:155
    enum INetContentType CONTENT_TYPE_APP_STARHELP
include/svl/inettype.hxx:156
    enum INetContentType CONTENT_TYPE_APP_STARIMAGE
include/svl/inettype.hxx:157
    enum INetContentType CONTENT_TYPE_APP_STARIMPRESS
include/svl/inettype.hxx:158
    enum INetContentType CONTENT_TYPE_APP_STARMATH
include/svl/inettype.hxx:159
    enum INetContentType CONTENT_TYPE_APP_STARWRITER
include/svl/inettype.hxx:160
    enum INetContentType CONTENT_TYPE_APP_ZIP
include/svl/inettype.hxx:161
    enum INetContentType CONTENT_TYPE_AUDIO_AIFF
include/svl/inettype.hxx:162
    enum INetContentType CONTENT_TYPE_AUDIO_BASIC
include/svl/inettype.hxx:163
    enum INetContentType CONTENT_TYPE_AUDIO_MIDI
include/svl/inettype.hxx:164
    enum INetContentType CONTENT_TYPE_AUDIO_VORBIS
include/svl/inettype.hxx:165
    enum INetContentType CONTENT_TYPE_AUDIO_WAV
include/svl/inettype.hxx:166
    enum INetContentType CONTENT_TYPE_AUDIO_WEBM
include/svl/inettype.hxx:167
    enum INetContentType CONTENT_TYPE_IMAGE_GIF
include/svl/inettype.hxx:168
    enum INetContentType CONTENT_TYPE_IMAGE_JPEG
include/svl/inettype.hxx:169
    enum INetContentType CONTENT_TYPE_IMAGE_PCX
include/svl/inettype.hxx:170
    enum INetContentType CONTENT_TYPE_IMAGE_PNG
include/svl/inettype.hxx:171
    enum INetContentType CONTENT_TYPE_IMAGE_TIFF
include/svl/inettype.hxx:172
    enum INetContentType CONTENT_TYPE_IMAGE_BMP
include/svl/inettype.hxx:174
    enum INetContentType CONTENT_TYPE_TEXT_HTML
include/svl/inettype.hxx:176
    enum INetContentType CONTENT_TYPE_TEXT_URL
include/svl/inettype.hxx:177
    enum INetContentType CONTENT_TYPE_TEXT_VCARD
include/svl/inettype.hxx:178
    enum INetContentType CONTENT_TYPE_VIDEO_MSVIDEO
include/svl/inettype.hxx:179
    enum INetContentType CONTENT_TYPE_VIDEO_THEORA
include/svl/inettype.hxx:180
    enum INetContentType CONTENT_TYPE_VIDEO_VDO
include/svl/inettype.hxx:181
    enum INetContentType CONTENT_TYPE_VIDEO_WEBM
include/svl/inettype.hxx:182
    enum INetContentType CONTENT_TYPE_X_CNT_FSYSBOX
include/svl/inettype.hxx:183
    enum INetContentType CONTENT_TYPE_X_CNT_FSYSFOLDER
include/svl/inettype.hxx:184
    enum INetContentType CONTENT_TYPE_X_STARMAIL
include/svl/inettype.hxx:185
    enum INetContentType CONTENT_TYPE_X_VRML
include/svl/inettype.hxx:186
    enum INetContentType CONTENT_TYPE_APP_GALLERY
include/svl/inettype.hxx:187
    enum INetContentType CONTENT_TYPE_APP_GALLERY_THEME
include/svl/inettype.hxx:188
    enum INetContentType CONTENT_TYPE_APP_STARWRITER_GLOB
include/svl/inettype.hxx:189
    enum INetContentType CONTENT_TYPE_APP_STARMAIL_SDM
include/svl/inettype.hxx:190
    enum INetContentType CONTENT_TYPE_APP_STARMAIL_SMD
include/svl/inettype.hxx:191
    enum INetContentType CONTENT_TYPE_APP_VND_CALC
include/svl/inettype.hxx:192
    enum INetContentType CONTENT_TYPE_APP_VND_CHART
include/svl/inettype.hxx:193
    enum INetContentType CONTENT_TYPE_APP_VND_DRAW
include/svl/inettype.hxx:194
    enum INetContentType CONTENT_TYPE_APP_VND_IMAGE
include/svl/inettype.hxx:195
    enum INetContentType CONTENT_TYPE_APP_VND_IMPRESS
include/svl/inettype.hxx:196
    enum INetContentType CONTENT_TYPE_APP_VND_MAIL
include/svl/inettype.hxx:197
    enum INetContentType CONTENT_TYPE_APP_VND_MATH
include/svl/inettype.hxx:198
    enum INetContentType CONTENT_TYPE_APP_VND_WRITER
include/svl/inettype.hxx:199
    enum INetContentType CONTENT_TYPE_APP_VND_WRITER_GLOBAL
include/svl/inettype.hxx:200
    enum INetContentType CONTENT_TYPE_APP_VND_WRITER_WEB
include/svl/inettype.hxx:201
    enum INetContentType CONTENT_TYPE_APP_FRAMESET
include/svl/inettype.hxx:202
    enum INetContentType CONTENT_TYPE_APP_MACRO
include/svl/inettype.hxx:203
    enum INetContentType CONTENT_TYPE_X_CNT_FSYSSPECIALFOLDER
include/svl/inettype.hxx:204
    enum INetContentType CONTENT_TYPE_APP_VND_TEMPLATE
include/svl/inettype.hxx:205
    enum INetContentType CONTENT_TYPE_IMAGE_GENERIC
include/svl/inettype.hxx:206
    enum INetContentType CONTENT_TYPE_APP_VND_NEWS
include/svl/inettype.hxx:207
    enum INetContentType CONTENT_TYPE_APP_VND_OUTTRAY
include/svl/inettype.hxx:208
    enum INetContentType CONTENT_TYPE_APP_MSEXCEL
include/svl/inettype.hxx:209
    enum INetContentType CONTENT_TYPE_APP_MSEXCEL_TEMPL
include/svl/inettype.hxx:210
    enum INetContentType CONTENT_TYPE_APP_MSPPOINT
include/svl/inettype.hxx:211
    enum INetContentType CONTENT_TYPE_APP_MSPPOINT_TEMPL
include/svl/inettype.hxx:212
    enum INetContentType CONTENT_TYPE_TEXT_VCALENDAR
include/svl/inettype.hxx:213
    enum INetContentType CONTENT_TYPE_TEXT_ICALENDAR
include/svl/inettype.hxx:214
    enum INetContentType CONTENT_TYPE_TEXT_XMLICALENDAR
include/svl/inettype.hxx:215
    enum INetContentType CONTENT_TYPE_APP_CDE_CALENDAR_APP
include/svl/inettype.hxx:216
    enum INetContentType CONTENT_TYPE_INET_MESSAGE_RFC822
include/svl/inettype.hxx:217
    enum INetContentType CONTENT_TYPE_INET_MULTIPART_ALTERNATIVE
include/svl/inettype.hxx:218
    enum INetContentType CONTENT_TYPE_INET_MULTIPART_DIGEST
include/svl/inettype.hxx:219
    enum INetContentType CONTENT_TYPE_INET_MULTIPART_PARALLEL
include/svl/inettype.hxx:220
    enum INetContentType CONTENT_TYPE_INET_MULTIPART_RELATED
include/svl/inettype.hxx:221
    enum INetContentType CONTENT_TYPE_INET_MULTIPART_MIXED
include/svl/inettype.hxx:222
    enum INetContentType CONTENT_TYPE_APP_VND_IMPRESSPACKED
include/svl/inettype.hxx:223
    enum INetContentType CONTENT_TYPE_APP_JAR
include/svl/inettype.hxx:224
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_WRITER
include/svl/inettype.hxx:225
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_CALC
include/svl/inettype.hxx:226
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_IMPRESS
include/svl/inettype.hxx:227
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_DRAW
include/svl/inettype.hxx:228
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_CHART
include/svl/inettype.hxx:229
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_MATH
include/svl/inettype.hxx:230
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_WRITER_GLOBAL
include/svl/inettype.hxx:231
    enum INetContentType CONTENT_TYPE_APP_VND_SUN_XML_IMPRESSPACKED
include/svl/itemset.hxx:140
    enum SfxItemSet::SfxAllItemSetFlag Flag
include/svl/lstner.hxx:41
    enum DuplicateHandling Allow
include/svl/nfsymbol.hxx:48
    enum svt::NfSymbolType NF_SYMBOLTYPE_CURRDEL
include/svl/sigstruct.hxx:79
    enum svl::crypto::SignatureMethodAlgorithm RSA
include/svl/srchdefs.hxx:41
    enum SearchOptionFlags ALL
include/svl/style.hxx:56
    enum SfxStyleSearchBits ScStandard
include/svtools/borderline.hxx:45
    enum BorderWidthImplFlags FIXED
include/svtools/colorcfg.hxx:33
    enum svtools::ColorConfigEntry DOCBOUNDARIES
include/svtools/colorcfg.hxx:35
    enum svtools::ColorConfigEntry OBJECTBOUNDARIES
include/svtools/colorcfg.hxx:36
    enum svtools::ColorConfigEntry TABLEBOUNDARIES
include/svtools/colorcfg.hxx:40
    enum svtools::ColorConfigEntry SPELL
include/svtools/colorcfg.hxx:41
    enum svtools::ColorConfigEntry GRAMMAR
include/svtools/colorcfg.hxx:42
    enum svtools::ColorConfigEntry SMARTTAGS
include/svtools/colorcfg.hxx:43
    enum svtools::ColorConfigEntry SHADOWCOLOR
include/svtools/colorcfg.hxx:44
    enum svtools::ColorConfigEntry WRITERTEXTGRID
include/svtools/colorcfg.hxx:45
    enum svtools::ColorConfigEntry WRITERFIELDSHADINGS
include/svtools/colorcfg.hxx:46
    enum svtools::ColorConfigEntry WRITERIDXSHADINGS
include/svtools/colorcfg.hxx:48
    enum svtools::ColorConfigEntry WRITERSCRIPTINDICATOR
include/svtools/colorcfg.hxx:49
    enum svtools::ColorConfigEntry WRITERSECTIONBOUNDARIES
include/svtools/colorcfg.hxx:50
    enum svtools::ColorConfigEntry WRITERHEADERFOOTERMARK
include/svtools/colorcfg.hxx:51
    enum svtools::ColorConfigEntry WRITERPAGEBREAKS
include/svtools/colorcfg.hxx:56
    enum svtools::ColorConfigEntry CALCGRID
include/svtools/colorcfg.hxx:58
    enum svtools::ColorConfigEntry CALCPAGEBREAK
include/svtools/colorcfg.hxx:59
    enum svtools::ColorConfigEntry CALCPAGEBREAKMANUAL
include/svtools/colorcfg.hxx:60
    enum svtools::ColorConfigEntry CALCPAGEBREAKAUTOMATIC
include/svtools/colorcfg.hxx:61
    enum svtools::ColorConfigEntry CALCHIDDENROWCOL
include/svtools/colorcfg.hxx:62
    enum svtools::ColorConfigEntry CALCTEXTOVERFLOW
include/svtools/colorcfg.hxx:63
    enum svtools::ColorConfigEntry CALCCOMMENTS
include/svtools/colorcfg.hxx:64
    enum svtools::ColorConfigEntry CALCDETECTIVE
include/svtools/colorcfg.hxx:65
    enum svtools::ColorConfigEntry CALCDETECTIVEERROR
include/svtools/colorcfg.hxx:66
    enum svtools::ColorConfigEntry CALCREFERENCE
include/svtools/colorcfg.hxx:67
    enum svtools::ColorConfigEntry CALCNOTESBACKGROUND
include/svtools/colorcfg.hxx:68
    enum svtools::ColorConfigEntry CALCVALUE
include/svtools/colorcfg.hxx:69
    enum svtools::ColorConfigEntry CALCFORMULA
include/svtools/colorcfg.hxx:70
    enum svtools::ColorConfigEntry CALCTEXT
include/svtools/colorcfg.hxx:71
    enum svtools::ColorConfigEntry CALCPROTECTEDBACKGROUND
include/svtools/colorcfg.hxx:72
    enum svtools::ColorConfigEntry DRAWGRID
include/svtools/colorcfg.hxx:73
    enum svtools::ColorConfigEntry BASICEDITOR
include/svtools/colorcfg.hxx:74
    enum svtools::ColorConfigEntry BASICIDENTIFIER
include/svtools/colorcfg.hxx:75
    enum svtools::ColorConfigEntry BASICCOMMENT
include/svtools/colorcfg.hxx:76
    enum svtools::ColorConfigEntry BASICNUMBER
include/svtools/colorcfg.hxx:77
    enum svtools::ColorConfigEntry BASICSTRING
include/svtools/colorcfg.hxx:78
    enum svtools::ColorConfigEntry BASICOPERATOR
include/svtools/colorcfg.hxx:79
    enum svtools::ColorConfigEntry BASICKEYWORD
include/svtools/colorcfg.hxx:80
    enum svtools::ColorConfigEntry BASICERROR
include/svtools/colorcfg.hxx:81
    enum svtools::ColorConfigEntry SQLIDENTIFIER
include/svtools/colorcfg.hxx:82
    enum svtools::ColorConfigEntry SQLNUMBER
include/svtools/colorcfg.hxx:83
    enum svtools::ColorConfigEntry SQLSTRING
include/svtools/colorcfg.hxx:84
    enum svtools::ColorConfigEntry SQLOPERATOR
include/svtools/colorcfg.hxx:85
    enum svtools::ColorConfigEntry SQLKEYWORD
include/svtools/colorcfg.hxx:86
    enum svtools::ColorConfigEntry SQLPARAMETER
include/svtools/colorcfg.hxx:87
    enum svtools::ColorConfigEntry SQLCOMMENT
include/svtools/colrdlg.hxx:35
    enum svtools::ColorPickerMode Modify
include/svtools/colrdlg.hxx:35
    enum svtools::ColorPickerMode Select
include/svtools/editbrowsebox.hxx:897
    enum svt::EditBrowseBox::BrowseInfo COLCHANGE
include/svtools/imagemgr.hxx:29
    enum SvImageId START
include/svtools/parhtml.hxx:48
    enum HTMLTableFrame Void
include/svtools/parhtml.hxx:58
    enum HTMLInputType Range
include/svtools/parhtml.hxx:59
    enum HTMLInputType Scribble
include/svtools/parhtml.hxx:71
    enum HTMLScriptLanguage JavaScript
include/svtools/parhtml.hxx:72
    enum HTMLScriptLanguage Unknown
include/svtools/ruler.hxx:471
    enum RulerExtra DontKnow
include/svtools/ruler.hxx:518
    enum RulerIndentStyle Top
include/svtools/tabbar.hxx:301
    enum TabBarAllowRenamingReturnCode TABBAR_RENAMING_CANCEL
include/svx/dataaccessdescriptor.hxx:48
    enum svx::DataAccessDescriptorProperty Filter
include/svx/def3d.hxx:32
    enum E3dDragConstraint XYZ
include/svx/diagram/datamodel.hxx:40
    enum svx::diagram::TypeConstant XML_none
include/svx/diagram/datamodel.hxx:44
    enum svx::diagram::TypeConstant XML_node
include/svx/diagram/datamodel.hxx:45
    enum svx::diagram::TypeConstant XML_norm
include/svx/diagram/datamodel.hxx:48
    enum svx::diagram::TypeConstant XML_pres
include/svx/diagram/datamodel.hxx:50
    enum svx::diagram::TypeConstant XML_presParOf
include/svx/diagram/datamodel.hxx:51
    enum svx::diagram::TypeConstant XML_rel
include/svx/dlgutil.hxx:42
    enum ConnectorType Bottom
include/svx/EnhancedCustomShape2d.hxx:55
    enum HandleFlags MIRRORED_X
include/svx/EnhancedCustomShape2d.hxx:56
    enum HandleFlags MIRRORED_Y
include/svx/flagsdef.hxx:33
    enum SwBorderModes FRAME
include/svx/flagsdef.hxx:98
    enum SvxModeType SVX_PAGE_MODE_STANDARD
include/svx/fmsrcimp.hxx:159
    enum FmSearchEngine::SearchFor NotNull
include/svx/frmsel.hxx:36
    enum FrameSelFlags Left
include/svx/frmsel.hxx:38
    enum FrameSelFlags Right
include/svx/frmsel.hxx:40
    enum FrameSelFlags Top
include/svx/frmsel.hxx:42
    enum FrameSelFlags Bottom
include/svx/frmsel.hxx:44
    enum FrameSelFlags InnerHorizontal
include/svx/frmsel.hxx:46
    enum FrameSelFlags InnerVertical
include/svx/frmsel.hxx:48
    enum FrameSelFlags DiagonalTLBR
include/svx/frmsel.hxx:50
    enum FrameSelFlags DiagonalBLTR
include/svx/frmsel.hxx:53
    enum FrameSelFlags Outer
include/svx/galmisc.hxx:71
    enum GalleryGraphicImportRet IMPORT_FILE
include/svx/gridctrl.hxx:58
    enum GridRowStatus Invalid
include/svx/gridctrl.hxx:123
    enum InitWindowFacet All
include/svx/numvset.hxx:46
    enum NumberingPageType BITMAP
include/svx/optgenrl.hxx:26
    enum EditPosition COMPANY
include/svx/optgenrl.hxx:27
    enum EditPosition FIRSTNAME
include/svx/optgenrl.hxx:28
    enum EditPosition LASTNAME
include/svx/optgenrl.hxx:29
    enum EditPosition STREET
include/svx/optgenrl.hxx:30
    enum EditPosition COUNTRY
include/svx/optgenrl.hxx:31
    enum EditPosition PLZ
include/svx/optgenrl.hxx:32
    enum EditPosition CITY
include/svx/optgenrl.hxx:33
    enum EditPosition STATE
include/svx/optgenrl.hxx:34
    enum EditPosition TITLE
include/svx/optgenrl.hxx:35
    enum EditPosition POSITION
include/svx/optgenrl.hxx:36
    enum EditPosition SHORTNAME
include/svx/optgenrl.hxx:37
    enum EditPosition TELPRIV
include/svx/optgenrl.hxx:38
    enum EditPosition TELCOMPANY
include/svx/optgenrl.hxx:39
    enum EditPosition FAX
include/svx/optgenrl.hxx:40
    enum EditPosition EMAIL
include/svx/papersizelistbox.hxx:30
    enum PaperSizeApp Draw
include/svx/ruler.hxx:53
    enum SvxRulerDragFlags OBJECT
include/svx/sdasitm.hxx:53
    enum SdrCustomShapeGeometryItem::HashState Unusable
include/svx/sdr/overlay/overlayselection.hxx:32
    enum sdr::overlay::OverlayType Solid
include/svx/ShapeTypeHandler.hxx:82
    enum accessibility::ShapeTypeHandler::(unnamed at /home/noel/libo-plugin/include/svx/ShapeTypeHandler.hxx:82:5) UNKNOWN_SHAPE_TYPE
include/svx/sidebar/InspectorTextPanel.hxx:34
    enum svx::sidebar::TreeNode::(unnamed at /home/noel/libo-plugin/include/svx/sidebar/InspectorTextPanel.hxx:31:5) ComplexProperty
include/svx/srchdlg.hxx:84
    enum SearchLabel Empty
include/svx/svddrgv.hxx:36
    enum SdrDragView::(unnamed at /home/noel/libo-plugin/include/svx/svddrgv.hxx:35:5) eDragXorPolyLimit
include/svx/svddrgv.hxx:37
    enum SdrDragView::(unnamed at /home/noel/libo-plugin/include/svx/svddrgv.hxx:35:5) eDragXorPointLimit
include/svx/svdedxv.hxx:52
    enum SdrEndTextEditKind Changed
include/svx/svdglue.hxx:43
    enum SdrEscapeDirection ALL
include/svx/svdglue.hxx:56
    enum SdrAlign HORZ_DONTCARE
include/svx/svdglue.hxx:60
    enum SdrAlign VERT_DONTCARE
include/svx/svditer.hxx:36
    enum SdrIterMode DeepWithGroups
include/svx/svdmrkv.hxx:48
    enum SdrSearchOptions PICKMARKABLE
include/svx/svdmrkv.hxx:49
    enum SdrSearchOptions PICKTEXTEDIT
include/svx/svdmrkv.hxx:50
    enum SdrSearchOptions PICKMACRO
include/svx/svdmrkv.hxx:60
    enum SdrHitKind Object
include/svx/svdoashp.hxx:58
    enum CustomShapeHandleModes ORTHO4
include/svx/svdobj.hxx:101
    enum SdrInventor IMap
include/svx/svdobjkind.hxx:63
    enum SdrObjKind E3D_Object
include/svx/svdobjkind.hxx:99
    enum SdrObjKind BasicDialogControl
include/svx/svdobjkind.hxx:100
    enum SdrObjKind BasicDialogDialog
include/svx/svdograf.hxx:43
    enum SdrGrafObjTransformsAttrs ALL
include/svx/svdotable.hxx:55
    enum sdr::table::TableHitKind HorizontalBorder
include/svx/svdotable.hxx:56
    enum sdr::table::TableHitKind VerticallBorder
include/svx/svdpntv.hxx:62
    enum SdrAnimationMode Disable
include/svx/svdsnpv.hxx:73
    enum SdrSnap NOTSNAPPED
include/svx/svdtypes.hxx:69
    enum SdrRepeatFunc Move
include/svx/svdtypes.hxx:70
    enum SdrRepeatFunc Resize
include/svx/svdtypes.hxx:71
    enum SdrRepeatFunc Rotate
include/svx/svdview.hxx:56
    enum SdrViewContext GluePointEdit
include/svx/svdview.hxx:91
    enum SdrMouseEventKind MOVE
include/svx/SvxShapeTypes.hxx:65
    enum accessibility::SvxShapeTypes DRAWING_END
include/svx/swframeposstrings.hxx:34
    enum SvxSwFramePosString::StringId LEFT
include/svx/swframeposstrings.hxx:35
    enum SvxSwFramePosString::StringId RIGHT
include/svx/swframeposstrings.hxx:37
    enum SvxSwFramePosString::StringId MIR_LEFT
include/svx/swframeposstrings.hxx:38
    enum SvxSwFramePosString::StringId MIR_RIGHT
include/svx/swframeposstrings.hxx:39
    enum SvxSwFramePosString::StringId MIR_FROMLEFT
include/svx/swframeposstrings.hxx:40
    enum SvxSwFramePosString::StringId FRAME
include/svx/swframeposstrings.hxx:41
    enum SvxSwFramePosString::StringId PRTAREA
include/svx/swframeposstrings.hxx:42
    enum SvxSwFramePosString::StringId REL_PG_LEFT
include/svx/swframeposstrings.hxx:43
    enum SvxSwFramePosString::StringId REL_PG_RIGHT
include/svx/swframeposstrings.hxx:44
    enum SvxSwFramePosString::StringId REL_FRM_LEFT
include/svx/swframeposstrings.hxx:45
    enum SvxSwFramePosString::StringId REL_FRM_RIGHT
include/svx/swframeposstrings.hxx:46
    enum SvxSwFramePosString::StringId MIR_REL_PG_LEFT
include/svx/swframeposstrings.hxx:47
    enum SvxSwFramePosString::StringId MIR_REL_PG_RIGHT
include/svx/swframeposstrings.hxx:48
    enum SvxSwFramePosString::StringId MIR_REL_FRM_LEFT
include/svx/swframeposstrings.hxx:49
    enum SvxSwFramePosString::StringId MIR_REL_FRM_RIGHT
include/svx/swframeposstrings.hxx:50
    enum SvxSwFramePosString::StringId REL_PG_FRAME
include/svx/swframeposstrings.hxx:51
    enum SvxSwFramePosString::StringId REL_PG_PRTAREA
include/svx/swframeposstrings.hxx:52
    enum SvxSwFramePosString::StringId REL_PG_PRTAREA_TOP
include/svx/swframeposstrings.hxx:53
    enum SvxSwFramePosString::StringId REL_PG_PRTAREA_BOTTOM
include/svx/swframeposstrings.hxx:54
    enum SvxSwFramePosString::StringId REL_BASE
include/svx/swframeposstrings.hxx:55
    enum SvxSwFramePosString::StringId REL_CHAR
include/svx/swframeposstrings.hxx:56
    enum SvxSwFramePosString::StringId REL_ROW
include/svx/swframeposstrings.hxx:57
    enum SvxSwFramePosString::StringId REL_BORDER
include/svx/swframeposstrings.hxx:58
    enum SvxSwFramePosString::StringId REL_PRTAREA
include/svx/swframeposstrings.hxx:59
    enum SvxSwFramePosString::StringId FLY_REL_PG_LEFT
include/svx/swframeposstrings.hxx:60
    enum SvxSwFramePosString::StringId FLY_REL_PG_RIGHT
include/svx/swframeposstrings.hxx:61
    enum SvxSwFramePosString::StringId FLY_REL_PG_FRAME
include/svx/swframeposstrings.hxx:62
    enum SvxSwFramePosString::StringId FLY_REL_PG_PRTAREA
include/svx/swframeposstrings.hxx:63
    enum SvxSwFramePosString::StringId FLY_MIR_REL_PG_LEFT
include/svx/swframeposstrings.hxx:64
    enum SvxSwFramePosString::StringId FLY_MIR_REL_PG_RIGHT
include/svx/swframeposstrings.hxx:65
    enum SvxSwFramePosString::StringId TOP
include/svx/swframeposstrings.hxx:66
    enum SvxSwFramePosString::StringId BOTTOM
include/svx/swframeposstrings.hxx:67
    enum SvxSwFramePosString::StringId CENTER_HORI
include/svx/swframeposstrings.hxx:68
    enum SvxSwFramePosString::StringId CENTER_VERT
include/svx/swframeposstrings.hxx:70
    enum SvxSwFramePosString::StringId FROMBOTTOM
include/svx/swframeposstrings.hxx:71
    enum SvxSwFramePosString::StringId BELOW
include/svx/swframeposstrings.hxx:72
    enum SvxSwFramePosString::StringId FROMRIGHT
include/svx/swframeposstrings.hxx:73
    enum SvxSwFramePosString::StringId REL_PG_TOP
include/svx/swframeposstrings.hxx:74
    enum SvxSwFramePosString::StringId REL_PG_BOTTOM
include/svx/swframeposstrings.hxx:75
    enum SvxSwFramePosString::StringId REL_FRM_TOP
include/svx/swframeposstrings.hxx:76
    enum SvxSwFramePosString::StringId REL_FRM_BOTTOM
include/svx/swframeposstrings.hxx:77
    enum SvxSwFramePosString::StringId REL_LINE
include/svx/xenum.hxx:26
    enum XFormTextShadow Slant
include/toolkit/controls/unocontrols.hxx:730
    enum UnoControlListBoxModel::ConstructorMode ConstructWithoutProperties
include/tools/color.hxx:45
    enum ColorTransparencyTag ColorTransparency
include/tools/color.hxx:46
    enum ColorAlphaTag ColorAlpha
include/tools/cpuid.hxx:35
    enum cpuid::InstructionSetFlags HYPER
include/tools/cpuid.hxx:36
    enum cpuid::InstructionSetFlags SSE2
include/tools/cpuid.hxx:37
    enum cpuid::InstructionSetFlags SSSE3
include/tools/cpuid.hxx:38
    enum cpuid::InstructionSetFlags SSE41
include/tools/cpuid.hxx:39
    enum cpuid::InstructionSetFlags SSE42
include/tools/cpuid.hxx:40
    enum cpuid::InstructionSetFlags AVX
include/tools/cpuid.hxx:41
    enum cpuid::InstructionSetFlags AVX2
include/tools/cpuid.hxx:42
    enum cpuid::InstructionSetFlags AVX512F
include/tools/date.hxx:63
    enum Date::DateInitSystem SYSTEM
include/tools/date.hxx:68
    enum Date::DateInitEmpty EMPTY
include/tools/datetime.hxx:39
    enum DateTime::DateTimeInitSystem SYSTEM
include/tools/datetime.hxx:44
    enum DateTime::DateTimeInitEmpty EMPTY
include/tools/Guid.hxx:97
    enum tools::Guid::GenerateTag Generate
include/tools/stream.hxx:63
    enum StreamMode STD_READ
include/tools/stream.hxx:64
    enum StreamMode STD_WRITE
include/tools/stream.hxx:65
    enum StreamMode STD_READWRITE
include/tools/time.hxx:45
    enum tools::Time::TimeInitSystem SYSTEM
include/tools/time.hxx:51
    enum tools::Time::TimeInitEmpty EMPTY
include/tools/urlobj.hxx:173
    enum FSysStyle Detect
include/tools/urlobj.hxx:243
    enum INetURLObject::DecodeMechanism WithCharset
include/tools/urlobj.hxx:781
    enum INetURLObject::Part PART_USER_PASSWORD
include/tools/urlobj.hxx:782
    enum INetURLObject::Part PART_FPATH
include/tools/urlobj.hxx:783
    enum INetURLObject::Part PART_AUTHORITY
include/tools/urlobj.hxx:784
    enum INetURLObject::Part PART_REL_SEGMENT_EXTRA
include/tools/urlobj.hxx:785
    enum INetURLObject::Part PART_URIC
include/tools/urlobj.hxx:786
    enum INetURLObject::Part PART_HTTP_PATH
include/tools/urlobj.hxx:787
    enum INetURLObject::Part PART_MESSAGE_ID_PATH
include/tools/urlobj.hxx:788
    enum INetURLObject::Part PART_MAILTO
include/tools/urlobj.hxx:789
    enum INetURLObject::Part PART_PATH_BEFORE_QUERY
include/tools/urlobj.hxx:790
    enum INetURLObject::Part PART_PCHAR
include/tools/urlobj.hxx:791
    enum INetURLObject::Part PART_VISIBLE
include/tools/urlobj.hxx:792
    enum INetURLObject::Part PART_VISIBLE_NONSPECIAL
include/tools/urlobj.hxx:793
    enum INetURLObject::Part PART_UNO_PARAM_VALUE
include/tools/urlobj.hxx:794
    enum INetURLObject::Part PART_UNAMBIGUOUS
include/tools/urlobj.hxx:795
    enum INetURLObject::Part PART_URIC_NO_SLASH
include/tools/urlobj.hxx:796
    enum INetURLObject::Part PART_HTTP_QUERY
include/tools/zcodec.hxx:41
    enum ZCodec::State STATE_DECOMPRESS
include/ucbhelper/content.hxx:77
    enum ucbhelper::ResultSetInclude INCLUDE_FOLDERS_AND_DOCUMENTS
include/ucbhelper/simpleauthenticationrequest.hxx:73
    enum ucbhelper::SimpleAuthenticationRequest::EntityType ENTITY_FIXED
include/unotest/filters-test.hxx:26
    enum test::filterStatus fail
include/unotest/filters-test.hxx:27
    enum test::filterStatus pass
include/unotools/bootstrap.hxx:59
    enum utl::Bootstrap::PathStatus DATA_UNKNOWN
include/unotools/bootstrap.hxx:82
    enum utl::Bootstrap::Status MISSING_USER_INSTALL
include/unotools/bootstrap.hxx:83
    enum utl::Bootstrap::Status INVALID_USER_INSTALL
include/unotools/bootstrap.hxx:84
    enum utl::Bootstrap::Status INVALID_BASE_INSTALL
include/unotools/confignode.hxx:164
    enum utl::OConfigurationNode::NAMEORIGIN NO_CONFIGURATION
include/unotools/confignode.hxx:194
    enum utl::OConfigurationTreeRoot::CREATION_MODE CM_UPDATABLE
include/unotools/eventcfg.hxx:32
    enum GlobalEventId DOCCREATED
include/unotools/eventcfg.hxx:33
    enum GlobalEventId CREATEDOC
include/unotools/eventcfg.hxx:34
    enum GlobalEventId LOADFINISHED
include/unotools/eventcfg.hxx:35
    enum GlobalEventId OPENDOC
include/unotools/eventcfg.hxx:36
    enum GlobalEventId PREPARECLOSEDOC
include/unotools/eventcfg.hxx:37
    enum GlobalEventId CLOSEDOC
include/unotools/eventcfg.hxx:38
    enum GlobalEventId SAVEDOC
include/unotools/eventcfg.hxx:39
    enum GlobalEventId SAVEDOCDONE
include/unotools/eventcfg.hxx:40
    enum GlobalEventId SAVEDOCFAILED
include/unotools/eventcfg.hxx:41
    enum GlobalEventId SAVEASDOC
include/unotools/eventcfg.hxx:42
    enum GlobalEventId SAVEASDOCDONE
include/unotools/eventcfg.hxx:43
    enum GlobalEventId SAVEASDOCFAILED
include/unotools/eventcfg.hxx:44
    enum GlobalEventId SAVETODOC
include/unotools/eventcfg.hxx:45
    enum GlobalEventId SAVETODOCDONE
include/unotools/eventcfg.hxx:46
    enum GlobalEventId SAVETODOCFAILED
include/unotools/eventcfg.hxx:47
    enum GlobalEventId ACTIVATEDOC
include/unotools/eventcfg.hxx:48
    enum GlobalEventId DEACTIVATEDOC
include/unotools/eventcfg.hxx:49
    enum GlobalEventId PRINTDOC
include/unotools/eventcfg.hxx:50
    enum GlobalEventId VIEWCREATED
include/unotools/eventcfg.hxx:51
    enum GlobalEventId PREPARECLOSEVIEW
include/unotools/eventcfg.hxx:52
    enum GlobalEventId CLOSEVIEW
include/unotools/eventcfg.hxx:53
    enum GlobalEventId MODIFYCHANGED
include/unotools/eventcfg.hxx:54
    enum GlobalEventId TITLECHANGED
include/unotools/eventcfg.hxx:55
    enum GlobalEventId VISAREACHANGED
include/unotools/eventcfg.hxx:56
    enum GlobalEventId MODECHANGED
include/unotools/eventcfg.hxx:57
    enum GlobalEventId STORAGECHANGED
include/unotools/fontcfg.hxx:63
    enum ImplFontAttrs CJK_JP
include/unotools/fontcfg.hxx:64
    enum ImplFontAttrs CJK_SC
include/unotools/fontcfg.hxx:65
    enum ImplFontAttrs CJK_TC
include/unotools/fontcfg.hxx:66
    enum ImplFontAttrs CJK_KR
include/unotools/fontcfg.hxx:74
    enum ImplFontAttrs Script
include/unotools/fontcfg.hxx:75
    enum ImplFontAttrs Handwriting
include/unotools/fontcfg.hxx:76
    enum ImplFontAttrs Chancery
include/unotools/fontcfg.hxx:77
    enum ImplFontAttrs Comic
include/unotools/fontcvt.hxx:34
    enum FontToSubsFontFlags EXPORT
include/unotools/options.hxx:34
    enum ConfigurationHints UiLocale
include/unotools/options.hxx:37
    enum ConfigurationHints IgnoreLang
include/unotools/options.hxx:39
    enum ConfigurationHints CtlSettingsChanged
include/unotools/sharedunocomponent.hxx:150
    enum utl::SharedUNOComponent<class com::sun::star::awt::XControl>::AssignmentMode NoTakeOwnership
include/unotools/sharedunocomponent.hxx:150
    enum utl::SharedUNOComponent<class com::sun::star::frame::XModel, class utl::CloseableComponent>::AssignmentMode NoTakeOwnership
include/unotools/sharedunocomponent.hxx:150
    enum utl::SharedUNOComponent<class com::sun::star::sdbc::XConnection>::AssignmentMode NoTakeOwnership
include/unotools/sharedunocomponent.hxx:150
    enum utl::SharedUNOComponent<class com::sun::star::sdbc::XResultSet>::AssignmentMode NoTakeOwnership
include/unotools/useroptions.hxx:32
    enum UserOptToken City
include/unotools/useroptions.hxx:33
    enum UserOptToken Company
include/unotools/useroptions.hxx:34
    enum UserOptToken Country
include/unotools/useroptions.hxx:35
    enum UserOptToken Email
include/unotools/useroptions.hxx:36
    enum UserOptToken Fax
include/unotools/useroptions.hxx:37
    enum UserOptToken FirstName
include/unotools/useroptions.hxx:38
    enum UserOptToken LastName
include/unotools/useroptions.hxx:39
    enum UserOptToken Position
include/unotools/useroptions.hxx:40
    enum UserOptToken State
include/unotools/useroptions.hxx:41
    enum UserOptToken Street
include/unotools/useroptions.hxx:42
    enum UserOptToken TelephoneHome
include/unotools/useroptions.hxx:43
    enum UserOptToken TelephoneWork
include/unotools/useroptions.hxx:44
    enum UserOptToken Title
include/unotools/useroptions.hxx:46
    enum UserOptToken Zip
include/unotools/useroptions.hxx:47
    enum UserOptToken FathersName
include/unotools/useroptions.hxx:48
    enum UserOptToken Apartment
include/unotools/useroptions.hxx:49
    enum UserOptToken SigningKey
include/unotools/useroptions.hxx:50
    enum UserOptToken EncryptionKey
include/unotools/useroptions.hxx:51
    enum UserOptToken EncryptToSelf
include/unotools/viewoptions.hxx:205
    enum SvtViewOptions::State STATE_FALSE
include/vbahelper/vbafontbase.hxx:48
    enum VbaFontBase::Component WORD
include/vcl/animate/AnimationFrame.hxx:34
    enum Blend Over
include/vcl/decoview.hxx:49
    enum DrawHighlightFrameStyle Out
include/vcl/EnumContext.hxx:41
    enum vcl::EnumContext::Application Chart
include/vcl/EnumContext.hxx:56
    enum vcl::EnumContext::Application Any
include/vcl/EnumContext.hxx:68
    enum vcl::EnumContext::Context Auditing
include/vcl/EnumContext.hxx:69
    enum vcl::EnumContext::Context Axis
include/vcl/EnumContext.hxx:72
    enum vcl::EnumContext::Context ChartElements
include/vcl/EnumContext.hxx:74
    enum vcl::EnumContext::Context DrawFontwork
include/vcl/EnumContext.hxx:76
    enum vcl::EnumContext::Context DrawPage
include/vcl/EnumContext.hxx:79
    enum vcl::EnumContext::Context ErrorBar
include/vcl/EnumContext.hxx:81
    enum vcl::EnumContext::Context Frame
include/vcl/EnumContext.hxx:84
    enum vcl::EnumContext::Context HandoutPage
include/vcl/EnumContext.hxx:85
    enum vcl::EnumContext::Context MasterPage
include/vcl/EnumContext.hxx:86
    enum vcl::EnumContext::Context Math
include/vcl/EnumContext.hxx:89
    enum vcl::EnumContext::Context NotesPage
include/vcl/EnumContext.hxx:93
    enum vcl::EnumContext::Context Printpreview
include/vcl/EnumContext.hxx:94
    enum vcl::EnumContext::Context Series
include/vcl/EnumContext.hxx:95
    enum vcl::EnumContext::Context SlidesorterPage
include/vcl/EnumContext.hxx:99
    enum vcl::EnumContext::Context Trendline
include/vcl/event.hxx:84
    enum MouseEventModifiers DRAGMOVE
include/vcl/event.hxx:85
    enum MouseEventModifiers DRAGCOPY
include/vcl/filter/pdfdocument.hxx:294
    enum vcl::filter::TokenizeMode END_OF_STREAM
include/vcl/filter/pdfdocument.hxx:300
    enum vcl::filter::TokenizeMode STORED_OBJECT
include/vcl/fntstyle.hxx:31
    enum FontKerning FontSpecific
include/vcl/font/Feature.hxx:38
    enum vcl::font::FeatureType Graphite
include/vcl/formatter.hxx:82
    enum FORMAT_CHANGE_TYPE CURRENCY_SYMBOL
include/vcl/formatter.hxx:83
    enum FORMAT_CHANGE_TYPE CURRSYM_POSITION
include/vcl/formatter.hxx:121
    enum Formatter::valueState valueDirty
include/vcl/gdimtf.hxx:48
    enum MtfConversion N8BitGreys
include/vcl/GestureEventPan.hxx:24
    enum PanningOrientation Horizontal
include/vcl/GestureEventPan.hxx:25
    enum PanningOrientation Vertical
include/vcl/GestureEventRotate.hxx:17
    enum GestureEventRotateType Begin
include/vcl/GestureEventRotate.hxx:18
    enum GestureEventRotateType Update
include/vcl/GestureEventRotate.hxx:19
    enum GestureEventRotateType End
include/vcl/GestureEventZoom.hxx:19
    enum GestureEventZoomType End
include/vcl/GraphicObject.hxx:41
    enum GraphicAdjustmentFlags ALL
include/vcl/graphictools.hxx:214
    enum SvtGraphicFill::FillRule fillNonZero
include/vcl/graphictools.hxx:239
    enum SvtGraphicFill::HatchType hatchSingle
include/vcl/graphictools.hxx:241
    enum SvtGraphicFill::HatchType hatchDouble
include/vcl/graphictools.hxx:246
    enum SvtGraphicFill::HatchType hatchTriple
include/vcl/graphictools.hxx:249
    enum SvtGraphicFill::GradientType Rectangular
include/vcl/graphictools.hxx:251
    enum SvtGraphicFill::(unnamed at /home/noel/libo-plugin/include/vcl/graphictools.hxx:251:5) gradientStepsInfinite
include/vcl/headbar.hxx:183
    enum HeaderBarItemBits LEFT
include/vcl/headbar.hxx:192
    enum HeaderBarItemBits STDSTYLE
include/vcl/help.hxx:36
    enum QuickHelpFlags Center
include/vcl/help.hxx:39
    enum QuickHelpFlags VCenter
include/vcl/image.hxx:37
    enum StockImage Yes
include/vcl/inputctx.hxx:32
    enum InputContextFlags ExtText
include/vcl/inputtypes.hxx:28
    enum VclInputFlags KEYBOARD
include/vcl/inputtypes.hxx:29
    enum VclInputFlags PAINT
include/vcl/inputtypes.hxx:32
    enum VclInputFlags APPEVENT
include/vcl/keycodes.hxx:172
    enum ModKeyFlags LeftMod1
include/vcl/keycodes.hxx:173
    enum ModKeyFlags RightMod1
include/vcl/keycodes.hxx:174
    enum ModKeyFlags LeftMod2
include/vcl/keycodes.hxx:175
    enum ModKeyFlags RightMod2
include/vcl/keycodes.hxx:176
    enum ModKeyFlags LeftMod3
include/vcl/keycodes.hxx:177
    enum ModKeyFlags RightMod3
include/vcl/keycodes.hxx:192
    enum KeyIndicatorState NUMLOCK
include/vcl/lazydelete.hxx:66
    enum vcl::DeleteOnDeinitFlag Empty
include/vcl/outdev.hxx:148
    enum OutDevViewType DontKnow
include/vcl/outdev.hxx:148
    enum OutDevViewType SlideShow
include/vcl/pdf/PDFAnnotationMarker.hxx:58
    enum vcl::pdf::PDFTextMarkerType Highlight
include/vcl/pdf/PDFAnnotationSubType.hxx:33
    enum vcl::pdf::PDFAnnotationSubType Popup
include/vcl/pdf/PDFAnnotationSubType.hxx:37
    enum vcl::pdf::PDFAnnotationSubType Widget
include/vcl/pdfwriter.hxx:124
    enum vcl::PDFWriter::StructElement Article
include/vcl/pdfwriter.hxx:124
    enum vcl::PDFWriter::StructElement Section
include/vcl/pdfwriter.hxx:125
    enum vcl::PDFWriter::StructElement Index
include/vcl/pdfwriter.hxx:125
    enum vcl::PDFWriter::StructElement TOC
include/vcl/pdfwriter.hxx:125
    enum vcl::PDFWriter::StructElement TOCI
include/vcl/pdfwriter.hxx:134
    enum vcl::PDFWriter::StructElement RB
include/vcl/pdfwriter.hxx:134
    enum vcl::PDFWriter::StructElement RP
include/vcl/pdfwriter.hxx:134
    enum vcl::PDFWriter::StructElement Ruby
include/vcl/pdfwriter.hxx:134
    enum vcl::PDFWriter::StructElement WP
include/vcl/pdfwriter.hxx:134
    enum vcl::PDFWriter::StructElement WT
include/vcl/pdfwriter.hxx:134
    enum vcl::PDFWriter::StructElement Warichu
include/vcl/pdfwriter.hxx:170
    enum vcl::PDFWriter::StructAttributeValue Background
include/vcl/pdfwriter.hxx:217
    enum vcl::PDFWriter::FormatType Text
include/vcl/pdfwriter.hxx:582
    enum vcl::PDFWriter::ColorMode DrawColor
include/vcl/printer/Options.hxx:41
    enum vcl::printer::GradientMode Color
include/vcl/printer/Options.hxx:48
    enum vcl::printer::BitmapMode Resolution
include/vcl/rendercontext/AddFontSubstituteFlags.hxx:28
    enum AddFontSubstituteFlags ScreenOnly
include/vcl/rendercontext/DrawModeFlags.hxx:27
    enum DrawModeFlags Default
include/vcl/salgtype.hxx:30
    enum DeviceFormat WITH_ALPHA
include/vcl/salnativewidgets.hxx:132
    enum ControlPart TrackHorzLeft
include/vcl/salnativewidgets.hxx:133
    enum ControlPart TrackVertUpper
include/vcl/salnativewidgets.hxx:134
    enum ControlPart TrackHorzRight
include/vcl/salnativewidgets.hxx:135
    enum ControlPart TrackVertLower
include/vcl/salnativewidgets.hxx:197
    enum ControlPart BackgroundWindow
include/vcl/salnativewidgets.hxx:198
    enum ControlPart BackgroundDialog
include/vcl/salnativewidgets.hxx:237
    enum ButtonValue DontKnow
include/vcl/Scanline.hxx:48
    enum ScanlineDirection BottomUp
include/vcl/sysdata.hxx:54
    enum SystemEnvData::Toolkit Qt
include/vcl/syswin.hxx:50
    enum MenuBarMode Normal
include/vcl/task.hxx:29
    enum TaskPriority HIGHEST
include/vcl/task.hxx:30
    enum TaskPriority DEFAULT
include/vcl/task.hxx:33
    enum TaskPriority RESIZE
include/vcl/task.hxx:34
    enum TaskPriority REPAINT
include/vcl/task.hxx:35
    enum TaskPriority POST_PAINT
include/vcl/toolbox.hxx:51
    enum ToolBoxMenuType ClippedItems
include/vcl/toolbox.hxx:61
    enum ToolBoxLayoutMode Normal
include/vcl/toolbox.hxx:68
    enum ToolBoxTextPosition Bottom
include/vcl/toolkit/dialog.hxx:46
    enum Dialog::InitFlag Default
include/vcl/toolkit/floatwin.hxx:49
    enum FloatWinTitleType Unknown
include/vcl/toolkit/ivctrl.hxx:53
    enum SvxIconChoiceCtrlTextMode Short
include/vcl/toolkit/ivctrl.hxx:58
    enum SvxIconChoiceCtrlPositionMode Free
include/vcl/toolkit/prgsbar.hxx:59
    enum ProgressBar::BarStyle Level
include/vcl/toolkit/svlbitm.hxx:40
    enum SvBmp CHECKED
include/vcl/toolkit/svlbitm.hxx:41
    enum SvBmp TRISTATE
include/vcl/toolkit/svlbitm.hxx:42
    enum SvBmp HIUNCHECKED
include/vcl/toolkit/svlbitm.hxx:43
    enum SvBmp HICHECKED
include/vcl/toolkit/svlbitm.hxx:44
    enum SvBmp HITRISTATE
include/vcl/toolkit/svtabbx.hxx:40
    enum SvTabJustify AdjustCenter
include/vcl/toolkit/treelistbox.hxx:64
    enum SvLBoxTabFlags ADJUST_LEFT
include/vcl/vclenum.hxx:38
    enum MenuItemBits HELP
include/vcl/vclenum.hxx:57
    enum ToolBoxItemBits AUTOSIZE
include/vcl/vclenum.hxx:69
    enum ToolBoxItemType DONTKNOW
include/vcl/vclenum.hxx:71
    enum ButtonType SYMBOLTEXT
include/vcl/vclenum.hxx:101
    enum SymbolType MENU
include/vcl/vclenum.hxx:109
    enum WindowBorderStyle NORMAL
include/vcl/vclenum.hxx:123
    enum TimeFormat Hour24
include/vcl/vclenum.hxx:292
    enum vcl::ImageType Small
include/vcl/vclenum.hxx:314
    enum DrawFrameFlags BorderWindowBorder
include/vcl/vclenum.hxx:368
    enum TrackingEventFlags Key
include/vcl/vclevent.hxx:93
    enum VclEventId ScrollbarEndScroll
include/vcl/vectorgraphicdata.hxx:100
    enum VectorGraphicData::State PARSED
include/vcl/VectorGraphicSearch.hxx:24
    enum SearchStartPosition Begin
include/vcl/virdev.hxx:44
    enum VirtualDevice::RefDevMode Custom
include/vcl/weld.hxx:896
    enum weld::ColumnToggleType Check
include/vcl/weld.hxx:2400
    enum weld::Placement End
include/vcl/window.hxx:136
    enum PosSizeFlags PosSize
include/vcl/window.hxx:137
    enum PosSizeFlags All
include/vcl/window.hxx:251
    enum ShowTrackFlags Small
include/vcl/window.hxx:255
    enum ShowTrackFlags StyleMask
include/vcl/window.hxx:268
    enum StartTrackingFlags KeyMod
include/vcl/window.hxx:307
    enum StateChangedType Layout
include/vcl/window.hxx:322
    enum GetFocusFlags Around
include/vcl/window.hxx:325
    enum GetFocusFlags FloatWinPopupModeEndCancel
include/vcl/window.hxx:349
    enum EndExtTextInputFlags Complete
include/vcl/windowstate.hxx:42
    enum vcl::WindowState SystemMask
include/vcl/windowstate.hxx:62
    enum vcl::WindowDataMask All
include/vcl/wintypes.hxx:240
    enum SymbolAlign LEFT
include/vcl/wintypes.hxx:253
    enum StandardButtonType More
include/vcl/wintypes.hxx:254
    enum StandardButtonType Ignore
include/vcl/wintypes.hxx:255
    enum StandardButtonType Abort
include/vcl/wintypes.hxx:256
    enum StandardButtonType Less
include/vcl/wintypes.hxx:257
    enum StandardButtonType Back
include/vcl/wintypes.hxx:258
    enum StandardButtonType Next
include/vcl/wintypes.hxx:259
    enum StandardButtonType Finish
include/vcl/wintypes.hxx:260
    enum StandardButtonType Count
include/xmloff/families.hxx:77
    enum XmlStyleFamily TABLE_TEMPLATE_ID
include/xmloff/families.hxx:85
    enum XmlStyleFamily SD_PAGEMASTERCONTEXT_ID
include/xmloff/families.hxx:86
    enum XmlStyleFamily SD_PAGEMASTERSTYLECONTEXT_ID
include/xmloff/families.hxx:87
    enum XmlStyleFamily SD_PRESENTATIONPAGELAYOUT_ID
include/xmloff/families.hxx:93
    enum XmlStyleFamily SD_GRADIENT_ID
include/xmloff/families.hxx:94
    enum XmlStyleFamily SD_HATCH_ID
include/xmloff/families.hxx:95
    enum XmlStyleFamily SD_FILL_IMAGE_ID
include/xmloff/families.hxx:96
    enum XmlStyleFamily SD_MARKER_ID
include/xmloff/families.hxx:97
    enum XmlStyleFamily SD_STROKE_DASH_ID
include/xmloff/namespacemap.hxx:119
    enum SvXMLNamespaceMap::QNameMode AttrValue
include/xmloff/shapeexport.hxx:56
    enum XMLShapeExportFlags SIZE
include/xmloff/txtimp.hxx:76
    enum XMLTextType Footnote
include/xmloff/txtparae.hxx:75
    enum TextPNS ODF
include/xmloff/txtparae.hxx:126
    enum XMLTextParagraphExport::FieldmarkType CHECK
include/xmloff/xmlerror.hxx:82
    enum SvXMLErrorFlags WARNING_OCCURRED
include/xmloff/xmlexp.hxx:104
    enum SvXMLExportFlags ALL
include/xmloff/xmlnumfi.hxx:53
    enum SvXMLDateElementAttributes XML_DEA_SHORT
include/xmloff/xmlnumfi.hxx:54
    enum SvXMLDateElementAttributes XML_DEA_LONG
include/xmloff/xmlnumfi.hxx:55
    enum SvXMLDateElementAttributes XML_DEA_TEXTSHORT
include/xmloff/xmlnumfi.hxx:56
    enum SvXMLDateElementAttributes XML_DEA_TEXTLONG
include/xmloff/xmlnumfi.hxx:124
    enum SvXMLNumFormatContext::ImplicitCalendar DEFAULT_FROM_OTHER
include/xmlreader/xmlreader.hxx:42
    enum xmlreader::XmlReader::(unnamed at /home/noel/libo-plugin/include/xmlreader/xmlreader.hxx:42:5) NAMESPACE_UNKNOWN
include/xmlreader/xmlreader.hxx:44
    enum xmlreader::XmlReader::Text Normalized
include/xmlreader/xmlreader.hxx:125
    enum xmlreader::XmlReader::State Done
jvmfwk/inc/vendorplugin.hxx:57
    enum javaPluginError InvalidArg
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:58
    enum jfw_plugin::SunVersion::PreRelease Rel_INTERNAL
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:59
    enum jfw_plugin::SunVersion::PreRelease Rel_EA
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:60
    enum jfw_plugin::SunVersion::PreRelease Rel_EA1
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:61
    enum jfw_plugin::SunVersion::PreRelease Rel_EA2
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:62
    enum jfw_plugin::SunVersion::PreRelease Rel_EA3
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:63
    enum jfw_plugin::SunVersion::PreRelease Rel_BETA
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:64
    enum jfw_plugin::SunVersion::PreRelease Rel_BETA1
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:65
    enum jfw_plugin::SunVersion::PreRelease Rel_BETA2
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:66
    enum jfw_plugin::SunVersion::PreRelease Rel_BETA3
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:67
    enum jfw_plugin::SunVersion::PreRelease Rel_RC
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:68
    enum jfw_plugin::SunVersion::PreRelease Rel_RC1
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:69
    enum jfw_plugin::SunVersion::PreRelease Rel_RC2
jvmfwk/plugins/sunmajor/pluginlib/sunversion.hxx:70
    enum jfw_plugin::SunVersion::PreRelease Rel_RC3
jvmfwk/plugins/sunmajor/pluginlib/util.cxx:193
    enum jfw_plugin::(anonymous namespace)::FileHandleReader::Result RESULT_EOF
jvmfwk/plugins/sunmajor/pluginlib/util.cxx:203
    enum jfw_plugin::(anonymous namespace)::FileHandleReader::(unnamed at /home/noel/libo-plugin/jvmfwk/plugins/sunmajor/pluginlib/util.cxx:203:5) BUFFER_SIZE
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:76
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:69:1) PROP_LAST
libreofficekit/source/gtk/lokdocview.cxx:285
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) LOAD_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:286
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) EDIT_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:287
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) COMMAND_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:288
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) SEARCH_NOT_FOUND
libreofficekit/source/gtk/lokdocview.cxx:289
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) PART_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:290
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) SIZE_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:291
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) HYPERLINK_CLICKED
libreofficekit/source/gtk/lokdocview.cxx:292
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) CURSOR_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:293
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) SEARCH_RESULT_COUNT
libreofficekit/source/gtk/lokdocview.cxx:294
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) COMMAND_RESULT
libreofficekit/source/gtk/lokdocview.cxx:295
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) ADDRESS_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:296
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) FORMULA_CHANGED
libreofficekit/source/gtk/lokdocview.cxx:297
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) TEXT_SELECTION
libreofficekit/source/gtk/lokdocview.cxx:298
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) CONTENT_CONTROL
libreofficekit/source/gtk/lokdocview.cxx:299
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) PASSWORD_REQUIRED
libreofficekit/source/gtk/lokdocview.cxx:300
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) COMMENT
libreofficekit/source/gtk/lokdocview.cxx:301
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) RULER
libreofficekit/source/gtk/lokdocview.cxx:302
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) WINDOW
libreofficekit/source/gtk/lokdocview.cxx:303
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) INVALIDATE_HEADER
libreofficekit/source/gtk/lokdocview.cxx:305
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:283:1) LAST_SIGNAL
libreofficekit/source/gtk/lokdocview.cxx:331
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/lokdocview.cxx:308:1) PROP_LAST
libreofficekit/source/gtk/tilebuffer.hxx:172
    enum (unnamed at /home/noel/libo-plugin/libreofficekit/source/gtk/tilebuffer.hxx:169:1) LOK_TILEBUFFER_MEMORY
oox/inc/drawingml/chart/objectformatter.hxx:39
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_CHARTTITLE
oox/inc/drawingml/chart/objectformatter.hxx:40
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_LEGEND
oox/inc/drawingml/chart/objectformatter.hxx:41
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_PLOTAREA2D
oox/inc/drawingml/chart/objectformatter.hxx:42
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_PLOTAREA3D
oox/inc/drawingml/chart/objectformatter.hxx:45
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_AXIS
oox/inc/drawingml/chart/objectformatter.hxx:46
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_AXISTITLE
oox/inc/drawingml/chart/objectformatter.hxx:47
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_AXISUNIT
oox/inc/drawingml/chart/objectformatter.hxx:48
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_MAJORGRIDLINE
oox/inc/drawingml/chart/objectformatter.hxx:49
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_MINORGRIDLINE
oox/inc/drawingml/chart/objectformatter.hxx:50
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_LINEARSERIES2D
oox/inc/drawingml/chart/objectformatter.hxx:51
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_FILLEDSERIES2D
oox/inc/drawingml/chart/objectformatter.hxx:52
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_FILLEDSERIES3D
oox/inc/drawingml/chart/objectformatter.hxx:53
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_DATALABEL
oox/inc/drawingml/chart/objectformatter.hxx:54
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_TRENDLINE
oox/inc/drawingml/chart/objectformatter.hxx:55
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_TRENDLINELABEL
oox/inc/drawingml/chart/objectformatter.hxx:56
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_ERRORBAR
oox/inc/drawingml/chart/objectformatter.hxx:57
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_SERLINE
oox/inc/drawingml/chart/objectformatter.hxx:58
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_LEADERLINE
oox/inc/drawingml/chart/objectformatter.hxx:59
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_DROPLINE
oox/inc/drawingml/chart/objectformatter.hxx:60
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_HILOLINE
oox/inc/drawingml/chart/objectformatter.hxx:61
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_UPBAR
oox/inc/drawingml/chart/objectformatter.hxx:62
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_DOWNBAR
oox/inc/drawingml/chart/objectformatter.hxx:63
    enum oox::drawingml::chart::ObjectType OBJECTTYPE_DATATABLE
oox/inc/drawingml/chart/seriesmodel.hxx:181
    enum oox::drawingml::chart::SeriesModel::SourceType CATEGORIES
oox/inc/drawingml/chart/seriesmodel.hxx:182
    enum oox::drawingml::chart::SeriesModel::SourceType VALUES
oox/inc/drawingml/chart/seriesmodel.hxx:183
    enum oox::drawingml::chart::SeriesModel::SourceType POINTS
oox/inc/drawingml/chart/seriesmodel.hxx:184
    enum oox::drawingml::chart::SeriesModel::SourceType DATALABELS
oox/inc/drawingml/chart/typegroupconverter.hxx:59
    enum oox::drawingml::chart::TypeCategory TYPECATEGORY_LINE
oox/inc/drawingml/chart/typegroupconverter.hxx:62
    enum oox::drawingml::chart::TypeCategory TYPECATEGORY_SCATTER
oox/inc/drawingml/chart/typegroupconverter.hxx:63
    enum oox::drawingml::chart::TypeCategory TYPECATEGORY_SURFACE
oox/inc/drawingml/textspacing.hxx:35
    enum oox::drawingml::TextSpacing::Unit Points
oox/source/export/shapes.cxx:2625
    enum (unnamed at /home/noel/libo-plugin/oox/source/export/shapes.cxx:2625:5) OTHER
pyuno/inc/pyuno.hxx:65
    enum pyuno::NotNull NOT_NULL
pyuno/inc/pyuno.hxx:153
    enum pyuno::ConversionMode REJECT_UNO_ANY
reportdesign/inc/RptObject.hxx:40
    enum rptui::DlgEdHintKind RPTUI_HINT_WINDOWSCROLLED
reportdesign/source/filter/xml/xmlEnums.hxx:28
    enum rptxml::XMLReportToken XML_TOK_REPORT_HEADER
reportdesign/source/filter/xml/xmlEnums.hxx:29
    enum rptxml::XMLReportToken XML_TOK_PAGE_HEADER
reportdesign/source/filter/xml/xmlEnums.hxx:30
    enum rptxml::XMLReportToken XML_TOK_GROUP
reportdesign/source/filter/xml/xmlEnums.hxx:31
    enum rptxml::XMLReportToken XML_TOK_DETAIL
reportdesign/source/filter/xml/xmlEnums.hxx:32
    enum rptxml::XMLReportToken XML_TOK_PAGE_FOOTER
reportdesign/source/filter/xml/xmlEnums.hxx:33
    enum rptxml::XMLReportToken XML_TOK_REPORT_FOOTER
reportdesign/source/filter/xml/xmlEnums.hxx:34
    enum rptxml::XMLReportToken XML_TOK_HEADER_ON_NEW_PAGE
reportdesign/source/filter/xml/xmlEnums.hxx:35
    enum rptxml::XMLReportToken XML_TOK_FOOTER_ON_NEW_PAGE
reportdesign/source/filter/xml/xmlEnums.hxx:39
    enum rptxml::XMLReportToken XML_TOK_CAPTION
reportdesign/source/filter/xml/xmlEnums.hxx:41
    enum rptxml::XMLReportToken XML_TOK_REPORT_FUNCTION
reportdesign/source/filter/xml/xmlEnums.hxx:43
    enum rptxml::XMLReportToken XML_TOK_REPORT_MIMETYPE
reportdesign/source/filter/xml/xmlEnums.hxx:44
    enum rptxml::XMLReportToken XML_TOK_REPORT_NAME
reportdesign/source/filter/xml/xmlEnums.hxx:45
    enum rptxml::XMLReportToken XML_TOK_MASTER_DETAIL_FIELDS
reportdesign/source/filter/xml/xmlEnums.hxx:46
    enum rptxml::XMLReportToken XML_TOK_SUB_FRAME
reportdesign/source/filter/xml/xmlEnums.hxx:47
    enum rptxml::XMLReportToken XML_TOK_SUB_BODY
reportdesign/source/filter/xml/xmlEnums.hxx:52
    enum rptxml::XMLSubDocument XML_TOK_MASTER_DETAIL_FIELD
sal/osl/all/log.cxx:434
    enum Sense NEGATIVE
sal/rtl/bootstrap.cxx:89
    enum (anonymous namespace)::LookupMode URE_BOOTSTRAP_EXPANSION
sal/rtl/rtl_process.cxx:43
    enum (anonymous namespace)::Id::(unnamed at /home/noel/libo-plugin/sal/rtl/rtl_process.cxx:43:5) UUID_SIZE
sal/rtl/ustring.cxx:561
    enum (anonymous namespace)::StrLifecycle CANNOT_RETURN
sal/rtl/ustring.cxx:562
    enum (anonymous namespace)::StrLifecycle CAN_RETURN
sc/inc/address.hxx:172
    enum ScRefFlags BITS
sc/inc/address.hxx:182
    enum ScRefFlags TAB_ABS_3D
sc/inc/address.hxx:184
    enum ScRefFlags ADDR_ABS
sc/inc/address.hxx:186
    enum ScRefFlags RANGE_ABS
sc/inc/address.hxx:188
    enum ScRefFlags ADDR_ABS_3D
sc/inc/address.hxx:189
    enum ScRefFlags RANGE_ABS_3D
sc/inc/address.hxx:220
    enum ScAddress::Uninitialized UNINITIALIZED
sc/inc/address.hxx:221
    enum ScAddress::InitializeInvalid INITIALIZE_INVALID
sc/inc/attrib.hxx:43
    enum ScMF DpTable
sc/inc/chartpos.hxx:94
    enum ScChartGlue Cols
sc/inc/chartpos.hxx:96
    enum ScChartGlue Both
sc/inc/chgtrack.hxx:589
    enum ScChangeActionContentCellType SC_CACCT_NORMAL
sc/inc/colorscale.hxx:190
    enum ScIconSetType IconSet_3Arrows
sc/inc/colorscale.hxx:191
    enum ScIconSetType IconSet_3ArrowsGray
sc/inc/colorscale.hxx:192
    enum ScIconSetType IconSet_3Flags
sc/inc/colorscale.hxx:193
    enum ScIconSetType IconSet_3TrafficLights1
sc/inc/colorscale.hxx:194
    enum ScIconSetType IconSet_3TrafficLights2
sc/inc/colorscale.hxx:195
    enum ScIconSetType IconSet_3Signs
sc/inc/colorscale.hxx:196
    enum ScIconSetType IconSet_3Symbols
sc/inc/colorscale.hxx:197
    enum ScIconSetType IconSet_3Symbols2
sc/inc/colorscale.hxx:202
    enum ScIconSetType IconSet_4Arrows
sc/inc/colorscale.hxx:203
    enum ScIconSetType IconSet_4ArrowsGray
sc/inc/colorscale.hxx:204
    enum ScIconSetType IconSet_4RedToBlack
sc/inc/colorscale.hxx:205
    enum ScIconSetType IconSet_4Rating
sc/inc/colorscale.hxx:206
    enum ScIconSetType IconSet_4TrafficLights
sc/inc/colorscale.hxx:207
    enum ScIconSetType IconSet_5Arrows
sc/inc/colorscale.hxx:208
    enum ScIconSetType IconSet_5ArrowsGray
sc/inc/colorscale.hxx:209
    enum ScIconSetType IconSet_5Ratings
sc/inc/colorscale.hxx:210
    enum ScIconSetType IconSet_5Quarters
sc/inc/compiler.hxx:52
    enum ScCharFlags Illegal
sc/inc/compiler.hxx:55
    enum ScCharFlags CharWord
sc/inc/compiler.hxx:68
    enum ScCharFlags NameSep
sc/inc/compiler.hxx:75
    enum ScCharFlags CharName
sc/inc/compiler.hxx:76
    enum ScCharFlags Name
sc/inc/datastreamgettime.hxx:30
    enum sc::DebugTime Render
sc/inc/detfunc.hxx:45
    enum ScDetectiveObjType SC_DETOBJ_RECTANGLE
sc/inc/document.hxx:265
    enum CommentCaptionState ALLSHOWN
sc/inc/document.hxx:273
    enum RangeNameScope SHEET
sc/inc/document.hxx:318
    enum ScMutationGuardFlags CORE
sc/inc/document.hxx:354
    enum ScDocument::HardRecalcState TEMPORARY
sc/inc/dpglobal.hxx:46
    enum ScDPValue::Type Value
sc/inc/formulacell.hxx:188
    enum ScFormulaCell::CompareState EqualRelativeRef
sc/inc/formulacell.hxx:286
    enum ScFormulaCell::RelNameRef SINGLE
sc/inc/importfilterdata.hxx:33
    enum sc::ImportPostProcessData::DataStream::InsertPos InsertBottom
sc/inc/lookupcache.hxx:55
    enum ScLookupCache::QueryOp LESS_EQUAL
sc/inc/lookupcache.hxx:56
    enum ScLookupCache::QueryOp GREATER_EQUAL
sc/inc/patattr.hxx:50
    enum ScAutoFontColorMode Display
sc/inc/PivotTableDataSequence.hxx:36
    enum sc::ValueType Empty
sc/inc/queryiter.hxx:158
    enum ScQueryCellIteratorBase::StopOnMismatchBits nStopOnMismatchEnabled
sc/inc/queryiter.hxx:158
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::CountIf>::StopOnMismatchBits nStopOnMismatchEnabled
sc/inc/queryiter.hxx:158
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::Generic>::StopOnMismatchBits nStopOnMismatchEnabled
sc/inc/queryiter.hxx:158
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::CountIf>::StopOnMismatchBits nStopOnMismatchEnabled
sc/inc/queryiter.hxx:158
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::Generic>::StopOnMismatchBits nStopOnMismatchEnabled
sc/inc/queryiter.hxx:159
    enum ScQueryCellIteratorBase::StopOnMismatchBits nStopOnMismatchOccurred
sc/inc/queryiter.hxx:159
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::CountIf>::StopOnMismatchBits nStopOnMismatchOccurred
sc/inc/queryiter.hxx:159
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::Generic>::StopOnMismatchBits nStopOnMismatchOccurred
sc/inc/queryiter.hxx:159
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::CountIf>::StopOnMismatchBits nStopOnMismatchOccurred
sc/inc/queryiter.hxx:159
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::Generic>::StopOnMismatchBits nStopOnMismatchOccurred
sc/inc/queryiter.hxx:166
    enum ScQueryCellIteratorBase::TestEqualConditionBits nTestEqualConditionEnabled
sc/inc/queryiter.hxx:166
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::CountIf>::TestEqualConditionBits nTestEqualConditionEnabled
sc/inc/queryiter.hxx:166
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::Generic>::TestEqualConditionBits nTestEqualConditionEnabled
sc/inc/queryiter.hxx:166
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::CountIf>::TestEqualConditionBits nTestEqualConditionEnabled
sc/inc/queryiter.hxx:166
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::Generic>::TestEqualConditionBits nTestEqualConditionEnabled
sc/inc/queryiter.hxx:167
    enum ScQueryCellIteratorBase::TestEqualConditionBits nTestEqualConditionMatched
sc/inc/queryiter.hxx:167
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::CountIf>::TestEqualConditionBits nTestEqualConditionMatched
sc/inc/queryiter.hxx:167
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::Generic>::TestEqualConditionBits nTestEqualConditionMatched
sc/inc/queryiter.hxx:167
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::CountIf>::TestEqualConditionBits nTestEqualConditionMatched
sc/inc/queryiter.hxx:167
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::Generic>::TestEqualConditionBits nTestEqualConditionMatched
sc/inc/queryiter.hxx:173
    enum ScQueryCellIteratorBase::SortedBinarySearchBits nBinarySearchDisabled
sc/inc/queryiter.hxx:173
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::CountIf>::SortedBinarySearchBits nBinarySearchDisabled
sc/inc/queryiter.hxx:173
    enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::CountIf>::SortedBinarySearchBits nBinarySearchDisabled
sc/inc/rangecache.hxx:63
    enum ScSortedRangeCache::ValueType StringsCaseInsensitive
sc/inc/rangenam.hxx:50
    enum ScRangeData::Type Name
sc/inc/rangenam.hxx:51
    enum ScRangeData::Type Database
sc/inc/rangenam.hxx:52
    enum ScRangeData::Type Criteria
sc/inc/rangenam.hxx:53
    enum ScRangeData::Type PrintArea
sc/inc/rangenam.hxx:54
    enum ScRangeData::Type ColHeader
sc/inc/rangenam.hxx:55
    enum ScRangeData::Type RowHeader
sc/inc/rangenam.hxx:59
    enum ScRangeData::Type Hidden
sc/inc/sheetevents.hxx:28
    enum ScSheetEventId CALCULATE
sc/inc/sheetevents.hxx:28
    enum ScSheetEventId CHANGE
sc/inc/sheetevents.hxx:28
    enum ScSheetEventId DOUBLECLICK
sc/inc/sheetevents.hxx:28
    enum ScSheetEventId FOCUS
sc/inc/sheetevents.hxx:28
    enum ScSheetEventId RIGHTCLICK
sc/inc/sheetevents.hxx:28
    enum ScSheetEventId SELECT
sc/inc/sheetevents.hxx:28
    enum ScSheetEventId UNFOCUS
sc/inc/SolverSettings.hxx:75
    enum sc::ConstraintOperator CO_EQUAL
sc/inc/SolverSettings.hxx:76
    enum sc::ConstraintOperator CO_GREATER_EQUAL
sc/inc/SolverSettings.hxx:77
    enum sc::ConstraintOperator CO_INTEGER
sc/inc/SolverSettings.hxx:78
    enum sc::ConstraintOperator CO_BINARY
sc/inc/SolverSettings.hxx:84
    enum sc::ConstraintPart CP_LEFT_HAND_SIDE
sc/inc/SolverSettings.hxx:85
    enum sc::ConstraintPart CP_OPERATOR
sc/inc/SolverSettings.hxx:86
    enum sc::ConstraintPart CP_RIGHT_HAND_SIDE
sc/inc/SparklineData.hxx:35
    enum sc::RangeOrientation Col
sc/inc/stlsheet.hxx:38
    enum ScStyleSheet::Usage NOTUSED
sc/inc/stringutil.hxx:57
    enum ScSetStringParam::TextFormatPolicy Keep
sc/inc/tabprotection.hxx:100
    enum ScDocProtection::Option STRUCTURE
sc/inc/tabprotection.hxx:101
    enum ScDocProtection::Option WINDOWS
sc/inc/tabprotection.hxx:171
    enum ScTableProtection::Option AUTOFILTER
sc/inc/tabprotection.hxx:172
    enum ScTableProtection::Option DELETE_COLUMNS
sc/inc/tabprotection.hxx:173
    enum ScTableProtection::Option DELETE_ROWS
sc/inc/tabprotection.hxx:174
    enum ScTableProtection::Option FORMAT_CELLS
sc/inc/tabprotection.hxx:175
    enum ScTableProtection::Option FORMAT_COLUMNS
sc/inc/tabprotection.hxx:176
    enum ScTableProtection::Option FORMAT_ROWS
sc/inc/tabprotection.hxx:177
    enum ScTableProtection::Option INSERT_COLUMNS
sc/inc/tabprotection.hxx:178
    enum ScTableProtection::Option INSERT_HYPERLINKS
sc/inc/tabprotection.hxx:179
    enum ScTableProtection::Option INSERT_ROWS
sc/inc/tabprotection.hxx:180
    enum ScTableProtection::Option OBJECTS
sc/inc/tabprotection.hxx:181
    enum ScTableProtection::Option PIVOT_TABLES
sc/inc/tabprotection.hxx:182
    enum ScTableProtection::Option SCENARIOS
sc/inc/tabprotection.hxx:183
    enum ScTableProtection::Option SELECT_LOCKED_CELLS
sc/inc/tabprotection.hxx:184
    enum ScTableProtection::Option SELECT_UNLOCKED_CELLS
sc/inc/tabprotection.hxx:185
    enum ScTableProtection::Option SORT
sc/inc/typedstrdata.hxx:21
    enum ScTypedStrData::StringType MRU
sc/inc/typedstrdata.hxx:22
    enum ScTypedStrData::StringType Standard
sc/inc/typedstrdata.hxx:23
    enum ScTypedStrData::StringType Name
sc/inc/typedstrdata.hxx:24
    enum ScTypedStrData::StringType DbName
sc/inc/typedstrdata.hxx:25
    enum ScTypedStrData::StringType Header
sc/inc/types.hxx:78
    enum sc::GroupCalcState GroupCalcEnabled
sc/inc/types.hxx:99
    enum sc::MultiDataCellState::StateType Invalid
sc/inc/types.hxx:139
    enum ScQueryCellIteratorType Generic
sc/inc/types.hxx:146
    enum ScQueryCellIteratorAccess Direct
sc/inc/viewopti.hxx:32
    enum ScViewOption VOPT_FORMULAS
sc/inc/viewopti.hxx:33
    enum ScViewOption VOPT_NULLVALS
sc/inc/viewopti.hxx:34
    enum ScViewOption VOPT_SYNTAX
sc/inc/viewopti.hxx:35
    enum ScViewOption VOPT_NOTES
sc/inc/viewopti.hxx:36
    enum ScViewOption VOPT_FORMULAS_MARKS
sc/inc/viewopti.hxx:37
    enum ScViewOption VOPT_VSCROLL
sc/inc/viewopti.hxx:38
    enum ScViewOption VOPT_HSCROLL
sc/inc/viewopti.hxx:39
    enum ScViewOption VOPT_TABCONTROLS
sc/inc/viewopti.hxx:40
    enum ScViewOption VOPT_OUTLINER
sc/inc/viewopti.hxx:41
    enum ScViewOption VOPT_HEADER
sc/inc/viewopti.hxx:42
    enum ScViewOption VOPT_GRID
sc/inc/viewopti.hxx:43
    enum ScViewOption VOPT_GRID_ONTOP
sc/inc/viewopti.hxx:44
    enum ScViewOption VOPT_HELPLINES
sc/inc/viewopti.hxx:45
    enum ScViewOption VOPT_ANCHOR
sc/inc/viewopti.hxx:46
    enum ScViewOption VOPT_PAGEBREAKS
sc/inc/viewopti.hxx:47
    enum ScViewOption VOPT_SUMMARY
sc/inc/viewopti.hxx:49
    enum ScViewOption VOPT_COPY_SHEET
sc/inc/viewopti.hxx:55
    enum ScVObjType VOBJ_TYPE_OLE
sc/inc/viewopti.hxx:56
    enum ScVObjType VOBJ_TYPE_CHART
sc/inc/xmlwrap.hxx:49
    enum ImportFlags All
sc/qa/extras/scpdfexport.cxx:645
    enum (unnamed at /home/noel/libo-plugin/sc/qa/extras/scpdfexport.cxx:642:5) Artifact
sc/qa/extras/scpdfexport.cxx:646
    enum (unnamed at /home/noel/libo-plugin/sc/qa/extras/scpdfexport.cxx:642:5) Tagged
sc/source/core/data/document10.cxx:661
    enum (anonymous namespace)::MightReferenceSheet CODE
sc/source/core/inc/refupdat.hxx:32
    enum ScRefUpdateRes UR_UPDATED
sc/source/core/inc/refupdat.hxx:34
    enum ScRefUpdateRes UR_STICKY
sc/source/core/opencl/opbase.hxx:362
    enum sc::opencl::SlidingFunctionBase::GenerateArgTypeType DoNotGenerateArgType
sc/source/core/tool/cellkeytranslator.cxx:39
    enum (anonymous namespace)::LocaleMatch LOCALE_MATCH_LANG
sc/source/core/tool/cellkeytranslator.cxx:40
    enum (anonymous namespace)::LocaleMatch LOCALE_MATCH_LANG_SCRIPT
sc/source/core/tool/cellkeytranslator.cxx:41
    enum (anonymous namespace)::LocaleMatch LOCALE_MATCH_LANG_SCRIPT_COUNTRY
sc/source/core/tool/token.cxx:2846
    enum (anonymous namespace)::ShrinkResult UNMODIFIED
sc/source/filter/excel/xeformula.cxx:227
    enum (anonymous namespace)::XclExpFmlaClassType EXC_CLASSTYPE_ARRAY
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_DashDot
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_DashDotDot
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_Dashed
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_Dotted
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_DoubleThin
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_FineDashed
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_Last
sc/source/filter/excel/xestyle.cxx:1620
    enum CalcLineIndex Idx_Solid
sc/source/filter/excel/xestyle.cxx:1621
    enum ExcelWidthIndex Width_Hair
sc/source/filter/excel/xestyle.cxx:1621
    enum ExcelWidthIndex Width_Last
sc/source/filter/excel/xestyle.cxx:1621
    enum ExcelWidthIndex Width_Medium
sc/source/filter/excel/xestyle.cxx:1621
    enum ExcelWidthIndex Width_Thick
sc/source/filter/excel/xestyle.cxx:1621
    enum ExcelWidthIndex Width_Thin
sc/source/filter/excel/xiescher.cxx:481
    enum (unnamed at /home/noel/libo-plugin/sc/source/filter/excel/xiescher.cxx:481:17) eCreateFromMSOCXControl
sc/source/filter/excel/xiescher.cxx:481
    enum (unnamed at /home/noel/libo-plugin/sc/source/filter/excel/xiescher.cxx:481:17) eCreateFromMSTBXControl
sc/source/filter/inc/colrowst.hxx:30
    enum ExcColRowFlags Hidden
sc/source/filter/inc/decl.h:23
    enum WKTYP eWK_UNKNOWN
sc/source/filter/inc/externallinkbuffer.hxx:148
    enum oox::xls::LinkSheetRange::LinkSheetRangeType LINKSHEETRANGE_INTERNAL
sc/source/filter/inc/formel.hxx:49
    enum FORMULA_TYPE FT_CellFormula
sc/source/filter/inc/formulabase.hxx:370
    enum oox::xls::FuncParamValidity Regular
sc/source/filter/inc/formulabase.hxx:467
    enum oox::xls::FunctionLibraryType FUNCLIB_EUROTOOL
sc/source/filter/inc/htmlpars.hxx:230
    enum ScHTMLOrient tdRow
sc/source/filter/inc/orcusinterface.hxx:245
    enum ScOrcusFormula::ResultType Empty
sc/source/filter/inc/orcusinterface.hxx:245
    enum ScOrcusFormula::ResultType NotSet
sc/source/filter/inc/xeextlst.hxx:21
    enum XclExpExtType XclExpExtDataBarType
sc/source/filter/inc/xeextlst.hxx:22
    enum XclExpExtType XclExpExtDataFooType
sc/source/filter/inc/xeextlst.hxx:23
    enum XclExpExtType XclExpExtSparklineType
sc/source/filter/inc/xelink.hxx:47
    enum ExcTabBufFlags Ignore
sc/source/filter/inc/xelink.hxx:48
    enum ExcTabBufFlags Extern
sc/source/filter/inc/xelink.hxx:49
    enum ExcTabBufFlags SkipMask
sc/source/filter/inc/xelink.hxx:50
    enum ExcTabBufFlags Visible
sc/source/filter/inc/xelink.hxx:51
    enum ExcTabBufFlags Selected
sc/source/filter/inc/xelink.hxx:52
    enum ExcTabBufFlags Mirrored
sc/source/filter/inc/xicontent.hxx:216
    enum XclImpWebQuery::XclImpWebQueryMode xlWQDocument
sc/source/filter/inc/xihelper.hxx:191
    enum XclImpHFConverter::XclImpHFPortion EXC_HF_PORTION_COUNT
sc/source/filter/inc/xistyle.hxx:644
    enum XclImpXFRangeBuffer::XclImpXFInsertMode xlXFModeCell
sc/source/filter/inc/xlchart.hxx:1114
    enum XclChObjectType EXC_CHOBJTYPE_BACKGROUND
sc/source/filter/inc/xlchart.hxx:1115
    enum XclChObjectType EXC_CHOBJTYPE_PLOTFRAME
sc/source/filter/inc/xlchart.hxx:1118
    enum XclChObjectType EXC_CHOBJTYPE_TEXT
sc/source/filter/inc/xlchart.hxx:1119
    enum XclChObjectType EXC_CHOBJTYPE_LEGEND
sc/source/filter/inc/xlchart.hxx:1122
    enum XclChObjectType EXC_CHOBJTYPE_AXISLINE
sc/source/filter/inc/xlchart.hxx:1123
    enum XclChObjectType EXC_CHOBJTYPE_GRIDLINE
sc/source/filter/inc/xlchart.hxx:1124
    enum XclChObjectType EXC_CHOBJTYPE_TRENDLINE
sc/source/filter/inc/xlchart.hxx:1125
    enum XclChObjectType EXC_CHOBJTYPE_ERRORBAR
sc/source/filter/inc/xlchart.hxx:1126
    enum XclChObjectType EXC_CHOBJTYPE_CONNECTLINE
sc/source/filter/inc/xlchart.hxx:1127
    enum XclChObjectType EXC_CHOBJTYPE_HILOLINE
sc/source/filter/inc/xlchart.hxx:1128
    enum XclChObjectType EXC_CHOBJTYPE_WHITEDROPBAR
sc/source/filter/inc/xlchart.hxx:1129
    enum XclChObjectType EXC_CHOBJTYPE_BLACKDROPBAR
sc/source/filter/inc/xlchart.hxx:1172
    enum XclChTypeId EXC_CHTYPEID_BAR
sc/source/filter/inc/xlchart.hxx:1173
    enum XclChTypeId EXC_CHTYPEID_HORBAR
sc/source/filter/inc/xlchart.hxx:1174
    enum XclChTypeId EXC_CHTYPEID_LINE
sc/source/filter/inc/xlchart.hxx:1175
    enum XclChTypeId EXC_CHTYPEID_AREA
sc/source/filter/inc/xlchart.hxx:1177
    enum XclChTypeId EXC_CHTYPEID_RADARLINE
sc/source/filter/inc/xlchart.hxx:1178
    enum XclChTypeId EXC_CHTYPEID_RADARAREA
sc/source/filter/inc/xlchart.hxx:1179
    enum XclChTypeId EXC_CHTYPEID_PIE
sc/source/filter/inc/xlchart.hxx:1182
    enum XclChTypeId EXC_CHTYPEID_SCATTER
sc/source/filter/inc/xlchart.hxx:1196
    enum XclChTypeCateg EXC_CHTYPECATEG_SURFACE
sc/source/filter/inc/xlescher.hxx:407
    enum XclTbxEventType EXC_TBX_EVENT_ACTION
sc/source/filter/inc/xlescher.hxx:408
    enum XclTbxEventType EXC_TBX_EVENT_MOUSE
sc/source/filter/inc/xlescher.hxx:409
    enum XclTbxEventType EXC_TBX_EVENT_TEXT
sc/source/filter/inc/xlescher.hxx:410
    enum XclTbxEventType EXC_TBX_EVENT_VALUE
sc/source/filter/inc/xlescher.hxx:411
    enum XclTbxEventType EXC_TBX_EVENT_CHANGE
sc/source/filter/inc/xlformula.hxx:165
    enum XclFormulaType EXC_FMLATYPE_DATAVAL
sc/source/filter/inc/xlformula.hxx:166
    enum XclFormulaType EXC_FMLATYPE_NAME
sc/source/filter/inc/xlformula.hxx:168
    enum XclFormulaType EXC_FMLATYPE_CONTROL
sc/source/filter/inc/xlformula.hxx:169
    enum XclFormulaType EXC_FMLATYPE_WQUERY
sc/source/filter/inc/xlformula.hxx:170
    enum XclFormulaType EXC_FMLATYPE_LISTVAL
sc/source/filter/inc/xlformula.hxx:179
    enum XclFuncParamValidity EXC_PARAM_REGULAR
sc/source/filter/inc/xlstyle.hxx:390
    enum XclFontItemType Editeng
sc/source/filter/oox/formulabase.cxx:65
    enum (anonymous namespace)::FuncFlags MACROCALL_NEW
sc/source/filter/oox/pagesettings.cxx:354
    enum oox::xls::(anonymous namespace)::HFPortionId HF_COUNT
sc/source/filter/oox/revisionfragment.cxx:44
    enum oox::xls::(anonymous namespace)::RevisionType REV_UNKNOWN
sc/source/filter/xml/XMLConverter.hxx:96
    enum ScXMLConditionToken XML_COND_INVALID
sc/source/ui/dbgui/scuiasciiopt.cxx:73
    enum (anonymous namespace)::CSVImportOptionsIndex CSVIO_Text2ColSkipEmptyCells
sc/source/ui/inc/AccessibleEditObject.hxx:51
    enum ScAccessibleEditObject::EditObjectType EditLine
sc/source/ui/inc/anyrefdg.hxx:142
    enum ScRefHdlrControllerImpl::(unnamed at /home/noel/libo-plugin/sc/source/ui/inc/anyrefdg.hxx:142:5) UNKNOWN_SLOTID
sc/source/ui/inc/anyrefdg.hxx:142
    enum ScRefHdlrControllerImpl<class SfxModelessDialogController>::(unnamed at /home/noel/libo-plugin/sc/source/ui/inc/anyrefdg.hxx:142:5) UNKNOWN_SLOTID
sc/source/ui/inc/anyrefdg.hxx:142
    enum ScRefHdlrControllerImpl<class SfxTabDialogController, false>::(unnamed at /home/noel/libo-plugin/sc/source/ui/inc/anyrefdg.hxx:142:5) UNKNOWN_SLOTID
sc/source/ui/inc/checklistmenu.hxx:30
    enum ScCheckListMember::DatePartType YEAR
sc/source/ui/inc/checklistmenu.hxx:31
    enum ScCheckListMember::DatePartType MONTH
sc/source/ui/inc/csvcontrol.hxx:92
    enum ScCsvDiff HeaderWidth
sc/source/ui/inc/csvcontrol.hxx:93
    enum ScCsvDiff CharWidth
sc/source/ui/inc/csvcontrol.hxx:94
    enum ScCsvDiff LineCount
sc/source/ui/inc/csvcontrol.hxx:96
    enum ScCsvDiff HeaderHeight
sc/source/ui/inc/csvcontrol.hxx:97
    enum ScCsvDiff LineHeight
sc/source/ui/inc/csvcontrol.hxx:99
    enum ScCsvDiff GridCursor
sc/source/ui/inc/csvcontrol.hxx:102
    enum ScCsvDiff VerticalMask
sc/source/ui/inc/datatransformation.hxx:34
    enum sc::TransformationType FINDREPLACE_TRANSFORMATION
sc/source/ui/inc/datatransformation.hxx:35
    enum sc::TransformationType DELETEROW_TRANSFORMATION
sc/source/ui/inc/datatransformation.hxx:36
    enum sc::TransformationType SWAPROWS_TRANSFORMATION
sc/source/ui/inc/olinewin.hxx:28
    enum ScOutlineMode SC_OUTLINE_VER
sc/source/ui/inc/pfuncache.hxx:35
    enum ScPrintSelectionMode Invalid
sc/source/ui/inc/pfuncache.hxx:36
    enum ScPrintSelectionMode Document
sc/source/ui/inc/pfuncache.hxx:37
    enum ScPrintSelectionMode Cursor
sc/source/ui/inc/PivotLayoutTreeListBase.hxx:38
    enum ScPivotLayoutTreeListBase::SvPivotTreeListType UNDEFINED
sc/source/ui/inc/selectionstate.hxx:30
    enum ScSelectionType SC_SELECTTYPE_EDITCELL
sc/source/ui/inc/StatisticsInputOutputDialog.hxx:22
    enum ScStatisticsInputOutputDialog::GroupedBy BY_ROW
sc/source/ui/inc/StatisticsTwoVariableDialog.hxx:22
    enum ScStatisticsTwoVariableDialog::GroupedBy BY_ROW
sc/source/ui/inc/tabview.hxx:119
    enum ScTabView::BlockMode Normal
sc/source/ui/inc/undobase.hxx:78
    enum ScBlockUndoMode SC_UNDO_MANUALHEIGHT
sc/source/ui/inc/undobase.hxx:78
    enum ScBlockUndoMode SC_UNDO_SIMPLE
sc/source/ui/inc/validate.hxx:223
    enum ScValidationDlg::(unnamed at /home/noel/libo-plugin/sc/source/ui/inc/validate.hxx:223:5) SLOTID
sc/source/ui/inc/viewdata.hxx:66
    enum ScMarkType SC_MARK_FILTERED
sc/source/ui/inc/viewdata.hxx:92
    enum ScDragSrc Undefined
sc/source/ui/pagedlg/areasdlg.cxx:42
    enum (unnamed at /home/noel/libo-plugin/sc/source/ui/pagedlg/areasdlg.cxx:40:1) SC_AREASDLG_PR_USER
sc/source/ui/pagedlg/areasdlg.cxx:43
    enum (unnamed at /home/noel/libo-plugin/sc/source/ui/pagedlg/areasdlg.cxx:40:1) SC_AREASDLG_PR_SELECT
sc/source/ui/pagedlg/areasdlg.cxx:49
    enum (unnamed at /home/noel/libo-plugin/sc/source/ui/pagedlg/areasdlg.cxx:47:1) SC_AREASDLG_RR_USER
sc/source/ui/pagedlg/areasdlg.cxx:50
    enum (unnamed at /home/noel/libo-plugin/sc/source/ui/pagedlg/areasdlg.cxx:47:1) SC_AREASDLG_RR_OFFSET
sc/source/ui/unoobj/cellsuno.cxx:9018
    enum (anonymous namespace)::ScUniqueFormatsEntry::EntryState STATE_COMPLEX
sc/source/ui/unoobj/chart2uno.cxx:448
    enum (anonymous namespace)::Chart2Positioner::GlueType GLUETYPE_COLS
sc/source/ui/unoobj/chart2uno.cxx:449
    enum (anonymous namespace)::Chart2Positioner::GlueType GLUETYPE_ROWS
sc/source/ui/unoobj/chart2uno.cxx:450
    enum (anonymous namespace)::Chart2Positioner::GlueType GLUETYPE_BOTH
sc/source/ui/unoobj/chart2uno.cxx:607
    enum (anonymous namespace)::State Glue
sc/source/ui/unoobj/fielduno.cxx:148
    enum (anonymous namespace)::ScUnoCollectMode SC_UNO_COLLECT_COUNT
sc/source/ui/vba/vbarange.hxx:72
    enum RangeValueType value2
sc/source/ui/view/prevloc.cxx:38
    enum (anonymous namespace)::ScPreviewLocationType SC_PLOC_NOTEMARK
sc/source/ui/view/prevloc.cxx:39
    enum (anonymous namespace)::ScPreviewLocationType SC_PLOC_NOTETEXT
sc/source/ui/view/tabview3.cxx:1502
    enum (unnamed at /home/noel/libo-plugin/sc/source/ui/view/tabview3.cxx:1502:5) MOD_BOTH
sc/source/ui/view/viewfun2.cxx:257
    enum (anonymous namespace)::ScAutoSum ScAutoSumAverage
sc/source/ui/view/viewfun2.cxx:258
    enum (anonymous namespace)::ScAutoSum ScAutoSumMax
sc/source/ui/view/viewfun2.cxx:259
    enum (anonymous namespace)::ScAutoSum ScAutoSumMin
sc/source/ui/view/viewfun2.cxx:260
    enum (anonymous namespace)::ScAutoSum ScAutoSumCount
sc/source/ui/view/viewfun2.cxx:261
    enum (anonymous namespace)::ScAutoSum ScAutoSumCountA
sc/source/ui/view/viewfun2.cxx:262
    enum (anonymous namespace)::ScAutoSum ScAutoSumProduct
sc/source/ui/view/viewfun2.cxx:263
    enum (anonymous namespace)::ScAutoSum ScAutoSumStDev
sc/source/ui/view/viewfun2.cxx:264
    enum (anonymous namespace)::ScAutoSum ScAutoSumStDevP
sc/source/ui/view/viewfun2.cxx:265
    enum (anonymous namespace)::ScAutoSum ScAutoSumVar
sc/source/ui/view/viewfun2.cxx:266
    enum (anonymous namespace)::ScAutoSum ScAutoSumVarP
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Energy
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Force
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Length
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Magnetism
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Mass
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Power
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Pressure
scaddins/source/analysis/analysishelper.hxx:490
    enum sca::analysis::ConvertDataClass CDC_Time
scaddins/source/analysis/analysishelper.hxx:491
    enum sca::analysis::ConvertDataClass CDC_Area
scaddins/source/analysis/analysishelper.hxx:491
    enum sca::analysis::ConvertDataClass CDC_Speed
scaddins/source/analysis/analysishelper.hxx:491
    enum sca::analysis::ConvertDataClass CDC_Temperature
scaddins/source/analysis/analysishelper.hxx:491
    enum sca::analysis::ConvertDataClass CDC_Volume
sd/inc/diadef.h:26
    enum PresChange SemiAuto
sd/inc/sdenumdef.hxx:28
    enum SnapKind Point
sd/inc/sdmod.hxx:56
    enum SdOptionStreamMode Load
sd/inc/sdxmlwrp.hxx:30
    enum SdXMLFilterMode Normal
sd/source/console/PresenterBitmapContainer.hxx:66
    enum sdext::presenter::PresenterBitmapContainer::BitmapDescriptor::TexturingMode Once
sd/source/console/PresenterConfigurationAccess.hxx:51
    enum sdext::presenter::PresenterConfigurationAccess::WriteMode READ_WRITE
sd/source/console/PresenterPaneBorderPainter.cxx:81
    enum sdext::presenter::(anonymous namespace)::RendererPaneStyle::Anchor Center
sd/source/console/PresenterScrollBar.hxx:145
    enum sdext::presenter::PresenterScrollBar::Area Pager
sd/source/console/PresenterScrollBar.hxx:145
    enum sdext::presenter::PresenterScrollBar::Area Total
sd/source/console/PresenterWindowManager.hxx:88
    enum sdext::presenter::PresenterWindowManager::LayoutMode LM_Generic
sd/source/ui/dlg/present.cxx:43
    enum (anonymous namespace)::PresenterConsoleMode Windowed
sd/source/ui/inc/DrawController.hxx:94
    enum sd::DrawController::PropertyHandle PROPERTY_UPDATEACC
sd/source/ui/inc/DrawController.hxx:95
    enum sd::DrawController::PropertyHandle PROPERTY_PAGE_CHANGE
sd/source/ui/inc/TableDesignPane.hxx:42
    enum sd::TableCheckBox CB_HEADER_ROW
sd/source/ui/inc/TableDesignPane.hxx:43
    enum sd::TableCheckBox CB_TOTAL_ROW
sd/source/ui/inc/TableDesignPane.hxx:44
    enum sd::TableCheckBox CB_BANDED_ROWS
sd/source/ui/inc/TableDesignPane.hxx:45
    enum sd::TableCheckBox CB_FIRST_COLUMN
sd/source/ui/inc/TableDesignPane.hxx:46
    enum sd::TableCheckBox CB_LAST_COLUMN
sd/source/ui/inc/TableDesignPane.hxx:48
    enum sd::TableCheckBox CB_COUNT
sd/source/ui/inc/ToolBarManager.hxx:131
    enum sd::ToolBarManager::ToolBarGroup Permanent
sd/source/ui/inc/ToolBarManager.hxx:132
    enum sd::ToolBarManager::ToolBarGroup Function
sd/source/ui/inc/ToolBarManager.hxx:133
    enum sd::ToolBarManager::ToolBarGroup CommonTask
sd/source/ui/inc/ToolBarManager.hxx:134
    enum sd::ToolBarManager::ToolBarGroup MasterMode
sd/source/ui/inc/tools/ConfigurationAccess.hxx:43
    enum sd::tools::ConfigurationAccess::WriteMode READ_WRITE
sd/source/ui/inc/tools/IdleDetection.hxx:34
    enum sd::tools::IdleState SystemEventPending
sd/source/ui/inc/tools/IdleDetection.hxx:44
    enum sd::tools::IdleState WindowShowActive
sd/source/ui/inc/tools/IdleDetection.hxx:48
    enum sd::tools::IdleState WindowPainting
sd/source/ui/remotecontrol/BluetoothServer.cxx:100
    enum sd::BluetoothServer::Impl::BluezVersion BLUEZ4
sd/source/ui/remotecontrol/BluetoothServer.hxx:47
    enum sd::BluetoothServer::(unnamed at /home/noel/libo-plugin/sd/source/ui/remotecontrol/BluetoothServer.hxx:47:9) DISCOVERABLE
sd/source/ui/sidebar/MasterPageContainer.cxx:121
    enum sd::sidebar::MasterPageContainer::Implementation::InitializationState Initialized
sd/source/ui/sidebar/MasterPageContainer.cxx:121
    enum sd::sidebar::MasterPageContainer::Implementation::InitializationState Initializing
sd/source/ui/sidebar/MasterPageContainer.hxx:63
    enum sd::sidebar::MasterPageContainer::PreviewSize LARGE
sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:33
    enum sd::slidesorter::cache::RequestPriorityClass VISIBLE_NO_PREVIEW
sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:35
    enum sd::slidesorter::cache::RequestPriorityClass VISIBLE_OUTDATED_PREVIEW
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:45
    enum sd::slidesorter::controller::Animator::AnimationMode AM_Immediate
sd/source/ui/slidesorter/inc/controller/SlsInsertionIndicatorHandler.hxx:45
    enum sd::slidesorter::controller::InsertionIndicatorHandler::Mode MoveMode
sd/source/ui/slidesorter/inc/view/SlsPageObjectLayouter.hxx:79
    enum sd::slidesorter::view::PageObjectLayouter::CoordinateSystem ModelCoordinateSystem
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:69
    enum sd::slidesorter::view::Theme::ColorType ColorType_Size_
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:74
    enum sd::slidesorter::view::Theme::GradientColorType Gradient_NormalPage
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:75
    enum sd::slidesorter::view::Theme::GradientColorType Gradient_SelectedPage
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:76
    enum sd::slidesorter::view::Theme::GradientColorType Gradient_SelectedAndFocusedPage
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:77
    enum sd::slidesorter::view::Theme::GradientColorType Gradient_MouseOverPage
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:78
    enum sd::slidesorter::view::Theme::GradientColorType Gradient_MouseOverSelected
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:79
    enum sd::slidesorter::view::Theme::GradientColorType Gradient_MouseOverSelectedAndFocusedPage
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:80
    enum sd::slidesorter::view::Theme::GradientColorType Gradient_FocusedPage
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:81
    enum sd::slidesorter::view::Theme::GradientColorType GradientColorType_Size_
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:104
    enum sd::slidesorter::view::Theme::IconType Icon_RawShadow
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:105
    enum sd::slidesorter::view::Theme::IconType Icon_RawInsertShadow
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:106
    enum sd::slidesorter::view::Theme::IconType Icon_HideSlideOverlay
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:107
    enum sd::slidesorter::view::Theme::IconType Icon_FocusBorder
sd/source/ui/slidesorter/inc/view/SlsTheme.hxx:108
    enum sd::slidesorter::view::Theme::IconType IconType_Size_
sdext/source/minimizer/pppoptimizertoken.hxx:27
    enum PPPOptimizerTokenEnum TK_btnNavFinish
sdext/source/minimizer/pppoptimizertoken.hxx:30
    enum PPPOptimizerTokenEnum TK_FileSizeDestination
sdext/source/minimizer/pppoptimizertoken.hxx:31
    enum PPPOptimizerTokenEnum TK_FileSizeSource
sdext/source/minimizer/pppoptimizertoken.hxx:37
    enum PPPOptimizerTokenEnum TK_Progress
sdext/source/minimizer/pppoptimizertoken.hxx:59
    enum PPPOptimizerTokenEnum TK_Status
sdext/source/minimizer/pppoptimizertoken.hxx:60
    enum PPPOptimizerTokenEnum TK_Pages
sdext/source/minimizer/pppoptimizertoken.hxx:62
    enum PPPOptimizerTokenEnum STR_SUN_OPTIMIZATION_WIZARD2
sdext/source/minimizer/pppoptimizertoken.hxx:63
    enum PPPOptimizerTokenEnum STR_INTRODUCTION
sdext/source/minimizer/pppoptimizertoken.hxx:64
    enum PPPOptimizerTokenEnum STR_IMAGE_OPTIMIZATION
sdext/source/minimizer/pppoptimizertoken.hxx:65
    enum PPPOptimizerTokenEnum STR_OLE_OBJECTS
sdext/source/minimizer/pppoptimizertoken.hxx:66
    enum PPPOptimizerTokenEnum STR_OLE_OBJECTS_DESC
sdext/source/minimizer/pppoptimizertoken.hxx:67
    enum PPPOptimizerTokenEnum STR_NO_OLE_OBJECTS_DESC
sdext/source/minimizer/pppoptimizertoken.hxx:68
    enum PPPOptimizerTokenEnum STR_SLIDES
sdext/source/minimizer/pppoptimizertoken.hxx:69
    enum PPPOptimizerTokenEnum STR_SUMMARY
sdext/source/minimizer/pppoptimizertoken.hxx:70
    enum PPPOptimizerTokenEnum STR_DELETE_SLIDES
sdext/source/minimizer/pppoptimizertoken.hxx:71
    enum PPPOptimizerTokenEnum STR_OPTIMIZE_IMAGES
sdext/source/minimizer/pppoptimizertoken.hxx:72
    enum PPPOptimizerTokenEnum STR_CREATE_REPLACEMENT
sdext/source/minimizer/pppoptimizertoken.hxx:73
    enum PPPOptimizerTokenEnum STR_MY_SETTINGS
sdext/source/minimizer/pppoptimizertoken.hxx:74
    enum PPPOptimizerTokenEnum STR_OK
sdext/source/minimizer/pppoptimizertoken.hxx:75
    enum PPPOptimizerTokenEnum STR_INFO_PRIMARY
sdext/source/minimizer/pppoptimizertoken.hxx:76
    enum PPPOptimizerTokenEnum STR_INFO_SECONDARY_1
sdext/source/minimizer/pppoptimizertoken.hxx:77
    enum PPPOptimizerTokenEnum STR_INFO_SECONDARY_2
sdext/source/minimizer/pppoptimizertoken.hxx:78
    enum PPPOptimizerTokenEnum STR_INFO_SECONDARY_3
sdext/source/minimizer/pppoptimizertoken.hxx:79
    enum PPPOptimizerTokenEnum STR_INFO_SECONDARY_4
sdext/source/minimizer/pppoptimizertoken.hxx:80
    enum PPPOptimizerTokenEnum STR_DUPLICATING_PRESENTATION
sdext/source/minimizer/pppoptimizertoken.hxx:81
    enum PPPOptimizerTokenEnum STR_DELETING_SLIDES
sdext/source/minimizer/pppoptimizertoken.hxx:82
    enum PPPOptimizerTokenEnum STR_OPTIMIZING_GRAPHICS
sdext/source/minimizer/pppoptimizertoken.hxx:83
    enum PPPOptimizerTokenEnum STR_CREATING_OLE_REPLACEMENTS
sdext/source/minimizer/pppoptimizertoken.hxx:84
    enum PPPOptimizerTokenEnum STR_FILESIZESEPARATOR
sdext/source/minimizer/pppoptimizertoken.hxx:85
    enum PPPOptimizerTokenEnum STR_FILENAME_SUFFIX
sdext/source/minimizer/pppoptimizertoken.hxx:86
    enum PPPOptimizerTokenEnum STR_WARN_UNSAVED_PRESENTATION
sdext/source/minimizer/pppoptimizertoken.hxx:87
    enum PPPOptimizerTokenEnum TK_NotFound
sdext/source/pdfimport/inc/genericelements.hxx:206
    enum pdfi::ParagraphElement::ParagraphType Normal
sdext/source/pdfimport/tree/drawtreevisiting.hxx:96
    enum pdfi::DrawXmlEmitter::DocType IMPRESS_DOC
sdext/source/pdfimport/wrapper/wrapper.cxx:89
    enum pdfi::(anonymous namespace)::parseKey HYPERLINK
sdext/source/pdfimport/wrapper/wrapper.cxx:90
    enum pdfi::(anonymous namespace)::parseKey INTERSECTCLIP
sdext/source/pdfimport/wrapper/wrapper.cxx:91
    enum pdfi::(anonymous namespace)::parseKey INTERSECTEOCLIP
sdext/source/pdfimport/wrapper/wrapper.cxx:92
    enum pdfi::(anonymous namespace)::parseKey POPSTATE
sdext/source/pdfimport/wrapper/wrapper.cxx:93
    enum pdfi::(anonymous namespace)::parseKey PUSHSTATE
sdext/source/pdfimport/wrapper/wrapper.cxx:96
    enum pdfi::(anonymous namespace)::parseKey SETBLENDMODE
sdext/source/pdfimport/wrapper/wrapper.cxx:97
    enum pdfi::(anonymous namespace)::parseKey SETFILLCOLOR
sdext/source/pdfimport/wrapper/wrapper.cxx:98
    enum pdfi::(anonymous namespace)::parseKey SETFONT
sdext/source/pdfimport/wrapper/wrapper.cxx:99
    enum pdfi::(anonymous namespace)::parseKey SETLINECAP
sdext/source/pdfimport/wrapper/wrapper.cxx:100
    enum pdfi::(anonymous namespace)::parseKey SETLINEDASH
sdext/source/pdfimport/wrapper/wrapper.cxx:101
    enum pdfi::(anonymous namespace)::parseKey SETLINEJOIN
sdext/source/pdfimport/wrapper/wrapper.cxx:102
    enum pdfi::(anonymous namespace)::parseKey SETLINEWIDTH
sdext/source/pdfimport/wrapper/wrapper.cxx:103
    enum pdfi::(anonymous namespace)::parseKey SETMITERLIMIT
sdext/source/pdfimport/wrapper/wrapper.cxx:105
    enum pdfi::(anonymous namespace)::parseKey SETSTROKECOLOR
sdext/source/pdfimport/wrapper/wrapper.cxx:107
    enum pdfi::(anonymous namespace)::parseKey SETTRANSFORMATION
sdext/source/pdfimport/wrapper/wrapper.cxx:111
    enum pdfi::(anonymous namespace)::parseKey UPDATEBLENDMODE
sdext/source/pdfimport/wrapper/wrapper.cxx:114
    enum pdfi::(anonymous namespace)::parseKey UPDATEFILLOPACITY
sfx2/inc/dinfdlg.hrc:62
    enum CustomProperties Custom_Type_Unknown
sfx2/source/control/unoctitm.cxx:88
    enum (anonymous namespace)::URLTypeId URLType_BOOL
sfx2/source/control/unoctitm.cxx:89
    enum (anonymous namespace)::URLTypeId URLType_BYTE
sfx2/source/control/unoctitm.cxx:90
    enum (anonymous namespace)::URLTypeId URLType_SHORT
sfx2/source/control/unoctitm.cxx:91
    enum (anonymous namespace)::URLTypeId URLType_LONG
sfx2/source/control/unoctitm.cxx:92
    enum (anonymous namespace)::URLTypeId URLType_HYPER
sfx2/source/control/unoctitm.cxx:93
    enum (anonymous namespace)::URLTypeId URLType_STRING
sfx2/source/control/unoctitm.cxx:94
    enum (anonymous namespace)::URLTypeId URLType_FLOAT
sfx2/source/control/unoctitm.cxx:95
    enum (anonymous namespace)::URLTypeId URLType_DOUBLE
sfx2/source/control/unoctitm.cxx:96
    enum (anonymous namespace)::URLTypeId URLType_COUNT
sfx2/source/dialog/filedlghelper.cxx:823
    enum sfx2::(anonymous namespace)::open_or_save_t SAVE
sfx2/source/dialog/filedlghelper.cxx:823
    enum sfx2::(anonymous namespace)::open_or_save_t UNDEFINED
sfx2/source/dialog/securitypage.cxx:46
    enum (anonymous namespace)::RedliningMode RL_CALC
sfx2/source/doc/docmacromode.cxx:125
    enum AutoConfirmation eAutoConfirmReject
sfx2/source/inc/docundomanager.hxx:70
    enum SfxModelGuard::AllowedModelState E_FULLY_ALIVE
sfx2/source/inc/workwin.hxx:70
    enum SfxChildVisibility NOT_VISIBLE
sfx2/source/inc/workwin.hxx:73
    enum SfxChildVisibility FITS_IN
shell/source/backends/kf5be/kf5access.cxx:67
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:67:30) Size
shell/source/backends/kf5be/kf5access.cxx:112
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:112:57) Size
shell/source/backends/kf5be/kf5access.cxx:121
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:121:26) Size
shell/source/backends/kf5be/kf5access.cxx:139
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:139:57) Size
shell/source/backends/kf5be/kf5access.cxx:148
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:148:26) Size
shell/source/backends/kf5be/kf5access.cxx:166
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:166:58) Size
shell/source/backends/kf5be/kf5access.cxx:175
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:175:26) Size
shell/source/backends/kf5be/kf5access.cxx:193
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:193:58) Size
shell/source/backends/kf5be/kf5access.cxx:202
    enum (unnamed at /home/noel/libo-plugin/shell/source/backends/kf5be/kf5access.cxx:202:26) Size
slideshow/source/engine/shapes/viewshape.hxx:41
    enum UpdateFlags Transformation
slideshow/source/engine/shapes/viewshape.hxx:44
    enum UpdateFlags Position
slideshow/source/engine/slide/layer.hxx:208
    enum slideshow::internal::Layer::Dummy BackgroundLayer
slideshow/source/engine/slide/slideimpl.cxx:171
    enum slideshow::internal::(anonymous namespace)::SlideImpl::SlideAnimationState CONSTRUCTING_STATE
slideshow/source/engine/slide/slideimpl.cxx:172
    enum slideshow::internal::(anonymous namespace)::SlideImpl::SlideAnimationState INITIAL_STATE
slideshow/source/engine/slide/slideimpl.cxx:173
    enum slideshow::internal::(anonymous namespace)::SlideImpl::SlideAnimationState SHOWING_STATE
slideshow/source/engine/slide/slideimpl.cxx:175
    enum slideshow::internal::(anonymous namespace)::SlideImpl::SlideAnimationState SlideAnimationState_NUM_ENTRIES
soltools/cpp/_lex.c:60
    int COM1
soltools/cpp/_lex.c:60
    int COM2
soltools/cpp/_lex.c:60
    int COM3
soltools/cpp/_lex.c:60
    int COM4
soltools/cpp/_lex.c:60
    int ID1
soltools/cpp/_lex.c:60
    int NUM1
soltools/cpp/_lex.c:60
    int NUM2
soltools/cpp/_lex.c:60
    int NUM3
soltools/cpp/_lex.c:60
    int ST1
soltools/cpp/_lex.c:60
    int ST2
soltools/cpp/_lex.c:60
    int ST3
soltools/cpp/_lex.c:61
    int CC1
soltools/cpp/_lex.c:61
    int CC2
soltools/cpp/_lex.c:61
    int MINUS1
soltools/cpp/_lex.c:61
    int PCT1
soltools/cpp/_lex.c:61
    int PLUS1
soltools/cpp/_lex.c:61
    int SHARP1
soltools/cpp/_lex.c:61
    int STAR1
soltools/cpp/_lex.c:61
    int WS1
soltools/cpp/_lex.c:62
    int AND1
soltools/cpp/_lex.c:62
    int ASG1
soltools/cpp/_lex.c:62
    int CIRC1
soltools/cpp/_lex.c:62
    int DOTS1
soltools/cpp/_lex.c:62
    int GT1
soltools/cpp/_lex.c:62
    int GT2
soltools/cpp/_lex.c:62
    int LT1
soltools/cpp/_lex.c:62
    int LT2
soltools/cpp/_lex.c:62
    int NOT1
soltools/cpp/_lex.c:62
    int OR1
soltools/cpp/cpp.h:43
    int MMINUS
soltools/cpp/cpp.h:43
    int PPLUS
soltools/cpp/cpp.h:44
    int ARROW
soltools/cpp/cpp.h:44
    int DOT
soltools/cpp/cpp.h:44
    int SBRA
soltools/cpp/cpp.h:44
    int SKET
soltools/cpp/cpp.h:46
    int CBRA
soltools/cpp/cpp.h:46
    int CKET
soltools/cpp/cpp.h:46
    int SEMIC
soltools/cpp/cpp.h:47
    int ASCIRC
soltools/cpp/cpp.h:47
    int ASLSH
soltools/cpp/cpp.h:47
    int ASMINUS
soltools/cpp/cpp.h:47
    int ASPCT
soltools/cpp/cpp.h:47
    int ASPLUS
soltools/cpp/cpp.h:47
    int ASSLASH
soltools/cpp/cpp.h:47
    int ASSTAR
soltools/cpp/cpp.h:48
    int ASAND
soltools/cpp/cpp.h:48
    int ASOR
soltools/cpp/cpp.h:48
    int ASRSH
soltools/cpp/cpp.h:48
    int ELLIPS
soltools/cpp/cpp.h:50
    int COMMENT
soltools/cpp/cpp.h:57
    int KSTDC
soltools/cpp/cpp.h:137
    int ERROR
soltools/cpp/cpp.h:137
    int INFO
sot/source/sdstor/stgio.hxx:33
    enum FatError WrongLength
sot/source/sdstor/stgio.hxx:34
    enum FatError UnrefChain
sot/source/sdstor/stgio.hxx:35
    enum FatError OutOfBounds
sot/source/sdstor/stgio.hxx:37
    enum FatError InMemoryError
sot/source/sdstor/stgio.hxx:38
    enum FatError OnFileError
sot/source/sdstor/stgio.hxx:39
    enum FatError BothError
starmath/inc/mathml/def.hxx:129
    enum SmMlAttributeValueForm MlPrefix
starmath/inc/mathml/def.hxx:130
    enum SmMlAttributeValueForm MlInfix
starmath/inc/mathml/def.hxx:131
    enum SmMlAttributeValueForm MlPosfix
starmath/inc/mathml/mathmlattr.hxx:30
    enum MathMLLengthUnit Ex
starmath/inc/mathml/mathmlattr.hxx:31
    enum MathMLLengthUnit Px
starmath/inc/mathml/mathmlattr.hxx:32
    enum MathMLLengthUnit In
starmath/inc/mathml/mathmlattr.hxx:33
    enum MathMLLengthUnit Cm
starmath/inc/mathml/mathmlattr.hxx:34
    enum MathMLLengthUnit Mm
starmath/inc/mathml/mathmlattr.hxx:35
    enum MathMLLengthUnit Pt
starmath/inc/mathml/mathmlattr.hxx:36
    enum MathMLLengthUnit Pc
starmath/inc/mathml/mathmlattr.hxx:37
    enum MathMLLengthUnit Percent
starmath/inc/mathml/mathmlMo.hxx:38
    enum moOpDP nonedp
starmath/inc/mathml/mathmlMo.hxx:39
    enum moOpDP accent
starmath/inc/mathml/mathmlMo.hxx:40
    enum moOpDP fence
starmath/inc/mathml/mathmlMo.hxx:41
    enum moOpDP stretchy
starmath/inc/mathml/mathmlMo.hxx:42
    enum moOpDP symmetric
starmath/inc/mathml/mathmlMo.hxx:43
    enum moOpDP separator
starmath/inc/mathml/mathmlMo.hxx:44
    enum moOpDP linebreakstyleAfter
starmath/inc/mathml/mathmlMo.hxx:45
    enum moOpDP largeop
starmath/inc/mathml/mathmlMo.hxx:49
    enum moOpDP stretchyfence
starmath/inc/mathml/mathmlMo.hxx:50
    enum moOpDP movablelargeop
starmath/inc/mathml/mathmlMo.hxx:56
    enum moOpDF prefix
starmath/inc/mathml/mathmlMo.hxx:57
    enum moOpDF infix
starmath/inc/mathml/mathmlMo.hxx:58
    enum moOpDF postfix
starmath/inc/mathml/mathmlMo.hxx:59
    enum moOpDF prepostfix
starmath/inc/nodetype.hxx:52
    enum SmNodeType Rectangle
starmath/inc/parsebase.hxx:39
    enum SmParseError UnexpectedChar
starmath/inc/parsebase.hxx:40
    enum SmParseError UnexpectedToken
starmath/inc/parsebase.hxx:41
    enum SmParseError PoundExpected
starmath/inc/parsebase.hxx:42
    enum SmParseError ColorExpected
starmath/inc/parsebase.hxx:43
    enum SmParseError LgroupExpected
starmath/inc/parsebase.hxx:44
    enum SmParseError RgroupExpected
starmath/inc/parsebase.hxx:45
    enum SmParseError LbraceExpected
starmath/inc/parsebase.hxx:46
    enum SmParseError RbraceExpected
starmath/inc/parsebase.hxx:47
    enum SmParseError ParentMismatch
starmath/inc/parsebase.hxx:48
    enum SmParseError RightExpected
starmath/inc/parsebase.hxx:49
    enum SmParseError FontExpected
starmath/inc/parsebase.hxx:50
    enum SmParseError SizeExpected
starmath/inc/parsebase.hxx:51
    enum SmParseError DoubleAlign
starmath/inc/parsebase.hxx:52
    enum SmParseError DoubleSubsupscript
starmath/inc/parsebase.hxx:53
    enum SmParseError NumberExpected
starmath/inc/token.hxx:49
    enum TG Attribute
starmath/inc/token.hxx:50
    enum TG Align
starmath/inc/token.hxx:52
    enum TG Blank
starmath/inc/token.hxx:55
    enum TG Color
starmath/inc/token.hxx:56
    enum TG Font
starmath/inc/token.hxx:57
    enum TG Standalone
starmath/inc/token.hxx:59
    enum TG FontAttr
starmath/inc/token.hxx:80
    enum SmTokenType TGE
starmath/inc/token.hxx:80
    enum SmTokenType TGT
starmath/inc/token.hxx:80
    enum SmTokenType TLE
starmath/inc/token.hxx:80
    enum SmTokenType TLT
starmath/inc/token.hxx:81
    enum SmTokenType TASSIGN
starmath/inc/token.hxx:81
    enum SmTokenType TGG
starmath/inc/token.hxx:81
    enum SmTokenType TLL
starmath/inc/token.hxx:81
    enum SmTokenType TNEQ
starmath/inc/token.hxx:82
    enum SmTokenType TEQUIV
starmath/inc/token.hxx:82
    enum SmTokenType TORTHO
starmath/inc/token.hxx:82
    enum SmTokenType TPARALLEL
starmath/inc/token.hxx:85
    enum SmTokenType TSIM
starmath/inc/token.hxx:85
    enum SmTokenType TSIMEQ
starmath/inc/token.hxx:88
    enum SmTokenType TDIV
starmath/inc/token.hxx:88
    enum SmTokenType TTIMES
starmath/inc/token.hxx:89
    enum SmTokenType TBACKSLASH
starmath/inc/token.hxx:89
    enum SmTokenType TSLASH
starmath/inc/token.hxx:90
    enum SmTokenType TIT
starmath/inc/token.hxx:94
    enum SmTokenType TAND
starmath/inc/token.hxx:94
    enum SmTokenType TOR
starmath/inc/token.hxx:95
    enum SmTokenType TNOTPRECEDES
starmath/inc/token.hxx:95
    enum SmTokenType TNOTSUCCEEDS
starmath/inc/token.hxx:95
    enum SmTokenType TPRECEDES
starmath/inc/token.hxx:95
    enum SmTokenType TSUCCEEDS
starmath/inc/token.hxx:96
    enum SmTokenType TPRECEDESEQUAL
starmath/inc/token.hxx:96
    enum SmTokenType TPRECEDESEQUIV
starmath/inc/token.hxx:96
    enum SmTokenType TSUCCEEDSEQUAL
starmath/inc/token.hxx:96
    enum SmTokenType TSUCCEEDSEQUIV
starmath/inc/token.hxx:98
    enum SmTokenType TDEF
starmath/inc/token.hxx:99
    enum SmTokenType TAPPROX
starmath/inc/token.hxx:99
    enum SmTokenType TDIVIDES
starmath/inc/token.hxx:99
    enum SmTokenType TNDIVIDES
starmath/inc/token.hxx:99
    enum SmTokenType TPROP
starmath/inc/token.hxx:100
    enum SmTokenType TGESLANT
starmath/inc/token.hxx:100
    enum SmTokenType TLESLANT
starmath/inc/token.hxx:100
    enum SmTokenType TTRANSL
starmath/inc/token.hxx:100
    enum SmTokenType TTRANSR
starmath/inc/token.hxx:102
    enum SmTokenType TODIVIDE
starmath/inc/token.hxx:102
    enum SmTokenType TODOT
starmath/inc/token.hxx:102
    enum SmTokenType TOMINUS
starmath/inc/token.hxx:102
    enum SmTokenType TOPLUS
starmath/inc/token.hxx:102
    enum SmTokenType TOTIMES
starmath/inc/token.hxx:109
    enum SmTokenType TIN
starmath/inc/token.hxx:109
    enum SmTokenType TNI
starmath/inc/token.hxx:109
    enum SmTokenType TNOTIN
starmath/inc/token.hxx:110
    enum SmTokenType TSUBSET
starmath/inc/token.hxx:110
    enum SmTokenType TSUBSETEQ
starmath/inc/token.hxx:110
    enum SmTokenType TSUPSET
starmath/inc/token.hxx:110
    enum SmTokenType TSUPSETEQ
starmath/inc/token.hxx:111
    enum SmTokenType TNSUBSET
starmath/inc/token.hxx:111
    enum SmTokenType TNSUBSETEQ
starmath/inc/token.hxx:111
    enum SmTokenType TNSUPSET
starmath/inc/token.hxx:111
    enum SmTokenType TNSUPSETEQ
starmath/inc/token.hxx:112
    enum SmTokenType TINTERSECT
starmath/inc/token.hxx:112
    enum SmTokenType TSETMINUS
starmath/inc/token.hxx:112
    enum SmTokenType TSETQUOTIENT
starmath/inc/token.hxx:112
    enum SmTokenType TUNION
starmath/inc/token.hxx:123
    enum SmTokenType THARPOON
starmath/inc/token.hxx:140
    enum SmTokenType TEXP
starmath/inc/token.hxx:140
    enum SmTokenType TLN
starmath/inc/token.hxx:140
    enum SmTokenType TLOG
starmath/inc/token.hxx:141
    enum SmTokenType TCOS
starmath/inc/token.hxx:141
    enum SmTokenType TCOT
starmath/inc/token.hxx:141
    enum SmTokenType TSIN
starmath/inc/token.hxx:141
    enum SmTokenType TTAN
starmath/inc/token.hxx:142
    enum SmTokenType TCSC
starmath/inc/token.hxx:142
    enum SmTokenType TCSCH
starmath/inc/token.hxx:142
    enum SmTokenType TSEC
starmath/inc/token.hxx:142
    enum SmTokenType TSECH
starmath/inc/token.hxx:143
    enum SmTokenType TCOSH
starmath/inc/token.hxx:143
    enum SmTokenType TCOTH
starmath/inc/token.hxx:143
    enum SmTokenType TSINH
starmath/inc/token.hxx:143
    enum SmTokenType TTANH
starmath/inc/token.hxx:144
    enum SmTokenType TACOS
starmath/inc/token.hxx:144
    enum SmTokenType TACOT
starmath/inc/token.hxx:144
    enum SmTokenType TASIN
starmath/inc/token.hxx:144
    enum SmTokenType TATAN
starmath/inc/token.hxx:145
    enum SmTokenType TACOSH
starmath/inc/token.hxx:145
    enum SmTokenType TACOTH
starmath/inc/token.hxx:145
    enum SmTokenType TASINH
starmath/inc/token.hxx:145
    enum SmTokenType TATANH
starmath/source/ooxmlimport.cxx:391
    enum operation_t noBar
stoc/source/inspect/introspection.cxx:1829
    enum MethodType GETSET_METHOD
stoc/source/inspect/introspection.cxx:1831
    enum MethodType REMOVE_LISTENER_METHOD
stoc/source/security/permissions.h:38
    enum stoc_sec::Permission::t_type ALL
store/source/stordata.hxx:571
    enum store::OStoreDirectoryPageData::ChunkScope SCOPE_UNKNOWN
svgio/inc/svgmarkernode.hxx:34
    enum svgio::svgreader::SvgMarkerNode::MarkerUnits userSpaceOnUse
svgio/inc/svgmarkernode.hxx:39
    enum svgio::svgreader::SvgMarkerNode::MarkerOrient notset
svgio/inc/svgnode.hxx:48
    enum svgio::svgreader::XmlSpace Preserve
svgio/inc/svgnode.hxx:54
    enum svgio::svgreader::Display Inline
svgio/inc/svgnode.hxx:55
    enum svgio::svgreader::Display Block
svgio/inc/svgnode.hxx:56
    enum svgio::svgreader::Display ListItem
svgio/inc/svgnode.hxx:57
    enum svgio::svgreader::Display RunIn
svgio/inc/svgnode.hxx:58
    enum svgio::svgreader::Display Compact
svgio/inc/svgnode.hxx:59
    enum svgio::svgreader::Display Marker
svgio/inc/svgnode.hxx:60
    enum svgio::svgreader::Display Table
svgio/inc/svgnode.hxx:61
    enum svgio::svgreader::Display InlineTable
svgio/inc/svgnode.hxx:62
    enum svgio::svgreader::Display TableRowGroup
svgio/inc/svgnode.hxx:63
    enum svgio::svgreader::Display TableHeaderGroup
svgio/inc/svgnode.hxx:64
    enum svgio::svgreader::Display TableFooterGroup
svgio/inc/svgnode.hxx:65
    enum svgio::svgreader::Display TableRow
svgio/inc/svgnode.hxx:66
    enum svgio::svgreader::Display TableColumnGroup
svgio/inc/svgnode.hxx:67
    enum svgio::svgreader::Display TableColumn
svgio/inc/svgnode.hxx:68
    enum svgio::svgreader::Display TableCell
svgio/inc/svgnode.hxx:69
    enum svgio::svgreader::Display TableCaption
svgio/inc/svgnode.hxx:71
    enum svgio::svgreader::Display Inherit
svgio/inc/SvgNumber.hxx:32
    enum svgio::svgreader::NumberType length
svgio/inc/svgstyleattributes.hxx:47
    enum svgio::svgreader::StrokeLinecap butt
svgio/inc/svgstyleattributes.hxx:55
    enum svgio::svgreader::StrokeLinejoin miter
svgio/inc/svgstyleattributes.hxx:97
    enum svgio::svgreader::FontStyle normal
svgio/inc/svgstyleattributes.hxx:134
    enum svgio::svgreader::TextDecoration none
svgio/inc/svgstyleattributes.hxx:138
    enum svgio::svgreader::TextDecoration blink
svgio/inc/svgstyleattributes.hxx:152
    enum svgio::svgreader::FillRule nonzero
svgio/inc/svgstyleattributes.hxx:176
    enum svgio::svgreader::Overflow hidden
svgio/inc/svgstyleattributes.hxx:185
    enum svgio::svgreader::Visibility collapse
svgio/inc/svgtoken.hxx:41
    enum svgio::svgreader::SVGToken Xmlns
svgio/inc/svgtools.hxx:53
    enum svgio::svgreader::SvgAlign xMinYMin
svgio/source/svgreader/svgtools.cxx:566
    enum DegreeType rad
svl/source/misc/adrparse.cxx:26
    enum (anonymous namespace)::ElementType ELEMENT_START
svl/source/misc/strmadpt.cxx:41
    enum SvDataPipe_Impl::SeekResult SEEK_BEFORE_MARKED
svl/source/misc/strmadpt.cxx:41
    enum SvDataPipe_Impl::SeekResult SEEK_PAST_END
svl/source/numbers/zforscan.hxx:48
    enum ImpSvNumberformatScan::KeywordLocalization LocaleLegacy
svtools/source/config/colorcfg.cxx:388
    enum ColorType clLight
svtools/source/config/colorcfg.cxx:389
    enum ColorType clDark
svtools/source/config/colorcfg.cxx:390
    enum ColorType nColorTypes
svtools/source/config/miscopt.cxx:96
    enum SvtMiscOptions_Impl::SetModifiedFlag DONT_SET
svtools/source/control/ctrltool.cxx:100
    enum (anonymous namespace)::FontListFontNameType SCREEN
svtools/source/control/valueset.cxx:63
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/svtools/source/control/valueset.cxx:61:1) ITEM_OFFSET
svtools/source/control/valueset.cxx:64
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/svtools/source/control/valueset.cxx:61:1) ITEM_OFFSET_DOUBLE
svtools/source/control/valueset.cxx:65
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/svtools/source/control/valueset.cxx:61:1) NAME_LINE_OFF_X
svtools/source/control/valueset.cxx:66
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/svtools/source/control/valueset.cxx:61:1) NAME_LINE_OFF_Y
svtools/source/control/valueset.cxx:67
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/svtools/source/control/valueset.cxx:61:1) NAME_LINE_HEIGHT
svtools/source/control/valueset.cxx:68
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/svtools/source/control/valueset.cxx:61:1) NAME_OFFSET
svtools/source/svhtml/parhtml.cxx:1939
    enum (anonymous namespace)::HtmlMeta Generator
svtools/source/svhtml/parhtml.cxx:1940
    enum (anonymous namespace)::HtmlMeta SDFootnote
svtools/source/svhtml/parhtml.cxx:1941
    enum (anonymous namespace)::HtmlMeta SDEndnote
svx/inc/sdr/overlay/overlaytools.hxx:204
    enum drawinglayer::primitive2d::HelplineStyle HELPLINESTYLE_POINT
svx/inc/sxmkitm.hxx:25
    enum SdrMeasureKind SDRMEASURE_STD
svx/source/dialog/srchdlg.cxx:97
    enum ModifyFlags Formulas
svx/source/dialog/srchdlg.cxx:98
    enum ModifyFlags Values
svx/source/dialog/srchdlg.cxx:99
    enum ModifyFlags CalcNotes
svx/source/fmcomp/fmgridcl.cxx:813
    enum (anonymous namespace)::InspectorAction eOpenInspector
svx/source/inc/datanavi.hxx:72
    enum svxform::DataItemType DITElement
svx/source/inc/docrecovery.hxx:75
    enum EDocStates Unknown
svx/source/inc/fmdocumentclassification.hxx:31
    enum svxform::DocumentType eTextDocument
svx/source/inc/fmdocumentclassification.hxx:32
    enum svxform::DocumentType eWebDocument
svx/source/inc/fmdocumentclassification.hxx:33
    enum svxform::DocumentType eSpreadsheetDocument
svx/source/inc/fmdocumentclassification.hxx:34
    enum svxform::DocumentType eDrawingDocument
svx/source/inc/fmdocumentclassification.hxx:35
    enum svxform::DocumentType ePresentationDocument
svx/source/inc/fmdocumentclassification.hxx:37
    enum svxform::DocumentType eDatabaseForm
svx/source/inc/fmdocumentclassification.hxx:38
    enum svxform::DocumentType eDatabaseReport
svx/source/inc/fmexpl.hxx:380
    enum svxform::NavigatorTree::SELDATA_ITEMS SDI_ALL
svx/source/inc/fmshimp.hxx:83
    enum LoadFormsFlags Load
svx/source/inc/fmshimp.hxx:84
    enum LoadFormsFlags Sync
svx/source/inc/fmtextcontrolshell.hxx:146
    enum svx::FmTextControlShell::AttributeSet eParaAttribs
svx/source/sdr/contact/viewobjectcontactofunocontrol.cxx:535
    enum sdr::contact::ViewObjectContactOfUnoControl_Impl::ViewControlMode eAlive
svx/source/stbctrls/modctrl.cxx:45
    enum SvxModifyControl::ImplData::ModificationState MODIFICATION_STATE_NO
svx/source/stbctrls/modctrl.cxx:47
    enum SvxModifyControl::ImplData::ModificationState MODIFICATION_STATE_FEEDBACK
svx/source/stbctrls/modctrl.cxx:48
    enum SvxModifyControl::ImplData::ModificationState MODIFICATION_STATE_SIZE
svx/source/svdraw/svdocapt.cxx:57
    enum (anonymous namespace)::EscDir UNT
svx/source/table/tablehandles.hxx:28
    enum sdr::table::TableEdgeState Empty
svx/source/table/tablehandles.hxx:28
    enum sdr::table::TableEdgeState Invisible
svx/source/tbxctrls/tbcontrl.cxx:2520
    enum (anonymous namespace)::FrmValidFlags AllMask
svx/source/tbxctrls/tbunosearchcontrollers.cxx:710
    enum (anonymous namespace)::UpDownSearchToolboxController::Type DOWN
svx/source/unodraw/recoveryui.cxx:50
    enum (anonymous namespace)::RecoveryUI::EJob E_JOB_UNKNOWN
svx/source/xml/xmlxtimp.cxx:64
    enum (anonymous namespace)::SvxXMLTableImportContextEnum Gradient
sw/inc/calbck.hxx:128
    enum sw::IteratorMode Exact
sw/inc/chpfld.hxx:31
    enum SwChapterFormat CF_BEGIN
sw/inc/contentindex.hxx:125
    enum SwContentIndexReg::UpdateMode Default
sw/inc/crsrsh.hxx:337
    enum SwCursorShell::StartsWith HiddenPara
sw/inc/crsrsh.hxx:337
    enum SwCursorShell::StartsWith HiddenSection
sw/inc/crstate.hxx:57
    enum MultiPortionType TWOLINE
sw/inc/crstate.hxx:126
    enum CursorMoveState LeftMargin
sw/inc/dbmgr.hxx:99
    enum SwDBSelect QUERY
sw/inc/doc.hxx:334
    enum SwDoc::MissingDictionary False
sw/inc/doc.hxx:406
    enum SwDoc::DocumentType DOCTYPE_NATIVE
sw/inc/doc.hxx:1215
    enum SwDoc::RowColMode DeleteRow
sw/inc/docary.hxx:72
    enum SwVectorModifyBase<class SwFrameFormat *>::DestructorPolicy KeepElements
sw/inc/docary.hxx:72
    enum SwVectorModifyBase<class SwGrfFormatColl *>::DestructorPolicy KeepElements
sw/inc/docary.hxx:72
    enum SwVectorModifyBase<class SwTextFormatColl *>::DestructorPolicy KeepElements
sw/inc/docstyle.hxx:69
    enum SwDocStyleSheet::FillStyleType FillOnlyName
sw/inc/docufld.hxx:44
    enum SwAuthorFormat AF_BEGIN
sw/inc/docufld.hxx:53
    enum SwDocStatSubType DS_BEGIN
sw/inc/fesh.hxx:65
    enum FrameTypeFlags PAGE
sw/inc/fesh.hxx:97
    enum GotoObjFlags Any
sw/inc/fesh.hxx:112
    enum FlyProtectFlags Fixed
sw/inc/fesh.hxx:132
    enum ObjCntType OBJCNT_DONTCARE
sw/inc/fesh.hxx:141
    enum CurRectType Frame
sw/inc/flyenum.hxx:36
    enum SwChainRet NOT_EMPTY
sw/inc/flyenum.hxx:37
    enum SwChainRet IS_IN_CHAIN
sw/inc/flyenum.hxx:38
    enum SwChainRet WRONG_AREA
sw/inc/flyenum.hxx:40
    enum SwChainRet NOT_FOUND
sw/inc/flyenum.hxx:41
    enum SwChainRet SOURCE_CHAINED
sw/inc/flyenum.hxx:42
    enum SwChainRet SELF
sw/inc/fmtcol.hxx:198
    enum Master_CollCondition PARA_IN_LIST
sw/inc/fmtcol.hxx:199
    enum Master_CollCondition PARA_IN_OUTLINE
sw/inc/fmtcol.hxx:200
    enum Master_CollCondition PARA_IN_FRAME
sw/inc/fmtcol.hxx:203
    enum Master_CollCondition PARA_IN_SECTION
sw/inc/fmtcol.hxx:204
    enum Master_CollCondition PARA_IN_FOOTNOTE
sw/inc/fmtcol.hxx:207
    enum Master_CollCondition PARA_IN_ENDNOTE
sw/inc/fmtftntx.hxx:34
    enum SwFootnoteEndPosEnum FTNEND_ATTXTEND_END
sw/inc/hints.hxx:338
    enum TableFormulaUpdateFlags TBL_CALC
sw/inc/IDocumentContentOperations.hxx:47
    enum SwMoveFlags DEFAULT
sw/inc/IDocumentContentOperations.hxx:61
    enum SwInsertFlags DEFAULT
sw/inc/IDocumentContentOperations.hxx:73
    enum SwCopyFlags Default
sw/inc/IDocumentContentOperations.hxx:86
    enum SwDeleteFlags Default
sw/inc/IDocumentExternalData.hxx:27
    enum sw::tExternalDataType FIB
sw/inc/IDocumentExternalData.hxx:27
    enum sw::tExternalDataType STTBF_ASSOC
sw/inc/IDocumentRedlineAccess.hxx:134
    enum IDocumentRedlineAccess::AppendResult MERGED
sw/inc/IMark.hxx:34
    enum sw::mark::InsertMode CopyText
sw/inc/istyleaccess.hxx:37
    enum IStyleAccess::SwAutoStyleFamily AUTO_STYLE_NOTXT
sw/inc/itabenum.hxx:31
    enum SwInsertTableFlags HeadlineNoBorder
sw/inc/itabenum.hxx:32
    enum SwInsertTableFlags All
sw/inc/ndhints.hxx:33
    enum CopyOrNewType New
sw/inc/pagedesc.hxx:130
    enum UseOnPage NoHeaderShare
sw/inc/pagedesc.hxx:131
    enum UseOnPage NoFooterShare
sw/inc/pagedesc.hxx:132
    enum UseOnPage NoFirstShare
sw/inc/redline.hxx:255
    enum SwRangeRedline::Invalidation Remove
sw/inc/reffld.hxx:64
    enum REFERENCEMARK REF_BEGIN
sw/inc/sortopt.hxx:27
    enum SwSortOrder Descending
sw/inc/sortopt.hxx:28
    enum SwSortDirection Columns
sw/inc/SwAppletImpl.hxx:32
    enum SwHtmlOptType IGNORE
sw/inc/swcrsr.hxx:65
    enum SwCursorSkipMode Chars
sw/inc/swmodule.hxx:62
    enum SvViewOpt DestView
sw/inc/swregion.hxx:58
    enum SwRegionRects::CompressType CompressExact
sw/inc/swtypes.hxx:134
    enum SetAttrMode DEFAULT
sw/inc/swtypes.hxx:209
    enum PrepareHint FixSizeChanged
sw/inc/swtypes.hxx:210
    enum PrepareHint FollowFollows
sw/inc/swtypes.hxx:212
    enum PrepareHint FlyFrameSizeChanged
sw/inc/swtypes.hxx:221
    enum PrepareHint ULSpaceChanged
sw/inc/swundo.hxx:32
    enum SwUndoId STD_BEGIN
sw/inc/ToxTabStopTokenHandler.hxx:57
    enum sw::DefaultToxTabStopTokenHandler::TabStopReferencePolicy TABSTOPS_RELATIVE_TO_PAGE
sw/inc/undobj.hxx:139
    enum DelContentType AllMask
sw/inc/unobaseclass.hxx:51
    enum CursorType All
sw/inc/unobaseclass.hxx:63
    enum sw::DeleteAndInsertMode Default
sw/inc/unocoll.hxx:128
    enum SwServiceType FieldTypeDummy1
sw/inc/unocoll.hxx:129
    enum SwServiceType FieldTypeDummy2
sw/inc/unocoll.hxx:130
    enum SwServiceType FieldTypeDummy3
sw/inc/unocrsrhelper.hxx:57
    enum SwGetPropertyStatesCaller SW_PROPERTY_STATE_CALLER_DEFAULT
sw/inc/unostyle.hxx:248
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) FIRST_ROW_STYLE
sw/inc/unostyle.hxx:249
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) LAST_ROW_STYLE
sw/inc/unostyle.hxx:250
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) FIRST_COLUMN_STYLE
sw/inc/unostyle.hxx:251
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) LAST_COLUMN_STYLE
sw/inc/unostyle.hxx:252
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) EVEN_ROWS_STYLE
sw/inc/unostyle.hxx:253
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) ODD_ROWS_STYLE
sw/inc/unostyle.hxx:254
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) EVEN_COLUMNS_STYLE
sw/inc/unostyle.hxx:255
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) ODD_COLUMNS_STYLE
sw/inc/unostyle.hxx:256
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) BODY_STYLE
sw/inc/unostyle.hxx:257
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) BACKGROUND_STYLE
sw/inc/unostyle.hxx:259
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) FIRST_ROW_START_COLUMN_STYLE
sw/inc/unostyle.hxx:260
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) FIRST_ROW_END_COLUMN_STYLE
sw/inc/unostyle.hxx:261
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) LAST_ROW_START_COLUMN_STYLE
sw/inc/unostyle.hxx:262
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) LAST_ROW_END_COLUMN_STYLE
sw/inc/unostyle.hxx:263
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) FIRST_ROW_EVEN_COLUMN_STYLE
sw/inc/unostyle.hxx:264
    enum SwXTextTableStyle::(unnamed at /home/noel/libo-plugin/sw/inc/unostyle.hxx:247:5) LAST_ROW_EVEN_COLUMN_STYLE
sw/inc/unotextrange.hxx:59
    enum sw::TextRangeMode RequireTextNode
sw/inc/unotextrange.hxx:112
    enum SwXTextRange::RangePosition RANGE_IN_TEXT
sw/inc/view.hxx:101
    enum ShellMode Media
sw/inc/view.hxx:102
    enum ShellMode ExtrudedCustomShape
sw/inc/view.hxx:103
    enum ShellMode FontWork
sw/inc/view.hxx:104
    enum ShellMode PostIt
sw/inc/view.hxx:691
    enum SwView::CachedStringID OldGrfCat
sw/inc/view.hxx:692
    enum SwView::CachedStringID OldTabCat
sw/inc/view.hxx:693
    enum SwView::CachedStringID OldFrameCat
sw/inc/view.hxx:694
    enum SwView::CachedStringID OldDrwCat
sw/inc/view.hxx:695
    enum SwView::CachedStringID CachedStrings
sw/inc/viewopt.hxx:162
    enum ViewOptFlags2 Modified
sw/inc/viewopt.hxx:184
    enum ViewOptFlags DocBoundaries
sw/inc/viewopt.hxx:185
    enum ViewOptFlags ObjectBoundaries
sw/inc/viewopt.hxx:186
    enum ViewOptFlags TableBoundaries
sw/inc/viewopt.hxx:187
    enum ViewOptFlags IndexShadings
sw/inc/viewopt.hxx:188
    enum ViewOptFlags Links
sw/inc/viewopt.hxx:189
    enum ViewOptFlags VisitedLinks
sw/inc/viewopt.hxx:190
    enum ViewOptFlags FieldShadings
sw/inc/viewopt.hxx:191
    enum ViewOptFlags SectionBoundaries
sw/inc/viewopt.hxx:192
    enum ViewOptFlags Shadow
sw/qa/extras/globalfilter/globalfilter.cxx:1342
    enum (unnamed at /home/noel/libo-plugin/sw/qa/extras/globalfilter/globalfilter.cxx:1338:5) LblFoundText
sw/qa/extras/globalfilter/globalfilter.cxx:1736
    enum (unnamed at /home/noel/libo-plugin/sw/qa/extras/globalfilter/globalfilter.cxx:1733:5) Artifact
sw/qa/extras/globalfilter/globalfilter.cxx:1737
    enum (unnamed at /home/noel/libo-plugin/sw/qa/extras/globalfilter/globalfilter.cxx:1733:5) Tagged
sw/source/core/access/accfrmobjmap.hxx:36
    enum SwAccessibleChildMapKey::LayerId CONTROLS
sw/source/core/access/accfrmobjmap.hxx:36
    enum SwAccessibleChildMapKey::LayerId HEAVEN
sw/source/core/access/accfrmobjmap.hxx:36
    enum SwAccessibleChildMapKey::LayerId HELL
sw/source/core/access/accfrmobjmap.hxx:36
    enum SwAccessibleChildMapKey::LayerId INVALID
sw/source/core/access/accfrmobjmap.hxx:36
    enum SwAccessibleChildMapKey::LayerId TEXT
sw/source/core/access/accfrmobjmap.hxx:36
    enum SwAccessibleChildMapKey::LayerId XWINDOW
sw/source/core/fields/cellfml.cxx:61
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/sw/source/core/fields/cellfml.cxx:59:1) cMAXSTACKSIZE
sw/source/core/inc/ascharanchoredobjectposition.hxx:51
    enum sw::LineAlign TOP
sw/source/core/inc/dbg_lay.hxx:56
    enum DbgAction NextSect
sw/source/core/inc/dbg_lay.hxx:56
    enum DbgAction PrevSect
sw/source/core/inc/frame.hxx:492
    enum SwFrame::InvalidationType INVALID_LINENUM
sw/source/core/inc/frame.hxx:492
    enum SwFrame::InvalidationType INVALID_PRTAREA
sw/source/core/inc/frame.hxx:492
    enum SwFrame::InvalidationType INVALID_SIZE
sw/source/core/inc/layact.hxx:201
    enum IdleJobArea ALL
sw/source/core/inc/mvsave.hxx:73
    enum sw::mark::RestoreMode All
sw/source/core/inc/rolbck.hxx:62
    enum HISTORY_HINT HSTRY_SETFMTHNT
sw/source/core/inc/rolbck.hxx:63
    enum HISTORY_HINT HSTRY_RESETFMTHNT
sw/source/core/inc/rolbck.hxx:64
    enum HISTORY_HINT HSTRY_SETTXTHNT
sw/source/core/inc/rolbck.hxx:65
    enum HISTORY_HINT HSTRY_SETTXTFLDHNT
sw/source/core/inc/rolbck.hxx:69
    enum HISTORY_HINT HSTRY_SETFTNHNT
sw/source/core/inc/rolbck.hxx:70
    enum HISTORY_HINT HSTRY_CHGFMTCOLL
sw/source/core/inc/rolbck.hxx:73
    enum HISTORY_HINT HSTRY_SETATTRSET
sw/source/core/inc/rolbck.hxx:74
    enum HISTORY_HINT HSTRY_CHGFLYANCHOR
sw/source/core/inc/rolbck.hxx:75
    enum HISTORY_HINT HSTRY_CHGFLYCHAIN
sw/source/core/inc/rolbck.hxx:76
    enum HISTORY_HINT HSTRY_CHGCHARFMT
sw/source/core/inc/rolbck.hxx:77
    enum HISTORY_HINT HSTRY_NOTEXTFIELDMARK
sw/source/core/inc/rolbck.hxx:78
    enum HISTORY_HINT HSTRY_TEXTFIELDMARK
sw/source/core/inc/rootfrm.hxx:51
    enum sw::ParagraphBreakMode Shown
sw/source/core/inc/rootfrm.hxx:73
    enum SwRemoveResult Prev
sw/source/core/inc/rootfrm.hxx:346
    enum SwRootFrame::RectsMode Default
sw/source/core/inc/scriptinfo.hxx:47
    enum SwScriptInfo::CompType SPECIAL_RIGHT
sw/source/core/inc/sectfrm.hxx:35
    enum SwFindMode LastCnt
sw/source/core/inc/SwXMLBlockImport.hxx:102
    enum SwXMLBlockListToken ABBREVIATED_NAME
sw/source/core/inc/SwXMLBlockImport.hxx:105
    enum SwXMLBlockListToken LIST_NAME
sw/source/core/inc/SwXMLBlockImport.hxx:106
    enum SwXMLBlockListToken NAME
sw/source/core/inc/SwXMLBlockImport.hxx:107
    enum SwXMLBlockListToken PACKAGE_NAME
sw/source/core/inc/SwXMLBlockImport.hxx:108
    enum SwXMLBlockListToken UNFORMATTED_TEXT
sw/source/core/inc/txmsrt.hxx:46
    enum TOXSortType TOX_SORT_AUTHORITY
sw/source/core/inc/txtfrm.hxx:110
    enum sw::FrameMode New
sw/source/core/inc/UndoManager.hxx:132
    enum sw::UndoManager::UndoOrRedoType Redo
sw/source/core/inc/wrong.hxx:60
    enum WrongListType WRONGLIST_CHANGETRACKING
sw/source/core/layout/paintfrm.cxx:2258
    enum (anonymous namespace)::SwLineEntry::OverlapType NO_OVERLAP
sw/source/core/text/inftxt.hxx:524
    enum SwTextFormatInfo::TabSeen Left
sw/source/core/text/porlay.hxx:325
    enum SwParaPortion::FootnoteOrNot OnlyNumbering
sw/source/core/text/pormulti.hxx:40
    enum SwMultiCreatorId Double
sw/source/core/txtnode/justify.cxx:22
    enum (anonymous namespace)::IdeographicPunctuationClass CLOSE_BRACKET
sw/source/core/txtnode/justify.cxx:23
    enum (anonymous namespace)::IdeographicPunctuationClass COMMA_OR_FULLSTOP
sw/source/core/unocore/unoportenum.cxx:91
    enum (anonymous namespace)::BkmType Start
sw/source/filter/html/css1atr.cxx:110
    enum (anonymous namespace)::Css1FrameSize MinHeight
sw/source/filter/html/css1atr.cxx:111
    enum (anonymous namespace)::Css1FrameSize FixHeight
sw/source/filter/html/htmlatr.cxx:1082
    enum (anonymous namespace)::HTMLOnOffState HTML_NOT_SUPPORTED
sw/source/filter/html/htmlfly.hxx:35
    enum SwHTMLFrameType HTML_FRMTYPE_TABLE
sw/source/filter/html/htmlfly.hxx:36
    enum SwHTMLFrameType HTML_FRMTYPE_TABLE_CAP
sw/source/filter/html/htmlfly.hxx:37
    enum SwHTMLFrameType HTML_FRMTYPE_MULTICOL
sw/source/filter/html/htmlfly.hxx:38
    enum SwHTMLFrameType HTML_FRMTYPE_EMPTY
sw/source/filter/html/htmlfly.hxx:39
    enum SwHTMLFrameType HTML_FRMTYPE_TEXT
sw/source/filter/html/htmlfly.hxx:40
    enum SwHTMLFrameType HTML_FRMTYPE_GRF
sw/source/filter/html/htmlfly.hxx:41
    enum SwHTMLFrameType HTML_FRMTYPE_PLUGIN
sw/source/filter/html/htmlfly.hxx:42
    enum SwHTMLFrameType HTML_FRMTYPE_APPLET
sw/source/filter/html/htmlfly.hxx:43
    enum SwHTMLFrameType HTML_FRMTYPE_IFRAME
sw/source/filter/html/htmlfly.hxx:44
    enum SwHTMLFrameType HTML_FRMTYPE_OLE
sw/source/filter/html/htmlfly.hxx:45
    enum SwHTMLFrameType HTML_FRMTYPE_MARQUEE
sw/source/filter/html/htmlfly.hxx:46
    enum SwHTMLFrameType HTML_FRMTYPE_CONTROL
sw/source/filter/html/htmlfly.hxx:47
    enum SwHTMLFrameType HTML_FRMTYPE_DRAW
sw/source/filter/html/htmlfly.hxx:67
    enum HtmlPosition Prefix
sw/source/filter/html/htmlfly.hxx:68
    enum HtmlPosition Before
sw/source/filter/html/htmlform.cxx:112
    enum (anonymous namespace)::HTMLWordWrapMode HTML_WM_SOFT
sw/source/filter/html/htmlforw.cxx:691
    enum Tag TAG_INPUT
sw/source/filter/html/htmlforw.cxx:697
    enum Type TYPE_PASSWORD
sw/source/filter/html/htmlforw.cxx:698
    enum Type TYPE_BUTTON
sw/source/filter/html/htmlforw.cxx:698
    enum Type TYPE_RESET
sw/source/filter/html/htmlforw.cxx:698
    enum Type TYPE_SUBMIT
sw/source/filter/html/parcss1.hxx:67
    enum CSS1ParserState CSS1_PAR_ACCEPTED
sw/source/filter/html/svxcss1.hxx:42
    enum SvxCSS1Position SVX_CSS1_POS_STATIC
sw/source/filter/html/svxcss1.hxx:44
    enum SvxCSS1Position SVX_CSS1_POS_RELATIVE
sw/source/filter/html/svxcss1.hxx:59
    enum SvxCSS1SizeType SVX_CSS1_STYPE_AUTO
sw/source/filter/html/swhtml.hxx:204
    enum SwHTMLAppendMode AM_NORMAL
sw/source/filter/html/swhtml.hxx:324
    enum HtmlContextFlags MultiColMask
sw/source/filter/html/wrthtml.hxx:109
    enum HtmlFrmOpts GenImgAllMask
sw/source/filter/html/wrthtml.hxx:110
    enum HtmlFrmOpts GenImgMask
sw/source/filter/html/wrthtml.hxx:262
    enum sw::Css1Background Attr
sw/source/filter/html/wrthtml.hxx:266
    enum sw::Css1Background Section
sw/source/filter/inc/fltshell.hxx:100
    enum SwFltStackEntry::RegionMode NoCheck
sw/source/filter/inc/fltshell.hxx:128
    enum SwFltControlStack::MoveAttrsMode DEFAULT
sw/source/filter/inc/fltshell.hxx:132
    enum SwFltControlStack::Flags HYPO
sw/source/filter/inc/fltshell.hxx:133
    enum SwFltControlStack::Flags TAGS_DO_ID
sw/source/filter/inc/fltshell.hxx:134
    enum SwFltControlStack::Flags TAGS_VISIBLE
sw/source/filter/inc/fltshell.hxx:135
    enum SwFltControlStack::Flags BOOK_TO_VAR_REF
sw/source/filter/inc/fltshell.hxx:136
    enum SwFltControlStack::Flags BOOK_AND_REF
sw/source/filter/inc/fltshell.hxx:137
    enum SwFltControlStack::Flags TAGS_IN_TEXT
sw/source/filter/inc/fltshell.hxx:138
    enum SwFltControlStack::Flags ALLOW_FLD_CR
sw/source/filter/inc/wrt_fn.hxx:43
    enum RES_NODE RES_NODE_BEGIN
sw/source/filter/inc/wrt_fn.hxx:44
    enum RES_NODE RES_TXTNODE
sw/source/filter/inc/wrt_fn.hxx:45
    enum RES_NODE RES_GRFNODE
sw/source/filter/inc/wrt_fn.hxx:46
    enum RES_NODE RES_OLENODE
sw/source/filter/inc/wrt_fn.hxx:47
    enum RES_NODE RES_NODE_END
sw/source/filter/ww8/docxattributeoutput.hxx:1031
    enum DocxAttributeOutput::ParentStatus IsParent
sw/source/filter/ww8/docxattributeoutput.hxx:1115
    enum DocxAttributeOutput::hasProperties no
sw/source/filter/ww8/sprmids.hxx:245
    enum NS_sprm::SGC paragraph
sw/source/filter/ww8/sprmids.hxx:246
    enum NS_sprm::SGC character
sw/source/filter/ww8/sprmids.hxx:247
    enum NS_sprm::SGC picture
sw/source/filter/ww8/sprmids.hxx:248
    enum NS_sprm::SGC section
sw/source/filter/ww8/sprmids.hxx:249
    enum NS_sprm::SGC table
sw/source/filter/ww8/sprmids.hxx:253
    enum NS_sprm::SPRA operand_toggle_1b_0
sw/source/filter/ww8/sprmids.hxx:254
    enum NS_sprm::SPRA operand_1b_1
sw/source/filter/ww8/sprmids.hxx:255
    enum NS_sprm::SPRA operand_2b_2
sw/source/filter/ww8/sprmids.hxx:256
    enum NS_sprm::SPRA operand_4b_3
sw/source/filter/ww8/sprmids.hxx:257
    enum NS_sprm::SPRA operand_2b_4
sw/source/filter/ww8/sprmids.hxx:258
    enum NS_sprm::SPRA operand_2b_5
sw/source/filter/ww8/sprmids.hxx:260
    enum NS_sprm::SPRA operand_3b_7
sw/source/filter/ww8/wrtww8.hxx:831
    enum MSWordExportBase::ExportFormat DOC
sw/source/filter/ww8/ww8par2.cxx:1634
    enum (anonymous namespace)::wwTableSprm sprmNil
sw/source/filter/ww8/ww8par2.hxx:300
    enum WW8LvlType WW8_Sequence
sw/source/filter/ww8/ww8par.cxx:5795
    enum (unnamed at /home/noel/libo-plugin/sw/source/filter/ww8/ww8par.cxx:5795:5) Other
sw/source/filter/ww8/ww8par.hxx:157
    enum WW8ListManager::ListLevel nMinLevel
sw/source/filter/ww8/ww8scan.hxx:385
    enum ePLCFT PLCF_END
sw/source/filter/ww8/ww8scan.hxx:388
    enum eExtSprm eATNBKN
sw/source/filter/ww8/ww8scan.hxx:388
    enum eExtSprm eBKN
sw/source/filter/ww8/ww8scan.hxx:388
    enum eExtSprm eFACTOIDBKN
sw/source/filter/ww8/ww8scan.hxx:746
    enum eBookStatus BOOK_NORMAL
sw/source/filter/ww8/ww8scan.hxx:866
    enum ManMaskTypes MAN_MASK_NEW_SEP
sw/source/filter/ww8/ww8scan.hxx:934
    enum WW8PLCFMan::WW8PLCFManLimits MAN_PLCF_COUNT
sw/source/filter/ww8/ww8struc.hxx:358
    enum BRC_Sides WW8_BETW
sw/source/filter/ww8/ww8struc.hxx:950
    enum WW8_FSPA::FSPAOrient RelPageBorder
sw/source/filter/xml/xmlitemi.cxx:75
    enum (anonymous namespace)::SwXMLImportTableItemMapper_Impl::(unnamed at /home/noel/libo-plugin/sw/source/filter/xml/xmlitemi.cxx:75:5) BOTTOM
sw/source/filter/xml/xmlitemi.cxx:75
    enum (anonymous namespace)::SwXMLImportTableItemMapper_Impl::(unnamed at /home/noel/libo-plugin/sw/source/filter/xml/xmlitemi.cxx:75:5) LEFT
sw/source/filter/xml/xmlitemi.cxx:75
    enum (anonymous namespace)::SwXMLImportTableItemMapper_Impl::(unnamed at /home/noel/libo-plugin/sw/source/filter/xml/xmlitemi.cxx:75:5) RIGHT
sw/source/filter/xml/xmlitemi.cxx:75
    enum (anonymous namespace)::SwXMLImportTableItemMapper_Impl::(unnamed at /home/noel/libo-plugin/sw/source/filter/xml/xmlitemi.cxx:75:5) TOP
sw/source/filter/xml/xmlmeta.cxx:72
    enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_META_STAT_TABLE
sw/source/filter/xml/xmlmeta.cxx:73
    enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_META_STAT_IMAGE
sw/source/filter/xml/xmlmeta.cxx:74
    enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_META_STAT_OLE
sw/source/filter/xml/xmlmeta.cxx:77
    enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_META_STAT_WORD
sw/source/filter/xml/xmlmeta.cxx:78
    enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_META_STAT_CHAR
sw/source/filter/xml/xmlmeta.cxx:79
    enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_META_STAT_NON_WHITE_SPACE_CHAR
sw/source/filter/xml/xmlmeta.cxx:80
    enum (anonymous namespace)::SvXMLTokenMapAttrs XML_TOK_META_STAT_END
sw/source/ui/fldui/fldref.cxx:55
    enum (anonymous namespace)::FMT_REF_IDX FMT_REF_TEXT_IDX
sw/source/ui/fldui/fldref.cxx:56
    enum (anonymous namespace)::FMT_REF_IDX FMT_REF_UPDOWN_IDX
sw/source/ui/fldui/fldref.cxx:57
    enum (anonymous namespace)::FMT_REF_IDX FMT_REF_PAGE_PGDSC_IDX
sw/source/ui/fldui/fldref.cxx:60
    enum (anonymous namespace)::FMT_REF_IDX FMT_REF_ONLYSEQNO_IDX
sw/source/ui/frmdlg/frmpage.cxx:101
    enum (anonymous namespace)::LB Frame
sw/source/ui/frmdlg/frmpage.cxx:102
    enum (anonymous namespace)::LB PrintArea
sw/source/ui/frmdlg/frmpage.cxx:103
    enum (anonymous namespace)::LB VertFrame
sw/source/ui/frmdlg/frmpage.cxx:104
    enum (anonymous namespace)::LB VertPrintArea
sw/source/ui/frmdlg/frmpage.cxx:105
    enum (anonymous namespace)::LB RelFrameLeft
sw/source/ui/frmdlg/frmpage.cxx:106
    enum (anonymous namespace)::LB RelFrameRight
sw/source/ui/frmdlg/frmpage.cxx:108
    enum (anonymous namespace)::LB RelPageLeft
sw/source/ui/frmdlg/frmpage.cxx:109
    enum (anonymous namespace)::LB RelPageRight
sw/source/ui/frmdlg/frmpage.cxx:110
    enum (anonymous namespace)::LB RelPageFrame
sw/source/ui/frmdlg/frmpage.cxx:111
    enum (anonymous namespace)::LB RelPagePrintArea
sw/source/ui/frmdlg/frmpage.cxx:113
    enum (anonymous namespace)::LB FlyRelPageLeft
sw/source/ui/frmdlg/frmpage.cxx:114
    enum (anonymous namespace)::LB FlyRelPageRight
sw/source/ui/frmdlg/frmpage.cxx:115
    enum (anonymous namespace)::LB FlyRelPageFrame
sw/source/ui/frmdlg/frmpage.cxx:116
    enum (anonymous namespace)::LB FlyRelPagePrintArea
sw/source/ui/frmdlg/frmpage.cxx:118
    enum (anonymous namespace)::LB RelBase
sw/source/ui/frmdlg/frmpage.cxx:120
    enum (anonymous namespace)::LB RelRow
sw/source/ui/frmdlg/frmpage.cxx:122
    enum (anonymous namespace)::LB FlyVertFrame
sw/source/ui/frmdlg/frmpage.cxx:123
    enum (anonymous namespace)::LB FlyVertPrintArea
sw/source/ui/frmdlg/frmpage.cxx:125
    enum (anonymous namespace)::LB VertLine
sw/source/uibase/dbui/dbmgr.cxx:168
    enum (anonymous namespace)::WorkingDocType COPY
sw/source/uibase/docvw/edtwin.cxx:1673
    enum SwKeyState NumOrNoNum
sw/source/uibase/docvw/edtwin.cxx:6416
    enum Capitalization CASE_OTHER
sw/source/uibase/fldui/fldmgr.cxx:93
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_DOC_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:94
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_DOC_END
sw/source/uibase/fldui/fldmgr.cxx:96
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_FKT_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:97
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_FKT_END
sw/source/uibase/fldui/fldmgr.cxx:99
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_REF_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:100
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_REF_END
sw/source/uibase/fldui/fldmgr.cxx:102
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_REG_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:103
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_REG_END
sw/source/uibase/fldui/fldmgr.cxx:105
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_DB_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:106
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_DB_END
sw/source/uibase/fldui/fldmgr.cxx:108
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_VAR_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:109
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:91:1) GRP_VAR_END
sw/source/uibase/fldui/fldmgr.cxx:114
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_DOC_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:115
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_DOC_END
sw/source/uibase/fldui/fldmgr.cxx:117
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_FKT_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:118
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_FKT_END
sw/source/uibase/fldui/fldmgr.cxx:120
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_REF_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:121
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_REF_END
sw/source/uibase/fldui/fldmgr.cxx:123
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_REG_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:124
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_REG_END
sw/source/uibase/fldui/fldmgr.cxx:126
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_DB_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:127
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_DB_END
sw/source/uibase/fldui/fldmgr.cxx:129
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_VAR_BEGIN
sw/source/uibase/fldui/fldmgr.cxx:130
    enum (unnamed at /home/noel/libo-plugin/sw/source/uibase/fldui/fldmgr.cxx:112:1) GRP_WEB_VAR_END
sw/source/uibase/inc/chrdlgmodes.hxx:15
    enum SwCharDlgMode Env
sw/source/uibase/inc/frmmgr.hxx:47
    enum Frmmgr_Type ENVELP
sw/source/uibase/inc/pview.hxx:122
    enum SwPagePreviewWin::MoveMode MV_SPECIFIC_PAGE
sw/source/uibase/inc/swdtflvr.hxx:62
    enum TransferBufferType Drawing
sw/source/uibase/inc/swdtflvr.hxx:70
    enum PasteTableType PASTE_DEFAULT
sw/source/uibase/inc/wrtsh.hxx:85
    enum SelectionType All
sw/source/uibase/inc/wrtsh.hxx:365
    enum SwWrtShell::GetStyle GETSTYLE_CREATESOME
sw/source/uibase/inc/wrtsh.hxx:550
    enum SwWrtShell::PageMove MV_PAGE_UP
sw/source/uibase/inc/wrtsh.hxx:551
    enum SwWrtShell::PageMove MV_PAGE_DOWN
sw/source/uibase/ribbar/workctrl.cxx:799
    enum (anonymous namespace)::PrevNextScrollToolboxController::Type NEXT
sw/source/uibase/uno/unomailmerge.cxx:92
    enum (anonymous namespace)::CloseResult eSuccess
sw/source/uibase/uno/unomailmerge.cxx:94
    enum (anonymous namespace)::CloseResult eFailed
sw/source/uibase/utlui/content.cxx:1064
    enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_ACTIVE_VIEW
sw/source/uibase/utlui/content.cxx:1065
    enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_HIDDEN
sw/source/uibase/utlui/content.cxx:1066
    enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_ACTIVE
sw/source/uibase/utlui/content.cxx:1067
    enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_INACTIVE
sw/source/uibase/utlui/content.cxx:1071
    enum (anonymous namespace)::STR_CONTEXT_IDX IDX_STR_OUTLINE_TRACKING
sw/source/uibase/utlui/glbltree.cxx:99
    enum (anonymous namespace)::GLOBAL_CONTEXT_IDX IDX_STR_INSERT_TEXT
sw/source/uibase/utlui/glbltree.cxx:105
    enum (anonymous namespace)::GLOBAL_CONTEXT_IDX IDX_STR_BROKEN_LINK
toolkit/inc/controls/table/tablecontrolinterface.hxx:75
    enum svt::table::TableCellArea CellContent
toolkit/inc/controls/table/tablemodel.hxx:68
    enum svt::table::ScrollbarVisibility ScrollbarShowSmart
toolkit/inc/controls/table/tablesort.hxx:33
    enum svt::table::ColumnSortDirection ColumnSortDescending
toolkit/inc/helper/msgbox.hxx:34
    enum MessBoxStyle DefaultOk
toolkit/source/helper/vclunohelper.cxx:351
    enum (anonymous namespace)::UnitConversionDirection MeasurementUnitToFieldUnit
tools/source/fsys/urlobj.cxx:309
    enum INetURLObject::PrefixInfo::Kind Official
tools/source/fsys/urlobj.cxx:471
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PA
tools/source/fsys/urlobj.cxx:472
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PD
tools/source/fsys/urlobj.cxx:473
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PE
tools/source/fsys/urlobj.cxx:474
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PF
tools/source/fsys/urlobj.cxx:475
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PG
tools/source/fsys/urlobj.cxx:476
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PH
tools/source/fsys/urlobj.cxx:477
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PI
tools/source/fsys/urlobj.cxx:478
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PJ
tools/source/fsys/urlobj.cxx:479
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PK
tools/source/fsys/urlobj.cxx:480
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PL
tools/source/fsys/urlobj.cxx:481
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PM
tools/source/fsys/urlobj.cxx:482
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PN
tools/source/fsys/urlobj.cxx:483
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PO
tools/source/fsys/urlobj.cxx:484
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PP
tools/source/fsys/urlobj.cxx:485
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PQ
tools/source/fsys/urlobj.cxx:486
    enum (anonymous namespace)::(unnamed at /home/noel/libo-plugin/tools/source/fsys/urlobj.cxx:469:1) PR
tools/source/fsys/urlobj.cxx:1725
    enum State STATE_DONE
ucb/source/ucp/ext/ucpext_content.hxx:42
    enum ucb::ucp::ext::ExtensionContentType E_UNKNOWN
ucb/source/ucp/hierarchy/hierarchycontent.hxx:102
    enum hierarchy_ucp::HierarchyContent::ContentState DEAD
ucb/source/ucp/package/pkgcontent.hxx:92
    enum package_ucp::Content::ContentState TRANSIENT
ucb/source/ucp/package/pkgcontent.hxx:95
    enum package_ucp::Content::ContentState DEAD
ucb/source/ucp/tdoc/tdoc_content.hxx:94
    enum tdoc_ucp::Content::ContentState DEAD
ucb/source/ucp/tdoc/tdoc_uri.hxx:34
    enum tdoc_ucp::Uri::State INVALID
ucb/source/ucp/webdav-curl/DAVException.hxx:124
    enum http_dav_ucp::DAVException::ExceptionCode DAV_HTTP_FAILED
ucb/source/ucp/webdav-curl/DAVException.hxx:130
    enum http_dav_ucp::DAVException::ExceptionCode DAV_SESSION_CREATE
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:52
    enum (anonymous namespace)::WebDAVNamespace WebDAVNamespace_unknown
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:79
    enum (anonymous namespace)::WebDAVName WebDAVName_unknown
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:82
    enum (anonymous namespace)::WebDAVName WebDAVName_multistatus
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:86
    enum (anonymous namespace)::WebDAVName WebDAVName_prop
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:92
    enum (anonymous namespace)::WebDAVName WebDAVName_lockscope
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:96
    enum (anonymous namespace)::WebDAVName WebDAVName_locktype
ucb/source/ucp/webdav-curl/webdavresponseparser.cxx:301
    enum (anonymous namespace)::WebDAVResponseParserMode WebDAVResponseParserMode_Lock
unoidl/source/sourceprovider-parser-requires.hxx:28
    enum unoidl::detail::SourceProviderAccessDecls ACCESS_DECL_GET
unoidl/source/sourceprovider-parser-requires.hxx:28
    enum unoidl::detail::SourceProviderAccessDecls ACCESS_DECL_SET
unoidl/source/unoidl-read.cxx:143
    enum (anonymous namespace)::Entity::Written DECLARATION
unoidl/source/unoidlprovider.cxx:469
    enum unoidl::detail::(anonymous namespace)::Compare COMPARE_EQUAL
unotools/source/misc/fontcvt.cxx:1015
    enum (anonymous namespace)::SymbolFont MonotypeSorts
unotools/source/misc/fontcvt.cxx:1015
    enum (anonymous namespace)::SymbolFont Symbol
unotools/source/misc/fontcvt.cxx:1015
    enum (anonymous namespace)::SymbolFont Webdings
unotools/source/misc/fontcvt.cxx:1015
    enum (anonymous namespace)::SymbolFont Wingdings
unotools/source/misc/fontcvt.cxx:1015
    enum (anonymous namespace)::SymbolFont Wingdings2
unotools/source/misc/fontcvt.cxx:1016
    enum (anonymous namespace)::SymbolFont MTExtra
unotools/source/misc/fontcvt.cxx:1016
    enum (anonymous namespace)::SymbolFont TimesNewRoman
unotools/source/misc/fontcvt.cxx:1016
    enum (anonymous namespace)::SymbolFont Wingdings3
unotools/source/ucbhelper/ucblockbytes.cxx:215
    enum utl::(anonymous namespace)::Moderator::ResultType GENERAL
uui/source/iahndl-errorhandler.cxx:148
    enum Source SOURCE_DEFAULT
uui/source/iahndl-errorhandler.cxx:148
    enum Source SOURCE_SVX
uui/source/iahndl-errorhandler.cxx:148
    enum Source SOURCE_UUI
vcl/inc/driverblocklist.hxx:59
    enum DriverBlocklist::OperatingSystem DRIVER_OS_UNKNOWN
vcl/inc/driverblocklist.hxx:61
    enum DriverBlocklist::OperatingSystem DRIVER_OS_WINDOWS_7
vcl/inc/driverblocklist.hxx:62
    enum DriverBlocklist::OperatingSystem DRIVER_OS_WINDOWS_8
vcl/inc/driverblocklist.hxx:63
    enum DriverBlocklist::OperatingSystem DRIVER_OS_WINDOWS_8_1
vcl/inc/driverblocklist.hxx:64
    enum DriverBlocklist::OperatingSystem DRIVER_OS_WINDOWS_10
vcl/inc/driverblocklist.hxx:67
    enum DriverBlocklist::OperatingSystem DRIVER_OS_LINUX
vcl/inc/driverblocklist.hxx:69
    enum DriverBlocklist::OperatingSystem DRIVER_OS_OSX_10_5
vcl/inc/driverblocklist.hxx:70
    enum DriverBlocklist::OperatingSystem DRIVER_OS_OSX_10_6
vcl/inc/driverblocklist.hxx:71
    enum DriverBlocklist::OperatingSystem DRIVER_OS_OSX_10_7
vcl/inc/driverblocklist.hxx:72
    enum DriverBlocklist::OperatingSystem DRIVER_OS_OSX_10_8
vcl/inc/driverblocklist.hxx:75
    enum DriverBlocklist::OperatingSystem DRIVER_OS_ANDROID
vcl/inc/font/LogicalFontInstance.hxx:153
    enum LogicalFontInstance::FontFamilyEnum Unclassified
vcl/inc/font/PhysicalFontFace.hxx:105
    vcl::font::NameID NAME_ID_FONT_FAMILY
vcl/inc/fontsubset.hxx:34
    enum FontType NO_FONT
vcl/inc/fontsubset.hxx:36
    enum FontType SFNT_CFF
vcl/inc/headless/CairoCommon.hxx:109
    enum PaintMode Over
vcl/inc/headless/svpinst.hxx:60
    enum SvpRequest MainThreadDispatchOneEvent
vcl/inc/pdf/pdfwriter_impl.hxx:94
    enum vcl::pdf::GraphicsStateUpdateFlags All
vcl/inc/pdf/pdfwriter_impl.hxx:669
    enum vcl::pdf::Mode DEFAULT
vcl/inc/pdf/pdfwriter_impl.hxx:1062
    enum vcl::PDFWriterImpl::EndMode Default
vcl/inc/ppdparser.hxx:44
    enum psp::PPDValueType eQuoted
vcl/inc/ppdparser.hxx:44
    enum psp::PPDValueType eString
vcl/inc/ppdparser.hxx:44
    enum psp::PPDValueType eSymbol
vcl/inc/qt5/QtGraphics_Controls.hxx:87
    enum QtGraphics_Controls::Round Floor
vcl/inc/regband.hxx:47
    enum LineType Ascending
vcl/inc/regband.hxx:47
    enum LineType Descending
vcl/inc/salframe.hxx:72
    enum SalFrameStyleFlags NOSHADOW
vcl/inc/salptype.hxx:33
    enum JobSetFlags ALL
vcl/inc/svimpbox.hxx:106
    enum SvImpLBox::ImageType NodeExpanded
vcl/inc/svimpbox.hxx:107
    enum SvImpLBox::ImageType NodeCollapsed
vcl/inc/svimpbox.hxx:108
    enum SvImpLBox::ImageType EntryDefExpanded
vcl/inc/svimpbox.hxx:109
    enum SvImpLBox::ImageType EntryDefCollapsed
vcl/inc/unx/desktops.hxx:29
    enum DesktopType DESKTOP_UNKNOWN
vcl/inc/unx/gtk/gtkinst.hxx:245
    enum SelectionType SELECTION_PRIMARY
vcl/inc/unx/i18n_cb.hxx:69
    enum PreeditStatus DontKnow
vcl/inc/unx/saldisp.hxx:62
    srv_vendor_t vendor_unknown
vcl/inc/unx/salframe.h:52
    enum WMWindowType Normal
vcl/inc/unx/sessioninhibitor.hxx:22
    enum ApplicationInhibitFlags APPLICATION_INHIBIT_LOGOUT
vcl/inc/unx/wmadaptor.hxx:40
    enum vcl_sal::WMAdaptor::WMAtom UTF8_STRING
vcl/inc/unx/wmadaptor.hxx:43
    enum vcl_sal::WMAdaptor::WMAtom NET_ACTIVE_WINDOW
vcl/inc/unx/wmadaptor.hxx:44
    enum vcl_sal::WMAdaptor::WMAtom NET_SUPPORTED
vcl/inc/unx/wmadaptor.hxx:45
    enum vcl_sal::WMAdaptor::WMAtom NET_SUPPORTING_WM_CHECK
vcl/inc/unx/wmadaptor.hxx:46
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_NAME
vcl/inc/unx/wmadaptor.hxx:47
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_DESKTOP
vcl/inc/unx/wmadaptor.hxx:48
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_ICON_NAME
vcl/inc/unx/wmadaptor.hxx:49
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_PID
vcl/inc/unx/wmadaptor.hxx:50
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_PING
vcl/inc/unx/wmadaptor.hxx:51
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE
vcl/inc/unx/wmadaptor.hxx:52
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MAXIMIZED_HORZ
vcl/inc/unx/wmadaptor.hxx:53
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MAXIMIZED_VERT
vcl/inc/unx/wmadaptor.hxx:54
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_MODAL
vcl/inc/unx/wmadaptor.hxx:55
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_SKIP_PAGER
vcl/inc/unx/wmadaptor.hxx:56
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_SKIP_TASKBAR
vcl/inc/unx/wmadaptor.hxx:58
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_STICKY
vcl/inc/unx/wmadaptor.hxx:59
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STATE_FULLSCREEN
vcl/inc/unx/wmadaptor.hxx:60
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STRUT
vcl/inc/unx/wmadaptor.hxx:61
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_STRUT_PARTIAL
vcl/inc/unx/wmadaptor.hxx:62
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_USER_TIME
vcl/inc/unx/wmadaptor.hxx:63
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE
vcl/inc/unx/wmadaptor.hxx:64
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DESKTOP
vcl/inc/unx/wmadaptor.hxx:65
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DIALOG
vcl/inc/unx/wmadaptor.hxx:66
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_DOCK
vcl/inc/unx/wmadaptor.hxx:67
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_MENU
vcl/inc/unx/wmadaptor.hxx:68
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_NORMAL
vcl/inc/unx/wmadaptor.hxx:69
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_TOOLBAR
vcl/inc/unx/wmadaptor.hxx:70
    enum vcl_sal::WMAdaptor::WMAtom KDE_NET_WM_WINDOW_TYPE_OVERRIDE
vcl/inc/unx/wmadaptor.hxx:71
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_SPLASH
vcl/inc/unx/wmadaptor.hxx:72
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_WINDOW_TYPE_UTILITY
vcl/inc/unx/wmadaptor.hxx:73
    enum vcl_sal::WMAdaptor::WMAtom NET_NUMBER_OF_DESKTOPS
vcl/inc/unx/wmadaptor.hxx:74
    enum vcl_sal::WMAdaptor::WMAtom NET_CURRENT_DESKTOP
vcl/inc/unx/wmadaptor.hxx:75
    enum vcl_sal::WMAdaptor::WMAtom NET_WORKAREA
vcl/inc/unx/wmadaptor.hxx:76
    enum vcl_sal::WMAdaptor::WMAtom NET_WM_ICON
vcl/inc/unx/wmadaptor.hxx:79
    enum vcl_sal::WMAdaptor::WMAtom WIN_SUPPORTING_WM_CHECK
vcl/inc/unx/wmadaptor.hxx:80
    enum vcl_sal::WMAdaptor::WMAtom WIN_PROTOCOLS
vcl/inc/unx/wmadaptor.hxx:81
    enum vcl_sal::WMAdaptor::WMAtom WIN_WORKSPACE_COUNT
vcl/inc/unx/wmadaptor.hxx:82
    enum vcl_sal::WMAdaptor::WMAtom WIN_WORKSPACE
vcl/inc/unx/wmadaptor.hxx:84
    enum vcl_sal::WMAdaptor::WMAtom WIN_STATE
vcl/inc/unx/wmadaptor.hxx:85
    enum vcl_sal::WMAdaptor::WMAtom WIN_HINTS
vcl/inc/unx/wmadaptor.hxx:86
    enum vcl_sal::WMAdaptor::WMAtom WIN_APP_STATE
vcl/inc/unx/wmadaptor.hxx:87
    enum vcl_sal::WMAdaptor::WMAtom WIN_EXPANDED_SIZE
vcl/inc/unx/wmadaptor.hxx:88
    enum vcl_sal::WMAdaptor::WMAtom WIN_ICONS
vcl/inc/unx/wmadaptor.hxx:89
    enum vcl_sal::WMAdaptor::WMAtom WIN_CLIENT_LIST
vcl/inc/unx/wmadaptor.hxx:92
    enum vcl_sal::WMAdaptor::WMAtom WM_STATE
vcl/inc/unx/wmadaptor.hxx:93
    enum vcl_sal::WMAdaptor::WMAtom MOTIF_WM_HINTS
vcl/inc/unx/wmadaptor.hxx:94
    enum vcl_sal::WMAdaptor::WMAtom WM_PROTOCOLS
vcl/inc/unx/wmadaptor.hxx:95
    enum vcl_sal::WMAdaptor::WMAtom WM_DELETE_WINDOW
vcl/inc/unx/wmadaptor.hxx:96
    enum vcl_sal::WMAdaptor::WMAtom WM_TAKE_FOCUS
vcl/inc/unx/wmadaptor.hxx:97
    enum vcl_sal::WMAdaptor::WMAtom WM_CLIENT_LEADER
vcl/inc/unx/wmadaptor.hxx:98
    enum vcl_sal::WMAdaptor::WMAtom WM_COMMAND
vcl/inc/unx/wmadaptor.hxx:99
    enum vcl_sal::WMAdaptor::WMAtom WM_LOCALE_NAME
vcl/inc/unx/wmadaptor.hxx:100
    enum vcl_sal::WMAdaptor::WMAtom WM_TRANSIENT_FOR
vcl/inc/unx/wmadaptor.hxx:103
    enum vcl_sal::WMAdaptor::WMAtom SAL_QUITEVENT
vcl/inc/unx/wmadaptor.hxx:104
    enum vcl_sal::WMAdaptor::WMAtom SAL_USEREVENT
vcl/inc/unx/wmadaptor.hxx:105
    enum vcl_sal::WMAdaptor::WMAtom SAL_EXTTEXTEVENT
vcl/inc/unx/wmadaptor.hxx:106
    enum vcl_sal::WMAdaptor::WMAtom SAL_GETTIMEEVENT
vcl/inc/unx/wmadaptor.hxx:107
    enum vcl_sal::WMAdaptor::WMAtom VCL_SYSTEM_SETTINGS
vcl/inc/unx/wmadaptor.hxx:108
    enum vcl_sal::WMAdaptor::WMAtom XSETTINGS
vcl/inc/unx/wmadaptor.hxx:109
    enum vcl_sal::WMAdaptor::WMAtom XEMBED
vcl/inc/unx/wmadaptor.hxx:110
    enum vcl_sal::WMAdaptor::WMAtom XEMBED_INFO
vcl/inc/unx/wmadaptor.hxx:111
    enum vcl_sal::WMAdaptor::WMAtom NetAtomMax
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1303
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1300:5) Artifact
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1306
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1300:5) Tagged
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1410
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1407:5) Artifact
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1411
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1407:5) Tagged
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1523
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1520:5) Artifact
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1524
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:1520:5) Tagged
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:3330
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:3327:5) Artifact
vcl/qa/cppunit/pdfexport/pdfexport2.cxx:3331
    enum (unnamed at /home/noel/libo-plugin/vcl/qa/cppunit/pdfexport/pdfexport2.cxx:3327:5) Tagged
vcl/qt5/QtFilePicker.cxx:360
    enum (unnamed at /home/noel/libo-plugin/vcl/qt5/QtFilePicker.cxx:360:27) Size
vcl/qt5/QtInstance.cxx:313
    enum (unnamed at /home/noel/libo-plugin/vcl/qt5/QtInstance.cxx:313:45) Size
vcl/qt5/QtTransferable.cxx:73
    enum (unnamed at /home/noel/libo-plugin/vcl/qt5/QtTransferable.cxx:73:26) Size
vcl/qt5/QtTransferable.cxx:134
    enum (unnamed at /home/noel/libo-plugin/vcl/qt5/QtTransferable.cxx:134:56) Size
vcl/qt5/QtTransferable.cxx:139
    enum (unnamed at /home/noel/libo-plugin/vcl/qt5/QtTransferable.cxx:139:56) Size
vcl/qt5/QtTransferable.cxx:274
    enum (unnamed at /home/noel/libo-plugin/vcl/qt5/QtTransferable.cxx:274:22) Size
vcl/qt5/QtTransferable.cxx:276
    enum (unnamed at /home/noel/libo-plugin/vcl/qt5/QtTransferable.cxx:276:22) Size
vcl/source/control/imivctl.hxx:87
    enum IcnViewFieldType Image
vcl/source/filter/ipict/ipict.cxx:73
    enum PictReaderInternal::(anonymous namespace)::Pattern::PenStyle PEN_DASH
vcl/source/filter/ipict/ipict.cxx:73
    enum PictReaderInternal::(anonymous namespace)::Pattern::PenStyle PEN_DASHDOT
vcl/source/filter/ipict/ipict.cxx:73
    enum PictReaderInternal::(anonymous namespace)::Pattern::PenStyle PEN_DOT
vcl/source/filter/ipict/ipict.cxx:73
    enum PictReaderInternal::(anonymous namespace)::Pattern::PenStyle PEN_NULL
vcl/source/filter/ipict/ipict.cxx:73
    enum PictReaderInternal::(anonymous namespace)::Pattern::PenStyle PEN_SOLID
vcl/source/filter/ipict/ipict.cxx:74
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_HORZ
vcl/source/filter/ipict/ipict.cxx:74
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_SOLID
vcl/source/filter/ipict/ipict.cxx:74
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_VERT
vcl/source/filter/ipict/ipict.cxx:75
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_CROSS
vcl/source/filter/ipict/ipict.cxx:75
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_DIAGCROSS
vcl/source/filter/ipict/ipict.cxx:75
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_DOWNDIAG
vcl/source/filter/ipict/ipict.cxx:75
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_UPDIAG
vcl/source/filter/ipict/ipict.cxx:76
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_25
vcl/source/filter/ipict/ipict.cxx:76
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_50
vcl/source/filter/ipict/ipict.cxx:76
    enum PictReaderInternal::(anonymous namespace)::Pattern::BrushStyle BRUSH_75
vcl/source/filter/ipict/ipict.cxx:147
    enum (anonymous namespace)::PictDrawingMethod UNDEFINED
vcl/source/filter/ixbm/xbmread.cxx:37
    enum (anonymous namespace)::XBMFormat XBM11
vcl/source/filter/ixbm/xbmread.cxx:42
    enum (anonymous namespace)::ReadState XBMREAD_OK
vcl/source/filter/ixpm/xpmread.cxx:54
    enum (anonymous namespace)::ReadState XPMREAD_OK
vcl/source/filter/jpeg/Exif.hxx:29
    enum exif::Orientation TOP_RIGHT
vcl/source/filter/jpeg/Exif.hxx:31
    enum exif::Orientation BOTTOM_LEFT
vcl/source/filter/jpeg/Exif.hxx:32
    enum exif::Orientation LEFT_TOP
vcl/source/filter/jpeg/Exif.hxx:34
    enum exif::Orientation RIGHT_BOTTOM
vcl/source/filter/jpeg/JpegReader.hxx:32
    enum ReadState JPEGREAD_OK
vcl/source/filter/wmf/emfwr.cxx:100
    enum EmfPlusRecordType Header
vcl/source/filter/wmf/emfwr.cxx:101
    enum EmfPlusRecordType EndOfFile
vcl/source/filter/wmf/emfwr.cxx:102
    enum EmfPlusRecordType GetDC
vcl/source/filter/wmf/emfwr.cxx:103
    enum EmfPlusRecordType FillPolygon
vcl/source/filter/wmf/emfwr.cxx:104
    enum EmfPlusRecordType SetAntiAliasMode
vcl/source/filter/wmf/emfwr.cxx:105
    enum EmfPlusRecordType SetInterpolationMode
vcl/source/filter/wmf/emfwr.cxx:106
    enum EmfPlusRecordType SetPixelOffsetMode
vcl/source/filter/wmf/emfwr.cxx:107
    enum EmfPlusRecordType SetCompositingQuality
vcl/source/fontsubset/ttcr.hxx:46
    enum vcl::TTCRErrCodes TTCR_OK
vcl/source/fontsubset/ttcr.hxx:47
    enum vcl::TTCRErrCodes TTCR_ZEROGLYPHS
vcl/source/fontsubset/ttcr.hxx:49
    enum vcl::TTCRErrCodes TTCR_NONAMES
vcl/source/fontsubset/ttcr.hxx:50
    enum vcl::TTCRErrCodes TTCR_NAMETOOLONG
vcl/source/fontsubset/ttcr.hxx:51
    enum vcl::TTCRErrCodes TTCR_POSTFORMAT
vcl/source/gdi/region.cxx:1546
    enum RegionType REGION_COMPLEX
vcl/source/gdi/region.cxx:1546
    enum RegionType REGION_RECTANGLE
vcl/source/gdi/regionband.cxx:200
    enum (anonymous namespace)::StreamEntryType STREAMENTRY_SEPARATION
vcl/source/opengl/OpenGLHelper.cxx:766
    enum (anonymous namespace)::CrashWatchdogTimingMode NORMAL
vcl/source/treelist/iconviewimpl.hxx:67
    enum IconViewImpl::CallbackResult Continue
vcl/unx/generic/app/sm.cxx:189
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/generic/app/sm.cxx:189:1) eCloneCommand
vcl/unx/generic/app/sm.cxx:189
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/generic/app/sm.cxx:189:1) eProgram
vcl/unx/generic/app/sm.cxx:189
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/generic/app/sm.cxx:189:1) eRestartCommand
vcl/unx/generic/app/sm.cxx:189
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/generic/app/sm.cxx:189:1) eRestartStyleHint
vcl/unx/generic/app/sm.cxx:189
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/generic/app/sm.cxx:189:1) eUserId
vcl/unx/generic/app/sm.cxx:190
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/generic/app/sm.cxx:190:1) eDiscardCommand
vcl/unx/generic/dtrans/X11_selection.hxx:178
    enum x11::SelectionManager::Selection::State Inactive
vcl/unx/gtk3/a11y/atktextattributes.cxx:84
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_CASEMAP
vcl/unx/gtk3/a11y/atktextattributes.cxx:86
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_CONTOURED
vcl/unx/gtk3/a11y/atktextattributes.cxx:87
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_CHAR_ESCAPEMENT
vcl/unx/gtk3/a11y/atktextattributes.cxx:88
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_BLINKING
vcl/unx/gtk3/a11y/atktextattributes.cxx:89
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_FONT_NAME
vcl/unx/gtk3/a11y/atktextattributes.cxx:90
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_HEIGHT
vcl/unx/gtk3/a11y/atktextattributes.cxx:91
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_HIDDEN
vcl/unx/gtk3/a11y/atktextattributes.cxx:92
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_KERNING
vcl/unx/gtk3/a11y/atktextattributes.cxx:93
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_LOCALE
vcl/unx/gtk3/a11y/atktextattributes.cxx:94
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_POSTURE
vcl/unx/gtk3/a11y/atktextattributes.cxx:95
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_RELIEF
vcl/unx/gtk3/a11y/atktextattributes.cxx:96
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_ROTATION
vcl/unx/gtk3/a11y/atktextattributes.cxx:97
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_SCALE
vcl/unx/gtk3/a11y/atktextattributes.cxx:98
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_SHADOWED
vcl/unx/gtk3/a11y/atktextattributes.cxx:99
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_STRIKETHROUGH
vcl/unx/gtk3/a11y/atktextattributes.cxx:100
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_UNDERLINE
vcl/unx/gtk3/a11y/atktextattributes.cxx:101
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_WEIGHT
vcl/unx/gtk3/a11y/atktextattributes.cxx:103
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_MM_TO_PIXEL_RATIO
vcl/unx/gtk3/a11y/atktextattributes.cxx:104
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_JUSTIFICATION
vcl/unx/gtk3/a11y/atktextattributes.cxx:105
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_BOTTOM_MARGIN
vcl/unx/gtk3/a11y/atktextattributes.cxx:106
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_FIRST_LINE_INDENT
vcl/unx/gtk3/a11y/atktextattributes.cxx:107
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_LEFT_MARGIN
vcl/unx/gtk3/a11y/atktextattributes.cxx:108
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_LINE_SPACING
vcl/unx/gtk3/a11y/atktextattributes.cxx:109
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_RIGHT_MARGIN
vcl/unx/gtk3/a11y/atktextattributes.cxx:110
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_STYLE_NAME
vcl/unx/gtk3/a11y/atktextattributes.cxx:111
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_TAB_STOPS
vcl/unx/gtk3/a11y/atktextattributes.cxx:112
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_TOP_MARGIN
vcl/unx/gtk3/a11y/atktextattributes.cxx:113
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_WRITING_MODE
vcl/unx/gtk3/a11y/atktextattributes.cxx:114
    enum (anonymous namespace)::ExportedAttribute TEXT_ATTRIBUTE_LAST
vcl/unx/gtk3/a11y/atktextattributes.cxx:772
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/gtk3/a11y/atktextattributes.cxx:769:1) DECORATION_BLINK
vcl/unx/gtk3/a11y/atktextattributes.cxx:773
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/gtk3/a11y/atktextattributes.cxx:769:1) DECORATION_UNDERLINE
vcl/unx/gtk3/a11y/atktextattributes.cxx:774
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/gtk3/a11y/atktextattributes.cxx:769:1) DECORATION_LINE_THROUGH
vcl/unx/gtk3/fpicker/SalGtkFilePicker.hxx:173
    enum SalGtkFilePicker::(unnamed at /home/noel/libo-plugin/vcl/unx/gtk3/fpicker/SalGtkFilePicker.hxx:172:9) OK
vcl/unx/gtk3/fpicker/SalGtkFilePicker.hxx:174
    enum SalGtkFilePicker::(unnamed at /home/noel/libo-plugin/vcl/unx/gtk3/fpicker/SalGtkFilePicker.hxx:172:9) CANCEL
vcl/unx/gtk3/fpicker/SalGtkFilePicker.hxx:175
    enum SalGtkFilePicker::(unnamed at /home/noel/libo-plugin/vcl/unx/gtk3/fpicker/SalGtkFilePicker.hxx:172:9) PLAY
vcl/unx/gtk3/gtkframe.cxx:1345
    enum (anonymous namespace)::ColorScheme DEFAULT
vcl/unx/kf5/KFFilePicker.cxx:63
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFFilePicker.cxx:63:33) Size
vcl/unx/kf5/KFFilePicker.cxx:63
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFFilePicker.cxx:63:57) Size
vcl/unx/kf5/KFFilePicker.cxx:63
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFFilePicker.cxx:63:9) Size
vcl/unx/kf5/KFFilePicker.cxx:64
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFFilePicker.cxx:64:35) Size
vcl/unx/kf5/KFFilePicker.cxx:64
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFFilePicker.cxx:64:62) Size
vcl/unx/kf5/KFFilePicker.cxx:64
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFFilePicker.cxx:64:9) Size
vcl/unx/kf5/KFFilePicker.cxx:65
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFFilePicker.cxx:65:9) Size
vcl/unx/kf5/KFSalInstance.cxx:57
    enum (unnamed at /home/noel/libo-plugin/vcl/unx/kf5/KFSalInstance.cxx:57:60) Size
writerfilter/source/dmapper/BorderHandler.hxx:39
    enum writerfilter::dmapper::BorderHandler::BorderPosition Top
writerfilter/source/dmapper/BorderHandler.hxx:40
    enum writerfilter::dmapper::BorderHandler::BorderPosition Left
writerfilter/source/dmapper/BorderHandler.hxx:41
    enum writerfilter::dmapper::BorderHandler::BorderPosition Bottom
writerfilter/source/dmapper/BorderHandler.hxx:42
    enum writerfilter::dmapper::BorderHandler::BorderPosition Right
writerfilter/source/dmapper/BorderHandler.hxx:43
    enum writerfilter::dmapper::BorderHandler::BorderPosition Horizontal
writerfilter/source/dmapper/BorderHandler.hxx:44
    enum writerfilter::dmapper::BorderHandler::BorderPosition Vertical
writerfilter/source/dmapper/DomainMapper_Impl.hxx:120
    enum writerfilter::dmapper::PaperSourceElement PAPER_SOURCE_OTHER
writerfilter/source/dmapper/DomainMapper_Impl.hxx:130
    enum writerfilter::dmapper::ContextType CONTEXT_LIST
writerfilter/source/dmapper/DomainMapper_Impl.hxx:152
    enum writerfilter::dmapper::SkipFootnoteSeparator OFF
writerfilter/source/dmapper/DomainMapper_Impl.hxx:160
    enum writerfilter::dmapper::StoredRedlines FRAME
writerfilter/source/dmapper/DomainMapper_Impl.hxx:161
    enum writerfilter::dmapper::StoredRedlines FOOTNOTE
writerfilter/source/dmapper/DomainMapper_Impl.hxx:162
    enum writerfilter::dmapper::StoredRedlines ENDNOTE
writerfilter/source/dmapper/PropertyIds.hxx:28
    enum writerfilter::dmapper::PropertyIds PROP_ID_START
writerfilter/source/dmapper/PropertyIds.hxx:29
    enum writerfilter::dmapper::PropertyIds META_PROP_CELL_MAR_BOTTOM
writerfilter/source/dmapper/PropertyIds.hxx:30
    enum writerfilter::dmapper::PropertyIds META_PROP_CELL_MAR_LEFT
writerfilter/source/dmapper/PropertyIds.hxx:31
    enum writerfilter::dmapper::PropertyIds META_PROP_CELL_MAR_RIGHT
writerfilter/source/dmapper/PropertyIds.hxx:32
    enum writerfilter::dmapper::PropertyIds META_PROP_CELL_MAR_TOP
writerfilter/source/dmapper/PropertyIds.hxx:34
    enum writerfilter::dmapper::PropertyIds META_PROP_TABLE_STYLE_NAME
writerfilter/source/dmapper/PropertyIds.hxx:36
    enum writerfilter::dmapper::PropertyIds PROP_ADJUST
writerfilter/source/dmapper/PropertyIds.hxx:37
    enum writerfilter::dmapper::PropertyIds PROP_ADJUST_CONTRAST
writerfilter/source/dmapper/PropertyIds.hxx:38
    enum writerfilter::dmapper::PropertyIds PROP_ADJUST_LUMINANCE
writerfilter/source/dmapper/PropertyIds.hxx:39
    enum writerfilter::dmapper::PropertyIds PROP_ALLOW_OVERLAP
writerfilter/source/dmapper/PropertyIds.hxx:40
    enum writerfilter::dmapper::PropertyIds PROP_ALTERNATIVE_TEXT
writerfilter/source/dmapper/PropertyIds.hxx:41
    enum writerfilter::dmapper::PropertyIds PROP_ANCHOR_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:42
    enum writerfilter::dmapper::PropertyIds PROP_AUTOMATIC_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:43
    enum writerfilter::dmapper::PropertyIds PROP_BACK_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:44
    enum writerfilter::dmapper::PropertyIds PROP_BACK_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:45
    enum writerfilter::dmapper::PropertyIds PROP_BACK_COLOR_TRANSPARENCY
writerfilter/source/dmapper/PropertyIds.hxx:46
    enum writerfilter::dmapper::PropertyIds PROP_BITMAP
writerfilter/source/dmapper/PropertyIds.hxx:47
    enum writerfilter::dmapper::PropertyIds PROP_BORDER_LEFT_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:48
    enum writerfilter::dmapper::PropertyIds PROP_BORDER_RIGHT_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:49
    enum writerfilter::dmapper::PropertyIds PROP_BORDER_TOP_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:50
    enum writerfilter::dmapper::PropertyIds PROP_BORDER_BOTTOM_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:52
    enum writerfilter::dmapper::PropertyIds PROP_BOTTOM_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:53
    enum writerfilter::dmapper::PropertyIds PROP_BOTTOM_MARGIN
writerfilter/source/dmapper/PropertyIds.hxx:54
    enum writerfilter::dmapper::PropertyIds PROP_BREAK_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:55
    enum writerfilter::dmapper::PropertyIds PROP_BULLET_CHAR
writerfilter/source/dmapper/PropertyIds.hxx:56
    enum writerfilter::dmapper::PropertyIds PROP_BULLET_FONT_NAME
writerfilter/source/dmapper/PropertyIds.hxx:57
    enum writerfilter::dmapper::PropertyIds PROP_CHAPTER_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:59
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_AUTO_KERNING
writerfilter/source/dmapper/PropertyIds.hxx:60
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BACK_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:61
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BACKGROUND_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:62
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_CASE_MAP
writerfilter/source/dmapper/PropertyIds.hxx:63
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_CHAR_KERNING
writerfilter/source/dmapper/PropertyIds.hxx:64
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:65
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:66
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_COMBINE_IS_ON
writerfilter/source/dmapper/PropertyIds.hxx:67
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_COMBINE_PREFIX
writerfilter/source/dmapper/PropertyIds.hxx:68
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_COMBINE_SUFFIX
writerfilter/source/dmapper/PropertyIds.hxx:69
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_CONTOURED
writerfilter/source/dmapper/PropertyIds.hxx:70
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_LEFT_BORDER
writerfilter/source/dmapper/PropertyIds.hxx:71
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_RIGHT_BORDER
writerfilter/source/dmapper/PropertyIds.hxx:72
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_TOP_BORDER
writerfilter/source/dmapper/PropertyIds.hxx:73
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BOTTOM_BORDER
writerfilter/source/dmapper/PropertyIds.hxx:74
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_LEFT_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:75
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_RIGHT_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:76
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_TOP_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:77
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BOTTOM_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:78
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BORDER_LEFT_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:79
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BORDER_RIGHT_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:80
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BORDER_TOP_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:81
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_BORDER_BOTTOM_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:82
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_EMPHASIS
writerfilter/source/dmapper/PropertyIds.hxx:83
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_ESCAPEMENT
writerfilter/source/dmapper/PropertyIds.hxx:84
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_ESCAPEMENT_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:85
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_FLASH
writerfilter/source/dmapper/PropertyIds.hxx:86
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_FONT_CHAR_SET
writerfilter/source/dmapper/PropertyIds.hxx:87
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_FONT_NAME
writerfilter/source/dmapper/PropertyIds.hxx:88
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_FONT_NAME_ASIAN
writerfilter/source/dmapper/PropertyIds.hxx:89
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_FONT_NAME_COMPLEX
writerfilter/source/dmapper/PropertyIds.hxx:91
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_HEIGHT_ASIAN
writerfilter/source/dmapper/PropertyIds.hxx:92
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_HEIGHT_COMPLEX
writerfilter/source/dmapper/PropertyIds.hxx:93
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_HIDDEN
writerfilter/source/dmapper/PropertyIds.hxx:94
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_HIGHLIGHT
writerfilter/source/dmapper/PropertyIds.hxx:95
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_LOCALE
writerfilter/source/dmapper/PropertyIds.hxx:96
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_LOCALE_ASIAN
writerfilter/source/dmapper/PropertyIds.hxx:97
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_LOCALE_COMPLEX
writerfilter/source/dmapper/PropertyIds.hxx:98
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_POSTURE
writerfilter/source/dmapper/PropertyIds.hxx:99
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_POSTURE_ASIAN
writerfilter/source/dmapper/PropertyIds.hxx:100
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_POSTURE_COMPLEX
writerfilter/source/dmapper/PropertyIds.hxx:101
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_PROP_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:102
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_PROP_HEIGHT_ASIAN
writerfilter/source/dmapper/PropertyIds.hxx:103
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_PROP_HEIGHT_COMPLEX
writerfilter/source/dmapper/PropertyIds.hxx:104
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_RELIEF
writerfilter/source/dmapper/PropertyIds.hxx:105
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_ROTATION
writerfilter/source/dmapper/PropertyIds.hxx:106
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_ROTATION_IS_FIT_TO_LINE
writerfilter/source/dmapper/PropertyIds.hxx:107
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_SCALE_WIDTH
writerfilter/source/dmapper/PropertyIds.hxx:108
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_SHADOW_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:109
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_SHADING_MARKER
writerfilter/source/dmapper/PropertyIds.hxx:110
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_SHADING_VALUE
writerfilter/source/dmapper/PropertyIds.hxx:111
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_SHADOWED
writerfilter/source/dmapper/PropertyIds.hxx:112
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_STRIKEOUT
writerfilter/source/dmapper/PropertyIds.hxx:114
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_TEXTOUTLINE_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:115
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_TEXTFILL_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:116
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_NAME_ASCII
writerfilter/source/dmapper/PropertyIds.hxx:117
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_NAME_CS
writerfilter/source/dmapper/PropertyIds.hxx:118
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_NAME_H_ANSI
writerfilter/source/dmapper/PropertyIds.hxx:119
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_NAME_EAST_ASIA
writerfilter/source/dmapper/PropertyIds.hxx:120
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_FONT_NAME_ASCII
writerfilter/source/dmapper/PropertyIds.hxx:121
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_FONT_NAME_CS
writerfilter/source/dmapper/PropertyIds.hxx:122
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_FONT_NAME_EAST_ASIA
writerfilter/source/dmapper/PropertyIds.hxx:123
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:124
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_ORIGINAL_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:125
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_COLOR_SHADE
writerfilter/source/dmapper/PropertyIds.hxx:126
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_FILL
writerfilter/source/dmapper/PropertyIds.hxx:127
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_THEME_COLOR_TINT
writerfilter/source/dmapper/PropertyIds.hxx:128
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_UNDERLINE
writerfilter/source/dmapper/PropertyIds.hxx:129
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_UNDERLINE_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:130
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_UNDERLINE_COMPLEX_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:131
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_UNDERLINE_HAS_COLOR
writerfilter/source/dmapper/PropertyIds.hxx:132
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_WEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:133
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_WEIGHT_ASIAN
writerfilter/source/dmapper/PropertyIds.hxx:134
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_WEIGHT_COMPLEX
writerfilter/source/dmapper/PropertyIds.hxx:135
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_WORD_MODE
writerfilter/source/dmapper/PropertyIds.hxx:136
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_GLOW_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:137
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_SHADOW_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:138
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_REFLECTION_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:139
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_SCENE3D_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:140
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_PROPS3D_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:141
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_LIGATURES_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:142
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_NUMFORM_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:143
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_NUMSPACING_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:144
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_STYLISTICSETS_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:145
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_CNTXTALTS_TEXT_EFFECT
writerfilter/source/dmapper/PropertyIds.hxx:147
    enum writerfilter::dmapper::PropertyIds PROP_CONTENT
writerfilter/source/dmapper/PropertyIds.hxx:148
    enum writerfilter::dmapper::PropertyIds PROP_CONTOUR_OUTSIDE
writerfilter/source/dmapper/PropertyIds.hxx:149
    enum writerfilter::dmapper::PropertyIds PROP_CONTOUR_POLY_POLYGON
writerfilter/source/dmapper/PropertyIds.hxx:150
    enum writerfilter::dmapper::PropertyIds PROP_COUNT_EMPTY_LINES
writerfilter/source/dmapper/PropertyIds.hxx:151
    enum writerfilter::dmapper::PropertyIds PROP_COUNT_LINES_IN_FRAMES
writerfilter/source/dmapper/PropertyIds.hxx:152
    enum writerfilter::dmapper::PropertyIds PROP_CREATE_FROM_LEVEL_PARAGRAPH_STYLES
writerfilter/source/dmapper/PropertyIds.hxx:153
    enum writerfilter::dmapper::PropertyIds PROP_CREATE_FROM_MARKS
writerfilter/source/dmapper/PropertyIds.hxx:154
    enum writerfilter::dmapper::PropertyIds PROP_CREATE_FROM_OUTLINE
writerfilter/source/dmapper/PropertyIds.hxx:155
    enum writerfilter::dmapper::PropertyIds PROP_CURRENT_PRESENTATION
writerfilter/source/dmapper/PropertyIds.hxx:156
    enum writerfilter::dmapper::PropertyIds PROP_DECORATIVE
writerfilter/source/dmapper/PropertyIds.hxx:157
    enum writerfilter::dmapper::PropertyIds PROP_DELETE
writerfilter/source/dmapper/PropertyIds.hxx:158
    enum writerfilter::dmapper::PropertyIds PROP_DESCRIPTION
writerfilter/source/dmapper/PropertyIds.hxx:159
    enum writerfilter::dmapper::PropertyIds PROP_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:160
    enum writerfilter::dmapper::PropertyIds PROP_DROP_CAP_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:161
    enum writerfilter::dmapper::PropertyIds PROP_FILE_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:163
    enum writerfilter::dmapper::PropertyIds PROP_FIRST_LINE_OFFSET
writerfilter/source/dmapper/PropertyIds.hxx:164
    enum writerfilter::dmapper::PropertyIds PROP_FIRST_PAGE
writerfilter/source/dmapper/PropertyIds.hxx:165
    enum writerfilter::dmapper::PropertyIds PROP_FIRST_IS_SHARED
writerfilter/source/dmapper/PropertyIds.hxx:166
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_BODY_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:167
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_DYNAMIC_SPACING
writerfilter/source/dmapper/PropertyIds.hxx:168
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:169
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_IS_DYNAMIC_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:170
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_IS_ON
writerfilter/source/dmapper/PropertyIds.hxx:171
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_IS_SHARED
writerfilter/source/dmapper/PropertyIds.hxx:172
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_TEXT
writerfilter/source/dmapper/PropertyIds.hxx:173
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_TEXT_LEFT
writerfilter/source/dmapper/PropertyIds.hxx:174
    enum writerfilter::dmapper::PropertyIds PROP_FOOTER_TEXT_FIRST
writerfilter/source/dmapper/PropertyIds.hxx:175
    enum writerfilter::dmapper::PropertyIds PROP_FOOTNOTE_COUNTING
writerfilter/source/dmapper/PropertyIds.hxx:176
    enum writerfilter::dmapper::PropertyIds PROP_FOOTNOTE_LINE_ADJUST
writerfilter/source/dmapper/PropertyIds.hxx:177
    enum writerfilter::dmapper::PropertyIds PROP_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:178
    enum writerfilter::dmapper::PropertyIds PROP_FULL_NAME
writerfilter/source/dmapper/PropertyIds.hxx:179
    enum writerfilter::dmapper::PropertyIds PROP_GRAPHIC
writerfilter/source/dmapper/PropertyIds.hxx:180
    enum writerfilter::dmapper::PropertyIds PROP_GRAPHIC_COLOR_MODE
writerfilter/source/dmapper/PropertyIds.hxx:181
    enum writerfilter::dmapper::PropertyIds PROP_GRID_BASE_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:182
    enum writerfilter::dmapper::PropertyIds PROP_GRID_BASE_WIDTH
writerfilter/source/dmapper/PropertyIds.hxx:183
    enum writerfilter::dmapper::PropertyIds PROP_GRID_DISPLAY
writerfilter/source/dmapper/PropertyIds.hxx:184
    enum writerfilter::dmapper::PropertyIds PROP_GRID_LINES
writerfilter/source/dmapper/PropertyIds.hxx:185
    enum writerfilter::dmapper::PropertyIds PROP_GRID_MODE
writerfilter/source/dmapper/PropertyIds.hxx:186
    enum writerfilter::dmapper::PropertyIds PROP_GRID_PRINT
writerfilter/source/dmapper/PropertyIds.hxx:187
    enum writerfilter::dmapper::PropertyIds PROP_GRID_RUBY_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:188
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_BODY_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:189
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_DYNAMIC_SPACING
writerfilter/source/dmapper/PropertyIds.hxx:190
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:191
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_IS_DYNAMIC_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:192
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_IS_ON
writerfilter/source/dmapper/PropertyIds.hxx:193
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_IS_SHARED
writerfilter/source/dmapper/PropertyIds.hxx:194
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_ROW_COUNT
writerfilter/source/dmapper/PropertyIds.hxx:195
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_TEXT
writerfilter/source/dmapper/PropertyIds.hxx:196
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_TEXT_LEFT
writerfilter/source/dmapper/PropertyIds.hxx:197
    enum writerfilter::dmapper::PropertyIds PROP_HEADER_TEXT_FIRST
writerfilter/source/dmapper/PropertyIds.hxx:198
    enum writerfilter::dmapper::PropertyIds PROP_HEADING_STYLE_NAME
writerfilter/source/dmapper/PropertyIds.hxx:199
    enum writerfilter::dmapper::PropertyIds PROP_HEIGHT
writerfilter/source/dmapper/PropertyIds.hxx:200
    enum writerfilter::dmapper::PropertyIds PROP_HELP
writerfilter/source/dmapper/PropertyIds.hxx:201
    enum writerfilter::dmapper::PropertyIds PROP_HINT
writerfilter/source/dmapper/PropertyIds.hxx:202
    enum writerfilter::dmapper::PropertyIds PROP_HORI_ORIENT
writerfilter/source/dmapper/PropertyIds.hxx:203
    enum writerfilter::dmapper::PropertyIds PROP_HORI_ORIENT_POSITION
writerfilter/source/dmapper/PropertyIds.hxx:204
    enum writerfilter::dmapper::PropertyIds PROP_HORI_ORIENT_RELATION
writerfilter/source/dmapper/PropertyIds.hxx:205
    enum writerfilter::dmapper::PropertyIds PROP_HYPER_LINK_U_R_L
writerfilter/source/dmapper/PropertyIds.hxx:206
    enum writerfilter::dmapper::PropertyIds PROP_HYPERLINK
writerfilter/source/dmapper/PropertyIds.hxx:208
    enum writerfilter::dmapper::PropertyIds PROP_INPUT_STREAM
writerfilter/source/dmapper/PropertyIds.hxx:209
    enum writerfilter::dmapper::PropertyIds PROP_INSERT
writerfilter/source/dmapper/PropertyIds.hxx:210
    enum writerfilter::dmapper::PropertyIds PROP_INTERVAL
writerfilter/source/dmapper/PropertyIds.hxx:211
    enum writerfilter::dmapper::PropertyIds PROP_IS_DATE
writerfilter/source/dmapper/PropertyIds.hxx:212
    enum writerfilter::dmapper::PropertyIds PROP_IS_FIXED
writerfilter/source/dmapper/PropertyIds.hxx:213
    enum writerfilter::dmapper::PropertyIds PROP_IS_INPUT
writerfilter/source/dmapper/PropertyIds.hxx:214
    enum writerfilter::dmapper::PropertyIds PROP_IS_LANDSCAPE
writerfilter/source/dmapper/PropertyIds.hxx:215
    enum writerfilter::dmapper::PropertyIds PROP_IS_ON
writerfilter/source/dmapper/PropertyIds.hxx:216
    enum writerfilter::dmapper::PropertyIds PROP_IS_SPLIT_ALLOWED
writerfilter/source/dmapper/PropertyIds.hxx:217
    enum writerfilter::dmapper::PropertyIds PROP_IS_VISIBLE
writerfilter/source/dmapper/PropertyIds.hxx:218
    enum writerfilter::dmapper::PropertyIds PROP_LABEL_CATEGORY
writerfilter/source/dmapper/PropertyIds.hxx:220
    enum writerfilter::dmapper::PropertyIds PROP_LEFT_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:222
    enum writerfilter::dmapper::PropertyIds PROP_LEVEL
writerfilter/source/dmapper/PropertyIds.hxx:223
    enum writerfilter::dmapper::PropertyIds PROP_LEVEL_FOLLOW
writerfilter/source/dmapper/PropertyIds.hxx:224
    enum writerfilter::dmapper::PropertyIds PROP_LEVEL_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:225
    enum writerfilter::dmapper::PropertyIds PROP_LEVEL_PARAGRAPH_STYLES
writerfilter/source/dmapper/PropertyIds.hxx:226
    enum writerfilter::dmapper::PropertyIds PROP_LEVEL_IS_LEGAL
writerfilter/source/dmapper/PropertyIds.hxx:227
    enum writerfilter::dmapper::PropertyIds PROP_LISTTAB_STOP_POSITION
writerfilter/source/dmapper/PropertyIds.hxx:228
    enum writerfilter::dmapper::PropertyIds PROP_LIST_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:229
    enum writerfilter::dmapper::PropertyIds PROP_MACRO_NAME
writerfilter/source/dmapper/PropertyIds.hxx:230
    enum writerfilter::dmapper::PropertyIds PROP_NAME
writerfilter/source/dmapper/PropertyIds.hxx:231
    enum writerfilter::dmapper::PropertyIds PROP_NUMBERING_LEVEL
writerfilter/source/dmapper/PropertyIds.hxx:233
    enum writerfilter::dmapper::PropertyIds PROP_NUMBERING_STYLE_NAME
writerfilter/source/dmapper/PropertyIds.hxx:234
    enum writerfilter::dmapper::PropertyIds PROP_NUMBERING_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:235
    enum writerfilter::dmapper::PropertyIds PROP_NUMBER_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:236
    enum writerfilter::dmapper::PropertyIds PROP_NUMBER_POSITION
writerfilter/source/dmapper/PropertyIds.hxx:237
    enum writerfilter::dmapper::PropertyIds PROP_OPAQUE
writerfilter/source/dmapper/PropertyIds.hxx:238
    enum writerfilter::dmapper::PropertyIds PROP_OUTLINE_LEVEL
writerfilter/source/dmapper/PropertyIds.hxx:239
    enum writerfilter::dmapper::PropertyIds PROP_PAGE_DESC_NAME
writerfilter/source/dmapper/PropertyIds.hxx:240
    enum writerfilter::dmapper::PropertyIds PROP_PAGE_NUMBER_OFFSET
writerfilter/source/dmapper/PropertyIds.hxx:241
    enum writerfilter::dmapper::PropertyIds PROP_PAGE_TOGGLE
writerfilter/source/dmapper/PropertyIds.hxx:242
    enum writerfilter::dmapper::PropertyIds PROP_PARAGRAPH_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:243
    enum writerfilter::dmapper::PropertyIds PROP_PARAGRAPH_STYLES
writerfilter/source/dmapper/PropertyIds.hxx:245
    enum writerfilter::dmapper::PropertyIds PROP_PARA_BOTTOM_MARGIN
writerfilter/source/dmapper/PropertyIds.hxx:247
    enum writerfilter::dmapper::PropertyIds PROP_PARA_IS_HANGING_PUNCTUATION
writerfilter/source/dmapper/PropertyIds.hxx:248
    enum writerfilter::dmapper::PropertyIds PROP_PARA_IS_HYPHENATION
writerfilter/source/dmapper/PropertyIds.hxx:249
    enum writerfilter::dmapper::PropertyIds PROP_PARA_HYPHENATION_NO_CAPS
writerfilter/source/dmapper/PropertyIds.hxx:250
    enum writerfilter::dmapper::PropertyIds PROP_PARA_HYPHENATION_ZONE
writerfilter/source/dmapper/PropertyIds.hxx:251
    enum writerfilter::dmapper::PropertyIds PROP_PARA_KEEP_TOGETHER
writerfilter/source/dmapper/PropertyIds.hxx:254
    enum writerfilter::dmapper::PropertyIds PROP_PARA_LINE_NUMBER_COUNT
writerfilter/source/dmapper/PropertyIds.hxx:255
    enum writerfilter::dmapper::PropertyIds PROP_PARA_LINE_NUMBER_START_VALUE
writerfilter/source/dmapper/PropertyIds.hxx:257
    enum writerfilter::dmapper::PropertyIds PROP_PARA_ORPHANS
writerfilter/source/dmapper/PropertyIds.hxx:259
    enum writerfilter::dmapper::PropertyIds PROP_PARA_SPLIT
writerfilter/source/dmapper/PropertyIds.hxx:262
    enum writerfilter::dmapper::PropertyIds PROP_PARA_TOP_MARGIN
writerfilter/source/dmapper/PropertyIds.hxx:263
    enum writerfilter::dmapper::PropertyIds PROP_PARA_VERT_ALIGNMENT
writerfilter/source/dmapper/PropertyIds.hxx:265
    enum writerfilter::dmapper::PropertyIds PROP_PAPER_TRAY
writerfilter/source/dmapper/PropertyIds.hxx:266
    enum writerfilter::dmapper::PropertyIds PROP_PARENT_NUMBERING
writerfilter/source/dmapper/PropertyIds.hxx:267
    enum writerfilter::dmapper::PropertyIds PROP_POSITION_AND_SPACE_MODE
writerfilter/source/dmapper/PropertyIds.hxx:268
    enum writerfilter::dmapper::PropertyIds PROP_POSITION_PROTECTED
writerfilter/source/dmapper/PropertyIds.hxx:269
    enum writerfilter::dmapper::PropertyIds PROP_IS_PROTECTED
writerfilter/source/dmapper/PropertyIds.hxx:270
    enum writerfilter::dmapper::PropertyIds PROP_REDLINE_AUTHOR
writerfilter/source/dmapper/PropertyIds.hxx:271
    enum writerfilter::dmapper::PropertyIds PROP_REDLINE_DATE_TIME
writerfilter/source/dmapper/PropertyIds.hxx:272
    enum writerfilter::dmapper::PropertyIds PROP_REDLINE_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:273
    enum writerfilter::dmapper::PropertyIds PROP_REDLINE_REVERT_PROPERTIES
writerfilter/source/dmapper/PropertyIds.hxx:274
    enum writerfilter::dmapper::PropertyIds PROP_REFERENCE_FIELD_FLAGS
writerfilter/source/dmapper/PropertyIds.hxx:275
    enum writerfilter::dmapper::PropertyIds PROP_REFERENCE_FIELD_PART
writerfilter/source/dmapper/PropertyIds.hxx:276
    enum writerfilter::dmapper::PropertyIds PROP_REFERENCE_FIELD_SOURCE
writerfilter/source/dmapper/PropertyIds.hxx:277
    enum writerfilter::dmapper::PropertyIds PROP_RESTART_AT_EACH_PAGE
writerfilter/source/dmapper/PropertyIds.hxx:279
    enum writerfilter::dmapper::PropertyIds PROP_RIGHT_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:280
    enum writerfilter::dmapper::PropertyIds PROP_RIGHT_MARGIN
writerfilter/source/dmapper/PropertyIds.hxx:281
    enum writerfilter::dmapper::PropertyIds PROP_SERVICE_CHAR_STYLE
writerfilter/source/dmapper/PropertyIds.hxx:282
    enum writerfilter::dmapper::PropertyIds PROP_SERVICE_PARA_STYLE
writerfilter/source/dmapper/PropertyIds.hxx:283
    enum writerfilter::dmapper::PropertyIds PROP_SIZE
writerfilter/source/dmapper/PropertyIds.hxx:284
    enum writerfilter::dmapper::PropertyIds PROP_SIZE100th_M_M
writerfilter/source/dmapper/PropertyIds.hxx:285
    enum writerfilter::dmapper::PropertyIds PROP_SIZE_PIXEL
writerfilter/source/dmapper/PropertyIds.hxx:286
    enum writerfilter::dmapper::PropertyIds PROP_SIZE_PROTECTED
writerfilter/source/dmapper/PropertyIds.hxx:287
    enum writerfilter::dmapper::PropertyIds PROP_SIZE_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:288
    enum writerfilter::dmapper::PropertyIds PROP_SOURCE_NAME
writerfilter/source/dmapper/PropertyIds.hxx:289
    enum writerfilter::dmapper::PropertyIds PROP_SPLIT
writerfilter/source/dmapper/PropertyIds.hxx:290
    enum writerfilter::dmapper::PropertyIds PROP_STANDARD
writerfilter/source/dmapper/PropertyIds.hxx:291
    enum writerfilter::dmapper::PropertyIds PROP_START_AT
writerfilter/source/dmapper/PropertyIds.hxx:292
    enum writerfilter::dmapper::PropertyIds PROP_START_WITH
writerfilter/source/dmapper/PropertyIds.hxx:293
    enum writerfilter::dmapper::PropertyIds PROP_STREAM_NAME
writerfilter/source/dmapper/PropertyIds.hxx:294
    enum writerfilter::dmapper::PropertyIds PROP_SUB_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:295
    enum writerfilter::dmapper::PropertyIds PROP_SURROUND
writerfilter/source/dmapper/PropertyIds.hxx:296
    enum writerfilter::dmapper::PropertyIds PROP_SURROUND_CONTOUR
writerfilter/source/dmapper/PropertyIds.hxx:297
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_BORDER
writerfilter/source/dmapper/PropertyIds.hxx:298
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_BORDER_DISTANCES
writerfilter/source/dmapper/PropertyIds.hxx:300
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_REDLINE_PARAMS
writerfilter/source/dmapper/PropertyIds.hxx:301
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_ROW_DELETE
writerfilter/source/dmapper/PropertyIds.hxx:302
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_ROW_INSERT
writerfilter/source/dmapper/PropertyIds.hxx:303
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_CELL_DELETE
writerfilter/source/dmapper/PropertyIds.hxx:304
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_CELL_INSERT
writerfilter/source/dmapper/PropertyIds.hxx:305
    enum writerfilter::dmapper::PropertyIds PROP_TABS_RELATIVE_TO_INDENT
writerfilter/source/dmapper/PropertyIds.hxx:306
    enum writerfilter::dmapper::PropertyIds PROP_TAB_STOP_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:307
    enum writerfilter::dmapper::PropertyIds PROP_TEXT
writerfilter/source/dmapper/PropertyIds.hxx:308
    enum writerfilter::dmapper::PropertyIds PROP_TEXT_COLUMNS
writerfilter/source/dmapper/PropertyIds.hxx:309
    enum writerfilter::dmapper::PropertyIds PROP_TEXT_RANGE
writerfilter/source/dmapper/PropertyIds.hxx:310
    enum writerfilter::dmapper::PropertyIds PROP_TEXT_VERTICAL_ADJUST
writerfilter/source/dmapper/PropertyIds.hxx:311
    enum writerfilter::dmapper::PropertyIds PROP_TITLE
writerfilter/source/dmapper/PropertyIds.hxx:312
    enum writerfilter::dmapper::PropertyIds PROP_TOKEN_CHAPTER_INFO
writerfilter/source/dmapper/PropertyIds.hxx:313
    enum writerfilter::dmapper::PropertyIds PROP_TOKEN_HYPERLINK_END
writerfilter/source/dmapper/PropertyIds.hxx:314
    enum writerfilter::dmapper::PropertyIds PROP_TOKEN_HYPERLINK_START
writerfilter/source/dmapper/PropertyIds.hxx:315
    enum writerfilter::dmapper::PropertyIds PROP_TOKEN_TEXT
writerfilter/source/dmapper/PropertyIds.hxx:316
    enum writerfilter::dmapper::PropertyIds PROP_TOKEN_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:318
    enum writerfilter::dmapper::PropertyIds PROP_TOP_BORDER_DISTANCE
writerfilter/source/dmapper/PropertyIds.hxx:320
    enum writerfilter::dmapper::PropertyIds PROP_VERTICAL_MERGE
writerfilter/source/dmapper/PropertyIds.hxx:321
    enum writerfilter::dmapper::PropertyIds PROP_GRID_STANDARD_MODE
writerfilter/source/dmapper/PropertyIds.hxx:322
    enum writerfilter::dmapper::PropertyIds PROP_VERT_ORIENT
writerfilter/source/dmapper/PropertyIds.hxx:323
    enum writerfilter::dmapper::PropertyIds PROP_VERT_ORIENT_POSITION
writerfilter/source/dmapper/PropertyIds.hxx:324
    enum writerfilter::dmapper::PropertyIds PROP_VERT_ORIENT_RELATION
writerfilter/source/dmapper/PropertyIds.hxx:325
    enum writerfilter::dmapper::PropertyIds PROP_WIDTH
writerfilter/source/dmapper/PropertyIds.hxx:326
    enum writerfilter::dmapper::PropertyIds PROP_WIDTH_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:327
    enum writerfilter::dmapper::PropertyIds PROP_TBL_LOOK
writerfilter/source/dmapper/PropertyIds.hxx:328
    enum writerfilter::dmapper::PropertyIds PROP_WRITING_MODE
writerfilter/source/dmapper/PropertyIds.hxx:329
    enum writerfilter::dmapper::PropertyIds PROP_FRM_DIRECTION
writerfilter/source/dmapper/PropertyIds.hxx:330
    enum writerfilter::dmapper::PropertyIds PROP_EMBEDDED_OBJECT
writerfilter/source/dmapper/PropertyIds.hxx:331
    enum writerfilter::dmapper::PropertyIds PROP_PARA_CONTEXT_MARGIN
writerfilter/source/dmapper/PropertyIds.hxx:332
    enum writerfilter::dmapper::PropertyIds PROP_PAGE_STYLE_LAYOUT
writerfilter/source/dmapper/PropertyIds.hxx:333
    enum writerfilter::dmapper::PropertyIds PROP_Z_ORDER
writerfilter/source/dmapper/PropertyIds.hxx:334
    enum writerfilter::dmapper::PropertyIds PROP_EMBED_FONTS
writerfilter/source/dmapper/PropertyIds.hxx:335
    enum writerfilter::dmapper::PropertyIds PROP_EMBED_SYSTEM_FONTS
writerfilter/source/dmapper/PropertyIds.hxx:336
    enum writerfilter::dmapper::PropertyIds PROP_SHADOW_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:337
    enum writerfilter::dmapper::PropertyIds PROP_RELATIVE_WIDTH
writerfilter/source/dmapper/PropertyIds.hxx:338
    enum writerfilter::dmapper::PropertyIds PROP_IS_WIDTH_RELATIVE
writerfilter/source/dmapper/PropertyIds.hxx:339
    enum writerfilter::dmapper::PropertyIds PROP_GRAPHIC_BITMAP
writerfilter/source/dmapper/PropertyIds.hxx:340
    enum writerfilter::dmapper::PropertyIds PROP_GRAPHIC_SIZE
writerfilter/source/dmapper/PropertyIds.hxx:341
    enum writerfilter::dmapper::PropertyIds PROP_MIRROR_INDENTS
writerfilter/source/dmapper/PropertyIds.hxx:342
    enum writerfilter::dmapper::PropertyIds PROP_SURROUND_TEXT_WRAP_SMALL
writerfilter/source/dmapper/PropertyIds.hxx:343
    enum writerfilter::dmapper::PropertyIds PROP_PARA_SHADOW_FORMAT
writerfilter/source/dmapper/PropertyIds.hxx:344
    enum writerfilter::dmapper::PropertyIds PROP_FOOTNOTE_LINE_RELATIVE_WIDTH
writerfilter/source/dmapper/PropertyIds.hxx:345
    enum writerfilter::dmapper::PropertyIds PROP_PARA_TOP_MARGIN_BEFORE_AUTO_SPACING
writerfilter/source/dmapper/PropertyIds.hxx:346
    enum writerfilter::dmapper::PropertyIds PROP_PARA_BOTTOM_MARGIN_AFTER_AUTO_SPACING
writerfilter/source/dmapper/PropertyIds.hxx:347
    enum writerfilter::dmapper::PropertyIds PROP_TBL_HEADER
writerfilter/source/dmapper/PropertyIds.hxx:348
    enum writerfilter::dmapper::PropertyIds PROP_HORIZONTAL_MERGE
writerfilter/source/dmapper/PropertyIds.hxx:349
    enum writerfilter::dmapper::PropertyIds PROP_HIDE_TAB_LEADER_AND_PAGE_NUMBERS
writerfilter/source/dmapper/PropertyIds.hxx:350
    enum writerfilter::dmapper::PropertyIds PROP_TAB_IN_TOC
writerfilter/source/dmapper/PropertyIds.hxx:351
    enum writerfilter::dmapper::PropertyIds PROP_TOC_BOOKMARK
writerfilter/source/dmapper/PropertyIds.hxx:352
    enum writerfilter::dmapper::PropertyIds PROP_TOC_NEW_LINE
writerfilter/source/dmapper/PropertyIds.hxx:353
    enum writerfilter::dmapper::PropertyIds PROP_TOC_PARAGRAPH_OUTLINE_LEVEL
writerfilter/source/dmapper/PropertyIds.hxx:354
    enum writerfilter::dmapper::PropertyIds PROP_SDTPR
writerfilter/source/dmapper/PropertyIds.hxx:356
    enum writerfilter::dmapper::PropertyIds PROP_TABLE_INTEROP_GRAB_BAG
writerfilter/source/dmapper/PropertyIds.hxx:357
    enum writerfilter::dmapper::PropertyIds PROP_APPLY_PARAGRAPH_MARK_FORMAT_TO_NUMBERING
writerfilter/source/dmapper/PropertyIds.hxx:358
    enum writerfilter::dmapper::PropertyIds PROP_SDT_END_BEFORE
writerfilter/source/dmapper/PropertyIds.hxx:359
    enum writerfilter::dmapper::PropertyIds PROP_PARA_SDT_END_BEFORE
writerfilter/source/dmapper/PropertyIds.hxx:360
    enum writerfilter::dmapper::PropertyIds META_PROP_TABLE_LOOK
writerfilter/source/dmapper/PropertyIds.hxx:361
    enum writerfilter::dmapper::PropertyIds PROP_PARA_CNF_STYLE
writerfilter/source/dmapper/PropertyIds.hxx:362
    enum writerfilter::dmapper::PropertyIds PROP_CELL_CNF_STYLE
writerfilter/source/dmapper/PropertyIds.hxx:363
    enum writerfilter::dmapper::PropertyIds PROP_ROW_CNF_STYLE
writerfilter/source/dmapper/PropertyIds.hxx:364
    enum writerfilter::dmapper::PropertyIds PROP_CELL_HIDE_MARK
writerfilter/source/dmapper/PropertyIds.hxx:365
    enum writerfilter::dmapper::PropertyIds PROP_FOLLOW_TEXT_FLOW
writerfilter/source/dmapper/PropertyIds.hxx:369
    enum writerfilter::dmapper::PropertyIds PROP_SNAP_TO_GRID
writerfilter/source/dmapper/PropertyIds.hxx:370
    enum writerfilter::dmapper::PropertyIds PROP_GRID_SNAP_TO_CHARS
writerfilter/source/dmapper/PropertyIds.hxx:371
    enum writerfilter::dmapper::PropertyIds PROP_RUBY_STYLE
writerfilter/source/dmapper/PropertyIds.hxx:372
    enum writerfilter::dmapper::PropertyIds PROP_RUBY_TEXT
writerfilter/source/dmapper/PropertyIds.hxx:373
    enum writerfilter::dmapper::PropertyIds PROP_RUBY_ADJUST
writerfilter/source/dmapper/PropertyIds.hxx:374
    enum writerfilter::dmapper::PropertyIds PROP_RUBY_POSITION
writerfilter/source/dmapper/PropertyIds.hxx:375
    enum writerfilter::dmapper::PropertyIds PROP_DATABASE_NAME
writerfilter/source/dmapper/PropertyIds.hxx:376
    enum writerfilter::dmapper::PropertyIds PROP_COMMAND_TYPE
writerfilter/source/dmapper/PropertyIds.hxx:377
    enum writerfilter::dmapper::PropertyIds PROP_DATATABLE_NAME
writerfilter/source/dmapper/PropertyIds.hxx:378
    enum writerfilter::dmapper::PropertyIds PROP_DATACOLUMN_NAME
writerfilter/source/dmapper/PropertyIds.hxx:379
    enum writerfilter::dmapper::PropertyIds PROP_CHAR_TRANSPARENCE
writerfilter/source/dmapper/PropertyIds.hxx:380
    enum writerfilter::dmapper::PropertyIds PROP_CELL_FORMULA
writerfilter/source/dmapper/PropertyIds.hxx:381
    enum writerfilter::dmapper::PropertyIds PROP_CELL_FORMULA_CONVERTED
writerfilter/source/dmapper/PropertyIds.hxx:382
    enum writerfilter::dmapper::PropertyIds PROP_GUTTER_MARGIN
writerfilter/source/dmapper/PropertyIds.hxx:383
    enum writerfilter::dmapper::PropertyIds PROP_RTL_GUTTER
writerfilter/source/dmapper/PropertyIds.hxx:384
    enum writerfilter::dmapper::PropertyIds PROP_CURSOR_NOT_IGNORE_TABLES_IN_HF
writerfilter/source/dmapper/PropertyIds.hxx:385
    enum writerfilter::dmapper::PropertyIds PROP_PARA_CONNECT_BORDERS
writerfilter/source/dmapper/PropertyMap.hxx:68
    enum writerfilter::dmapper::BorderPosition BORDER_LEFT
writerfilter/source/dmapper/PropertyMap.hxx:69
    enum writerfilter::dmapper::BorderPosition BORDER_RIGHT
writerfilter/source/dmapper/PropertyMap.hxx:70
    enum writerfilter::dmapper::BorderPosition BORDER_TOP
writerfilter/source/dmapper/PropertyMap.hxx:71
    enum writerfilter::dmapper::BorderPosition BORDER_BOTTOM
writerfilter/source/dmapper/PropertyMap.hxx:76
    enum writerfilter::dmapper::GrabBagType NO_GRAB_BAG
writerfilter/source/dmapper/PropertyMap.hxx:235
    enum writerfilter::dmapper::SectionPropertyMap::BorderApply ToAllInSection
writerfilter/source/dmapper/PropertyMap.hxx:236
    enum writerfilter::dmapper::SectionPropertyMap::BorderApply ToFirstPageInSection
writerfilter/source/dmapper/PropertyMap.hxx:237
    enum writerfilter::dmapper::SectionPropertyMap::BorderApply ToAllButFirstInSection
writerfilter/source/dmapper/PropertyMap.hxx:241
    enum writerfilter::dmapper::SectionPropertyMap::BorderOffsetFrom Text
writerfilter/source/dmapper/PropertyMap.hxx:600
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget TablePropertyMapTarget_START
writerfilter/source/dmapper/PropertyMap.hxx:601
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_LEFT
writerfilter/source/dmapper/PropertyMap.hxx:602
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_RIGHT
writerfilter/source/dmapper/PropertyMap.hxx:603
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_TOP
writerfilter/source/dmapper/PropertyMap.hxx:604
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget CELL_MAR_BOTTOM
writerfilter/source/dmapper/PropertyMap.hxx:605
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget TABLE_WIDTH
writerfilter/source/dmapper/PropertyMap.hxx:606
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget TABLE_WIDTH_TYPE
writerfilter/source/dmapper/PropertyMap.hxx:607
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget LEFT_MARGIN
writerfilter/source/dmapper/PropertyMap.hxx:608
    enum writerfilter::dmapper::TablePropertyMap::TablePropertyMapTarget HORI_ORIENT
writerfilter/source/dmapper/SdtHelper.hxx:50
    enum writerfilter::dmapper::SdtControlType unsupported
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:40
    enum writerfilter::ooxml::OOXMLFastContextHandler::ResourceEnum_t PROPERTIES
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:40
    enum writerfilter::ooxml::OOXMLFastContextHandler::ResourceEnum_t SHAPE
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:40
    enum writerfilter::ooxml::OOXMLFastContextHandler::ResourceEnum_t TABLE
writerfilter/source/rtftok/rtfdocumentimpl.hxx:97
    enum writerfilter::rtftok::RTFFormFieldType TEXT
writerfilter/source/rtftok/rtfdocumentimpl.hxx:105
    enum writerfilter::rtftok::RTFBmpStyle PNG
writerfilter/source/rtftok/rtfdocumentimpl.hxx:106
    enum writerfilter::rtftok::RTFBmpStyle JPEG
writerfilter/source/rtftok/rtfdocumentimpl.hxx:114
    enum writerfilter::rtftok::RTFFieldStatus RESULT
writerperfect/source/writer/exp/xmlimp.hxx:60
    enum writerperfect::exp::PopupState Consumed
xmlhelp/source/cxxhelp/inc/tvread.hxx:44
    enum treeview::ConfigData::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/inc/tvread.hxx:43:9) PRODUCTNAME
xmlhelp/source/cxxhelp/inc/tvread.hxx:44
    enum treeview::ConfigData::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/inc/tvread.hxx:43:9) PRODUCTVERSION
xmlhelp/source/cxxhelp/inc/tvread.hxx:44
    enum treeview::ConfigData::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/inc/tvread.hxx:43:9) VENDORNAME
xmlhelp/source/cxxhelp/inc/tvread.hxx:44
    enum treeview::ConfigData::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/inc/tvread.hxx:43:9) VENDORVERSION
xmlhelp/source/cxxhelp/inc/tvread.hxx:45
    enum treeview::ConfigData::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/inc/tvread.hxx:43:9) VENDORSHORT
xmlhelp/source/cxxhelp/provider/databases.hxx:241
    enum chelp::Databases::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/provider/databases.hxx:240:9) PRODUCTNAME
xmlhelp/source/cxxhelp/provider/databases.hxx:242
    enum chelp::Databases::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/provider/databases.hxx:240:9) PRODUCTVERSION
xmlhelp/source/cxxhelp/provider/databases.hxx:243
    enum chelp::Databases::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/provider/databases.hxx:240:9) VENDORNAME
xmlhelp/source/cxxhelp/provider/databases.hxx:244
    enum chelp::Databases::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/provider/databases.hxx:240:9) VENDORVERSION
xmlhelp/source/cxxhelp/provider/databases.hxx:245
    enum chelp::Databases::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/provider/databases.hxx:240:9) VENDORSHORT
xmlhelp/source/cxxhelp/provider/databases.hxx:246
    enum chelp::Databases::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/provider/databases.hxx:240:9) NEWPRODUCTNAME
xmlhelp/source/cxxhelp/provider/databases.hxx:247
    enum chelp::Databases::(unnamed at /home/noel/libo-plugin/xmlhelp/source/cxxhelp/provider/databases.hxx:240:9) NEWPRODUCTVERSION
xmlhelp/source/treeview/tvread.cxx:82
    enum treeview::TVDom::Kind tree_node
xmlhelp/source/treeview/tvread.cxx:84
    enum treeview::TVDom::Kind other
xmloff/inc/EnhancedCustomShapeToken.hxx:90
    enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_CustomShapeEngine
xmloff/inc/EnhancedCustomShapeToken.hxx:91
    enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_CustomShapeData
xmloff/inc/EnhancedCustomShapeToken.hxx:103
    enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_Equation
xmloff/inc/EnhancedCustomShapeToken.hxx:107
    enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_Handle
xmloff/inc/EnhancedCustomShapeToken.hxx:145
    enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_GluePointLeavingDirections
xmloff/inc/EnhancedCustomShapeToken.hxx:155
    enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum EAS_NotFound
xmloff/inc/forms/property_ids.hxx:37
    enum xmloff::PropertyId PID_INVALID
xmloff/source/chart/SchXMLPlotAreaContext.hxx:229
    enum SchXMLWallFloorContext::ContextType CONTEXT_TYPE_FLOOR
xmloff/source/chart/SchXMLTools.hxx:55
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_LINE
xmloff/source/chart/SchXMLTools.hxx:56
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_AREA
xmloff/source/chart/SchXMLTools.hxx:57
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_CIRCLE
xmloff/source/chart/SchXMLTools.hxx:58
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_RING
xmloff/source/chart/SchXMLTools.hxx:59
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_SCATTER
xmloff/source/chart/SchXMLTools.hxx:60
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_RADAR
xmloff/source/chart/SchXMLTools.hxx:61
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_FILLED_RADAR
xmloff/source/chart/SchXMLTools.hxx:62
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_BAR
xmloff/source/chart/SchXMLTools.hxx:64
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_BUBBLE
xmloff/source/chart/SchXMLTools.hxx:65
    enum SchXMLTools::SchXMLChartTypeEnum XML_CHART_CLASS_ADDIN
xmloff/source/chart/transporttypes.hxx:31
    enum SchXMLCellType SCH_CELL_TYPE_UNKNOWN
xmloff/source/core/xmlenums.hxx:24
    enum XMLForbiddenCharactersEnum XML_FORBIDDEN_CHARACTER_LANGUAGE
xmloff/source/core/xmlenums.hxx:25
    enum XMLForbiddenCharactersEnum XML_FORBIDDEN_CHARACTER_COUNTRY
xmloff/source/core/xmlenums.hxx:26
    enum XMLForbiddenCharactersEnum XML_FORBIDDEN_CHARACTER_VARIANT
xmloff/source/core/xmlenums.hxx:27
    enum XMLForbiddenCharactersEnum XML_FORBIDDEN_CHARACTER_BEGIN_LINE
xmloff/source/core/xmlenums.hxx:28
    enum XMLForbiddenCharactersEnum XML_FORBIDDEN_CHARACTER_END_LINE
xmloff/source/core/xmlenums.hxx:34
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_NAME
xmloff/source/core/xmlenums.hxx:35
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_EXPORT_NAME
xmloff/source/core/xmlenums.hxx:36
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_SYMBOL_SET
xmloff/source/core/xmlenums.hxx:37
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_CHARACTER
xmloff/source/core/xmlenums.hxx:38
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_FONT_NAME
xmloff/source/core/xmlenums.hxx:39
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_CHAR_SET
xmloff/source/core/xmlenums.hxx:40
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_FAMILY
xmloff/source/core/xmlenums.hxx:41
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_PITCH
xmloff/source/core/xmlenums.hxx:42
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_WEIGHT
xmloff/source/core/xmlenums.hxx:43
    enum XMLSymbolDescriptorsEnum XML_SYMBOL_DESCRIPTOR_ITALIC
xmloff/source/draw/XMLNumberStyles.cxx:76
    enum DataStyleNumber Day
xmloff/source/draw/XMLNumberStyles.cxx:77
    enum DataStyleNumber DayLong
xmloff/source/draw/XMLNumberStyles.cxx:78
    enum DataStyleNumber MonthLong
xmloff/source/draw/XMLNumberStyles.cxx:79
    enum DataStyleNumber MonthText
xmloff/source/draw/XMLNumberStyles.cxx:80
    enum DataStyleNumber MonthLongText
xmloff/source/draw/XMLNumberStyles.cxx:81
    enum DataStyleNumber Year
xmloff/source/draw/XMLNumberStyles.cxx:82
    enum DataStyleNumber YearLong
xmloff/source/draw/XMLNumberStyles.cxx:83
    enum DataStyleNumber DayOfWeek
xmloff/source/draw/XMLNumberStyles.cxx:84
    enum DataStyleNumber DayOfWeekLong
xmloff/source/draw/XMLNumberStyles.cxx:85
    enum DataStyleNumber TextPoint
xmloff/source/draw/XMLNumberStyles.cxx:87
    enum DataStyleNumber TextCommaSpace
xmloff/source/draw/XMLNumberStyles.cxx:88
    enum DataStyleNumber TextPointSpace
xmloff/source/draw/XMLNumberStyles.cxx:89
    enum DataStyleNumber Hours
xmloff/source/draw/XMLNumberStyles.cxx:90
    enum DataStyleNumber Minutes
xmloff/source/draw/XMLNumberStyles.cxx:91
    enum DataStyleNumber TextColon
xmloff/source/draw/XMLNumberStyles.cxx:92
    enum DataStyleNumber AmPm
xmloff/source/draw/XMLNumberStyles.cxx:93
    enum DataStyleNumber Seconds
xmloff/source/draw/XMLNumberStyles.cxx:94
    enum DataStyleNumber Seconds_02
xmloff/source/forms/controlelement.hxx:52
    enum xmloff::OControlElement::ElementType GENERIC_CONTROL
xmloff/source/forms/formattributes.hxx:100
    enum EAFlags ControlEvents
xmloff/source/forms/formattributes.hxx:101
    enum EAFlags OnChange
xmloff/source/forms/formattributes.hxx:102
    enum EAFlags OnClick
xmloff/source/forms/formattributes.hxx:103
    enum EAFlags OnDoubleClick
xmloff/source/forms/formattributes.hxx:104
    enum EAFlags OnSelect
xmloff/source/forms/propertyexport.hxx:35
    enum BoolAttrFlags DefaultFalse
xmloff/source/style/PagePropertySetContext.hxx:26
    enum PageContextType Page
xmloff/source/text/txtparae.cxx:484
    enum (anonymous namespace)::eParagraphPropertyNamesEnumAuto NUMBERING_RULES_AUTO
xmloff/source/text/txtparae.cxx:485
    enum (anonymous namespace)::eParagraphPropertyNamesEnumAuto PARA_CONDITIONAL_STYLE_NAME_AUTO
xmloff/source/text/txtparae.cxx:486
    enum (anonymous namespace)::eParagraphPropertyNamesEnumAuto PARA_STYLE_NAME_AUTO
xmloff/source/text/txtparae.cxx:507
    enum (anonymous namespace)::eParagraphPropertyNamesEnum NUMBERING_IS_NUMBER
xmloff/source/text/txtparae.cxx:508
    enum (anonymous namespace)::eParagraphPropertyNamesEnum PARA_NUMBERING_STYLENAME
xmloff/source/text/txtparae.cxx:509
    enum (anonymous namespace)::eParagraphPropertyNamesEnum PARA_OUTLINE_LEVEL
xmloff/source/text/txtparae.cxx:510
    enum (anonymous namespace)::eParagraphPropertyNamesEnum PARA_CONDITIONAL_STYLE_NAME
xmloff/source/text/txtparae.cxx:511
    enum (anonymous namespace)::eParagraphPropertyNamesEnum PARA_STYLE_NAME
xmloff/source/text/txtparae.cxx:512
    enum (anonymous namespace)::eParagraphPropertyNamesEnum TEXT_SECTION
xmloff/source/text/txtparae.cxx:513
    enum (anonymous namespace)::eParagraphPropertyNamesEnum PARA_OUTLINE_CONTENT_VISIBLE
xmloff/source/text/XMLIndexTOCContext.hxx:42
    enum IndexTypeEnum TEXT_INDEX_UNKNOWN
xmloff/source/text/XMLSectionExport.cxx:1077
    enum (anonymous namespace)::TemplateTypeEnum TOK_TTYPE_INVALID
xmloff/source/text/XMLSectionExport.hxx:57
    enum SectionTypeEnum TEXT_SECTION_TYPE_UNKNOWN
xmloff/source/transform/AttrTransformerAction.hxx:26
    enum XMLAttrTransformerAction XML_ATACTION_EOT
xmloff/source/transform/AttrTransformerAction.hxx:123
    enum XMLAttrTransformerAction XML_ATACTION_USER_DEFINED
xmloff/source/transform/ElemTransformerAction.hxx:26
    enum XMLElemTransformerAction XML_ETACTION_EOT
xmloff/source/transform/FamilyType.hxx:25
    enum XMLFamilyType XML_FAMILY_TYPE_PRESENTATION
xmloff/source/transform/FamilyType.hxx:26
    enum XMLFamilyType XML_FAMILY_TYPE_DRAWING_PAGE
xmloff/source/transform/FamilyType.hxx:27
    enum XMLFamilyType XML_FAMILY_TYPE_MASTER_PAGE
xmloff/source/transform/FamilyType.hxx:28
    enum XMLFamilyType XML_FAMILY_TYPE_PAGE_LAYOUT
xmloff/source/transform/FamilyType.hxx:29
    enum XMLFamilyType XML_FAMILY_TYPE_HEADER_FOOTER
xmloff/source/transform/FamilyType.hxx:30
    enum XMLFamilyType XML_FAMILY_TYPE_TEXT
xmloff/source/transform/FamilyType.hxx:31
    enum XMLFamilyType XML_FAMILY_TYPE_PARAGRAPH
xmloff/source/transform/FamilyType.hxx:32
    enum XMLFamilyType XML_FAMILY_TYPE_RUBY
xmloff/source/transform/FamilyType.hxx:33
    enum XMLFamilyType XML_FAMILY_TYPE_SECTION
xmloff/source/transform/FamilyType.hxx:34
    enum XMLFamilyType XML_FAMILY_TYPE_TABLE
xmloff/source/transform/FamilyType.hxx:35
    enum XMLFamilyType XML_FAMILY_TYPE_TABLE_COLUMN
xmloff/source/transform/FamilyType.hxx:36
    enum XMLFamilyType XML_FAMILY_TYPE_TABLE_ROW
xmloff/source/transform/FamilyType.hxx:37
    enum XMLFamilyType XML_FAMILY_TYPE_TABLE_CELL
xmloff/source/transform/FamilyType.hxx:38
    enum XMLFamilyType XML_FAMILY_TYPE_LIST
xmloff/source/transform/FamilyType.hxx:39
    enum XMLFamilyType XML_FAMILY_TYPE_CHART
xmloff/source/transform/FamilyType.hxx:40
    enum XMLFamilyType XML_FAMILY_TYPE_DATA
xmloff/source/transform/FamilyType.hxx:41
    enum XMLFamilyType XML_FAMILY_TYPE_GRADIENT
xmloff/source/transform/FamilyType.hxx:42
    enum XMLFamilyType XML_FAMILY_TYPE_HATCH
xmloff/source/transform/FamilyType.hxx:43
    enum XMLFamilyType XML_FAMILY_TYPE_FILL_IMAGE
xmloff/source/transform/FamilyType.hxx:44
    enum XMLFamilyType XML_FAMILY_TYPE_STROKE_DASH
xmloff/source/transform/FamilyType.hxx:45
    enum XMLFamilyType XML_FAMILY_TYPE_MARKER
xmloff/source/transform/PropType.hxx:24
    enum XMLPropType XML_PROP_TYPE_GRAPHIC
xmloff/source/transform/PropType.hxx:25
    enum XMLPropType XML_PROP_TYPE_DRAWING_PAGE
xmloff/source/transform/PropType.hxx:26
    enum XMLPropType XML_PROP_TYPE_PAGE_LAYOUT
xmloff/source/transform/PropType.hxx:27
    enum XMLPropType XML_PROP_TYPE_HEADER_FOOTER
xmloff/source/transform/PropType.hxx:28
    enum XMLPropType XML_PROP_TYPE_TEXT
xmloff/source/transform/PropType.hxx:29
    enum XMLPropType XML_PROP_TYPE_PARAGRAPH
xmloff/source/transform/PropType.hxx:30
    enum XMLPropType XML_PROP_TYPE_RUBY
xmloff/source/transform/PropType.hxx:31
    enum XMLPropType XML_PROP_TYPE_SECTION
xmloff/source/transform/PropType.hxx:32
    enum XMLPropType XML_PROP_TYPE_TABLE
xmloff/source/transform/PropType.hxx:33
    enum XMLPropType XML_PROP_TYPE_TABLE_COLUMN
xmloff/source/transform/PropType.hxx:34
    enum XMLPropType XML_PROP_TYPE_TABLE_ROW
xmloff/source/transform/PropType.hxx:35
    enum XMLPropType XML_PROP_TYPE_TABLE_CELL
xmloff/source/transform/PropType.hxx:36
    enum XMLPropType XML_PROP_TYPE_LIST_LEVEL
xmloff/source/transform/PropType.hxx:37
    enum XMLPropType XML_PROP_TYPE_CHART
xmlsecurity/inc/biginteger.hxx:43
    enum xmlsecurity::EqualMode NOCOMPAT
xmlsecurity/inc/documentsignaturehelper.hxx:45
    enum DocumentSignatureAlgorithm OOo3_0
xmlsecurity/inc/xsecctl.hxx:192
    enum XSecController::InitializationState FAILTOINITIALIZED