summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/unusedfields.writeonly.results
blob: ccb576839eb03e6a93c01b2a3a4df7e3b2b592c1 (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
basctl/source/basicide/basicbox.hxx:69
    basctl::DocListenerBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/basidesh.hxx:85
    basctl::Shell m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/bastype2.hxx:180
    basctl::TreeListBox m_aNotifier class basctl::DocumentEventNotifier
basctl/source/inc/dlged.hxx:121
    basctl::DlgEditor pObjFac std::unique_ptr<DlgEdFactory>
basic/qa/cppunit/test_scanner.cxx:26
    (anonymous namespace)::Symbol line sal_uInt16
basic/qa/cppunit/test_scanner.cxx:27
    (anonymous namespace)::Symbol col1 sal_uInt16
basic/source/runtime/dllmgr.hxx:48
    SbiDllMgr impl_ std::unique_ptr<Impl>
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:56
    Data pMethod sal_uInt64
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:57
    Data pStack sal_uInt64 *
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:58
    Data nStack sal_uInt32
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:59
    Data pGPR sal_uInt64 *
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:60
    Data pFPR double *
bridges/source/cpp_uno/gcc3_linux_x86-64/cpp2uno.cxx:437
    bridges::cpp_uno::shared::VtableFactory::Slot fn void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:115
    __cxxabiv1::__cxa_exception exceptionDestructor void (*)(void *)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:116
    __cxxabiv1::__cxa_exception unexpectedHandler std::unexpected_handler
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:117
    __cxxabiv1::__cxa_exception terminateHandler std::terminate_handler
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:118
    __cxxabiv1::__cxa_exception nextException struct __cxxabiv1::__cxa_exception *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:119
    __cxxabiv1::__cxa_exception handlerCount int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:120
    __cxxabiv1::__cxa_exception handlerSwitchValue int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:121
    __cxxabiv1::__cxa_exception actionRecord const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:122
    __cxxabiv1::__cxa_exception languageSpecificData const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:123
    __cxxabiv1::__cxa_exception catchTemp void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:125
    __cxxabiv1::__cxa_exception unwindHeader struct _Unwind_Exception
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:135
    __cxxabiv1::__cxa_eh_globals uncaughtExceptions unsigned int
bridges/source/jni_uno/jni_java2uno.cxx:148
    jni_uno::largest n sal_Int64
bridges/source/jni_uno/jni_java2uno.cxx:149
    jni_uno::largest d double
bridges/source/jni_uno/jni_java2uno.cxx:150
    jni_uno::largest p void *
bridges/source/jni_uno/jni_java2uno.cxx:151
    jni_uno::largest a uno_Any
canvas/source/cairo/cairo_spritedevicehelper.hxx:77
    cairocanvas::SpriteDeviceHelper mbFullScreen _Bool
canvas/source/cairo/cairo_spritehelper.hxx:103
    cairocanvas::SpriteHelper mbTextureDirty _Bool
canvas/source/opengl/ogl_canvasbitmap.hxx:71
    oglcanvas::CanvasBitmap mbHasAlpha _Bool
canvas/source/opengl/ogl_spritedevicehelper.hxx:126
    oglcanvas::SpriteDeviceHelper mpDevice css::rendering::XGraphicDevice *
canvas/source/vcl/canvasbitmap.hxx:117
    vclcanvas::CanvasBitmap mxDevice css::uno::Reference<css::rendering::XGraphicDevice>
canvas/source/vcl/impltools.hxx:117
    vclcanvas::tools::LocalGuard aSolarGuard class SolarMutexGuard
chart2/inc/ChartModel.hxx:482
    chart::ChartModel mnStart sal_Int32
chart2/inc/ChartModel.hxx:483
    chart::ChartModel mnEnd sal_Int32
chart2/source/controller/inc/RangeSelectionListener.hxx:62
    chart::RangeSelectionListener m_aControllerLockGuard class chart::ControllerLockGuardUNO
chart2/source/controller/main/ElementSelector.hxx:37
    chart::ListBoxEntryData nHierarchyDepth sal_Int32
chart2/source/inc/LifeTime.hxx:198
    apphelper::LifeTimeGuard m_guard osl::ClearableMutexGuard
chart2/source/view/charttypes/PieChart.hxx:129
    chart::PieChart::PieLabelInfo fValue double
chart2/source/view/inc/GL3DRenderer.hxx:54
    chart::opengl3D::MaterialParameters pad float
chart2/source/view/inc/GL3DRenderer.hxx:55
    chart::opengl3D::MaterialParameters pad1 float
chart2/source/view/inc/GL3DRenderer.hxx:63
    chart::opengl3D::LightSource lightPower float
chart2/source/view/inc/GL3DRenderer.hxx:64
    chart::opengl3D::LightSource pad1 float
chart2/source/view/inc/GL3DRenderer.hxx:65
    chart::opengl3D::LightSource pad2 float
chart2/source/view/inc/GL3DRenderer.hxx:66
    chart::opengl3D::LightSource pad3 float
chart2/source/view/inc/GL3DRenderer.hxx:80
    chart::opengl3D::Polygon3DInfo twoSidesLighting _Bool
chart2/source/view/inc/GL3DRenderer.hxx:94
    chart::opengl3D::Extrude3DInfo twoSidesLighting _Bool
chart2/source/view/inc/GL3DRenderer.hxx:123
    chart::opengl3D::RoundBarMesh topThreshold float
codemaker/source/cppumaker/dependencies.hxx:105
    codemaker::cppumaker::Dependencies m_voidDependency _Bool
codemaker/source/cppumaker/dependencies.hxx:111
    codemaker::cppumaker::Dependencies m_unsignedLongDependency _Bool
codemaker/source/cppumaker/dependencies.hxx:114
    codemaker::cppumaker::Dependencies m_floatDependency _Bool
codemaker/source/cppumaker/dependencies.hxx:115
    codemaker::cppumaker::Dependencies m_doubleDependency _Bool
comphelper/source/container/enumerablemap.cxx:299
    comphelper::MapEnumeration m_xKeepMapAlive Reference<class com::sun::star::uno::XInterface>
configmgr/source/components.cxx:163
    configmgr::Components::WriteThread reference_ rtl::Reference<WriteThread> *
connectivity/source/drivers/evoab2/EApi.h:122
    (anonymous) address_format char *
connectivity/source/drivers/evoab2/EApi.h:126
    (anonymous) ext char *
connectivity/source/drivers/evoab2/NPreparedStatement.hxx:51
    connectivity::evoab::OEvoabPreparedStatement::Parameter aValue css::uno::Any
connectivity/source/drivers/evoab2/NPreparedStatement.hxx:52
    connectivity::evoab::OEvoabPreparedStatement::Parameter nDataType sal_Int32
connectivity/source/drivers/evoab2/NPreparedStatement.hxx:60
    connectivity::evoab::OEvoabPreparedStatement m_aParameters std::vector<Parameter>
connectivity/source/drivers/evoab2/NResultSet.hxx:91
    connectivity::evoab::OEvoabResultSet m_aStatement css::uno::WeakReferenceHelper
connectivity/source/drivers/evoab2/NStatement.hxx:58
    connectivity::evoab::FieldSort bAscending _Bool
connectivity/source/drivers/evoab2/NTable.hxx:34
    connectivity::evoab::OEvoabTable m_xMetaData css::uno::Reference<css::sdbc::XDatabaseMetaData>
connectivity/source/drivers/mork/MDatabaseMetaData.hxx:29
    connectivity::mork::ODatabaseMetaData m_pMetaDataHelper std::unique_ptr<MDatabaseMetaDataHelper>
connectivity/source/drivers/mork/MorkParser.hxx:133
    MorkParser error_ enum MorkErrors
connectivity/source/drivers/mork/MResultSet.hxx:232
    connectivity::mork::OResultSet m_nUpdatedRow sal_Int32
connectivity/source/drivers/mozab/bootstrap/MNSProfileDiscover.hxx:55
    connectivity::mozab::ProfileStruct product enum com::sun::star::mozilla::MozillaProductType
connectivity/source/inc/dbase/DTable.hxx:62
    connectivity::dbase::ODbaseTable::DBFHeader dateElems sal_uInt8 [3]
connectivity/source/inc/dbase/DTable.hxx:86
    connectivity::dbase::ODbaseTable::DBFColumn db_adr sal_uInt32
connectivity/source/inc/file/fcomp.hxx:46
    connectivity::file::OPredicateCompiler m_bORCondition _Bool
connectivity/source/inc/file/FConnection.hxx:63
    connectivity::file::OConnection m_bClosed _Bool
connectivity/source/inc/file/FResultSet.hxx:116
    connectivity::file::OResultSet m_bEOF _Bool
connectivity/source/inc/odbc/ODatabaseMetaData.hxx:41
    connectivity::odbc::ODatabaseMetaData m_bOdbc3 _Bool
connectivity/source/inc/odbc/OResultSet.hxx:147
    connectivity::odbc::OResultSet m_bInserting _Bool
connectivity/source/inc/OTypeInfo.hxx:31
    connectivity::OTypeInfo aTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:32
    connectivity::OTypeInfo aLiteralPrefix class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:33
    connectivity::OTypeInfo aLiteralSuffix class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:34
    connectivity::OTypeInfo aCreateParams class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:35
    connectivity::OTypeInfo aLocalTypeName class rtl::OUString
connectivity/source/inc/OTypeInfo.hxx:37
    connectivity::OTypeInfo nPrecision sal_Int32
connectivity/source/inc/OTypeInfo.hxx:39
    connectivity::OTypeInfo nMaximumScale sal_Int16
connectivity/source/inc/OTypeInfo.hxx:40
    connectivity::OTypeInfo nMinimumScale sal_Int16
connectivity/source/inc/OTypeInfo.hxx:43
    connectivity::OTypeInfo nSearchType sal_Int16
connectivity/source/inc/OTypeInfo.hxx:44
    connectivity::OTypeInfo nNumPrecRadix sal_Int16
connectivity/source/inc/OTypeInfo.hxx:46
    connectivity::OTypeInfo bCurrency _Bool
connectivity/source/inc/OTypeInfo.hxx:47
    connectivity::OTypeInfo bAutoIncrement _Bool
connectivity/source/inc/OTypeInfo.hxx:48
    connectivity::OTypeInfo bNullable _Bool
connectivity/source/inc/OTypeInfo.hxx:49
    connectivity::OTypeInfo bCaseSensitive _Bool
connectivity/source/inc/OTypeInfo.hxx:50
    connectivity::OTypeInfo bUnsigned _Bool
cppcanvas/source/mtfrenderer/emfpbrush.hxx:102
    cppcanvas::internal::EMFPBrush wrapMode sal_Int32
cppcanvas/source/mtfrenderer/emfppen.hxx:41
    cppcanvas::internal::EMFPPen pen_transformation struct cppcanvas::internal::XForm
cppcanvas/source/mtfrenderer/emfppen.hxx:46
    cppcanvas::internal::EMFPPen mitterLimit float
cppcanvas/source/mtfrenderer/emfppen.hxx:48
    cppcanvas::internal::EMFPPen dashCap sal_Int32
cppcanvas/source/mtfrenderer/emfppen.hxx:49
    cppcanvas::internal::EMFPPen dashOffset float
cppcanvas/source/mtfrenderer/emfppen.hxx:52
    cppcanvas::internal::EMFPPen alignment sal_Int32
cppcanvas/source/mtfrenderer/emfppen.hxx:54
    cppcanvas::internal::EMFPPen compoundArray float *
cppu/source/threadpool/threadpool.cxx:377
    _uno_ThreadPool dummy sal_Int32
cppu/source/typelib/typelib.cxx:61
    AlignSize_Impl nInt16 sal_Int16
cppu/source/uno/check.cxx:38
    (anonymous namespace)::C1 n1 sal_Int16
cppu/source/uno/check.cxx:67
    (anonymous namespace)::D d sal_Int16
cppu/source/uno/check.cxx:68
    (anonymous namespace)::D e sal_Int32
cppu/source/uno/check.cxx:72
    (anonymous namespace)::E a sal_Bool
cppu/source/uno/check.cxx:73
    (anonymous namespace)::E b sal_Bool
cppu/source/uno/check.cxx:74
    (anonymous namespace)::E c sal_Bool
cppu/source/uno/check.cxx:75
    (anonymous namespace)::E d sal_Int16
cppu/source/uno/check.cxx:76
    (anonymous namespace)::E e sal_Int32
cppu/source/uno/check.cxx:81
    (anonymous namespace)::M n sal_Int32
cppu/source/uno/check.cxx:82
    (anonymous namespace)::M o sal_Int16
cppu/source/uno/check.cxx:91
    (anonymous namespace)::N2 m struct (anonymous namespace)::M
cppu/source/uno/check.cxx:92
    (anonymous namespace)::N2 p sal_Int16
cppu/source/uno/check.cxx:97
    (anonymous namespace)::O p double
cppu/source/uno/check.cxx:98
    (anonymous namespace)::O q sal_Int16
cppu/source/uno/check.cxx:107
    (anonymous namespace)::P p2 double
cppu/source/uno/check.cxx:115
    (anonymous namespace)::second a int
cppu/source/uno/check.cxx:120
    (anonymous namespace)::AlignSize_Impl nInt16 sal_Int16
cppu/source/uno/check.cxx:121
    (anonymous namespace)::AlignSize_Impl dDouble double
cppu/source/uno/check.cxx:126
    (anonymous namespace)::Char1 c1 char
cppu/source/uno/check.cxx:130
    (anonymous namespace)::Char2 c2 char
cppu/source/uno/check.cxx:134
    (anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:138
    (anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
cppuhelper/source/access_control.cxx:80
    cppu::(anonymous namespace)::permission m_str1 rtl_uString *
cppuhelper/source/access_control.cxx:81
    cppu::(anonymous namespace)::permission m_str2 rtl_uString *
cui/source/inc/cuicharmap.hxx:83
    SvxCharacterMap bOne _Bool
cui/source/inc/cuihyperdlg.hxx:47
    SvxHlinkCtrl aRdOnlyForwarder class SfxStatusForwarder
cui/source/inc/cuihyperdlg.hxx:67
    SvxHpLinkDlg maCtrl class SvxHlinkCtrl
cui/source/inc/scriptdlg.hxx:115
    SFEntry nType sal_uInt8
dbaccess/source/core/dataaccess/documentdefinition.cxx:289
    dbaccess::LifetimeCoupler m_xClient Reference<class com::sun::star::uno::XInterface>
dbaccess/source/sdbtools/connection/connectiondependent.hxx:116
    sdbtools::ConnectionDependentComponent::EntryGuard m_aMutexGuard ::osl::MutexGuard
dbaccess/source/sdbtools/connection/connectiontools.hxx:48
    sdbtools::ConnectionTools m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/sdbtools/connection/objectnames.hxx:44
    sdbtools::ObjectNames m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/sdbtools/connection/tablename.cxx:56
    sdbtools::TableName_Impl m_aModuleClient class sdbtools::SdbtClient
dbaccess/source/ui/inc/TypeInfo.hxx:87
    dbaui::OTypeInfo bCaseSensitive _Bool
dbaccess/source/ui/inc/TypeInfo.hxx:88
    dbaui::OTypeInfo bUnsigned _Bool
dbaccess/source/ui/misc/dbaundomanager.cxx:137
    dbaui::UndoManagerMethodGuard m_aGuard ::osl::ResettableMutexGuard
dbaccess/source/ui/querydesign/QTableConnectionData.hxx:35
    dbaui::OQueryTableConnectionData m_eFromType enum dbaui::ETableFieldType
dbaccess/source/ui/querydesign/QTableConnectionData.hxx:36
    dbaui::OQueryTableConnectionData m_eDestType enum dbaui::ETableFieldType
desktop/qa/desktop_lib/test_desktop_lib.cxx:174
    DesktopLOKTest m_bModified _Bool
desktop/source/deployment/gui/dp_gui_updatedata.hxx:74
    dp_gui::UpdateData m_nID sal_uInt16
desktop/source/deployment/gui/dp_gui_updatedialog.cxx:152
    dp_gui::UpdateDialog::DisabledUpdate m_nID sal_uInt16
desktop/source/deployment/gui/dp_gui_updatedialog.cxx:158
    dp_gui::UpdateDialog::SpecificError m_nID sal_uInt16
desktop/source/deployment/gui/dp_gui_updateinstalldialog.cxx:120
    dp_gui::UpdateCommandEnv m_installThread ::rtl::Reference<UpdateInstallDialog::Thread>
desktop/unx/source/splashx.c:369
     input_mode long
editeng/source/editeng/impedit.hxx:515
    ImpEditEngine bImpConvertFirstCall _Bool
embeddedobj/source/inc/oleembobj.hxx:127
    OleEmbeddedObject m_nTargetState sal_Int32
embeddedobj/source/inc/oleembobj.hxx:139
    OleEmbeddedObject m_xClosePreventer css::uno::Reference<css::util::XCloseListener>
embeddedobj/source/inc/oleembobj.hxx:161
    OleEmbeddedObject m_bHasSizeToSet _Bool
embeddedobj/source/inc/oleembobj.hxx:162
    OleEmbeddedObject m_aSizeToSet css::awt::Size
embeddedobj/source/inc/oleembobj.hxx:163
    OleEmbeddedObject m_nAspectToSet sal_Int64
embeddedobj/source/inc/oleembobj.hxx:168
    OleEmbeddedObject m_bGotStatus _Bool
embeddedobj/source/inc/oleembobj.hxx:169
    OleEmbeddedObject m_nStatus sal_Int64
embeddedobj/source/inc/oleembobj.hxx:170
    OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:184
    OleEmbeddedObject m_bFromClipboard _Bool
extensions/source/abpilot/datasourcehandling.cxx:303
    abp::ODataSourceImpl bTablesUpToDate _Bool
extensions/source/propctrlr/propertyhandler.hxx:80
    pcr::PropertyHandler m_aEnsureResAccess class pcr::PcrClient
extensions/source/propctrlr/usercontrol.hxx:102
    pcr::OFormattedNumericControl m_nLastDecimalDigits sal_Int32
extensions/source/scanner/scanner.hxx:46
    ScannerManager maProtector osl::Mutex
extensions/source/scanner/scanner.hxx:47
    ScannerManager mpData void *
filter/source/flash/swfexporter.hxx:49
    swf::ShapeInfo mnWidth sal_Int32
filter/source/flash/swfexporter.hxx:50
    swf::ShapeInfo mnHeight sal_Int32
filter/source/graphic/GraphicExportDialog.hxx:50
    GraphicExportDialog meFieldUnit enum FieldUnit
filter/source/graphicfilter/eps/eps.cxx:114
    PSWriter nBoundingX2 double
filter/source/graphicfilter/eps/eps.cxx:138
    PSWriter nNextChrSetId sal_uInt8
filter/source/graphicfilter/icgm/bitmap.hxx:47
    CGMBitmapDescriptor mnCompressionMode sal_uInt32
filter/source/graphicfilter/icgm/bundles.hxx:74
    MarkerBundle eMarkerType enum MarkerType
filter/source/graphicfilter/icgm/bundles.hxx:75
    MarkerBundle nMarkerSize double
filter/source/graphicfilter/icgm/bundles.hxx:108
    TextBundle eTextPrecision enum TextPrecision
filter/source/graphicfilter/icgm/bundles.hxx:109
    TextBundle nCharacterExpansion double
filter/source/graphicfilter/icgm/bundles.hxx:110
    TextBundle nCharacterSpacing double
filter/source/graphicfilter/icgm/bundles.hxx:129
    FillBundle nFillPatternIndex long
filter/source/graphicfilter/icgm/cgm.hxx:61
    CGM mbMetaFile _Bool
filter/source/graphicfilter/icgm/cgm.hxx:64
    CGM mbPictureBody _Bool
filter/source/graphicfilter/icgm/chart.hxx:33
    TextEntry nTypeOfText sal_uInt16
filter/source/graphicfilter/icgm/chart.hxx:34
    TextEntry nRowOrLineNum sal_uInt16
filter/source/graphicfilter/icgm/chart.hxx:35
    TextEntry nColumnNum sal_uInt16
filter/source/graphicfilter/icgm/chart.hxx:36
    TextEntry nZoneSize sal_uInt16
filter/source/graphicfilter/icgm/chart.hxx:37
    TextEntry nLineType sal_uInt16
filter/source/graphicfilter/icgm/chart.hxx:38
    TextEntry nAttributes sal_uInt16
filter/source/graphicfilter/icgm/chart.hxx:44
    DataNode nBoxX1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:45
    DataNode nBoxY1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:46
    DataNode nBoxX2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:47
    DataNode nBoxY2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:67
    CGMChart mnCurrentFileType sal_Int8
filter/source/graphicfilter/icgm/elements.hxx:35
    CGMElements nMetaFileVersion long
filter/source/graphicfilter/icgm/elements.hxx:44
    CGMElements eScalingMode enum ScalingMode
filter/source/graphicfilter/icgm/elements.hxx:45
    CGMElements nScalingFactor double
filter/source/graphicfilter/icgm/elements.hxx:52
    CGMElements aVDCExtentMaximum struct FloatRect
filter/source/graphicfilter/icgm/elements.hxx:57
    CGMElements eDeviceViewPortMapH enum DeviceViewPortMapH
filter/source/graphicfilter/icgm/elements.hxx:58
    CGMElements eDeviceViewPortMapV enum DeviceViewPortMapV
filter/source/graphicfilter/icgm/elements.hxx:61
    CGMElements nMitreLimit double
filter/source/graphicfilter/icgm/elements.hxx:63
    CGMElements eClipIndicator enum ClipIndicator
filter/source/graphicfilter/icgm/elements.hxx:83
    CGMElements eLineCapType enum LineCapType
filter/source/graphicfilter/icgm/elements.hxx:84
    CGMElements eLineJoinType enum LineJoinType
filter/source/graphicfilter/icgm/elements.hxx:103
    CGMElements nUnderlineColor sal_uInt32
filter/source/graphicfilter/icgm/elements.hxx:104
    CGMElements eTextPath enum TextPath
filter/source/graphicfilter/icgm/elements.hxx:107
    CGMElements nTextAlignmentHCont double
filter/source/graphicfilter/icgm/elements.hxx:108
    CGMElements nTextAlignmentVCont double
filter/source/graphicfilter/icgm/elements.hxx:109
    CGMElements nCharacterSetIndex long
filter/source/graphicfilter/icgm/elements.hxx:110
    CGMElements nAlternateCharacterSetIndex long
filter/source/graphicfilter/icgm/elements.hxx:111
    CGMElements eCharacterCodingA enum CharacterCodingA
filter/source/graphicfilter/icgm/elements.hxx:127
    CGMElements bSegmentCount _Bool
filter/source/graphicfilter/idxf/dxf2mtf.hxx:43
    DXF2GDIMetaFile nMaxPercent sal_uLong
filter/source/graphicfilter/idxf/dxf2mtf.hxx:44
    DXF2GDIMetaFile nLastPercent sal_uLong
filter/source/graphicfilter/idxf/dxf2mtf.hxx:45
    DXF2GDIMetaFile nMainEntitiesCount sal_uLong
filter/source/graphicfilter/idxf/dxfblkrd.hxx:39
    DXFBlock nFlags long
filter/source/graphicfilter/idxf/dxfentrd.hxx:66
    DXFBasicEntity fElevation double
filter/source/graphicfilter/idxf/dxfentrd.hxx:194
    DXFTextEntity fOblAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:196
    DXFTextEntity nGenFlags long
filter/source/graphicfilter/idxf/dxfentrd.hxx:197
    DXFTextEntity nHorzJust long
filter/source/graphicfilter/idxf/dxfentrd.hxx:198
    DXFTextEntity nVertJust long
filter/source/graphicfilter/idxf/dxfentrd.hxx:199
    DXFTextEntity aAlign class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:212
    DXFShapeEntity aP0 class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:213
    DXFShapeEntity fSize double
filter/source/graphicfilter/idxf/dxfentrd.hxx:215
    DXFShapeEntity fRotAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:216
    DXFShapeEntity fXScale double
filter/source/graphicfilter/idxf/dxfentrd.hxx:217
    DXFShapeEntity fOblAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:230
    DXFInsertEntity nAttrFlag long
filter/source/graphicfilter/idxf/dxfentrd.hxx:237
    DXFInsertEntity nColCount long
filter/source/graphicfilter/idxf/dxfentrd.hxx:238
    DXFInsertEntity nRowCount long
filter/source/graphicfilter/idxf/dxfentrd.hxx:239
    DXFInsertEntity fColSpace double
filter/source/graphicfilter/idxf/dxfentrd.hxx:240
    DXFInsertEntity fRowSpace double
filter/source/graphicfilter/idxf/dxfentrd.hxx:253
    DXFAttDefEntity aP0 class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:254
    DXFAttDefEntity fHeight double
filter/source/graphicfilter/idxf/dxfentrd.hxx:258
    DXFAttDefEntity nAttrFlags long
filter/source/graphicfilter/idxf/dxfentrd.hxx:259
    DXFAttDefEntity nFieldLen long
filter/source/graphicfilter/idxf/dxfentrd.hxx:260
    DXFAttDefEntity fRotAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:261
    DXFAttDefEntity fXScale double
filter/source/graphicfilter/idxf/dxfentrd.hxx:262
    DXFAttDefEntity fOblAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:264
    DXFAttDefEntity nGenFlags long
filter/source/graphicfilter/idxf/dxfentrd.hxx:265
    DXFAttDefEntity nHorzJust long
filter/source/graphicfilter/idxf/dxfentrd.hxx:266
    DXFAttDefEntity nVertJust long
filter/source/graphicfilter/idxf/dxfentrd.hxx:267
    DXFAttDefEntity aAlign class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:285
    DXFAttribEntity nFieldLen long
filter/source/graphicfilter/idxf/dxfentrd.hxx:288
    DXFAttribEntity fOblAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:290
    DXFAttribEntity nGenFlags long
filter/source/graphicfilter/idxf/dxfentrd.hxx:291
    DXFAttribEntity nHorzJust long
filter/source/graphicfilter/idxf/dxfentrd.hxx:292
    DXFAttribEntity nVertJust long
filter/source/graphicfilter/idxf/dxfentrd.hxx:293
    DXFAttribEntity aAlign class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:306
    DXFPolyLineEntity fElevation double
filter/source/graphicfilter/idxf/dxfentrd.hxx:308
    DXFPolyLineEntity fSWidth double
filter/source/graphicfilter/idxf/dxfentrd.hxx:309
    DXFPolyLineEntity fEWidth double
filter/source/graphicfilter/idxf/dxfentrd.hxx:310
    DXFPolyLineEntity nMeshMCount long
filter/source/graphicfilter/idxf/dxfentrd.hxx:311
    DXFPolyLineEntity nMeshNCount long
filter/source/graphicfilter/idxf/dxfentrd.hxx:312
    DXFPolyLineEntity nMDensity long
filter/source/graphicfilter/idxf/dxfentrd.hxx:313
    DXFPolyLineEntity nNDensity long
filter/source/graphicfilter/idxf/dxfentrd.hxx:314
    DXFPolyLineEntity nCSSType long
filter/source/graphicfilter/idxf/dxfentrd.hxx:331
    DXFLWPolyLineEntity fConstantWidth double
filter/source/graphicfilter/idxf/dxfentrd.hxx:332
    DXFLWPolyLineEntity fStartWidth double
filter/source/graphicfilter/idxf/dxfentrd.hxx:333
    DXFLWPolyLineEntity fEndWidth double
filter/source/graphicfilter/idxf/dxfentrd.hxx:367
    DXFEdgeTypeCircularArc aCenter class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:368
    DXFEdgeTypeCircularArc fRadius double
filter/source/graphicfilter/idxf/dxfentrd.hxx:369
    DXFEdgeTypeCircularArc fStartAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:370
    DXFEdgeTypeCircularArc fEndAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:371
    DXFEdgeTypeCircularArc nIsCounterClockwiseFlag sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:378
    DXFEdgeTypeEllipticalArc aCenter class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:379
    DXFEdgeTypeEllipticalArc aEndPoint class DXFVector
filter/source/graphicfilter/idxf/dxfentrd.hxx:380
    DXFEdgeTypeEllipticalArc fLength double
filter/source/graphicfilter/idxf/dxfentrd.hxx:381
    DXFEdgeTypeEllipticalArc fStartAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:382
    DXFEdgeTypeEllipticalArc fEndAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:383
    DXFEdgeTypeEllipticalArc nIsCounterClockwiseFlag sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:391
    DXFEdgeTypeSpline nDegree sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:392
    DXFEdgeTypeSpline nRational sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:393
    DXFEdgeTypeSpline nPeriodic sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:394
    DXFEdgeTypeSpline nKnotCount sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:395
    DXFEdgeTypeSpline nControlCount sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:404
    DXFBoundaryPathData nHasBulgeFlag sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:405
    DXFBoundaryPathData nIsClosedFlag sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:407
    DXFBoundaryPathData fBulge double
filter/source/graphicfilter/idxf/dxfentrd.hxx:408
    DXFBoundaryPathData nSourceBoundaryObjects sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:409
    DXFBoundaryPathData nEdgeCount sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:430
    DXFHatchEntity nFlags sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:431
    DXFHatchEntity nAssociativityFlag sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:433
    DXFHatchEntity nHatchStyle sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:434
    DXFHatchEntity nHatchPatternType sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:435
    DXFHatchEntity fHatchPatternAngle double
filter/source/graphicfilter/idxf/dxfentrd.hxx:436
    DXFHatchEntity fHatchPatternScale double
filter/source/graphicfilter/idxf/dxfentrd.hxx:437
    DXFHatchEntity nHatchDoubleFlag sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:438
    DXFHatchEntity nHatchPatternDefinitionLines sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:439
    DXFHatchEntity fPixelSize double
filter/source/graphicfilter/idxf/dxfentrd.hxx:440
    DXFHatchEntity nNumberOfSeedPoints sal_Int32
filter/source/graphicfilter/idxf/dxfentrd.hxx:456
    DXFVertexEntity fSWidth double
filter/source/graphicfilter/idxf/dxfentrd.hxx:457
    DXFVertexEntity fEWidth double
filter/source/graphicfilter/idxf/dxfentrd.hxx:458
    DXFVertexEntity fBulge double
filter/source/graphicfilter/idxf/dxfentrd.hxx:459
    DXFVertexEntity nFlags long
filter/source/graphicfilter/idxf/dxfentrd.hxx:460
    DXFVertexEntity fCFTDir double
filter/source/graphicfilter/idxf/dxfgrprd.hxx:74
    DXFGroupReader nFileSize sal_uLong
filter/source/graphicfilter/idxf/dxftblrd.hxx:39
    DXFLType nFlags long
filter/source/graphicfilter/idxf/dxftblrd.hxx:42
    DXFLType fPatternLength double
filter/source/graphicfilter/idxf/dxftblrd.hxx:60
    DXFLayer nFlags long
filter/source/graphicfilter/idxf/dxftblrd.hxx:79
    DXFStyle nFlags long
filter/source/graphicfilter/idxf/dxftblrd.hxx:80
    DXFStyle fHeight double
filter/source/graphicfilter/idxf/dxftblrd.hxx:81
    DXFStyle fWidthFak double
filter/source/graphicfilter/idxf/dxftblrd.hxx:82
    DXFStyle fOblAngle double
filter/source/graphicfilter/idxf/dxftblrd.hxx:83
    DXFStyle nTextGenFlags long
filter/source/graphicfilter/idxf/dxftblrd.hxx:84
    DXFStyle fLastHeightUsed double
filter/source/graphicfilter/idxf/dxftblrd.hxx:103
    DXFVPort nFlags long
filter/source/graphicfilter/idxf/dxftblrd.hxx:104
    DXFVPort fMinX double
filter/source/graphicfilter/idxf/dxftblrd.hxx:105
    DXFVPort fMinY double
filter/source/graphicfilter/idxf/dxftblrd.hxx:106
    DXFVPort fMaxX double
filter/source/graphicfilter/idxf/dxftblrd.hxx:107
    DXFVPort fMaxY double
filter/source/graphicfilter/idxf/dxftblrd.hxx:110
    DXFVPort fSnapBaseX double
filter/source/graphicfilter/idxf/dxftblrd.hxx:111
    DXFVPort fSnapBaseY double
filter/source/graphicfilter/idxf/dxftblrd.hxx:112
    DXFVPort fSnapSapcingX double
filter/source/graphicfilter/idxf/dxftblrd.hxx:113
    DXFVPort fSnapSpacingY double
filter/source/graphicfilter/idxf/dxftblrd.hxx:114
    DXFVPort fGridX double
filter/source/graphicfilter/idxf/dxftblrd.hxx:115
    DXFVPort fGridY double
filter/source/graphicfilter/idxf/dxftblrd.hxx:120
    DXFVPort fLensLength double
filter/source/graphicfilter/idxf/dxftblrd.hxx:121
    DXFVPort fFrontClipPlane double
filter/source/graphicfilter/idxf/dxftblrd.hxx:122
    DXFVPort fBackClipPlane double
filter/source/graphicfilter/idxf/dxftblrd.hxx:123
    DXFVPort fTwistAngle double
filter/source/graphicfilter/idxf/dxftblrd.hxx:124
    DXFVPort nStatus long
filter/source/graphicfilter/idxf/dxftblrd.hxx:125
    DXFVPort nID long
filter/source/graphicfilter/idxf/dxftblrd.hxx:126
    DXFVPort nMode long
filter/source/graphicfilter/idxf/dxftblrd.hxx:127
    DXFVPort nCircleZoomPercent long
filter/source/graphicfilter/idxf/dxftblrd.hxx:128
    DXFVPort nFastZoom long
filter/source/graphicfilter/idxf/dxftblrd.hxx:129
    DXFVPort nUCSICON long
filter/source/graphicfilter/idxf/dxftblrd.hxx:130
    DXFVPort nSnap long
filter/source/graphicfilter/idxf/dxftblrd.hxx:131
    DXFVPort nGrid long
filter/source/graphicfilter/idxf/dxftblrd.hxx:132
    DXFVPort nSnapStyle long
filter/source/graphicfilter/idxf/dxftblrd.hxx:133
    DXFVPort nSnapIsopair long
filter/source/graphicfilter/ios2met/ios2met.cxx:223
    OSArea eBgMix enum RasterOp
filter/source/graphicfilter/ipict/ipict.cxx:74
    PictReaderInternal::Pattern penStyle enum PenStyle
filter/source/graphicfilter/ipict/ipict.cxx:75
    PictReaderInternal::Pattern brushStyle enum BrushStyle
filter/source/graphicfilter/ipsd/ipsd.cxx:44
    (anonymous) nPad1 sal_uInt32
filter/source/graphicfilter/ipsd/ipsd.cxx:45
    (anonymous) nPad2 sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:33
    TGAFileHeader nColorMapFirstEntryIndex sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:36
    TGAFileHeader nColorMapXOrigin sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:37
    TGAFileHeader nColorMapYOrigin sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:49
    TGAFileFooter nDeveloperDirectoryOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:51
    TGAFileFooter nPadByte sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:52
    TGAFileFooter nStringTerminator sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:60
    TGAExtension sAuthorName char [41]
filter/source/graphicfilter/itga/itga.cxx:61
    TGAExtension sAuthorComment char [324]
filter/source/graphicfilter/itga/itga.cxx:62
    TGAExtension sDateTimeStamp char [12]
filter/source/graphicfilter/itga/itga.cxx:63
    TGAExtension sJobNameID char [41]
filter/source/graphicfilter/itga/itga.cxx:64
    TGAExtension sSoftwareID char [41]
filter/source/graphicfilter/itga/itga.cxx:65
    TGAExtension nSoftwareVersionNumber sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:66
    TGAExtension nSoftwareVersionLetter sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:67
    TGAExtension nKeyColor sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:68
    TGAExtension nPixelAspectRatioNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:69
    TGAExtension nPixelAspectRatioDeNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:70
    TGAExtension nGammaValueNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:71
    TGAExtension nGammaValueDeNumerator sal_uInt16
filter/source/graphicfilter/itga/itga.cxx:72
    TGAExtension nColorCorrectionOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:73
    TGAExtension nPostageStampOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:74
    TGAExtension nScanLineOffset sal_uInt32
filter/source/graphicfilter/itga/itga.cxx:75
    TGAExtension nAttributesType sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:92
    TGAReader mnTGAVersion sal_uLong
filter/source/graphicfilter/itiff/itiff.cxx:77
    TIFFReader nCellWidth sal_uInt32
filter/source/graphicfilter/itiff/itiff.cxx:78
    TIFFReader nCellLength sal_uInt32
filter/source/msfilter/eschesdo.hxx:116
    ImplEESdrWriter mbIsTitlePossible _Bool
filter/source/svg/svgwriter.hxx:332
    SVGActionWriter mbClipAttrChanged _Bool
filter/source/t602/t602filter.hxx:142
    T602ImportFilter::T602ImportFilter::format602struct tb sal_Int16
filter/source/t602/t602filter.hxx:144
    T602ImportFilter::T602ImportFilter::format602struct pn sal_Int16
filter/source/t602/t602filter.hxx:146
    T602ImportFilter::T602ImportFilter::format602struct lm sal_Int16
filter/source/t602/t602filter.hxx:147
    T602ImportFilter::T602ImportFilter::format602struct rm sal_Int16
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:71
    XMLFilterListBox m_aEnsureResMgr class EnsureResMgr
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:130
    XMLFilterSettingsDialog maEnsureResMgr class EnsureResMgr
framework/inc/dispatch/oxt_handler.hxx:92
    framework::Oxt_Handler m_xSelfHold css::uno::Reference<css::uno::XInterface>
framework/inc/services/layoutmanager.hxx:262
    framework::LayoutManager m_bGlobalSettings _Bool
framework/inc/services/layoutmanager.hxx:276
    framework::LayoutManager m_pGlobalSettings class framework::GlobalSettings *
framework/source/layoutmanager/toolbarlayoutmanager.hxx:281
    framework::ToolbarLayoutManager m_pGlobalSettings class framework::GlobalSettings *
framework/source/layoutmanager/toolbarlayoutmanager.hxx:285
    framework::ToolbarLayoutManager m_bGlobalSettings _Bool
framework/source/services/frame.cxx:420
    (anonymous namespace)::Frame m_pWindowCommandDispatch class framework::WindowCommandDispatch *
hwpfilter/source/drawdef.h:69
    BAREHWPDOProperty line_pstyle int
hwpfilter/source/drawdef.h:70
    BAREHWPDOProperty line_hstyle int
hwpfilter/source/drawdef.h:71
    BAREHWPDOProperty line_tstyle int
hwpfilter/source/drawdef.h:72
    BAREHWPDOProperty line_color unsigned int
hwpfilter/source/drawdef.h:73
    BAREHWPDOProperty line_width hunit
hwpfilter/source/drawdef.h:74
    BAREHWPDOProperty fill_color unsigned int
hwpfilter/source/drawdef.h:75
    BAREHWPDOProperty pattern_type uint
hwpfilter/source/drawdef.h:76
    BAREHWPDOProperty pattern_color unsigned int
hwpfilter/source/drawdef.h:77
    BAREHWPDOProperty hmargin hunit
hwpfilter/source/drawdef.h:78
    BAREHWPDOProperty vmargin hunit
hwpfilter/source/drawdef.h:79
    BAREHWPDOProperty flag uint
hwpfilter/source/drawdef.h:87
    GradationProperty fromcolor int
hwpfilter/source/drawdef.h:88
    GradationProperty tocolor int
hwpfilter/source/drawdef.h:89
    GradationProperty gstyle int
hwpfilter/source/drawdef.h:90
    GradationProperty angle int
hwpfilter/source/drawdef.h:91
    GradationProperty center_x int
hwpfilter/source/drawdef.h:92
    GradationProperty center_y int
hwpfilter/source/drawdef.h:93
    GradationProperty nstep int
hwpfilter/source/drawdef.h:101
    BitmapProperty offset1 ZZPoint
hwpfilter/source/drawdef.h:102
    BitmapProperty offset2 ZZPoint
hwpfilter/source/drawdef.h:103
    BitmapProperty szPatternFile char [261]
hwpfilter/source/drawdef.h:104
    BitmapProperty pictype char
hwpfilter/source/drawdef.h:112
    RotationProperty rot_originx int
hwpfilter/source/drawdef.h:113
    RotationProperty rot_originy int
hwpfilter/source/drawdef.h:114
    RotationProperty parall ZZParall
hwpfilter/source/drawdef.h:130
    HWPDOProperty hmargin hunit
hwpfilter/source/drawdef.h:131
    HWPDOProperty vmargin hunit
hwpfilter/source/drawdef.h:151
    HWPDOProperty contrast int
hwpfilter/source/drawdef.h:152
    HWPDOProperty greyscale int
hwpfilter/source/drawdef.h:158
    HWPDOProperty offset1 ZZPoint
hwpfilter/source/drawdef.h:159
    HWPDOProperty offset2 ZZPoint
hwpfilter/source/drawdef.h:209
    HWPDrawingObject offset ZZPoint
hwpfilter/source/drawdef.h:218
    HWPDrawingObject vrect ZZRect
hwpfilter/source/hbox.h:84
    FieldCode reserved1 char *
hwpfilter/source/hbox.h:86
    FieldCode reserved2 char *
hwpfilter/source/hbox.h:87
    FieldCode str1 hchar *
hwpfilter/source/hbox.h:131
    DateFormat format hchar [40]
hwpfilter/source/hbox.h:167
    Tab width hunit
hwpfilter/source/hbox.h:168
    Tab leader unsigned short
hwpfilter/source/hbox.h:197
    CellLine key unsigned char
hwpfilter/source/hbox.h:198
    CellLine top unsigned char
hwpfilter/source/hbox.h:199
    CellLine bottom unsigned char
hwpfilter/source/hbox.h:200
    CellLine left unsigned char
hwpfilter/source/hbox.h:201
    CellLine right unsigned char
hwpfilter/source/hbox.h:202
    CellLine color short
hwpfilter/source/hbox.h:203
    CellLine shade unsigned char
hwpfilter/source/hbox.h:329
    TxtBox reserved hchar [2]
hwpfilter/source/hbox.h:333
    TxtBox cap_len short
hwpfilter/source/hbox.h:334
    TxtBox next_box short
hwpfilter/source/hbox.h:535
    PicDefFile path char [256]
hwpfilter/source/hbox.h:536
    PicDefFile img void *
hwpfilter/source/hbox.h:537
    PicDefFile skipfind _Bool
hwpfilter/source/hbox.h:553
    PicDefOle embname char [16]
hwpfilter/source/hbox.h:554
    PicDefOle hwpole void *
hwpfilter/source/hbox.h:564
    PicDefDraw vrect ZZRect
hwpfilter/source/hbox.h:565
    PicDefDraw mbrcnt int
hwpfilter/source/hbox.h:578
    (anonymous) picfile struct PicDefFile
hwpfilter/source/hbox.h:580
    (anonymous) picole struct PicDefOle
hwpfilter/source/hbox.h:596
    Picture reserved hchar [2]
hwpfilter/source/hbox.h:620
    Picture skip hunit [2]
hwpfilter/source/hbox.h:624
    Picture scale hunit [2]
hwpfilter/source/hbox.h:648
    Line reserved hchar [2]
hwpfilter/source/hbox.h:667
    Hidden reserved hchar [2]
hwpfilter/source/hbox.h:670
    Hidden info unsigned char [8]
hwpfilter/source/hbox.h:684
    HeaderFooter reserved hchar [2]
hwpfilter/source/hbox.h:687
    HeaderFooter info unsigned char [8]
hwpfilter/source/hbox.h:693
    HeaderFooter linenumber unsigned char
hwpfilter/source/hbox.h:714
    Footnote reserved hchar [2]
hwpfilter/source/hbox.h:717
    Footnote info unsigned char [8]
hwpfilter/source/hbox.h:729
    Footnote width hunit
hwpfilter/source/hbox.h:849
    Compose compose hchar [3]
hwpfilter/source/hgzip.h:43
    gz_stream _inputstream class HStream *
hwpfilter/source/hinfo.h:73
    PaperBackInfo luminance int
hwpfilter/source/hinfo.h:74
    PaperBackInfo contrast int
hwpfilter/source/hinfo.h:75
    PaperBackInfo effect char
hwpfilter/source/hinfo.h:80
    PaperBackInfo range int
hwpfilter/source/hinfo.h:185
    HWPInfo spfnfn hunit
hwpfilter/source/hinfo.h:234
    CharShape reserved unsigned char [4]
hwpfilter/source/hinfo.h:285
    ParaShape reserved unsigned char [2]
hwpfilter/source/hpara.h:61
    LineInfo pos unsigned short
hwpfilter/source/hpara.h:62
    LineInfo space_width hunit
hwpfilter/source/hpara.h:63
    LineInfo height hunit
hwpfilter/source/hpara.h:65
    LineInfo sx hunit
hwpfilter/source/hpara.h:66
    LineInfo psx hunit
hwpfilter/source/hpara.h:69
    LineInfo height_sp hunit
hwpfilter/source/hpara.h:70
    LineInfo softbreak unsigned short
hwpfilter/source/hpara.h:94
    HWPPara scflag unsigned char
hwpfilter/source/htags.h:31
    EmPicture type char [16]
hwpfilter/source/htags.h:46
    HyperText macro char [325]
hwpfilter/source/htags.h:48
    HyperText reserve char [3]
hwpfilter/source/hwpfile.h:260
    HWPFile version int
hwpfilter/source/hwpfile.h:262
    HWPFile encrypted _Bool
hwpfilter/source/hwpfile.h:264
    HWPFile info_block_len int
hwpfilter/source/lexer.cxx:141
    yy_buffer_state yy_at_bol int
idl/inc/database.hxx:103
    SvIdlDataBase aIFaceName class rtl::OString
include/basic/basmgr.hxx:52
    BasicError nReason enum BasicErrorReason
include/basic/sbxvar.hxx:67
    SbxValues::(anonymous) pData void *
include/comphelper/componentbase.hxx:130
    comphelper::ComponentMethodGuard m_aMutexGuard ::osl::ResettableMutexGuard
include/comphelper/MasterPropertySet.hxx:38
    comphelper::SlaveData mxSlave css::uno::Reference<css::beans::XPropertySet>
include/connectivity/OSubComponent.hxx:54
    connectivity::OSubComponent m_xParent css::uno::Reference<css::uno::XInterface>
include/drawinglayer/primitive2d/textlayoutdevice.hxx:61
    drawinglayer::primitive2d::TextLayouterDevice maSolarGuard class SolarMutexGuard
include/editeng/adjustitem.hxx:39
    SvxAdjustItem bLeft _Bool
include/editeng/editdata.hxx:226
    HtmlImportInfo nTokenValue short
include/editeng/editdata.hxx:261
    ParagraphInfos nParaHeight sal_uInt16
include/editeng/editdata.hxx:262
    ParagraphInfos nLines sal_uInt16
include/editeng/editdata.hxx:264
    ParagraphInfos nFirstLineStartX sal_uInt16
include/editeng/editdata.hxx:266
    ParagraphInfos nFirstLineOffset sal_uInt16
include/editeng/editdata.hxx:278
    EECharAttrib nPara sal_Int32
include/editeng/editdata.hxx:347
    EENotify pEditEngine class EditEngine *
include/editeng/editdata.hxx:348
    EENotify pEditView class EditView *
include/editeng/swafopt.hxx:81
    SvxSwAutoFormatFlags bChkFontAttr _Bool
include/editeng/swafopt.hxx:99
    SvxSwAutoFormatFlags bDummy _Bool
include/editeng/swafopt.hxx:120
    SvxSwAutoFormatFlags bDummy6 _Bool
include/editeng/swafopt.hxx:121
    SvxSwAutoFormatFlags bDummy7 _Bool
include/editeng/swafopt.hxx:122
    SvxSwAutoFormatFlags bDummy8 _Bool
include/editeng/unotext.hxx:606
    SvxUnoTextRangeEnumeration mxParentText css::uno::Reference<css::text::XText>
include/filter/msfilter/dffpropset.hxx:35
    DffPropFlags bBlip _Bool
include/filter/msfilter/dffrecordheader.hxx:34
    DffRecordHeader nImpVerInst sal_uInt16
include/filter/msfilter/mscodec.hxx:446
    msfilter::EncryptionStandardHeader sizeExtra sal_uInt32
include/filter/msfilter/mscodec.hxx:450
    msfilter::EncryptionStandardHeader providedType sal_uInt32
include/filter/msfilter/mscodec.hxx:451
    msfilter::EncryptionStandardHeader reserved1 sal_uInt32
include/filter/msfilter/mscodec.hxx:452
    msfilter::EncryptionStandardHeader reserved2 sal_uInt32
include/filter/msfilter/mstoolbar.hxx:121
    TBCExtraInfo wstrHelpFile class WString
include/filter/msfilter/mstoolbar.hxx:122
    TBCExtraInfo idHelpContext sal_Int32
include/filter/msfilter/mstoolbar.hxx:123
    TBCExtraInfo wstrTag class WString
include/filter/msfilter/mstoolbar.hxx:125
    TBCExtraInfo wstrParam class WString
include/filter/msfilter/mstoolbar.hxx:126
    TBCExtraInfo tbcu sal_Int8
include/filter/msfilter/mstoolbar.hxx:127
    TBCExtraInfo tbmg sal_Int8
include/filter/msfilter/mstoolbar.hxx:144
    TBCGeneralInfo descriptionText class WString
include/filter/msfilter/mstoolbar.hxx:161
    TBCBitMap cbDIB sal_Int32
include/filter/msfilter/mstoolbar.hxx:191
    TBCCDData cwstrMRU sal_Int16
include/filter/msfilter/mstoolbar.hxx:192
    TBCCDData iSel sal_Int16
include/filter/msfilter/mstoolbar.hxx:193
    TBCCDData cLines sal_Int16
include/filter/msfilter/mstoolbar.hxx:194
    TBCCDData dxWidth sal_Int16
include/filter/msfilter/mstoolbar.hxx:195
    TBCCDData wstrEdit class WString
include/filter/msfilter/mstoolbar.hxx:260
    TBCHeader bSignature sal_Int8
include/filter/msfilter/mstoolbar.hxx:261
    TBCHeader bVersion sal_Int8
include/filter/msfilter/mstoolbar.hxx:266
    TBCHeader bPriority sal_uInt8
include/filter/msfilter/mstoolbar.hxx:304
    TB bSignature sal_uInt8
include/filter/msfilter/mstoolbar.hxx:305
    TB bVersion sal_uInt8
include/filter/msfilter/mstoolbar.hxx:307
    TB ltbid sal_Int32
include/filter/msfilter/mstoolbar.hxx:309
    TB cRowsDefault sal_uInt16
include/filter/msfilter/mstoolbar.hxx:328
    SRECT left sal_Int16
include/filter/msfilter/mstoolbar.hxx:329
    SRECT top sal_Int16
include/filter/msfilter/mstoolbar.hxx:330
    SRECT right sal_Int16
include/filter/msfilter/mstoolbar.hxx:331
    SRECT bottom sal_Int16
include/filter/msfilter/mstoolbar.hxx:341
    TBVisualData tbds sal_Int8
include/filter/msfilter/mstoolbar.hxx:342
    TBVisualData tbv sal_Int8
include/filter/msfilter/mstoolbar.hxx:343
    TBVisualData tbdsDock sal_Int8
include/filter/msfilter/mstoolbar.hxx:344
    TBVisualData iRow sal_Int8
include/filter/msfilter/mstoolbar.hxx:346
    TBVisualData rcDock class SRECT
include/filter/msfilter/mstoolbar.hxx:347
    TBVisualData rcFloat class SRECT
include/filter/msfilter/svdfppt.hxx:79
    PptCurrentUserAtom nMagic sal_uInt32
include/filter/msfilter/svdfppt.hxx:81
    PptCurrentUserAtom nDocFileVersion sal_uInt16
include/filter/msfilter/svdfppt.hxx:82
    PptCurrentUserAtom nMajorVersion sal_uInt8
include/filter/msfilter/svdfppt.hxx:83
    PptCurrentUserAtom nMinorVersion sal_uInt8
include/filter/msfilter/svdfppt.hxx:109
    SdHyperlinkEntry nPrivate1 sal_Int32
include/filter/msfilter/svdfppt.hxx:110
    SdHyperlinkEntry nPrivate2 sal_Int32
include/filter/msfilter/svdfppt.hxx:111
    SdHyperlinkEntry nPrivate3 sal_Int32
include/filter/msfilter/svdfppt.hxx:112
    SdHyperlinkEntry nInfo sal_Int32
include/filter/msfilter/svdfppt.hxx:125
    PptInteractiveInfoAtom nOleVerb sal_uInt8
include/filter/msfilter/svdfppt.hxx:127
    PptInteractiveInfoAtom nFlags sal_uInt8
include/filter/msfilter/svdfppt.hxx:131
    PptInteractiveInfoAtom nUnknown1 sal_uInt8
include/filter/msfilter/svdfppt.hxx:132
    PptInteractiveInfoAtom nUnknown2 sal_uInt8
include/filter/msfilter/svdfppt.hxx:133
    PptInteractiveInfoAtom nUnknown3 sal_uInt8
include/filter/msfilter/svdfppt.hxx:191
    PptDocumentAtom n1stPageNumber sal_uInt16
include/filter/msfilter/svdfppt.hxx:192
    PptDocumentAtom eSlidesPageFormat enum PptPageFormat
include/filter/msfilter/svdfppt.hxx:193
    PptDocumentAtom bEmbeddedTrueType _Bool
include/filter/msfilter/svdfppt.hxx:195
    PptDocumentAtom bRightToLeft _Bool
include/filter/msfilter/svdfppt.hxx:196
    PptDocumentAtom bShowComments _Bool
include/filter/msfilter/svdfppt.hxx:237
    PptSlidePersistAtom nFlags sal_uInt32
include/filter/msfilter/svdfppt.hxx:238
    PptSlidePersistAtom nNumberTexts sal_uInt32
include/filter/msfilter/svdfppt.hxx:251
    PptNotesAtom nSlideId sal_uInt32
include/filter/msfilter/svdfppt.hxx:252
    PptNotesAtom nFlags sal_uInt16
include/filter/msfilter/svdfppt.hxx:275
    PptFontEntityAtom lfClipPrecision sal_uInt8
include/filter/msfilter/svdfppt.hxx:276
    PptFontEntityAtom lfQuality sal_uInt8
include/filter/msfilter/svdfppt.hxx:281
    PptFontEntityAtom bAvailable _Bool
include/filter/msfilter/svdfppt.hxx:290
    PptUserEditAtom nLastSlideID sal_Int32
include/filter/msfilter/svdfppt.hxx:291
    PptUserEditAtom nVersion sal_uInt32
include/filter/msfilter/svdfppt.hxx:316
    PptOEPlaceholderAtom nPlaceholderSize sal_uInt8
include/filter/msfilter/svdfppt.hxx:334
    PptSlidePersistEntry aNotesAtom struct PptNotesAtom
include/filter/msfilter/svdfppt.hxx:348
    PptSlidePersistEntry bBObjIsTemporary _Bool
include/filter/msfilter/svdfppt.hxx:678
    PPTExtParaLevel mpfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:680
    PPTExtParaLevel mcfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:706
    PPTExtParaProv bGraphics _Bool
include/filter/msfilter/svdfppt.hxx:863
    ImplPPTParaPropSet nDontKnow1 sal_uInt32
include/filter/msfilter/svdfppt.hxx:864
    ImplPPTParaPropSet nDontKnow2 sal_uInt32
include/filter/msfilter/svdfppt.hxx:865
    ImplPPTParaPropSet nDontKnow2bit06 sal_uInt16
include/filter/msfilter/svdfppt.hxx:883
    PPTParaPropSet mnOriginalTextPos sal_uInt32
include/filter/msfilter/svdfppt.hxx:900
    ImplPPTCharPropSet mnANSITypeface sal_uInt16
include/filter/msfilter/svdfppt.hxx:1011
    StyleTextProp9 mpfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:1013
    StyleTextProp9 mncfPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:1015
    StyleTextProp9 mnPP10Ext sal_uInt32
include/filter/msfilter/svdfppt.hxx:1016
    StyleTextProp9 mfBidi sal_uInt16
include/filter/msfilter/svdfppt.hxx:1183
    ImplPPTTextObj mnShapeId sal_uInt32
include/filter/msfilter/svdfppt.hxx:1184
    ImplPPTTextObj mnShapeMaster sal_uInt32
include/LibreOfficeKit/LibreOfficeKit.h:98
    _LibreOfficeKitDocumentClass nSize size_t
include/LibreOfficeKit/LibreOfficeKitGtk.h:33
    _LOKDocView aDrawingArea GtkDrawingArea
include/LibreOfficeKit/LibreOfficeKitGtk.h:38
    _LOKDocViewClass parent_class GtkDrawingAreaClass
include/oox/drawingml/drawingmltypes.hxx:148
    oox::drawingml::IndexRange end sal_Int32
include/oox/dump/oledumper.hxx:133
    oox::dump::OlePropertyStreamObject meTextEnc rtl_TextEncoding
include/oox/export/vmlexport.hxx:87
    oox::vml::VMLExport m_pNdTopLeft const class Point *
include/oox/ole/axbinaryreader.hxx:238
    oox::ole::AxBinaryPropertyReader maDummyPicData oox::StreamDataSequence
include/oox/ole/axbinaryreader.hxx:239
    oox::ole::AxBinaryPropertyReader maDummyString class rtl::OUString
include/oox/ole/axbinaryreader.hxx:240
    oox::ole::AxBinaryPropertyReader maDummyArrayString oox::ole::AxArrayString
include/oox/ole/axcontrol.hxx:471
    oox::ole::ComCtlProgressBarModel mnVertical sal_uInt16
include/oox/ole/axcontrol.hxx:472
    oox::ole::ComCtlProgressBarModel mnSmooth sal_uInt16
include/oox/ole/axcontrol.hxx:603
    oox::ole::AxTabStripModel mnTabData sal_uInt32
include/oox/ole/axcontrol.hxx:604
    oox::ole::AxTabStripModel mnVariousPropertyBits sal_uInt32
include/oox/ole/axcontrol.hxx:606
    oox::ole::AxTabStripModel maTabNames std::vector< ::rtl::OUString>
include/oox/ole/axcontrol.hxx:826
    oox::ole::AxContainerModelBase mnBorderColor sal_uInt32
include/oox/ole/axcontrol.hxx:827
    oox::ole::AxContainerModelBase mnBorderStyle sal_Int32
include/oox/ole/axcontrol.hxx:829
    oox::ole::AxContainerModelBase mnCycleType sal_Int32
include/oox/ole/axcontrol.hxx:830
    oox::ole::AxContainerModelBase mnSpecialEffect sal_Int32
include/oox/ole/axcontrol.hxx:831
    oox::ole::AxContainerModelBase mnPicAlign sal_Int32
include/oox/ole/axcontrol.hxx:832
    oox::ole::AxContainerModelBase mnPicSizeMode sal_Int32
include/oox/ole/axcontrol.hxx:833
    oox::ole::AxContainerModelBase mbPicTiling _Bool
include/oox/ole/oleobjecthelper.hxx:50
    oox::ole::OleObjectInfo mbAutoUpdate _Bool
include/oox/ole/vbacontrol.hxx:100
    oox::ole::VbaSiteModel mnHelpContextId sal_Int32
include/oox/ole/vbacontrol.hxx:105
    oox::ole::VbaSiteModel mnGroupId sal_uInt16
include/oox/ole/vbamodule.hxx:98
    oox::ole::VbaModule mbReadOnly _Bool
include/oox/ole/vbamodule.hxx:99
    oox::ole::VbaModule mbPrivate _Bool
include/oox/ppt/pptshape.hxx:51
    oox::ppt::PPTShape mbReferenced _Bool
include/oox/ppt/soundactioncontext.hxx:48
    oox::ppt::SoundActionContext mbLoopSound _Bool
include/oox/ppt/soundactioncontext.hxx:49
    oox::ppt::SoundActionContext mbStopSound _Bool
include/oox/vml/vmldrawing.hxx:67
    oox::vml::OleObjectInfo mbAutoLoad _Bool
include/oox/vml/vmlshape.hxx:185
    oox::vml::ClientData mbVisible _Bool
include/opencl/openclwrapper.hxx:36
    opencl::KernelEnv mpkProgram cl_program
include/opencl/openclwrapper.hxx:52
    opencl::GPUEnv mbNeedsTDRAvoidance _Bool
include/opencl/platforminfo.hxx:29
    OpenCLDeviceInfo mnMemory size_t
include/opencl/platforminfo.hxx:30
    OpenCLDeviceInfo mnComputeUnits size_t
include/opencl/platforminfo.hxx:31
    OpenCLDeviceInfo mnFrequency size_t
include/sfx2/msg.hxx:117
    SfxType0 createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:119
    SfxType0 nAttribs sal_uInt16
include/svtools/genericunodialog.hxx:170
    svt::UnoDialogEntryGuard m_aGuard ::osl::MutexGuard
include/svtools/unoevent.hxx:159
    SvEventDescriptor xParentRef css::uno::Reference<css::uno::XInterface>
include/svx/bmpmask.hxx:129
    SvxBmpMask aSelItem class SvxBmpMaskSelectItem
include/svx/float3d.hxx:176
    Svx3DWin pControllerItem class Svx3DCtrlItem *
include/svx/imapdlg.hxx:118
    SvxIMapDlg aIMapItem class SvxIMapDlgItem
include/svx/srchdlg.hxx:231
    SvxSearchDialog pSearchController class SvxSearchController *
include/svx/srchdlg.hxx:232
    SvxSearchDialog pOptionsController class SvxSearchController *
include/vcl/menu.hxx:462
    MenuBar::MenuBarButtonCallbackArg bHighlight _Bool
include/vcl/salnativewidgets.hxx:415
    ToolbarValue mbIsTopDockingArea _Bool
include/vcl/salnativewidgets.hxx:463
    PushButtonValue mbBevelButton _Bool
include/vcl/salnativewidgets.hxx:464
    PushButtonValue mbSingleLine _Bool
include/vcl/uitest/uiobject.hxx:241
    TabPageUIObject mxTabPage VclPtr<class TabPage>
include/xmloff/formlayerexport.hxx:173
    xmloff::OOfficeFormsExport m_pImpl std::unique_ptr<OFormsRootExport>
include/xmloff/shapeimport.hxx:180
    SdXML3DSceneAttributesHelper mbVRPUsed _Bool
include/xmloff/shapeimport.hxx:181
    SdXML3DSceneAttributesHelper mbVPNUsed _Bool
include/xmloff/shapeimport.hxx:182
    SdXML3DSceneAttributesHelper mbVUPUsed _Bool
lingucomponent/source/languageguessing/simpleguesser.cxx:79
    textcat_t maxsize uint4
lingucomponent/source/languageguessing/simpleguesser.cxx:81
    textcat_t output char [1024]
lotuswordpro/source/filter/bento.hxx:189
    OpenStormBento::LtcUtBenValueStream cpValue class OpenStormBento::CBenValue *
lotuswordpro/source/filter/bento.hxx:325
    OpenStormBento::CBenValueSegment cpValue class OpenStormBento::CBenValue *
lotuswordpro/source/filter/clone.hxx:23
    detail::has_clone::(anonymous) a char [2]
lotuswordpro/source/filter/localtime.hxx:67
    LtTm tm_wday long
lotuswordpro/source/filter/lwp9reader.hxx:75
    Lwp9Reader m_pObjMgr class LwpObjectFactory *
lotuswordpro/source/filter/lwpatomholder.hxx:72
    LwpAtomHolder m_nAssocAtom sal_Int32
lotuswordpro/source/filter/lwpbasetype.hxx:90
    LwpPanoseNumber m_nFamilyType sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:91
    LwpPanoseNumber m_nSerifStyle sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:92
    LwpPanoseNumber m_nWeight sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:93
    LwpPanoseNumber m_nProportion sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:94
    LwpPanoseNumber m_nContrast sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:95
    LwpPanoseNumber m_nStrokeVariation sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:96
    LwpPanoseNumber m_nArmStyle sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:97
    LwpPanoseNumber m_nLetterform sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:98
    LwpPanoseNumber m_nMidline sal_uInt8
lotuswordpro/source/filter/lwpbasetype.hxx:99
    LwpPanoseNumber m_nXHeight sal_uInt8
lotuswordpro/source/filter/lwpborderstuff.hxx:92
    LwpBorderStuff m_nValid sal_uInt16
lotuswordpro/source/filter/lwpborderstuff.hxx:99
    LwpBorderStuff m_nGroupIndent sal_Int32
lotuswordpro/source/filter/lwpbulletstylemgr.hxx:95
    LwpBulletStyleMgr m_pFoundry class LwpFoundry *
lotuswordpro/source/filter/lwpbulletstylemgr.hxx:97
    LwpBulletStyleMgr m_bIsBulletSkipped _Bool
lotuswordpro/source/filter/lwpcelllayout.hxx:124
    LwpCellLayout cLayDiagonalLine class LwpObjectID
lotuswordpro/source/filter/lwpcelllayout.hxx:133
    LwpCellLayout cType enum LwpCellLayout::LeaderDotType
lotuswordpro/source/filter/lwpcharacterstyle.hxx:92
    LwpTextStyle m_nFontID sal_uInt32
lotuswordpro/source/filter/lwpcharacterstyle.hxx:94
    LwpTextStyle m_nCSFlags sal_uInt16
lotuswordpro/source/filter/lwpcharacterstyle.hxx:95
    LwpTextStyle m_nUseCount sal_uInt32
lotuswordpro/source/filter/lwpcharacterstyle.hxx:97
    LwpTextStyle m_aDescription class LwpAtomHolder
lotuswordpro/source/filter/lwpcharacterstyle.hxx:98
    LwpTextStyle m_aLangOverride class LwpTextLanguageOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:99
    LwpTextStyle m_aTxtAttrOverride class LwpTextAttributeOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:101
    LwpTextStyle m_aCharacterBorderOverride class LwpCharacterBorderOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:102
    LwpTextStyle m_aAmikakeOverride class LwpAmikakeOverride
lotuswordpro/source/filter/lwpcharacterstyle.hxx:104
    LwpTextStyle m_CharacterBorder class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:105
    LwpTextStyle m_Amikake class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:106
    LwpTextStyle m_FaceStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:108
    LwpTextStyle m_SizeStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:109
    LwpTextStyle m_AttributeStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:110
    LwpTextStyle m_FontStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:111
    LwpTextStyle m_CharacterBorderStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:112
    LwpTextStyle m_AmikakeStyle class LwpObjectID
lotuswordpro/source/filter/lwpcharacterstyle.hxx:114
    LwpTextStyle m_nStyleDefinition sal_uInt32
lotuswordpro/source/filter/lwpcharacterstyle.hxx:116
    LwpTextStyle m_nKey sal_uInt16
lotuswordpro/source/filter/lwpcharborderoverride.hxx:86
    LwpCharacterBorderOverride m_pBorderStuff class LwpBorderStuff *
lotuswordpro/source/filter/lwpcharborderoverride.hxx:87
    LwpCharacterBorderOverride m_pMargins class LwpMargins *
lotuswordpro/source/filter/lwpcharborderoverride.hxx:88
    LwpCharacterBorderOverride m_nAboveWidth sal_Int32
lotuswordpro/source/filter/lwpcharborderoverride.hxx:89
    LwpCharacterBorderOverride m_nBelowWidth sal_Int32
lotuswordpro/source/filter/lwpcontent.hxx:82
    LwpContent m_PreviousEnumerated class LwpObjectID
lotuswordpro/source/filter/lwpdivinfo.hxx:95
    LwpDivInfo m_LayoutID class LwpObjectID
lotuswordpro/source/filter/lwpdivinfo.hxx:97
    LwpDivInfo m_ExternalName class LwpAtomHolder
lotuswordpro/source/filter/lwpdivinfo.hxx:98
    LwpDivInfo m_ExternalType class LwpAtomHolder
lotuswordpro/source/filter/lwpdivinfo.hxx:103
    LwpDivInfo m_nPageNoStyle sal_uInt16
lotuswordpro/source/filter/lwpdivinfo.hxx:104
    LwpDivInfo m_TabColor class LwpColor
lotuswordpro/source/filter/lwpdivopts.hxx:77
    LwpHyphenOptions m_nFlags sal_uInt16
lotuswordpro/source/filter/lwpdivopts.hxx:78
    LwpHyphenOptions m_nZoneBefore sal_uInt16
lotuswordpro/source/filter/lwpdivopts.hxx:79
    LwpHyphenOptions m_nZoneAfter sal_uInt16
lotuswordpro/source/filter/lwpdivopts.hxx:80
    LwpHyphenOptions m_nMaxLines sal_uInt16
lotuswordpro/source/filter/lwpdivopts.hxx:112
    LwpDivisionOptions m_HyphOpts class LwpHyphenOptions
lotuswordpro/source/filter/lwpdivopts.hxx:113
    LwpDivisionOptions m_nOptionFlag sal_uInt16
lotuswordpro/source/filter/lwpdivopts.hxx:114
    LwpDivisionOptions m_Lang class LwpTextLanguage
lotuswordpro/source/filter/lwpdoc.hxx:86
    LwpDocument m_pOwnedFoundry class LwpFoundry *
lotuswordpro/source/filter/lwpdoc.hxx:91
    LwpDocument m_nFlags sal_uInt16
lotuswordpro/source/filter/lwpdoc.hxx:107
    LwpDocument m_DivOpts class LwpObjectID
lotuswordpro/source/filter/lwpdoc.hxx:111
    LwpDocument m_Epoch class LwpAtomHolder
lotuswordpro/source/filter/lwpdoc.hxx:115
    LwpDocument m_STXInfo class LwpObjectID
lotuswordpro/source/filter/lwpdoc.hxx:230
    LwpDocSock m_Doc class LwpObjectID
lotuswordpro/source/filter/lwpdocdata.hxx:67
    LwpDocOptions nOptionFlag sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:68
    LwpDocOptions encrypt1password class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:69
    LwpDocOptions encrypt2password class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:70
    LwpDocOptions characterSet class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:71
    LwpDocOptions grammerSet class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:72
    LwpDocOptions nMarginMarks sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:73
    LwpDocOptions nMarginMarksLocation sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:74
    LwpDocOptions nMarginMarksChar sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:84
    LwpDocInfo cpVerDocInfo class LwpObjectID
lotuswordpro/source/filter/lwpdocdata.hxx:90
    LwpDocControl cGreeting class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:91
    LwpDocControl nFlags sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:92
    LwpDocControl nDocControlProtection sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:95
    LwpDocControl nFileProtection sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:98
    LwpDocControl nAutoVersioning sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:99
    LwpDocControl cDocControlOnlyEditor class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:100
    LwpDocControl nEditorVerification sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:104
    LwpFontDescriptionOverrideBase cOverrideBits sal_uInt8
lotuswordpro/source/filter/lwpdocdata.hxx:105
    LwpFontDescriptionOverrideBase cApplyBits sal_uInt8
lotuswordpro/source/filter/lwpdocdata.hxx:106
    LwpFontDescriptionOverrideBase cPointSize sal_Int32
lotuswordpro/source/filter/lwpdocdata.hxx:107
    LwpFontDescriptionOverrideBase cOverstrike sal_uInt8
lotuswordpro/source/filter/lwpdocdata.hxx:108
    LwpFontDescriptionOverrideBase cTightness sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:111
    LwpFontDescriptionOverrideBase cColor class LwpColor
lotuswordpro/source/filter/lwpdocdata.hxx:112
    LwpFontDescriptionOverrideBase cBackgroundColor class LwpColor
lotuswordpro/source/filter/lwpdocdata.hxx:116
    LwpFontAttributeOverride cAttrBits sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:117
    LwpFontAttributeOverride cAttrOverrideBits sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:118
    LwpFontAttributeOverride cAttrApplyBits sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:119
    LwpFontAttributeOverride cAttrOverrideBits2 sal_uInt8
lotuswordpro/source/filter/lwpdocdata.hxx:120
    LwpFontAttributeOverride cAttrApplyBits2 sal_uInt8
lotuswordpro/source/filter/lwpdocdata.hxx:121
    LwpFontAttributeOverride cCase sal_uInt8
lotuswordpro/source/filter/lwpdocdata.hxx:122
    LwpFontAttributeOverride cUnder sal_uInt8
lotuswordpro/source/filter/lwpdocdata.hxx:126
    LwpFontDescriptionOverride cFontAttributeOverride struct LwpFontAttributeOverride
lotuswordpro/source/filter/lwpdocdata.hxx:127
    LwpFontDescriptionOverride cFontDescriptionOverrideBase struct LwpFontDescriptionOverrideBase
lotuswordpro/source/filter/lwpdocdata.hxx:128
    LwpFontDescriptionOverride cFaceName class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:129
    LwpFontDescriptionOverride cAltFaceName class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:133
    LwpOverrideOg cValues sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:134
    LwpOverrideOg cOverride sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:135
    LwpOverrideOg cApply sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:139
    LwpTextAttributeOverrideOg cOverride struct LwpOverrideOg
lotuswordpro/source/filter/lwpdocdata.hxx:140
    LwpTextAttributeOverrideOg cHideLevels sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:141
    LwpTextAttributeOverrideOg cBaselineOffset sal_Int32
lotuswordpro/source/filter/lwpdocdata.hxx:146
    LwpEditorAttr cInitials class LwpAtomHolder
lotuswordpro/source/filter/lwpdocdata.hxx:149
    LwpEditorAttr cInsFontOver struct LwpFontDescriptionOverride
lotuswordpro/source/filter/lwpdocdata.hxx:150
    LwpEditorAttr cDelFontOver struct LwpFontDescriptionOverride
lotuswordpro/source/filter/lwpdocdata.hxx:151
    LwpEditorAttr nAbilities sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:152
    LwpEditorAttr nLocks sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:153
    LwpEditorAttr nSuggestions sal_uInt16
lotuswordpro/source/filter/lwpdocdata.hxx:154
    LwpEditorAttr cDelTextAttr struct LwpTextAttributeOverrideOg
lotuswordpro/source/filter/lwpdocdata.hxx:163
    LwpDocData m_DocOptions struct LwpDocOptions
lotuswordpro/source/filter/lwpdrawobj.hxx:294
    LwpDrawTextBox m_aVector struct SdwPoint
lotuswordpro/source/filter/lwpfilehdr.hxx:68
    LwpFileHeader m_nAppRevision sal_uInt16
lotuswordpro/source/filter/lwpfilehdr.hxx:69
    LwpFileHeader m_nAppReleaseNo sal_uInt16
lotuswordpro/source/filter/lwpfilehdr.hxx:70
    LwpFileHeader m_nRequiredAppRevision sal_uInt16
lotuswordpro/source/filter/lwpfilehdr.hxx:71
    LwpFileHeader m_nRequiredFileRevision sal_uInt16
lotuswordpro/source/filter/lwpfont.hxx:128
    LwpFontNameEntry m_nApplyBits sal_uInt8
lotuswordpro/source/filter/lwpfont.hxx:130
    LwpFontNameEntry m_nOverstrike sal_uInt16
lotuswordpro/source/filter/lwpfont.hxx:131
    LwpFontNameEntry m_nTightness sal_uInt16
lotuswordpro/source/filter/lwpfont.hxx:193
    LwpFontAttrEntry m_nAttrApplyBits sal_uInt16
lotuswordpro/source/filter/lwpfont.hxx:195
    LwpFontAttrEntry m_nAttrApplyBits2 sal_uInt8
lotuswordpro/source/filter/lwpfootnote.hxx:248
    LwpFootnoteOptions m_EndnoteDivisionNumbering class LwpFootnoteNumberOptions
lotuswordpro/source/filter/lwpfootnote.hxx:249
    LwpFootnoteOptions m_EndnoteDivisionGroupNumbering class LwpFootnoteNumberOptions
lotuswordpro/source/filter/lwpfootnote.hxx:252
    LwpFootnoteOptions m_FootnoteContinuedSeparator class LwpFootnoteSeparatorOptions
lotuswordpro/source/filter/lwpfoundry.hxx:93
    LwpObjectManager m_Division class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:128
    LwpContentManager m_EnumTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:129
    LwpContentManager m_OleObjCount class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:132
    LwpContentManager m_GrapTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:133
    LwpContentManager m_OleHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:134
    LwpContentManager m_OleTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:149
    LwpPieceManager m_GeometryPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:150
    LwpPieceManager m_ScalePieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:151
    LwpPieceManager m_MarginsPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:152
    LwpPieceManager m_ColumnsPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:153
    LwpPieceManager m_BorderStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:154
    LwpPieceManager m_GutterStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:155
    LwpPieceManager m_BackgroundStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:156
    LwpPieceManager m_JoinStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:157
    LwpPieceManager m_ShadowPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:158
    LwpPieceManager m_NumericsPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:159
    LwpPieceManager m_RelativityPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:160
    LwpPieceManager m_AlignmentPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:161
    LwpPieceManager m_IndentPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:162
    LwpPieceManager m_ParaBorderPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:163
    LwpPieceManager m_SpacingPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:164
    LwpPieceManager m_BreaksPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:165
    LwpPieceManager m_NumberingPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:166
    LwpPieceManager m_TabPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:167
    LwpPieceManager m_CharacterBorderPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:168
    LwpPieceManager m_AmikakePieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:170
    LwpPieceManager m_ParaBackgroundPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:171
    LwpPieceManager m_ExternalBorderStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:172
    LwpPieceManager m_ExternalJoinStuffPieceList class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:207
    LwpFoundry m_ObjMgr class LwpObjectManager
lotuswordpro/source/filter/lwpfoundry.hxx:208
    LwpFoundry m_MarkerHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:209
    LwpFoundry m_FootnoteMgr class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:217
    LwpFoundry m_DefaultClickStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:220
    LwpFoundry m_TableStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:222
    LwpFoundry m_DftFrameStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:223
    LwpFoundry m_DftPageStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:224
    LwpFoundry m_DftTableStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:225
    LwpFoundry m_DftCellStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:226
    LwpFoundry m_DftColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:227
    LwpFoundry m_DftLeftColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:228
    LwpFoundry m_DftRighColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:231
    LwpFoundry m_DdeLinkHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:232
    LwpFoundry m_DirtBagHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:233
    LwpFoundry m_NamedOutlineSeqHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:234
    LwpFoundry m_EnumLayoutHead class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:235
    LwpFoundry m_EnumLayoutTail class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:237
    LwpFoundry m_NamedObjects class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:238
    LwpFoundry m_nLastClickHere sal_uInt32
lotuswordpro/source/filter/lwpfoundry.hxx:240
    LwpFoundry m_SmartTextMgr class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:246
    LwpFoundry m_DftDropCapStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:247
    LwpFoundry m_DftHeaderStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:249
    LwpFoundry m_DftFooterStyle class LwpObjectID
lotuswordpro/source/filter/lwpfoundry.hxx:284
    LwpStyleManager m_pFoundry class LwpFoundry *
lotuswordpro/source/filter/lwpframelayout.hxx:224
    LwpRubyLayout m_nStateFlag sal_uInt16
lotuswordpro/source/filter/lwpframelayout.hxx:225
    LwpRubyLayout m_nXOffset sal_Int32
lotuswordpro/source/filter/lwpframelayout.hxx:226
    LwpRubyLayout m_nYOffset sal_Int32
lotuswordpro/source/filter/lwpfrib.hxx:75
    ModifierInfo Language class LwpTextLanguageOverride
lotuswordpro/source/filter/lwpfrib.hxx:79
    ModifierInfo HasLangOverride _Bool
lotuswordpro/source/filter/lwpfribmark.hxx:81
    LwpFribCHBlock m_nType sal_uInt8
lotuswordpro/source/filter/lwpfribmark.hxx:151
    LwpFribRubyMarker m_nType sal_uInt8
lotuswordpro/source/filter/lwpfribtext.hxx:107
    LwpFribParaNumber m_nLevel sal_uInt16
lotuswordpro/source/filter/lwpfribtext.hxx:169
    LwpFribDocVar m_aName class LwpAtomHolder
lotuswordpro/source/filter/lwpfribtext.hxx:204
    LwpFribPageNumber m_nStartNum sal_uInt16
lotuswordpro/source/filter/lwpfribtext.hxx:205
    LwpFribPageNumber m_nStartOnPage sal_uInt16
lotuswordpro/source/filter/lwpfribtext.hxx:206
    LwpFribPageNumber m_nFlag sal_uInt16
lotuswordpro/source/filter/lwpgrfobj.hxx:74
    ImageProcessingData nEdgeEnchancement sal_uInt8
lotuswordpro/source/filter/lwpgrfobj.hxx:75
    ImageProcessingData nSmoothing sal_uInt8
lotuswordpro/source/filter/lwpgrfobj.hxx:76
    ImageProcessingData bAutoContrast _Bool
lotuswordpro/source/filter/lwpgrfobj.hxx:77
    ImageProcessingData bInvertImage _Bool
lotuswordpro/source/filter/lwpgrfobj.hxx:99
    LwpGraphicObject m_nCachedBaseLine sal_Int32
lotuswordpro/source/filter/lwpgrfobj.hxx:102
    LwpGraphicObject m_bCompressed sal_Int16
lotuswordpro/source/filter/lwplayout.hxx:234
    LwpVirtualLayout m_nEditorID sal_uInt16
lotuswordpro/source/filter/lwplayout.hxx:235
    LwpVirtualLayout m_NextEnumerated class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:236
    LwpVirtualLayout m_PreviousEnumerated class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:313
    LwpLayoutStyle m_nStyleDefinition sal_uInt32
lotuswordpro/source/filter/lwplayout.hxx:315
    LwpLayoutStyle m_nKey sal_uInt16
lotuswordpro/source/filter/lwplayout.hxx:325
    LwpLayoutMisc m_nGridDistance sal_Int32
lotuswordpro/source/filter/lwplayout.hxx:326
    LwpLayoutMisc m_nGridType sal_uInt16
lotuswordpro/source/filter/lwplayout.hxx:327
    LwpLayoutMisc m_aContentStyle class LwpAtomHolder
lotuswordpro/source/filter/lwplayout.hxx:404
    LwpMiddleLayout m_aStyleStuff class LwpLayoutStyle
lotuswordpro/source/filter/lwplayout.hxx:405
    LwpMiddleLayout m_aMiscStuff class LwpLayoutMisc
lotuswordpro/source/filter/lwplayout.hxx:411
    LwpMiddleLayout m_LayExtBorderStuff class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:434
    LwpLayout m_LayJoinStuff class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:436
    LwpLayout m_LayExtJoinStuff class LwpObjectID
lotuswordpro/source/filter/lwplayout.hxx:501
    LwpPlacableLayout m_Script class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:78
    LwpRotor m_nRotation sal_Int16
lotuswordpro/source/filter/lwplaypiece.hxx:99
    LwpLayoutGeometry m_ContainerRotor class LwpRotor
lotuswordpro/source/filter/lwplaypiece.hxx:127
    LwpLayoutScale m_nContentRotation sal_uInt16
lotuswordpro/source/filter/lwplaypiece.hxx:146
    LwpLayoutMargins m_ExtraMargins class LwpMargins
lotuswordpro/source/filter/lwplaypiece.hxx:186
    LwpExternalBorder m_LeftName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:187
    LwpExternalBorder m_TopName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:188
    LwpExternalBorder m_RightName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:189
    LwpExternalBorder m_BottomName class LwpAtomHolder
lotuswordpro/source/filter/lwplaypiece.hxx:201
    LwpLayoutExternalBorder m_ExtranalBorder class LwpExternalBorder
lotuswordpro/source/filter/lwplaypiece.hxx:257
    LwpJoinStuff m_nPercentage sal_uInt16
lotuswordpro/source/filter/lwplaypiece.hxx:258
    LwpJoinStuff m_nCorners sal_uInt16
lotuswordpro/source/filter/lwplaypiece.hxx:259
    LwpJoinStuff m_nWidth sal_Int32
lotuswordpro/source/filter/lwplaypiece.hxx:260
    LwpJoinStuff m_nHeight sal_Int32
lotuswordpro/source/filter/lwplaypiece.hxx:292
    LwpJoinStuff m_nScaling sal_uInt16
lotuswordpro/source/filter/lwplaypiece.hxx:293
    LwpJoinStuff m_Color class LwpColor
lotuswordpro/source/filter/lwplaypiece.hxx:304
    LwpLayoutJoins m_JoinStuff class LwpJoinStuff
lotuswordpro/source/filter/lwplaypiece.hxx:358
    LwpLayoutRelativityGuts m_nRelFromWhere sal_uInt8
lotuswordpro/source/filter/lwplaypiece.hxx:360
    LwpLayoutRelativityGuts m_nTether sal_uInt8
lotuswordpro/source/filter/lwplaypiece.hxx:361
    LwpLayoutRelativityGuts m_nTetherWhere sal_uInt8
lotuswordpro/source/filter/lwplaypiece.hxx:362
    LwpLayoutRelativityGuts m_nFlags sal_uInt8
lotuswordpro/source/filter/lwplnopts.hxx:79
    LwpLineNumberOptions m_nSpacing sal_uInt32
lotuswordpro/source/filter/lwpmarker.hxx:82
    LwpMarker m_nFlag sal_uInt16
lotuswordpro/source/filter/lwpmarker.hxx:83
    LwpMarker m_nPageNumber sal_uInt16
lotuswordpro/source/filter/lwpmarker.hxx:84
    LwpMarker m_nNeedUpdate sal_uInt16
lotuswordpro/source/filter/lwpmarker.hxx:85
    LwpMarker m_objLayout class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:86
    LwpMarker m_objMarkerList class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:87
    LwpMarker m_objContent class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:97
    LwpFribRange m_StartPara class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:98
    LwpFribRange m_EndPara class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:107
    LwpStoryMarker m_Range class LwpFribRange
lotuswordpro/source/filter/lwpmarker.hxx:108
    LwpStoryMarker m_nFlag sal_uInt16
lotuswordpro/source/filter/lwpmarker.hxx:160
    LwpCHBlkMarker m_nTab sal_uInt32
lotuswordpro/source/filter/lwpmarker.hxx:164
    LwpCHBlkMarker m_Mirror class LwpAtomHolder
lotuswordpro/source/filter/lwpmarker.hxx:182
    LwpBookMark m_nFlag sal_uInt16
lotuswordpro/source/filter/lwpmarker.hxx:235
    LwpFieldMark m_objFormulaStory class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:236
    LwpFieldMark m_objResultContent class LwpObjectID
lotuswordpro/source/filter/lwpmarker.hxx:260
    LwpRubyMarker m_objLayout class LwpObjectID
lotuswordpro/source/filter/lwpobjid.hxx:85
    LwpObjectID m_bIsCompressed _Bool
lotuswordpro/source/filter/lwpoleobject.hxx:76
    tagAFID_CACHE LinkedFileSize unsigned long
lotuswordpro/source/filter/lwpoleobject.hxx:77
    tagAFID_CACHE LinkedFileTime unsigned long
lotuswordpro/source/filter/lwpoleobject.hxx:105
    LwpGraphicOleObject m_pPrevObj class LwpObjectID
lotuswordpro/source/filter/lwpoleobject.hxx:106
    LwpGraphicOleObject m_pNextObj class LwpObjectID
lotuswordpro/source/filter/lwpoleobject.hxx:125
    LwpOleObject cPersistentFlags sal_uInt16
lotuswordpro/source/filter/lwpoverride.hxx:122
    LwpTextLanguageOverride m_nLanguage sal_uInt16
lotuswordpro/source/filter/lwpoverride.hxx:149
    LwpTextAttributeOverride m_nBaseLineOffset sal_uInt32
lotuswordpro/source/filter/lwpoverride.hxx:173
    LwpKinsokuOptsOverride m_nLevels sal_uInt16
lotuswordpro/source/filter/lwpoverride.hxx:316
    LwpAlignmentOverride m_nPosition sal_uInt32
lotuswordpro/source/filter/lwpoverride.hxx:317
    LwpAlignmentOverride m_nAlignChar sal_uInt16
lotuswordpro/source/filter/lwpoverride.hxx:498
    LwpAmikakeOverride m_nType sal_uInt16
lotuswordpro/source/filter/lwppagehint.hxx:75
    LwpSLVListHead m_ListHead class LwpObjectID
lotuswordpro/source/filter/lwppagehint.hxx:84
    LwpContentHintHead m_ListHead class LwpSLVListHead
lotuswordpro/source/filter/lwppagehint.hxx:93
    LwpFootnoteSeenHead m_ListHead class LwpSLVListHead
lotuswordpro/source/filter/lwppagehint.hxx:109
    LwpPageHint m_ContentHints class LwpContentHintHead
lotuswordpro/source/filter/lwppagehint.hxx:110
    LwpPageHint m_nLastFootnoteSeen sal_uInt16
lotuswordpro/source/filter/lwppagehint.hxx:111
    LwpPageHint m_nLastFootnoteProcessed sal_uInt16
lotuswordpro/source/filter/lwppagehint.hxx:112
    LwpPageHint m_nFlags sal_uInt16
lotuswordpro/source/filter/lwppagehint.hxx:114
    LwpPageHint m_nNumberStyle sal_uInt16
lotuswordpro/source/filter/lwppagehint.hxx:115
    LwpPageHint m_BeforeText class LwpAtomHolder
lotuswordpro/source/filter/lwppagehint.hxx:116
    LwpPageHint m_AfterText class LwpAtomHolder
lotuswordpro/source/filter/lwppagehint.hxx:117
    LwpPageHint m_nNumberFlags sal_uInt8
lotuswordpro/source/filter/lwppagehint.hxx:118
    LwpPageHint m_nRenderedPageNumber sal_uInt16
lotuswordpro/source/filter/lwppagehint.hxx:119
    LwpPageHint m_CurrentSection class LwpObjectID
lotuswordpro/source/filter/lwppagehint.hxx:120
    LwpPageHint m_nCurrentSectionPage sal_uInt16
lotuswordpro/source/filter/lwppagehint.hxx:121
    LwpPageHint m_FootnoteSeen class LwpFootnoteSeenHead
lotuswordpro/source/filter/lwppagelayout.hxx:95
    LwpPageLayout m_PrinterBinName class LwpAtomHolder
lotuswordpro/source/filter/lwppagelayout.hxx:96
    LwpPageLayout m_nPrinterBin sal_uInt16
lotuswordpro/source/filter/lwppagelayout.hxx:97
    LwpPageLayout m_nBdroffset sal_Int32
lotuswordpro/source/filter/lwppagelayout.hxx:98
    LwpPageLayout m_PaperName class LwpAtomHolder
lotuswordpro/source/filter/lwppagelayout.hxx:131
    LwpHeaderLayout m_nBorderOffset sal_Int32
lotuswordpro/source/filter/lwppagelayout.hxx:156
    LwpFooterLayout m_nBorderOffset sal_Int32
lotuswordpro/source/filter/lwppara.hxx:95
    LwpNotifyListPersistent m_Head class LwpObjectID
lotuswordpro/source/filter/lwppara.hxx:104
    LwpForked3NotifyList m_PersistentList class LwpNotifyListPersistent
lotuswordpro/source/filter/lwppara.hxx:197
    LwpPara m_Hint class LwpPoint
lotuswordpro/source/filter/lwpparastyle.hxx:116
    LwpParaStyle m_KinsokuOptsOverride class LwpKinsokuOptsOverride
lotuswordpro/source/filter/lwprowlayout.hxx:89
    LwpRowLayout cLeaderDotCount sal_uInt8
lotuswordpro/source/filter/lwprowlayout.hxx:90
    LwpRowLayout cLeaderDotY sal_Int32
lotuswordpro/source/filter/lwprowlayout.hxx:91
    LwpRowLayout cRowFlags sal_uInt8
lotuswordpro/source/filter/lwprowlayout.hxx:125
    LwpRowHeadingLayout cRowLayout class LwpObjectID
lotuswordpro/source/filter/lwpsection.hxx:100
    LwpSection m_Flags sal_uInt16
lotuswordpro/source/filter/lwpsection.hxx:102
    LwpSection m_Color class LwpColor
lotuswordpro/source/filter/lwpsection.hxx:130
    LwpIndexSection m_TextMarker class LwpAtomHolder
lotuswordpro/source/filter/lwpsection.hxx:131
    LwpIndexSection m_ParentName class LwpAtomHolder
lotuswordpro/source/filter/lwpsection.hxx:132
    LwpIndexSection m_DivisionName class LwpAtomHolder
lotuswordpro/source/filter/lwpsection.hxx:133
    LwpIndexSection m_SectionName class LwpAtomHolder
lotuswordpro/source/filter/lwpsection.hxx:134
    LwpIndexSection m_nForm sal_uInt16
lotuswordpro/source/filter/lwpsilverbullet.hxx:132
    LwpSilverBullet m_nFlags sal_uInt16
lotuswordpro/source/filter/lwpsilverbullet.hxx:135
    LwpSilverBullet m_nUseCount sal_uInt32
lotuswordpro/source/filter/lwpsortopt.hxx:73
    LwpSortKey m_nField sal_uInt16
lotuswordpro/source/filter/lwpsortopt.hxx:74
    LwpSortKey m_nFlag sal_uInt16
lotuswordpro/source/filter/lwpsortopt.hxx:75
    LwpSortKey m_nWord sal_uInt16
lotuswordpro/source/filter/lwpsortopt.hxx:91
    LwpSortOption m_nCount sal_uInt16
lotuswordpro/source/filter/lwpsortopt.hxx:92
    LwpSortOption m_nFlags sal_uInt16
lotuswordpro/source/filter/lwpsortopt.hxx:93
    LwpSortOption m_nText sal_uInt8
lotuswordpro/source/filter/lwpstory.hxx:78
    LwpStory m_FirstParaStyle class LwpObjectID
lotuswordpro/source/filter/lwptable.hxx:103
    LwpForkedNotifyList m_PersistentList class LwpNotifyListPersistent
lotuswordpro/source/filter/lwptable.hxx:129
    LwpTable m_CPNotifyList class LwpForkedNotifyList
lotuswordpro/source/filter/lwptable.hxx:134
    LwpTable m_nDefaultAutoGrowRowHeight sal_Int32
lotuswordpro/source/filter/lwptable.hxx:170
    LwpParallelColumns cDefaultLeftColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwptable.hxx:171
    LwpParallelColumns cDefaultRightColumnStyle class LwpObjectID
lotuswordpro/source/filter/lwptabrack.hxx:107
    LwpTab m_nRelativeType sal_uInt8
lotuswordpro/source/filter/lwptblcell.hxx:113
    LwpRowList cParent class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:188
    LwpFolder cParent class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:189
    LwpFolder cqTable class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:206
    LwpDependent cFormulaInfo class LwpObjectID
lotuswordpro/source/filter/lwptblcell.hxx:207
    LwpDependent cReferenceOffset sal_uInt16
lotuswordpro/source/filter/lwptblcell.hxx:216
    LwpDependent cFlags sal_uInt8
lotuswordpro/source/filter/lwptoc.hxx:121
    LwpTocSuperLayout m_TextMarker class LwpAtomHolder
lotuswordpro/source/filter/lwptoc.hxx:122
    LwpTocSuperLayout m_ParentName class LwpAtomHolder
lotuswordpro/source/filter/lwptoc.hxx:123
    LwpTocSuperLayout m_DivisionName class LwpAtomHolder
lotuswordpro/source/filter/lwptoc.hxx:124
    LwpTocSuperLayout m_SectionName class LwpAtomHolder
lotuswordpro/source/filter/lwptoc.hxx:125
    LwpTocSuperLayout m_nFrom sal_uInt16
lotuswordpro/source/filter/lwptoc.hxx:127
    LwpTocSuperLayout m_DestName class LwpAtomHolder [9]
lotuswordpro/source/filter/lwptoc.hxx:128
    LwpTocSuperLayout m_DestPGName class LwpAtomHolder [9]
lotuswordpro/source/filter/lwpuidoc.hxx:94
    LwpAutoRunMacroOptions m_OpenName class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:95
    LwpAutoRunMacroOptions m_CloseName class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:96
    LwpAutoRunMacroOptions m_NewName class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:97
    LwpAutoRunMacroOptions m_OptionFlag sal_uInt16
lotuswordpro/source/filter/lwpuidoc.hxx:113
    LwpMergeOptions m_RecordFile class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:114
    LwpMergeOptions m_DescriptionFile class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:115
    LwpMergeOptions m_Filter class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:117
    LwpMergeOptions m_nLastActionFlag sal_uInt16
lotuswordpro/source/filter/lwpuidoc.hxx:131
    LwpUIDocument m_ARMacroOpts class LwpAutoRunMacroOptions
lotuswordpro/source/filter/lwpuidoc.hxx:132
    LwpUIDocument m_MergedOpts class LwpMergeOptions
lotuswordpro/source/filter/lwpuidoc.hxx:133
    LwpUIDocument m_SheetFullPath class LwpAtomHolder
lotuswordpro/source/filter/lwpuidoc.hxx:134
    LwpUIDocument m_nFlags sal_uInt16
lotuswordpro/source/filter/lwpuidoc.hxx:135
    LwpUIDocument m_InitialSaveAsType class LwpAtomHolder
oox/inc/drawingml/chart/axismodel.hxx:42
    oox::drawingml::chart::AxisDispUnitsModel mfCustomUnit double
oox/inc/drawingml/chart/axismodel.hxx:72
    oox::drawingml::chart::AxisModel mnCrossAxisId sal_Int32
oox/inc/drawingml/chart/axismodel.hxx:73
    oox::drawingml::chart::AxisModel mnCrossBetween sal_Int32
oox/inc/drawingml/chart/axismodel.hxx:75
    oox::drawingml::chart::AxisModel mnLabelAlign sal_Int32
oox/inc/drawingml/chart/axismodel.hxx:76
    oox::drawingml::chart::AxisModel mnLabelOffset sal_Int32
oox/inc/drawingml/chart/axismodel.hxx:84
    oox::drawingml::chart::AxisModel mnTickMarkSkip sal_Int32
oox/inc/drawingml/chart/axismodel.hxx:88
    oox::drawingml::chart::AxisModel mbNoMultiLevel _Bool
oox/inc/drawingml/chart/chartspacemodel.hxx:57
    oox::drawingml::chart::ChartSpaceModel mbShowLabelsOverMax _Bool
oox/inc/drawingml/chart/plotareamodel.hxx:37
    oox::drawingml::chart::View3DModel mnDepthPercent sal_Int32
oox/inc/drawingml/chart/seriesmodel.hxx:72
    oox::drawingml::chart::DataLabelsModel mbShowLeaderLines _Bool
oox/inc/drawingml/chart/seriesmodel.hxx:80
    oox::drawingml::chart::PictureOptionsModel mfStackUnit double
oox/inc/drawingml/chart/seriesmodel.hxx:82
    oox::drawingml::chart::PictureOptionsModel mbApplyToFront _Bool
oox/inc/drawingml/chart/seriesmodel.hxx:83
    oox::drawingml::chart::PictureOptionsModel mbApplyToSides _Bool
oox/inc/drawingml/chart/seriesmodel.hxx:84
    oox::drawingml::chart::PictureOptionsModel mbApplyToEnd _Bool
oox/inc/drawingml/chart/seriesmodel.hxx:107
    oox::drawingml::chart::ErrorBarModel mbNoEndCap _Bool
oox/inc/drawingml/chart/seriesmodel.hxx:164
    oox::drawingml::chart::DataPointModel mbInvertNeg _Bool
oox/inc/drawingml/chart/seriesmodel.hxx:202
    oox::drawingml::chart::SeriesModel mnOrder sal_Int32
oox/inc/drawingml/chart/seriesmodel.hxx:203
    oox::drawingml::chart::SeriesModel mbBubble3d _Bool
oox/inc/drawingml/chart/seriesmodel.hxx:204
    oox::drawingml::chart::SeriesModel mbInvertNeg _Bool
oox/inc/drawingml/chart/titlemodel.hxx:53
    oox::drawingml::chart::TitleModel mbOverlay _Bool
oox/inc/drawingml/chart/titlemodel.hxx:70
    oox::drawingml::chart::LegendModel mbOverlay _Bool
oox/inc/drawingml/chart/typegroupmodel.hxx:35
    oox::drawingml::chart::UpDownBarsModel mnGapWidth sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:56
    oox::drawingml::chart::TypeGroupModel mfSplitPos double
oox/inc/drawingml/chart/typegroupmodel.hxx:58
    oox::drawingml::chart::TypeGroupModel mnBubbleScale sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:60
    oox::drawingml::chart::TypeGroupModel mnGapDepth sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:63
    oox::drawingml::chart::TypeGroupModel mnHoleSize sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:64
    oox::drawingml::chart::TypeGroupModel mnOfPieType sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:67
    oox::drawingml::chart::TypeGroupModel mnScatterStyle sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:68
    oox::drawingml::chart::TypeGroupModel mnSecondPieSize sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:70
    oox::drawingml::chart::TypeGroupModel mnSizeRepresents sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:71
    oox::drawingml::chart::TypeGroupModel mnSplitType sal_Int32
oox/inc/drawingml/chart/typegroupmodel.hxx:73
    oox::drawingml::chart::TypeGroupModel mbBubble3d _Bool
oox/inc/drawingml/chart/typegroupmodel.hxx:74
    oox::drawingml::chart::TypeGroupModel mbShowMarker _Bool
oox/inc/drawingml/chart/typegroupmodel.hxx:75
    oox::drawingml::chart::TypeGroupModel mbShowNegBubbles _Bool
oox/inc/drawingml/chart/typegroupmodel.hxx:76
    oox::drawingml::chart::TypeGroupModel mbSmooth _Bool
oox/inc/drawingml/chart/typegroupmodel.hxx:78
    oox::drawingml::chart::TypeGroupModel mbWireframe _Bool
oox/inc/drawingml/customshapeproperties.hxx:88
    oox::drawingml::Path2D extrusionOk _Bool
oox/inc/drawingml/table/tablecell.hxx:107
    oox::drawingml::table::TableCell mbAnchorCtr _Bool
oox/inc/drawingml/table/tablecell.hxx:108
    oox::drawingml::table::TableCell mnHorzOverflowToken sal_Int32
oox/inc/drawingml/textfont.hxx:65
    oox::drawingml::TextFont mnCharset sal_Int32
oox/source/drawingml/diagram/diagram.hxx:118
    oox::drawingml::dgm::Point mnMaxChildren sal_Int32
oox/source/drawingml/diagram/diagram.hxx:119
    oox::drawingml::dgm::Point mnPreferredChildren sal_Int32
oox/source/drawingml/diagram/diagram.hxx:120
    oox::drawingml::dgm::Point mnDirection sal_Int32
oox/source/drawingml/diagram/diagram.hxx:121
    oox::drawingml::dgm::Point mnHierarchyBranch sal_Int32
oox/source/drawingml/diagram/diagram.hxx:122
    oox::drawingml::dgm::Point mnResizeHandles sal_Int32
oox/source/drawingml/diagram/diagram.hxx:123
    oox::drawingml::dgm::Point mnCustomAngle sal_Int32
oox/source/drawingml/diagram/diagram.hxx:124
    oox::drawingml::dgm::Point mnPercentageNeighbourWidth sal_Int32
oox/source/drawingml/diagram/diagram.hxx:125
    oox::drawingml::dgm::Point mnPercentageNeighbourHeight sal_Int32
oox/source/drawingml/diagram/diagram.hxx:126
    oox::drawingml::dgm::Point mnPercentageOwnWidth sal_Int32
oox/source/drawingml/diagram/diagram.hxx:127
    oox::drawingml::dgm::Point mnPercentageOwnHeight sal_Int32
oox/source/drawingml/diagram/diagram.hxx:128
    oox::drawingml::dgm::Point mnIncludeAngleScale sal_Int32
oox/source/drawingml/diagram/diagram.hxx:129
    oox::drawingml::dgm::Point mnRadiusScale sal_Int32
oox/source/drawingml/diagram/diagram.hxx:130
    oox::drawingml::dgm::Point mnWidthScale sal_Int32
oox/source/drawingml/diagram/diagram.hxx:131
    oox::drawingml::dgm::Point mnHeightScale sal_Int32
oox/source/drawingml/diagram/diagram.hxx:132
    oox::drawingml::dgm::Point mnWidthOverride sal_Int32
oox/source/drawingml/diagram/diagram.hxx:133
    oox::drawingml::dgm::Point mnHeightOverride sal_Int32
oox/source/drawingml/diagram/diagram.hxx:134
    oox::drawingml::dgm::Point mnLayoutStyleCount sal_Int32
oox/source/drawingml/diagram/diagram.hxx:135
    oox::drawingml::dgm::Point mnLayoutStyleIndex sal_Int32
oox/source/drawingml/diagram/diagram.hxx:137
    oox::drawingml::dgm::Point mbOrgChartEnabled _Bool
oox/source/drawingml/diagram/diagram.hxx:138
    oox::drawingml::dgm::Point mbBulletEnabled _Bool
oox/source/drawingml/diagram/diagram.hxx:139
    oox::drawingml::dgm::Point mbCoherent3DOffset _Bool
oox/source/drawingml/diagram/diagram.hxx:140
    oox::drawingml::dgm::Point mbCustomHorizontalFlip _Bool
oox/source/drawingml/diagram/diagram.hxx:141
    oox::drawingml::dgm::Point mbCustomVerticalFlip _Bool
oox/source/drawingml/diagram/diagram.hxx:142
    oox::drawingml::dgm::Point mbCustomText _Bool
oox/source/drawingml/diagram/diagram.hxx:143
    oox::drawingml::dgm::Point mbIsPlaceholder _Bool
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:46
    oox::drawingml::IteratorAttr mnAxis sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:48
    oox::drawingml::IteratorAttr mbHideLastTrans _Bool
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:50
    oox::drawingml::IteratorAttr mnSt sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:133
    oox::drawingml::ConstraintAtom mnFor sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:135
    oox::drawingml::ConstraintAtom mnPointType sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:136
    oox::drawingml::ConstraintAtom mnType sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:137
    oox::drawingml::ConstraintAtom mnRefFor sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:139
    oox::drawingml::ConstraintAtom mnRefType sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:140
    oox::drawingml::ConstraintAtom mnRefPointType sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:141
    oox::drawingml::ConstraintAtom mfFactor double
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:142
    oox::drawingml::ConstraintAtom mfValue double
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:143
    oox::drawingml::ConstraintAtom mnOperator sal_Int32
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:255
    oox::drawingml::LayoutNode mnChildOrder sal_Int32
oox/source/drawingml/diagram/layoutnodecontext.cxx:84
    oox::drawingml::AlgorithmContext mnRevision sal_Int32
oox/source/ppt/buildlistcontext.hxx:41
    oox::ppt::BuildListContext mbBuildAsOne _Bool
oox/source/ppt/commonbehaviorcontext.hxx:34
    oox::ppt::Attribute type enum oox::ppt::MS_AttributeNames
oox/source/ppt/timenodelistcontext.cxx:157
    oox::ppt::MediaNodeContext mbIsNarration _Bool
oox/source/ppt/timenodelistcontext.cxx:158
    oox::ppt::MediaNodeContext mbFullScrn _Bool
oox/source/ppt/timenodelistcontext.cxx:363
    oox::ppt::SequenceTimeNodeContext mbConcurrent _Bool
oox/source/ppt/timenodelistcontext.cxx:589
    oox::ppt::AnimContext mnValueType sal_Int32
oox/source/ppt/timenodelistcontext.cxx:670
    oox::ppt::AnimScaleContext mbZoomContents _Bool
oox/source/ppt/timenodelistcontext.cxx:811
    oox::ppt::AnimMotionContext mnPathEditMode sal_Int32
oox/source/ppt/timenodelistcontext.cxx:812
    oox::ppt::AnimMotionContext mnAngle sal_Int32
opencl/source/openclwrapper.cxx:302
    opencl::(anonymous namespace)::OpenCLEnv mpOclCmdQueue cl_command_queue [1]
package/source/zipapi/MemoryByteGrabber.hxx:29
    MemoryByteGrabber maBuffer const css::uno::Sequence<sal_Int8>
pyuno/source/module/pyuno_impl.hxx:226
    pyuno::(anonymous) ob_base PyObject
pyuno/source/module/pyuno_impl.hxx:326
    pyuno::stRuntimeImpl ob_base PyObject
registry/source/reflread.cxx:509
    ConstantPool::readDoubleConstant(sal_uInt16)::(anonymous union)::(anonymous) b1 sal_uInt32
registry/source/reflread.cxx:510
    ConstantPool::readDoubleConstant(sal_uInt16)::(anonymous union)::(anonymous) b2 sal_uInt32
registry/source/reflread.cxx:578
    FieldList m_pCP class ConstantPool *
registry/source/reflread.cxx:764
    ReferenceList m_pCP class ConstantPool *
registry/source/reflread.cxx:867
    MethodList m_pCP class ConstantPool *
reportdesign/source/ui/inc/ReportWindow.hxx:54
    rptui::OReportWindow m_pObjFac ::std::unique_ptr<DlgEdFactory>
rsc/inc/rscdef.hxx:55
    RscExpType cUnused _Bool
rsc/inc/rsctools.hxx:108
     lVal64 sal_uInt64
rsc/inc/rsctools.hxx:127
     lVal32 sal_uInt32
sal/osl/unx/thread.cxx:93
    osl_thread_priority_st m_Highest int
sal/osl/unx/thread.cxx:94
    osl_thread_priority_st m_Above_Normal int
sal/osl/unx/thread.cxx:95
    osl_thread_priority_st m_Normal int
sal/osl/unx/thread.cxx:96
    osl_thread_priority_st m_Below_Normal int
sal/osl/unx/thread.cxx:97
    osl_thread_priority_st m_Lowest int
sal/osl/unx/thread.cxx:115
    osl_thread_global_st m_priority struct osl_thread_priority_st
sal/rtl/alloc_arena.hxx:35
    rtl_arena_stat_type m_mem_total sal_Size
sal/rtl/alloc_arena.hxx:36
    rtl_arena_stat_type m_mem_alloc sal_Size
sal/rtl/alloc_cache.hxx:35
    rtl_cache_stat_type m_mem_total sal_Size
sal/rtl/alloc_cache.hxx:36
    rtl_cache_stat_type m_mem_alloc sal_Size
sal/rtl/alloc_cache.hxx:151
    rtl_cache_st m_cpu_stats struct rtl_cache_stat_type
sal/rtl/math.cxx:878
     md union sal_math_Double
sal/textenc/tcvtutf7.cxx:96
    ImplUTF7ToUCContextData mbShifted _Bool
sal/textenc/tcvtutf7.cxx:97
    ImplUTF7ToUCContextData mbFirst _Bool
sal/textenc/tcvtutf7.cxx:98
    ImplUTF7ToUCContextData mbWroteOne _Bool
sal/textenc/tcvtutf7.cxx:99
    ImplUTF7ToUCContextData mnBitBuffer sal_uInt32
sal/textenc/tcvtutf7.cxx:100
    ImplUTF7ToUCContextData mnBufferBits sal_uInt32
sal/textenc/tcvtutf7.cxx:395
    ImplUTF7FromUCContextData mbShifted _Bool
sal/textenc/tcvtutf7.cxx:396
    ImplUTF7FromUCContextData mnBitBuffer sal_uInt32
sal/textenc/tcvtutf7.cxx:397
    ImplUTF7FromUCContextData mnBufferBits sal_uInt32
sc/inc/AccessibleFilterMenu.hxx:146
    ScAccessibleFilterMenu mbEnabled _Bool
sc/inc/AccessibleFilterMenuItem.hxx:95
    ScAccessibleFilterMenuItem mbEnabled _Bool
sc/inc/colcontainer.hxx:35
    ScColContainer pDocument class ScDocument *
sc/inc/compiler.hxx:259
    ScCompiler::AddInMap pODFF const char *
sc/inc/compiler.hxx:260
    ScCompiler::AddInMap pEnglish const char *
sc/inc/compiler.hxx:262
    ScCompiler::AddInMap pUpper const char *
sc/inc/compiler.hxx:284
    ScCompiler nMaxTab SCTAB
sc/inc/dociter.hxx:168
    ScDBQueryDataIterator::DataAccessMatrix mnCols SCCOL
sc/inc/dociter.hxx:425
    ScHorizontalCellIterator pNextRows SCROW *
sc/inc/dociter.hxx:426
    ScHorizontalCellIterator pNextIndices SCSIZE *
sc/inc/dpoutput.hxx:79
    ScDPOutput mbHasDataLayout _Bool
sc/inc/fillinfo.hxx:160
    CellInfo bMarked _Bool
sc/inc/fillinfo.hxx:188
    RowInfo bEmptyText _Bool
sc/inc/formulalogger.hxx:42
    sc::FormulaLogger maMessages std::vector<OUString>
sc/inc/hints.hxx:81
    ScLinkRefreshedHint nDdeMode sal_uInt8
sc/inc/pivot.hxx:74
    ScDPLabelData mnFlags sal_Int32
sc/inc/pivot.hxx:77
    ScDPLabelData mbIsValue _Bool
sc/inc/scmod.hxx:99
    ScModule pErrorHdl class SfxErrorHandler *
sc/inc/viewuno.hxx:169
    ScTabViewObj mbPendingSelectionChanged _Bool
sc/qa/unit/ucalc_column.cxx:103
    aInputs aName const char *
sc/source/core/data/cellvalues.cxx:25
    sc::(anonymous namespace)::BlockPos mnEnd size_t
sc/source/core/data/column4.cxx:1291
    (anonymous namespace)::StartListeningFormulaCellsHandler mnStartRow SCROW
sc/source/core/data/column4.cxx:1292
    (anonymous namespace)::StartListeningFormulaCellsHandler mnEndRow SCROW
sc/source/core/data/document.cxx:1257
    (anonymous namespace)::BroadcastRecalcOnRefMoveHandler aSwitch sc::AutoCalcSwitch
sc/source/core/data/document.cxx:1258
    (anonymous namespace)::BroadcastRecalcOnRefMoveHandler aBulk class ScBulkBroadcast
sc/source/core/data/formulacell.cxx:1755
    StackCleaner pInt class ScInterpreter *
sc/source/filter/excel/xltoolbar.hxx:23
    TBCCmd cmdID sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:24
    TBCCmd A _Bool
sc/source/filter/excel/xltoolbar.hxx:25
    TBCCmd B _Bool
sc/source/filter/excel/xltoolbar.hxx:26
    TBCCmd cmdType sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:27
    TBCCmd C _Bool
sc/source/filter/excel/xltoolbar.hxx:28
    TBCCmd reserved3 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:54
    ScCTB ectbid sal_uInt32
sc/source/filter/excel/xltoolbar.hxx:72
    CTBS bSignature sal_uInt8
sc/source/filter/excel/xltoolbar.hxx:73
    CTBS bVersion sal_uInt8
sc/source/filter/excel/xltoolbar.hxx:74
    CTBS reserved1 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:75
    CTBS reserved2 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:76
    CTBS reserved3 sal_uInt16
sc/source/filter/excel/xltoolbar.hxx:79
    CTBS ictbView sal_uInt16
sc/source/filter/excel/xltools.cxx:102
     smD union sal_math_Double
sc/source/filter/inc/addressconverter.hxx:489
    oox::xls::AddressConverter::ControlCharacters mcThisWorkbook sal_Unicode
sc/source/filter/inc/addressconverter.hxx:490
    oox::xls::AddressConverter::ControlCharacters mcExternal sal_Unicode
sc/source/filter/inc/addressconverter.hxx:491
    oox::xls::AddressConverter::ControlCharacters mcThisSheet sal_Unicode
sc/source/filter/inc/addressconverter.hxx:492
    oox::xls::AddressConverter::ControlCharacters mcInternal sal_Unicode
sc/source/filter/inc/addressconverter.hxx:493
    oox::xls::AddressConverter::ControlCharacters mcSameSheet sal_Unicode
sc/source/filter/inc/addressconverter.hxx:506
    oox::xls::AddressConverter mbColOverflow _Bool
sc/source/filter/inc/addressconverter.hxx:507
    oox::xls::AddressConverter mbRowOverflow _Bool
sc/source/filter/inc/addressconverter.hxx:508
    oox::xls::AddressConverter mbTabOverflow _Bool
sc/source/filter/inc/autofilterbuffer.hxx:87
    oox::xls::DiscreteFilter mnCalendarType sal_Int32
sc/source/filter/inc/autofilterbuffer.hxx:180
    oox::xls::FilterColumn mbHiddenButton _Bool
sc/source/filter/inc/autofilterbuffer.hxx:181
    oox::xls::FilterColumn mbShowButton _Bool
sc/source/filter/inc/colrowst.hxx:83
    XclImpColRowSettings mbHasDefHeight _Bool
sc/source/filter/inc/commentsbuffer.hxx:34
    oox::xls::CommentModel mnAuthorId sal_Int32
sc/source/filter/inc/commentsbuffer.hxx:35
    oox::xls::CommentModel mbAutoFill _Bool
sc/source/filter/inc/commentsbuffer.hxx:37
    oox::xls::CommentModel mbColHidden _Bool
sc/source/filter/inc/commentsbuffer.hxx:39
    oox::xls::CommentModel mbRowHidden _Bool
sc/source/filter/inc/condformatbuffer.hxx:58
    oox::xls::CondFormatRuleModel mbStopIfTrue _Bool
sc/source/filter/inc/condformatbuffer.hxx:188
    oox::xls::CondFormatModel mbPivot _Bool
sc/source/filter/inc/connectionsbuffer.hxx:49
    oox::xls::WebPrModel mnHtmlFormat sal_Int32
sc/source/filter/inc/connectionsbuffer.hxx:51
    oox::xls::WebPrModel mbSourceData _Bool
sc/source/filter/inc/connectionsbuffer.hxx:52
    oox::xls::WebPrModel mbParsePre _Bool
sc/source/filter/inc/connectionsbuffer.hxx:53
    oox::xls::WebPrModel mbConsecutive _Bool
sc/source/filter/inc/connectionsbuffer.hxx:54
    oox::xls::WebPrModel mbFirstRow _Bool
sc/source/filter/inc/connectionsbuffer.hxx:55
    oox::xls::WebPrModel mbXl97Created _Bool
sc/source/filter/inc/connectionsbuffer.hxx:56
    oox::xls::WebPrModel mbTextDates _Bool
sc/source/filter/inc/connectionsbuffer.hxx:57
    oox::xls::WebPrModel mbXl2000Refreshed _Bool
sc/source/filter/inc/connectionsbuffer.hxx:76
    oox::xls::ConnectionModel mnReconnectMethod sal_Int32
sc/source/filter/inc/connectionsbuffer.hxx:77
    oox::xls::ConnectionModel mnCredentials sal_Int32
sc/source/filter/inc/connectionsbuffer.hxx:79
    oox::xls::ConnectionModel mbKeepAlive _Bool
sc/source/filter/inc/connectionsbuffer.hxx:80
    oox::xls::ConnectionModel mbNew _Bool
sc/source/filter/inc/connectionsbuffer.hxx:81
    oox::xls::ConnectionModel mbDeleted _Bool
sc/source/filter/inc/connectionsbuffer.hxx:82
    oox::xls::ConnectionModel mbOnlyUseConnFile _Bool
sc/source/filter/inc/connectionsbuffer.hxx:83
    oox::xls::ConnectionModel mbBackground _Bool
sc/source/filter/inc/connectionsbuffer.hxx:84
    oox::xls::ConnectionModel mbRefreshOnLoad _Bool
sc/source/filter/inc/connectionsbuffer.hxx:85
    oox::xls::ConnectionModel mbSaveData _Bool
sc/source/filter/inc/connectionsbuffer.hxx:86
    oox::xls::ConnectionModel mbSavePassword _Bool
sc/source/filter/inc/defnamesbuffer.hxx:55
    oox::xls::DefinedNameModel mnFuncGroupId sal_Int32
sc/source/filter/inc/defnamesbuffer.hxx:59
    oox::xls::DefinedNameModel mbHidden _Bool
sc/source/filter/inc/drawingbase.hxx:59
    oox::xls::AnchorClientDataModel mbLocksWithSheet _Bool
sc/source/filter/inc/drawingbase.hxx:60
    oox::xls::AnchorClientDataModel mbPrintsWithSheet _Bool
sc/source/filter/inc/eeparser.hxx:109
    ScEEParser nHtmlLastToken enum HtmlTokenId
sc/source/filter/inc/exp_op.hxx:39
    ExportTyp pD class ScDocument *
sc/source/filter/inc/exp_op.hxx:40
    ExportTyp eTargetCharset rtl_TextEncoding
sc/source/filter/inc/exp_op.hxx:59
    ExportBiff5 pExcRoot struct RootData *
sc/source/filter/inc/externallinkbuffer.hxx:45
    oox::xls::ExternalNameModel mbNotify _Bool
sc/source/filter/inc/externallinkbuffer.hxx:46
    oox::xls::ExternalNameModel mbPreferPic _Bool
sc/source/filter/inc/externallinkbuffer.hxx:47
    oox::xls::ExternalNameModel mbStdDocName _Bool
sc/source/filter/inc/externallinkbuffer.hxx:49
    oox::xls::ExternalNameModel mbIconified _Bool
sc/source/filter/inc/formulabase.hxx:491
    oox::xls::FunctionInfo mnRetClass sal_uInt8
sc/source/filter/inc/formulabase.hxx:494
    oox::xls::FunctionInfo mbVolatile _Bool
sc/source/filter/inc/formulabase.hxx:497
    oox::xls::FunctionInfo mbMacroFunc _Bool
sc/source/filter/inc/formulabase.hxx:498
    oox::xls::FunctionInfo mbVarParam _Bool
sc/source/filter/inc/htmlexp.hxx:124
    ScHTMLExport bTableDataWidth _Bool
sc/source/filter/inc/imp_op.hxx:88
    ImportExcel::LastFormula mpCell class ScFormulaCell *
sc/source/filter/inc/lotattr.hxx:97
    LotAttrCache pBlack class SvxColorItem *
sc/source/filter/inc/orcusinterface.hxx:352
    ScOrcusStyles::xf mnStyleXf size_t
sc/source/filter/inc/orcusinterface.hxx:370
    ScOrcusStyles::cell_style mnBuiltInId size_t
sc/source/filter/inc/pagesettings.hxx:54
    oox::xls::PageSettingsModel mnCopies sal_Int32
sc/source/filter/inc/pagesettings.hxx:59
    oox::xls::PageSettingsModel mnHorPrintRes sal_Int32
sc/source/filter/inc/pagesettings.hxx:60
    oox::xls::PageSettingsModel mnVerPrintRes sal_Int32
sc/source/filter/inc/pagesettings.hxx:64
    oox::xls::PageSettingsModel mnPrintErrors sal_Int32
sc/source/filter/inc/pagesettings.hxx:66
    oox::xls::PageSettingsModel mbUseFirstHF _Bool
sc/source/filter/inc/pagesettings.hxx:69
    oox::xls::PageSettingsModel mbBlackWhite _Bool
sc/source/filter/inc/pagesettings.hxx:70
    oox::xls::PageSettingsModel mbDraftQuality _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:129
    oox::xls::PCFieldModel mnNumFmtId sal_Int32
sc/source/filter/inc/pivotcachebuffer.hxx:130
    oox::xls::PCFieldModel mnSqlType sal_Int32
sc/source/filter/inc/pivotcachebuffer.hxx:131
    oox::xls::PCFieldModel mnHierarchy sal_Int32
sc/source/filter/inc/pivotcachebuffer.hxx:132
    oox::xls::PCFieldModel mnLevel sal_Int32
sc/source/filter/inc/pivotcachebuffer.hxx:135
    oox::xls::PCFieldModel mbServerField _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:136
    oox::xls::PCFieldModel mbUniqueList _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:137
    oox::xls::PCFieldModel mbMemberPropField _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:144
    oox::xls::PCSharedItemsModel mbHasSemiMixed _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:145
    oox::xls::PCSharedItemsModel mbHasNonDate _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:148
    oox::xls::PCSharedItemsModel mbHasBlank _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:149
    oox::xls::PCSharedItemsModel mbHasMixed _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:151
    oox::xls::PCSharedItemsModel mbIsInteger _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:152
    oox::xls::PCSharedItemsModel mbHasLongText _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:309
    oox::xls::PCDefinitionModel mfRefreshedDate double
sc/source/filter/inc/pivotcachebuffer.hxx:310
    oox::xls::PCDefinitionModel mnRecords sal_Int32
sc/source/filter/inc/pivotcachebuffer.hxx:311
    oox::xls::PCDefinitionModel mnMissItemsLimit sal_Int32
sc/source/filter/inc/pivotcachebuffer.hxx:312
    oox::xls::PCDefinitionModel mbInvalid _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:313
    oox::xls::PCDefinitionModel mbSaveData _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:314
    oox::xls::PCDefinitionModel mbRefreshOnLoad _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:315
    oox::xls::PCDefinitionModel mbOptimizeMemory _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:316
    oox::xls::PCDefinitionModel mbEnableRefresh _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:317
    oox::xls::PCDefinitionModel mbBackgroundQuery _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:318
    oox::xls::PCDefinitionModel mbUpgradeOnRefresh _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:319
    oox::xls::PCDefinitionModel mbTupleCache _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:320
    oox::xls::PCDefinitionModel mbSupportSubquery _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:321
    oox::xls::PCDefinitionModel mbSupportDrill _Bool
sc/source/filter/inc/pivotcachebuffer.hxx:329
    oox::xls::PCSourceModel mnConnectionId sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:55
    oox::xls::PTFieldModel mnNumFmtId sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:78
    oox::xls::PTFieldModel mbInsertPageBreak _Bool
sc/source/filter/inc/pivottablebuffer.hxx:106
    oox::xls::PTDataFieldModel mnNumFmtId sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:191
    oox::xls::PTFilterModel mnMemPropField sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:193
    oox::xls::PTFilterModel mnEvalOrder sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:194
    oox::xls::PTFilterModel mnId sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:196
    oox::xls::PTFilterModel mnMeasureHier sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:239
    oox::xls::PTDefinitionModel mnDataPosition sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:240
    oox::xls::PTDefinitionModel mnPageWrap sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:241
    oox::xls::PTDefinitionModel mnIndent sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:242
    oox::xls::PTDefinitionModel mnChartFormat sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:243
    oox::xls::PTDefinitionModel mbDataOnRows _Bool
sc/source/filter/inc/pivottablebuffer.hxx:244
    oox::xls::PTDefinitionModel mbShowError _Bool
sc/source/filter/inc/pivottablebuffer.hxx:245
    oox::xls::PTDefinitionModel mbShowMissing _Bool
sc/source/filter/inc/pivottablebuffer.hxx:246
    oox::xls::PTDefinitionModel mbShowItems _Bool
sc/source/filter/inc/pivottablebuffer.hxx:247
    oox::xls::PTDefinitionModel mbDisableFieldList _Bool
sc/source/filter/inc/pivottablebuffer.hxx:248
    oox::xls::PTDefinitionModel mbShowCalcMembers _Bool
sc/source/filter/inc/pivottablebuffer.hxx:249
    oox::xls::PTDefinitionModel mbVisualTotals _Bool
sc/source/filter/inc/pivottablebuffer.hxx:250
    oox::xls::PTDefinitionModel mbShowDrill _Bool
sc/source/filter/inc/pivottablebuffer.hxx:251
    oox::xls::PTDefinitionModel mbPrintDrill _Bool
sc/source/filter/inc/pivottablebuffer.hxx:253
    oox::xls::PTDefinitionModel mbPreserveFormatting _Bool
sc/source/filter/inc/pivottablebuffer.hxx:254
    oox::xls::PTDefinitionModel mbUseAutoFormat _Bool
sc/source/filter/inc/pivottablebuffer.hxx:255
    oox::xls::PTDefinitionModel mbPageOverThenDown _Bool
sc/source/filter/inc/pivottablebuffer.hxx:256
    oox::xls::PTDefinitionModel mbSubtotalHiddenItems _Bool
sc/source/filter/inc/pivottablebuffer.hxx:259
    oox::xls::PTDefinitionModel mbFieldPrintTitles _Bool
sc/source/filter/inc/pivottablebuffer.hxx:260
    oox::xls::PTDefinitionModel mbItemPrintTitles _Bool
sc/source/filter/inc/pivottablebuffer.hxx:261
    oox::xls::PTDefinitionModel mbMergeItem _Bool
sc/source/filter/inc/pivottablebuffer.hxx:262
    oox::xls::PTDefinitionModel mbShowEmptyRow _Bool
sc/source/filter/inc/pivottablebuffer.hxx:263
    oox::xls::PTDefinitionModel mbShowEmptyCol _Bool
sc/source/filter/inc/pivottablebuffer.hxx:264
    oox::xls::PTDefinitionModel mbShowHeaders _Bool
sc/source/filter/inc/pivottablebuffer.hxx:265
    oox::xls::PTDefinitionModel mbFieldListSortAsc _Bool
sc/source/filter/inc/pivottablebuffer.hxx:266
    oox::xls::PTDefinitionModel mbCustomListSort _Bool
sc/source/filter/inc/pivottablebuffer.hxx:274
    oox::xls::PTLocationModel mnFirstHeaderRow sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:275
    oox::xls::PTLocationModel mnFirstDataRow sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:276
    oox::xls::PTLocationModel mnFirstDataCol sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:277
    oox::xls::PTLocationModel mnRowPageCount sal_Int32
sc/source/filter/inc/pivottablebuffer.hxx:278
    oox::xls::PTLocationModel mnColPageCount sal_Int32
sc/source/filter/inc/querytablebuffer.hxx:33
    oox::xls::QueryTableModel mnGrowShrinkType sal_Int32
sc/source/filter/inc/querytablebuffer.hxx:34
    oox::xls::QueryTableModel mbHeaders _Bool
sc/source/filter/inc/querytablebuffer.hxx:35
    oox::xls::QueryTableModel mbRowNumbers _Bool
sc/source/filter/inc/querytablebuffer.hxx:36
    oox::xls::QueryTableModel mbDisableRefresh _Bool
sc/source/filter/inc/querytablebuffer.hxx:37
    oox::xls::QueryTableModel mbBackground _Bool
sc/source/filter/inc/querytablebuffer.hxx:38
    oox::xls::QueryTableModel mbFirstBackground _Bool
sc/source/filter/inc/querytablebuffer.hxx:39
    oox::xls::QueryTableModel mbRefreshOnLoad _Bool
sc/source/filter/inc/querytablebuffer.hxx:40
    oox::xls::QueryTableModel mbFillFormulas _Bool
sc/source/filter/inc/querytablebuffer.hxx:41
    oox::xls::QueryTableModel mbRemoveDataOnSave _Bool
sc/source/filter/inc/querytablebuffer.hxx:42
    oox::xls::QueryTableModel mbDisableEdit _Bool
sc/source/filter/inc/querytablebuffer.hxx:43
    oox::xls::QueryTableModel mbPreserveFormat _Bool
sc/source/filter/inc/querytablebuffer.hxx:44
    oox::xls::QueryTableModel mbAdjustColWidth _Bool
sc/source/filter/inc/querytablebuffer.hxx:45
    oox::xls::QueryTableModel mbIntermediate _Bool
sc/source/filter/inc/richstring.hxx:121
    oox::xls::PhoneticDataModel mnFontId sal_Int32
sc/source/filter/inc/richstring.hxx:122
    oox::xls::PhoneticDataModel mnType sal_Int32
sc/source/filter/inc/richstring.hxx:123
    oox::xls::PhoneticDataModel mnAlignment sal_Int32
sc/source/filter/inc/richstring.hxx:163
    oox::xls::RichStringPhonetic mnBasePos sal_Int32
sc/source/filter/inc/richstring.hxx:164
    oox::xls::RichStringPhonetic mnBaseEnd sal_Int32
sc/source/filter/inc/root.hxx:95
    LOTUS_ROOT eActType enum Lotus123Typ
sc/source/filter/inc/root.hxx:96
    LOTUS_ROOT aActRange class ScRange
sc/source/filter/inc/scenariobuffer.hxx:34
    oox::xls::ScenarioCellModel mnNumFmtId sal_Int32
sc/source/filter/inc/scenariobuffer.hxx:46
    oox::xls::ScenarioModel mbHidden _Bool
sc/source/filter/inc/scenariobuffer.hxx:80
    oox::xls::SheetScenariosModel mnCurrent sal_Int32
sc/source/filter/inc/sheetdatabuffer.hxx:43
    oox::xls::CellModel mbShowPhonetic _Bool
sc/source/filter/inc/sheetdatacontext.hxx:61
    oox::xls::SheetDataContext aReleaser class SolarMutexReleaser
sc/source/filter/inc/stylesbuffer.hxx:167
    oox::xls::ApiFontUsedFlags mbSchemeUsed _Bool
sc/source/filter/inc/stylesbuffer.hxx:275
    oox::xls::AlignmentModel mbJustLastLine _Bool
sc/source/filter/inc/stylesbuffer.hxx:487
    oox::xls::GradientFillModel mnType sal_Int32
sc/source/filter/inc/stylesbuffer.hxx:488
    oox::xls::GradientFillModel mfAngle double
sc/source/filter/inc/stylesbuffer.hxx:489
    oox::xls::GradientFillModel mfLeft double
sc/source/filter/inc/stylesbuffer.hxx:490
    oox::xls::GradientFillModel mfRight double
sc/source/filter/inc/stylesbuffer.hxx:491
    oox::xls::GradientFillModel mfTop double
sc/source/filter/inc/stylesbuffer.hxx:492
    oox::xls::GradientFillModel mfBottom double
sc/source/filter/inc/stylesbuffer.hxx:640
    oox::xls::Xf meRotationRef sal_Int32
sc/source/filter/inc/stylesbuffer.hxx:693
    oox::xls::CellStyleModel mbHidden _Bool
sc/source/filter/inc/stylesbuffer.hxx:774
    oox::xls::AutoFormatModel mnAutoFormatId sal_Int32
sc/source/filter/inc/stylesbuffer.hxx:775
    oox::xls::AutoFormatModel mbApplyNumFmt _Bool
sc/source/filter/inc/stylesbuffer.hxx:776
    oox::xls::AutoFormatModel mbApplyFont _Bool
sc/source/filter/inc/stylesbuffer.hxx:777
    oox::xls::AutoFormatModel mbApplyAlignment _Bool
sc/source/filter/inc/stylesbuffer.hxx:778
    oox::xls::AutoFormatModel mbApplyBorder _Bool
sc/source/filter/inc/stylesbuffer.hxx:779
    oox::xls::AutoFormatModel mbApplyFill _Bool
sc/source/filter/inc/stylesbuffer.hxx:780
    oox::xls::AutoFormatModel mbApplyProtection _Bool
sc/source/filter/inc/tablebuffer.hxx:36
    oox::xls::TableModel mnType sal_Int32
sc/source/filter/inc/tablecolumnsbuffer.hxx:47
    oox::xls::TableColumn mnId sal_Int32
sc/source/filter/inc/tablecolumnsbuffer.hxx:48
    oox::xls::TableColumn mnDataDxfId sal_Int32
sc/source/filter/inc/tokstack.hxx:88
    TokenPool pP_Err sal_uInt16 *
sc/source/filter/inc/tokstack.hxx:90
    TokenPool nP_ErrAkt sal_uInt16
sc/source/filter/inc/viewsettings.hxx:35
    oox::xls::PaneSelectionModel mnActiveCellId sal_Int32
sc/source/filter/inc/viewsettings.hxx:49
    oox::xls::SheetViewModel mnWorkbookViewId sal_Int32
sc/source/filter/inc/viewsettings.hxx:58
    oox::xls::SheetViewModel mnPageLayoutZoom sal_Int32
sc/source/filter/inc/viewsettings.hxx:67
    oox::xls::SheetViewModel mbZoomToFit _Bool
sc/source/filter/inc/viewsettings.hxx:128
    oox::xls::WorkbookViewModel mnWinX sal_Int32
sc/source/filter/inc/viewsettings.hxx:129
    oox::xls::WorkbookViewModel mnWinY sal_Int32
sc/source/filter/inc/viewsettings.hxx:130
    oox::xls::WorkbookViewModel mnWinWidth sal_Int32
sc/source/filter/inc/viewsettings.hxx:131
    oox::xls::WorkbookViewModel mnWinHeight sal_Int32
sc/source/filter/inc/viewsettings.hxx:133
    oox::xls::WorkbookViewModel mnFirstVisSheet sal_Int32
sc/source/filter/inc/viewsettings.hxx:135
    oox::xls::WorkbookViewModel mnVisibility sal_Int32
sc/source/filter/inc/viewsettings.hxx:139
    oox::xls::WorkbookViewModel mbMinimized _Bool
sc/source/filter/inc/workbooksettings.hxx:45
    oox::xls::WorkbookSettingsModel mnUpdateLinksMode sal_Int32
sc/source/filter/inc/workbooksettings.hxx:46
    oox::xls::WorkbookSettingsModel mnDefaultThemeVer sal_Int32
sc/source/filter/inc/workbooksettings.hxx:49
    oox::xls::WorkbookSettingsModel mbSaveExtLinkValues _Bool
sc/source/filter/inc/workbooksettings.hxx:61
    oox::xls::CalcSettingsModel mnCalcId sal_Int32
sc/source/filter/inc/workbooksettings.hxx:62
    oox::xls::CalcSettingsModel mnRefMode sal_Int32
sc/source/filter/inc/workbooksettings.hxx:65
    oox::xls::CalcSettingsModel mnProcCount sal_Int32
sc/source/filter/inc/workbooksettings.hxx:66
    oox::xls::CalcSettingsModel mbCalcOnSave _Bool
sc/source/filter/inc/workbooksettings.hxx:67
    oox::xls::CalcSettingsModel mbCalcCompleted _Bool
sc/source/filter/inc/workbooksettings.hxx:70
    oox::xls::CalcSettingsModel mbConcurrent _Bool
sc/source/filter/inc/worksheetbuffer.hxx:38
    oox::xls::SheetInfoModel mnSheetId sal_Int32
sc/source/filter/inc/worksheethelper.hxx:77
    oox::xls::ColumnModel mbShowPhonetic _Bool
sc/source/filter/inc/worksheethelper.hxx:97
    oox::xls::RowModel mbShowPhonetic _Bool
sc/source/filter/inc/worksheethelper.hxx:100
    oox::xls::RowModel mbThickTop _Bool
sc/source/filter/inc/worksheethelper.hxx:101
    oox::xls::RowModel mbThickBottom _Bool
sc/source/filter/inc/worksheethelper.hxx:115
    oox::xls::PageBreakModel mnMin sal_Int32
sc/source/filter/inc/worksheethelper.hxx:116
    oox::xls::PageBreakModel mnMax sal_Int32
sc/source/filter/inc/worksheetsettings.hxx:35
    oox::xls::SheetSettingsModel mbFilterMode _Bool
sc/source/filter/inc/worksheetsettings.hxx:36
    oox::xls::SheetSettingsModel mbApplyStyles _Bool
sc/source/filter/inc/worksheetsettings.hxx:37
    oox::xls::SheetSettingsModel mbSummaryBelow _Bool
sc/source/filter/inc/worksheetsettings.hxx:38
    oox::xls::SheetSettingsModel mbSummaryRight _Bool
sc/source/filter/inc/XclImpChangeTrack.hxx:36
    XclImpChTrRecHeader nSize sal_uInt32
sc/source/filter/inc/xeformula.hxx:34
    XclExpRefLogEntry mpLastTab const class XclExpString *
sc/source/filter/inc/xichart.hxx:368
    XclImpChFrame maData struct XclChFrame
sc/source/filter/inc/xichart.hxx:827
    XclImpChSeries maData struct XclChSeries
sc/source/filter/inc/xichart.hxx:945
    XclImpChDropBar mnBarDist sal_uInt16
sc/source/filter/inc/xiescher.hxx:206
    XclImpDrawObjBase mbSimpleMacro _Bool
sc/source/filter/inc/xiescher.hxx:632
    XclImpGroupBoxObj mnGroupBoxFlags sal_uInt16
sc/source/filter/inc/xiescher.hxx:675
    XclImpEditObj mnListBoxObjId sal_uInt16
sc/source/filter/inc/xiescher.hxx:698
    XclImpTbxObjScrollableBase mnThumbWidth sal_uInt16
sc/source/filter/inc/xiescher.hxx:699
    XclImpTbxObjScrollableBase mnScrollFlags sal_uInt16
sc/source/filter/inc/xiescher.hxx:752
    XclImpTbxObjListBase mnEditObjId sal_uInt16
sc/source/filter/inc/xiescher.hxx:806
    XclImpDropDownObj mnLeft sal_uInt16
sc/source/filter/inc/xiescher.hxx:807
    XclImpDropDownObj mnTop sal_uInt16
sc/source/filter/inc/xiescher.hxx:808
    XclImpDropDownObj mnRight sal_uInt16
sc/source/filter/inc/xiescher.hxx:809
    XclImpDropDownObj mnBottom sal_uInt16
sc/source/filter/inc/xiescher.hxx:812
    XclImpDropDownObj mnMinWidth sal_uInt16
sc/source/filter/inc/xiname.hxx:42
    XclImpName::TokenStrmData mnStrmPos std::size_t
sc/source/filter/inc/xistyle.hxx:475
    XclImpStyle mbHidden _Bool
sc/source/filter/inc/xlescher.hxx:394
    XclObjTextData mnShortcutEA sal_uInt16
sc/source/filter/inc/xlpivot.hxx:621
    XclPTFieldExtInfo mnNumFmt sal_uInt16
sc/source/filter/inc/xlview.hxx:92
    XclDocViewData mnWinX sal_uInt16
sc/source/filter/inc/xlview.hxx:93
    XclDocViewData mnWinY sal_uInt16
sc/source/filter/inc/xlview.hxx:94
    XclDocViewData mnWinWidth sal_uInt16
sc/source/filter/inc/xlview.hxx:95
    XclDocViewData mnWinHeight sal_uInt16
sc/source/filter/inc/xlview.hxx:98
    XclDocViewData mnFirstVisXclTab sal_uInt16
sc/source/filter/inc/xlview.hxx:99
    XclDocViewData mnXclSelectCnt sal_uInt16
sc/source/filter/lotus/lotfilter.hxx:47
    LotusContext pAttrUnprot class ScProtectionAttr *
sc/source/filter/oox/biffhelper.cxx:41
    oox::xls::(anonymous namespace)::DecodedDouble maStruct union sal_math_Double
sc/source/filter/xml/xmldpimp.hxx:305
    ScXMLDataPilotFieldContext mbHasHiddenMember _Bool
sc/source/filter/xml/xmldrani.hxx:79
    ScXMLDatabaseRangeContext bIsSelection _Bool
sc/source/filter/xml/xmlexternaltabi.hxx:118
    ScXMLExternalRefCellContext mnCellType sal_Int16
sc/source/ui/inc/dataprovider.hxx:46
    sc::ExternalDataMapper maDocument class ScDocument
sc/source/ui/inc/docsh.hxx:438
    ScDocShellModificator mpProtector std::unique_ptr<ScRefreshTimerProtector>
sc/source/ui/inc/filtdlg.hxx:198
    ScSpecialFilterDlg pOptionsMgr class ScFilterOptionsMgr *
sc/source/ui/inc/preview.hxx:47
    ScPreview nTabPage long
sc/source/ui/inc/tabvwsh.hxx:128
    ScTabViewShell pPivotSource class ScArea *
sc/source/ui/vba/vbafont.hxx:36
    ScVbaFont mPalette class ScVbaPalette
sd/inc/sdmod.hxx:131
    SdModule mpErrorHdl class SfxErrorHandler *
sd/source/filter/eppt/eppt.hxx:176
    PPTWriter mnTxId sal_uInt32
sd/source/filter/ppt/ppt97animations.hxx:41
    Ppt97AnimationInfoAtom nSlideCount sal_uInt16
sd/source/filter/ppt/ppt97animations.hxx:47
    Ppt97AnimationInfoAtom nOLEVerb sal_uInt8
sd/source/filter/ppt/ppt97animations.hxx:50
    Ppt97AnimationInfoAtom nUnknown1 sal_uInt8
sd/source/filter/ppt/ppt97animations.hxx:51
    Ppt97AnimationInfoAtom nUnknown2 sal_uInt8
sd/source/ui/inc/animobjs.hxx:129
    sd::AnimationWindow pControllerItem class sd::AnimationControllerItem *
sd/source/ui/inc/navigatr.hxx:122
    SdNavigatorWin mpNavigatorCtrlItem class SdNavigatorControllerItem *
sd/source/ui/inc/navigatr.hxx:123
    SdNavigatorWin mpPageNameCtrlItem class SdPageNameControllerItem *
sd/source/ui/remotecontrol/Receiver.hxx:36
    sd::Receiver pTransmitter class sd::Transmitter *
sd/source/ui/remotecontrol/ZeroconfService.hxx:36
    sd::ZeroconfService port uint
sd/source/ui/sidebar/MasterPageContainerProviders.hxx:136
    sd::sidebar::TemplatePreviewProvider msURL class rtl::OUString
sd/source/ui/slidesorter/view/SlsLayouter.cxx:61
    sd::slidesorter::view::Layouter::Implementation mpTheme std::shared_ptr<view::Theme>
sd/source/ui/table/TableDesignPane.hxx:113
    sd::TableDesignPane aImpl class sd::TableDesignWidget
sd/source/ui/view/DocumentRenderer.cxx:1335
    sd::DocumentRenderer::Implementation mxObjectShell SfxObjectShellRef
sd/source/ui/view/viewshel.cxx:1233
    sd::KeepSlideSorterInSyncWithPageChanges m_aDrawLock sd::slidesorter::view::class SlideSorterView::DrawLock
sd/source/ui/view/viewshel.cxx:1234
    sd::KeepSlideSorterInSyncWithPageChanges m_aModelLock sd::slidesorter::controller::class SlideSorterController::ModelChangeLock
sd/source/ui/view/viewshel.cxx:1235
    sd::KeepSlideSorterInSyncWithPageChanges m_aUpdateLock sd::slidesorter::controller::class PageSelector::UpdateLock
sd/source/ui/view/viewshel.cxx:1236
    sd::KeepSlideSorterInSyncWithPageChanges m_aContext sd::slidesorter::controller::class SelectionObserver::Context
sd/source/ui/view/ViewShellBase.cxx:195
    sd::ViewShellBase::Implementation mpPageCacheManager std::shared_ptr<slidesorter::cache::PageCacheManager>
sfx2/source/doc/doctempl.cxx:118
    DocTempl::DocTempl_EntryData_Impl mxObjShell class SfxObjectShellLock
sfx2/source/doc/docundomanager.cxx:198
    sfx2::UndoManagerGuard m_guard class SfxModelGuard
sfx2/source/inc/appdata.hxx:76
    SfxAppData_Impl pDocTopics SfxDdeDocTopics_Impl *
sfx2/source/inc/appdata.hxx:77
    SfxAppData_Impl pTriggerTopic class SfxDdeTriggerTopic_Impl *
sfx2/source/inc/appdata.hxx:78
    SfxAppData_Impl pDdeService2 class DdeService *
sfx2/source/inc/appdata.hxx:90
    SfxAppData_Impl m_pToolsErrorHdl class SfxErrorHandler *
sfx2/source/inc/appdata.hxx:91
    SfxAppData_Impl m_pSoErrorHdl class SfxErrorHandler *
sfx2/source/inc/appdata.hxx:93
    SfxAppData_Impl m_pSbxErrorHdl class SfxErrorHandler *
sfx2/source/inc/docundomanager.hxx:92
    SfxModelGuard m_aGuard class SolarMutexResettableGuard
sfx2/source/view/classificationcontroller.cxx:59
    sfx2::ClassificationCategoriesController m_aPropertyListener class sfx2::ClassificationPropertyListener
slideshow/source/engine/opengl/TransitionImpl.hxx:296
    Vertex normal glm::vec3
slideshow/source/engine/opengl/TransitionImpl.hxx:297
    Vertex texcoord glm::vec2
soltools/cpp/cpp.h:144
    macroValidator pMacro Nlist *
starmath/inc/view.hxx:163
    SmCmdBoxWindow aController class SmEditController
starmath/inc/view.hxx:224
    SmViewShell maGraphicController class SmGraphicController
store/source/storbase.hxx:269
    store::PageData m_aMarked store::PageData::L
svl/source/misc/inethist.cxx:48
    INetURLHistory_Impl::head_entry m_nMagic sal_uInt32
svtools/source/svhtml/htmlkywd.cxx:558
    HTML_OptionEntry  union HTML_OptionEntry::(anonymous at /home/noel/libo3/svtools/source/svhtml/htmlkywd.cxx:558:5)
svtools/source/svhtml/htmlkywd.cxx:560
    HTML_OptionEntry::(anonymous) sToken const sal_Char *
svtools/source/svhtml/htmlkywd.cxx:561
    HTML_OptionEntry::(anonymous) pUToken const class rtl::OUString *
svx/source/dialog/contimp.hxx:57
    SvxSuperContourDlg aContourItem class SvxContourDlgItem
svx/source/form/dataaccessdescriptor.cxx:45
    svx::ODADescriptorImpl m_bSetOutOfDate _Bool
svx/source/sidebar/line/LinePropertyPanel.hxx:97
    svx::sidebar::LinePropertyPanel maStyleControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:98
    svx::sidebar::LinePropertyPanel maDashControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:100
    svx::sidebar::LinePropertyPanel maStartControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:101
    svx::sidebar::LinePropertyPanel maEndControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:102
    svx::sidebar::LinePropertyPanel maLineEndListControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:103
    svx::sidebar::LinePropertyPanel maLineStyleListControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:104
    svx::sidebar::LinePropertyPanel maTransControl sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:105
    svx::sidebar::LinePropertyPanel maEdgeStyle sfx2::sidebar::ControllerItem
svx/source/sidebar/line/LinePropertyPanel.hxx:106
    svx::sidebar::LinePropertyPanel maCapStyle sfx2::sidebar::ControllerItem
svx/source/table/tablertfimporter.cxx:53
    sdr::table::RTFCellDefault maItemSet class SfxItemSet
sw/inc/shellio.hxx:147
    SwReader aFileName class rtl::OUString
sw/inc/swmodule.hxx:93
    SwModule m_pErrorHandler class SfxErrorHandler *
sw/source/core/crsr/crbm.cxx:64
    (anonymous namespace)::CursorStateHelper m_aSaveState class SwCursorSaveState
sw/source/core/frmedt/fetab.cxx:90
    TableWait m_pWait const std::unique_ptr<SwWait>
sw/source/core/inc/swfont.hxx:994
    SvStatistics nGetStretchTextSize sal_uInt16
sw/source/core/layout/dbg_lay.cxx:164
    SwImplEnterLeave nAction enum DbgAction
sw/source/core/text/xmldump.cxx:33
    XmlPortionDumper ofs sal_Int32
sw/source/filter/html/htmlcss1.cxx:77
    SwCSS1ItemIds nFormatBreak sal_uInt16
sw/source/filter/html/htmlcss1.cxx:78
    SwCSS1ItemIds nFormatPageDesc sal_uInt16
sw/source/filter/html/htmlcss1.cxx:79
    SwCSS1ItemIds nFormatKeep sal_uInt16
sw/source/filter/inc/rtf.hxx:28
    RTFSurround::(anonymous union)::(anonymous) nGoldCut sal_uInt8
sw/source/filter/inc/rtf.hxx:29
    RTFSurround::(anonymous union)::(anonymous) nOrder sal_uInt8
sw/source/filter/inc/rtf.hxx:30
    RTFSurround::(anonymous union)::(anonymous) nJunk sal_uInt8
sw/source/filter/inc/rtf.hxx:31
    RTFSurround::(anonymous) Flags struct (anonymous struct at /home/noel/libo3/sw/source/filter/inc/rtf.hxx:27:9)
sw/source/uibase/inc/uivwimp.hxx:95
    SwView_Impl xTmpSelDocSh class SfxObjectShellLock
sw/source/uibase/inc/unodispatch.hxx:46
    SwXDispatchProviderInterceptor::DispatchMutexLock_Impl aGuard class SolarMutexGuard
toolkit/source/awt/stylesettings.cxx:90
    toolkit::StyleMethodGuard m_aGuard class SolarMutexGuard
ucb/source/ucp/gio/gio_mount.hxx:46
    OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:49
    OOoMountOperationClass _gtk_reserved1 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:50
    OOoMountOperationClass _gtk_reserved2 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:51
    OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:52
    OOoMountOperationClass _gtk_reserved4 void (*)(void)
unoidl/source/legacyprovider.cxx:87
    unoidl::detail::(anonymous namespace)::Cursor manager_ rtl::Reference<Manager>
unoidl/source/unoidlprovider.cxx:672
    unoidl::detail::(anonymous namespace)::UnoidlCursor reference1_ rtl::Reference<UnoidlProvider>
unoidl/source/unoidlprovider.cxx:673
    unoidl::detail::(anonymous namespace)::UnoidlCursor reference2_ rtl::Reference<UnoidlModuleEntity>
vbahelper/source/vbahelper/vbafillformat.hxx:36
    ScVbaFillFormat m_nForeColor sal_Int32
vcl/inc/accel.h:33
    ImplAccelEntry mpAutoAccel class Accelerator *
vcl/inc/opengl/RenderList.hxx:29
    Vertex color glm::vec4
vcl/inc/opengl/RenderList.hxx:30
    Vertex lineData glm::vec4
vcl/inc/opengl/zone.hxx:46
    OpenGLVCLContextZone aZone class OpenGLZone
vcl/inc/salmenu.hxx:34
    SalItemParams nBits enum MenuItemBits
vcl/inc/salmenu.hxx:42
    SalMenuButtonItem mnId sal_uInt16
vcl/inc/salmenu.hxx:43
    SalMenuButtonItem maImage class Image
vcl/inc/salmenu.hxx:44
    SalMenuButtonItem maToolTipText class rtl::OUString
vcl/inc/salprn.hxx:43
    SalPrinterQueueInfo mpSysData class rtl::OUString *
vcl/inc/salwtype.hxx:195
    SalSurroundingTextRequestEvent mnStart sal_uLong
vcl/inc/salwtype.hxx:196
    SalSurroundingTextRequestEvent mnEnd sal_uLong
vcl/inc/salwtype.hxx:207
    SalQueryCharPositionEvent mbValid _Bool
vcl/inc/salwtype.hxx:209
    SalQueryCharPositionEvent mbVertical _Bool
vcl/inc/salwtype.hxx:210
    SalQueryCharPositionEvent mnCursorBoundX long
vcl/inc/salwtype.hxx:211
    SalQueryCharPositionEvent mnCursorBoundY long
vcl/inc/salwtype.hxx:212
    SalQueryCharPositionEvent mnCursorBoundWidth long
vcl/inc/salwtype.hxx:213
    SalQueryCharPositionEvent mnCursorBoundHeight long
vcl/inc/salwtype.hxx:242
    SalInputContext mpFont class FontSelectPattern *
vcl/inc/salwtype.hxx:250
    SalSwipeEvent mnVelocityY double
vcl/inc/sft.hxx:486
    vcl::TrueTypeFont mapper sal_uInt32 (*)(const sal_uInt8 *, sal_uInt32, sal_uInt32)
vcl/opengl/salbmp.cxx:412
    (anonymous namespace)::ScanlineWriter mpCurrentScanline sal_uInt8 *
vcl/source/filter/graphicfilter.cxx:1036
    ImpFilterLibCache mpLast struct ImpFilterLibCacheEntry *
vcl/source/filter/jpeg/Exif.hxx:56
    Exif::ExifIFD type sal_uInt16
vcl/source/filter/jpeg/Exif.hxx:57
    Exif::ExifIFD count sal_uInt32
vcl/source/filter/wmf/enhwmf.cxx:325
    (anonymous namespace)::BLENDFUNCTION aBlendOperation unsigned char
vcl/source/filter/wmf/enhwmf.cxx:326
    (anonymous namespace)::BLENDFUNCTION aBlendFlags unsigned char
vcl/source/gdi/jobset.cxx:34
    ImplOldJobSetupData cDeviceName char [32]
vcl/source/gdi/jobset.cxx:35
    ImplOldJobSetupData cPortName char [32]
vcl/source/gdi/pdfwriter_impl.cxx:5432
    (anonymous namespace)::(anonymous) extnID SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5433
    (anonymous namespace)::(anonymous) critical SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5434
    (anonymous namespace)::(anonymous) extnValue SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5456
    (anonymous namespace)::(anonymous) version SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5458
    (anonymous namespace)::(anonymous) reqPolicy SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5459
    (anonymous namespace)::(anonymous) nonce SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5460
    (anonymous namespace)::(anonymous) certReq SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5461
    (anonymous namespace)::(anonymous) extensions (anonymous namespace)::Extension *
vcl/source/gdi/pdfwriter_impl.cxx:5505
    (anonymous namespace)::SigningCertificateV2 certs struct (anonymous namespace)::ESSCertIDv2 **
vcl/source/gdi/pdfwriter_impl.cxx:5803
    (anonymous namespace)::(anonymous) statusString SECItem
vcl/source/gdi/pdfwriter_impl.cxx:5804
    (anonymous namespace)::(anonymous) failInfo SECItem
vcl/source/uitest/uno/uitest_uno.cxx:35
    UITestUnoObj mpUITest std::unique_ptr<UITest>
vcl/unx/generic/app/wmadaptor.cxx:1270
    _mwmhints input_mode long
vcl/unx/generic/app/wmadaptor.cxx:1271
    _mwmhints status unsigned long
vcl/unx/gtk/a11y/atkhypertext.cxx:29
    (anonymous) atk_hyper_link AtkHyperlink
vcl/unx/gtk/a11y/atkwrapper.hxx:45
    AtkObjectWrapper aParent AtkObject
vcl/unx/gtk/a11y/atkwrapper.hxx:72
    AtkObjectWrapperClass aParentClass AtkObjectClass
vcl/unx/gtk/gloactiongroup.cxx:28
    GLOAction parent_instance GObject
vcl/unx/gtk/glomenu.cxx:20
    GLOMenu parent_instance GMenuModel
vcl/unx/gtk/hudawareness.cxx:20
    (anonymous) connection GDBusConnection *
vcl/unx/gtk/hudawareness.cxx:23
    (anonymous) notify GDestroyNotify
writerfilter/source/dmapper/PropertyMap.hxx:185
    writerfilter::dmapper::SectionPropertyMap m_nDebugSectionNumber sal_Int32