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
|
basctl/source/inc/dlged.hxx:76
void basctl::DlgEdHint::DlgEdHint(enum basctl::DlgEdHint::Kind,class basctl::DlgEdObj *)
enum basctl::DlgEdHint::Kind
2
basctl/source/inc/sbxitem.hxx:48
void basctl::SbxItem::SbxItem(unsigned short,const class basctl::ScriptDocument &,const class rtl::OUString &,const class rtl::OUString &,enum basctl::ItemType)
unsigned short nWhich
30799
basctl/source/inc/sbxitem.hxx:49
void basctl::SbxItem::SbxItem(unsigned short,const class basctl::ScriptDocument &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum basctl::ItemType)
unsigned short nWhich
30799
basic/source/inc/codegen.hxx:38
void SbiCodeGen::SbiCodeGen(class SbModule &,class SbiParser *,short)
short
1024
basic/source/inc/runtime.hxx:334
void SbiRuntime::StepFIND_Impl(class SbxObject *,unsigned int,unsigned int,unsigned long,_Bool)
unsigned long
87560
basic/source/inc/runtime.hxx:351
_Bool SbiRuntime::IsImageFlag(enum SbiImageFlags) const
enum SbiImageFlags n
2
basic/source/inc/sbjsmeth.hxx:33
void SbJScriptMethod::SbJScriptMethod(enum SbxDataType)
enum SbxDataType
12
chart2/source/controller/inc/AccessibleBase.hxx:145
void chart::AccessibleBase::RemoveState(short)
short aState
23
chart2/source/model/template/ScatterChartType.hxx:31
void chart::ScatterChartType::ScatterChartType(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,enum com::sun::star::chart2::CurveStyle,int,int)
int nResolution
20
chart2/source/model/template/ScatterChartType.hxx:31
void chart::ScatterChartType::ScatterChartType(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,enum com::sun::star::chart2::CurveStyle,int,int)
int nOrder
3
chart2/source/view/charttypes/GL3DBarChart.cxx:157
void chart::RenderAnimationThread::RenderAnimationThread(class chart::GL3DBarChart *,const struct glm::detail::tvec3<float> &,const struct glm::detail::tvec3<float> &,const int)
const int nSteps
200
chart2/source/view/inc/GL3DRenderer.hxx:184
void chart::opengl3D::OpenGL3DRenderer::Set3DSenceInfo(unsigned int,_Bool)
unsigned int color
16777215
chart2/source/view/inc/GL3DRenderer.hxx:185
void chart::opengl3D::OpenGL3DRenderer::SetLightInfo(_Bool,unsigned int,const struct glm::detail::tvec4<float> &)
unsigned int color
16777215
chart2/source/view/inc/GL3DRenderer.hxx:193
void chart::opengl3D::OpenGL3DRenderer::AddShape3DExtrudeObject(_Bool,unsigned int,unsigned int,const struct glm::detail::tmat4x4<float> &,unsigned int)
unsigned int specular
16777215
chart2/source/view/inc/GL3DRenderer.hxx:260
void chart::opengl3D::OpenGL3DRenderer::CreateActualRoundedCube(float,int,int,float,float,float)
int iSubDivZ
20
chart2/source/view/inc/GL3DRenderer.hxx:260
void chart::opengl3D::OpenGL3DRenderer::CreateActualRoundedCube(float,int,int,float,float,float)
int iSubDivY
20
chart2/source/view/main/OpenGLRender.hxx:121
int OpenGLRender::Create2DCircle(int)
int detail
100
connectivity/source/drivers/mork/MorkParser.hxx:80
struct MorkTableMap * MorkParser::getTables(int)
int tableScope
128
connectivity/source/drivers/mork/MQueryHelper.hxx:183
_Bool connectivity::mork::MQueryHelper::getRowValue(class connectivity::ORowSetValue &,int,const class rtl::OUString &,int)
int nType
12
connectivity/source/drivers/postgresql/pq_statics.cxx:81
void pq_sdbc_driver::PropertyDefEx::PropertyDefEx(const class rtl::OUString &,const class com::sun::star::uno::Type &,int)
int a
16
connectivity/source/inc/java/sql/ConnectionLog.hxx:106
_Bool connectivity::java::sql::ConnectionLog::log(const int,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
const int _nLogLevel
300
connectivity/source/inc/java/sql/ConnectionLog.hxx:112
_Bool connectivity::java::sql::ConnectionLog::log(const int,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
const int _nLogLevel
300
connectivity/source/inc/java/sql/ConnectionLog.hxx:118
_Bool connectivity::java::sql::ConnectionLog::log(const int,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
const int _nLogLevel
300
connectivity/source/inc/odbc/OPreparedStatement.hxx:79
void connectivity::odbc::OPreparedStatement::setParameter(int,int,const class com::sun::star::uno::Sequence<signed char> &)
int _nType
-2
connectivity/source/inc/resource/sharedresources.hxx:122
class rtl::OUString connectivity::SharedResources::getResourceStringWithSubstitution(unsigned short,const char *,const class rtl::OUString &,const char *,const class rtl::OUString &,const char *,const class rtl::OUString &) const
unsigned short _nResId
1201
connectivity/source/inc/resource/sharedresources.hxx:142
class rtl::OUString connectivity::SharedResources::getResourceStringWithSubstitution(unsigned short,const class std::__debug::list<struct std::pair<const char *, class rtl::OUString>, class std::allocator<struct std::pair<const char *, class rtl::OUString> > > &) const
unsigned short _nResId
1409
cppcanvas/source/inc/implrenderer.hxx:253
_Bool cppcanvas::internal::ImplRenderer::isActionContained(class GDIMetaFile &,const char *,enum MetaActionType)
enum MetaActionType nType
147
cui/source/inc/autocdlg.hxx:398
class SvTreeListEntry * OfaQuoteTabPage::CreateEntry(class rtl::OUString &,unsigned short)
unsigned short nCol
2
cui/source/inc/backgrnd.hxx:131
_Bool SvxBackgroundTabPage::FillItemSetWithWallpaperItem(class SfxItemSet &,unsigned short)
unsigned short nSlot
9185
cui/source/inc/chardlg.hxx:296
void SvxCharPositionPage::UpdatePreview_Impl(unsigned char,unsigned char,short)
unsigned char nProp
100
cui/source/inc/cuihyperdlg.hxx:46
void SvxHlinkCtrl::SvxHlinkCtrl(unsigned short,class SfxBindings &,class SvxHpLinkDlg *)
unsigned short nId
10361
cui/source/inc/optlingu.hxx:157
void SvxLinguTabPage::HideGroups(unsigned short)
unsigned short nGrp
8
cui/source/inc/SpellDialog.hxx:115
void svx::SentenceEditWindow_Impl::UndoActionStart(unsigned short)
unsigned short nId
205
cui/source/options/cfgchart.hxx:92
void SvxChartColorTableItem::SvxChartColorTableItem(unsigned short,const class SvxChartColorTable &)
unsigned short nWhich
10437
dbaccess/source/core/dataaccess/documentdefinition.hxx:181
void dbaccess::ODocumentDefinition::firePropertyChange(int,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &,_Bool,const struct dbaccess::ODocumentDefinition::NotifierAccess &)
int i_nHandle
7
dbaccess/source/core/inc/columnsettings.hxx:40
void dbaccess::IPropertyContainer::registerMayBeVoidProperty(const class rtl::OUString &,int,int,class com::sun::star::uno::Any *,const class com::sun::star::uno::Type &)
int _nAttributes
3
dbaccess/source/ext/macromigration/migrationerror.hxx:114
void dbmm::MigrationError::MigrationError(const enum dbmm::MigrationErrorType,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class com::sun::star::uno::Any &)
const enum dbmm::MigrationErrorType _eType
17
dbaccess/source/ext/macromigration/progressmixer.hxx:37
void dbmm::IProgressConsumer::start(unsigned int)
unsigned int _nRange
100000
dbaccess/source/ui/dlg/dsnItem.hxx:39
void dbaui::DbuTypeCollectionItem::DbuTypeCollectionItem(short,class dbaccess::ODsnTypeCollection *)
short nWhich
5
dbaccess/source/ui/inc/charsetlistbox.hxx:39
_Bool dbaui::CharSetListBox::StoreSelectedCharSet(class SfxItemSet &,const unsigned short)
const unsigned short _nItemId
11
dbaccess/source/ui/inc/dbadmin.hxx:101
void dbaui::ODbAdminDialog::addDetailPage(unsigned short,unsigned short,class VclPtr<class SfxTabPage> (*)(class vcl::Window *, const class SfxItemSet *))
unsigned short _nTextId
19663
dbaccess/source/ui/inc/FieldDescControl.hxx:159
void dbaui::OFieldDescControl::CellModified(long,unsigned short)
long nRow
-1
dbaccess/source/ui/inc/JAccess.hxx:57
void dbaui::OJoinDesignViewAccess::notifyAccessibleEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short _nEventId
7
dbaccess/source/ui/inc/JoinExchange.hxx:56
void dbaui::OJoinExchObj::StartDrag(class vcl::Window *,signed char,class dbaui::IDragTransferableListener *)
signed char nDragSourceActions
4
dbaccess/source/ui/inc/propertysetitem.hxx:37
void dbaui::OPropertySetItem::OPropertySetItem(short)
short nWhich
25
dbaccess/source/ui/inc/propertysetitem.hxx:38
void dbaui::OPropertySetItem::OPropertySetItem(short,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
short nWhich
25
dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx:86
class rtl::Reference<class dbaui::OTableFieldDesc> dbaui::OSelectionBrowseBox::InsertField(const class rtl::Reference<class dbaui::OTableFieldDesc> &,unsigned short,_Bool,_Bool)
unsigned short _nColumnPosition
65535
desktop/source/deployment/gui/dp_gui_extensioncmdqueue.cxx:198
void dp_gui::ExtensionCmd::ExtensionCmd(const enum dp_gui::ExtensionCmd::E_CMD_TYPE,const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::deployment::XPackage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::deployment::XPackage> > > &)
const enum dp_gui::ExtensionCmd::E_CMD_TYPE eCommand
4
desktop/source/deployment/gui/license_dialog.cxx:60
void dp_gui::LicenseView::ScrollDown(enum ScrollType)
enum ScrollType eScroll
4
editeng/source/editeng/editobj.cxx:1098
void (anonymous namespace)::FindAttribByChar::FindAttribByChar(unsigned short,int)
unsigned short nWhich
4013
editeng/source/editeng/impedit.hxx:622
_Bool ImpEditEngine::HasScriptType(int,unsigned short) const
unsigned short nType
3
editeng/source/editeng/impedit.hxx:946
void ImpEditEngine::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nLangWhichId
4027
editeng/source/editeng/impedit.hxx:946
void ImpEditEngine::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nFontWhichId
4029
editeng/source/editeng/textconv.hxx:90
void TextConvWrapper::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nLangWhichId
4027
editeng/source/editeng/textconv.hxx:90
void TextConvWrapper::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nFontWhichId
4029
editeng/source/outliner/outlundo.hxx:33
void OutlinerUndoBase::OutlinerUndoBase(unsigned short,class Outliner *)
unsigned short nId
200
filter/source/config/cache/filtercache.hxx:335
_Bool filter::config::FilterCache::isFillState(enum filter::config::FilterCache::EFillState) const
enum filter::config::FilterCache::EFillState eRequired
2
filter/source/flash/swfwriter.hxx:304
void swf::Writer::waitOnClick(unsigned short)
unsigned short nDepth
10
filter/source/graphicfilter/eps/eps.cxx:184
void PSWriter::ImplCurveTo(const class Point &,const class Point &,const class Point &,unsigned int)
unsigned int nMode
4
filter/source/graphicfilter/idxf/dxf2mtf.hxx:108
_Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short)
unsigned short nMinPercent
60
filter/source/graphicfilter/idxf/dxf2mtf.hxx:108
_Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short)
unsigned short nMaxPercent
100
forms/source/richtext/rtattributes.hxx:52
void frm::AttributeState::AttributeState(enum frm::AttributeCheckState)
enum frm::AttributeCheckState _eCheckState
2
fpicker/source/office/iodlgimp.cxx:69
void (anonymous namespace)::SvtSimpleResId::SvtSimpleResId(unsigned short)
unsigned short nId
17485
framework/inc/tabwin/tabwindow.hxx:145
void framework::TabWindow::implts_SendNotification(enum framework::TabWindow::Notification,int,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::NamedValue> &) const
enum framework::TabWindow::Notification eNotify
2
framework/inc/uielement/macrosmenucontroller.hxx:68
void framework::MacrosMenuController::addScriptItems(class PopupMenu *,unsigned short)
unsigned short startItemId
4
framework/source/uielement/thesaurusmenucontroller.cxx:43
void ThesaurusMenuController::getMeanings(class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &,const class rtl::OUString &,const struct com::sun::star::lang::Locale &,unsigned long)
unsigned long nMaxSynonms
7
hwpfilter/source/mzstring.h:123
int MzString::rfind(char)
char c
125
hwpfilter/source/mzstring.h:127
void MzString::replace(int,char)
char c
32
idlc/inc/astattribute.hxx:39
void AstAttribute::AstAttribute(enum NodeType,unsigned int,const class AstType *,const class rtl::OString &,class AstScope *)
enum NodeType nodeType
12
idlc/inc/astconstant.hxx:30
void AstConstant::AstConstant(const enum ExprType,const enum NodeType,class AstExpression *,const class rtl::OString &,class AstScope *)
const enum NodeType nodeType
20
idlc/inc/astconstant.hxx:30
void AstConstant::AstConstant(const enum ExprType,const enum NodeType,class AstExpression *,const class rtl::OString &,class AstScope *)
const enum ExprType type
2
idlc/inc/astexpression.hxx:96
void AstExpression::AstExpression(int,enum ExprType)
enum ExprType et
10
idlc/inc/astmember.hxx:37
void AstMember::AstMember(enum NodeType,const class AstType *,const class rtl::OString &,class AstScope *)
enum NodeType type
14
idlc/inc/astservice.hxx:35
void AstService::AstService(const enum NodeType,const class rtl::OString &,class AstScope *)
const enum NodeType type
24
idlc/inc/aststruct.hxx:37
void AstStruct::AstStruct(const enum NodeType,const class rtl::OString &,const class AstStruct *,class AstScope *)
const enum NodeType type
10
include/basegfx/curve/b2dbeziertools.hxx:45
void basegfx::B2DCubicBezierHelper::B2DCubicBezierHelper(const class basegfx::B2DCubicBezier &,unsigned int)
unsigned int nDivisions
9
include/basegfx/range/b2ibox.hxx:77
void basegfx::B2IBox::B2IBox(int,int,int,int)
int y2
10
include/basegfx/range/b2ibox.hxx:77
void basegfx::B2IBox::B2IBox(int,int,int,int)
int x2
10
include/basic/sbxcore.hxx:64
_Bool SbxBase::IsReset(enum SbxFlagBits) const
enum SbxFlagBits n
256
include/comphelper/logging.hxx:122
_Bool comphelper::EventLogger::log(const int,const class rtl::OUString &) const
const int _nLogLevel
800
include/comphelper/propagg.hxx:121
void comphelper::OPropertyArrayAggregationHelper::OPropertyArrayAggregationHelper(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,class comphelper::IPropertyInfoService *,int)
int _nFirstAggregateId
10000
include/comphelper/propagg.hxx:287
void comphelper::OPropertySetAggregationHelper::declareForwardedProperty(int)
int _nHandle
194
include/comphelper/seqstream.hxx:105
void comphelper::OSequenceOutputStream::OSequenceOutputStream(class com::sun::star::uno::Sequence<signed char> &,double,int)
int _nMinimumResize
128
include/connectivity/sqlerror.hxx:102
class rtl::OUString connectivity::SQLError::getErrorMessage(const int) const
const int _eCondition
300
include/connectivity/sqlerror.hxx:181
void connectivity::SQLError::raiseException(const int) const
const int _eCondition
200
include/connectivity/sqlerror.hxx:206
void connectivity::SQLError::raiseTypedException(const int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class com::sun::star::uno::Type &) const
const int _eCondition
100
include/dbaccess/genericcontroller.hxx:338
_Bool dbaui::OGenericUnoController::isFeatureSupported(int)
int _nId
5502
include/drawinglayer/attribute/fillhatchattribute.hxx:66
void drawinglayer::attribute::FillHatchAttribute::FillHatchAttribute(enum drawinglayer::attribute::HatchStyle,double,double,const class basegfx::BColor &,unsigned int,_Bool)
unsigned int nMinimalDiscreteDistance
3
include/drawinglayer/primitive2d/mediaprimitive2d.hxx:67
void drawinglayer::primitive2d::MediaPrimitive2D::MediaPrimitive2D(const class basegfx::B2DHomMatrix &,const class rtl::OUString &,const class basegfx::BColor &,unsigned int,const class Graphic &)
unsigned int nDiscreteBorder
4
include/editeng/AccessibleParaManager.hxx:127
void accessibility::AccessibleParaManager::FireEvent(int,const short) const
const short nEventId
21
include/editeng/AccessibleParaManager.hxx:241
void accessibility::AccessibleParaManager::SetState(int,const short)
const short nStateId
11
include/editeng/AccessibleParaManager.hxx:243
void accessibility::AccessibleParaManager::UnSetState(int,const short)
const short nStateId
11
include/editeng/bulletitem.hxx:63
void SvxBulletItem::SvxBulletItem(unsigned short)
unsigned short nWhich
4004
include/editeng/bulletitem.hxx:96
class vcl::Font SvxBulletItem::CreateFont(class SvStream &,unsigned short)
unsigned short nVer
2
include/editeng/charsetcoloritem.hxx:37
void SvxCharSetColorItem::SvxCharSetColorItem(const unsigned short)
const unsigned short nId
2
include/editeng/colritem.hxx:80
void SvxBackgroundColorItem::SvxBackgroundColorItem(const class Color &,const unsigned short)
const unsigned short nId
4044
include/editeng/editeng.hxx:294
struct ESelection EditEngine::GetWord(const struct ESelection &,unsigned short) const
unsigned short nWordType
2
include/editeng/editeng.hxx:306
void EditEngine::InsertParagraph(int,const class EditTextObject &)
int nPara
2147483647
include/editeng/editeng.hxx:332
void EditEngine::UndoActionStart(unsigned short,const struct ESelection &)
unsigned short nId
111
include/editeng/editund2.hxx:37
void EditUndoManager::EditUndoManager(unsigned short)
unsigned short nMaxUndoActionCount
20
include/editeng/editview.hxx:187
void EditView::RemoveCharAttribs(int,unsigned short)
unsigned short nWhich
4016
include/editeng/fhgtitem.hxx:79
void SvxFontHeightItem::SetHeight(unsigned int,unsigned short,enum MapUnit,enum MapUnit)
enum MapUnit eUnit
8
include/editeng/flditem.hxx:75
void SvxFieldItem::SvxFieldItem(const class SvxFieldData &,const unsigned short)
const unsigned short nId
4048
include/editeng/justifyitem.hxx:33
void SvxHorJustifyItem::SvxHorJustifyItem(const unsigned short)
const unsigned short nId
35
include/editeng/justifyitem.hxx:65
void SvxVerJustifyItem::SvxVerJustifyItem(const unsigned short)
const unsigned short nId
36
include/editeng/optitems.hxx:39
void SfxSpellCheckItem::SfxSpellCheckItem(class com::sun::star::uno::Reference<class com::sun::star::linguistic2::XSpellChecker1> &,unsigned short)
unsigned short nWhich
12009
include/editeng/outliner.hxx:168
void Paragraph::RemoveFlag(enum ParaFlag)
enum ParaFlag nFlag
256
include/editeng/outliner.hxx:879
void Outliner::SetParaFlag(class Paragraph *,enum ParaFlag)
enum ParaFlag nFlag
256
include/editeng/outlobj.hxx:105
void OutlinerParaObject::SetStyleSheets(unsigned short,const class rtl::OUString &,const enum SfxStyleFamily &)
const enum SfxStyleFamily & rNewFamily
8
include/editeng/unoedhlp.hxx:45
void SvxEditSourceHint::SvxEditSourceHint(enum SfxHintId)
enum SfxHintId nId
33
include/editeng/unoedhlp.hxx:46
void SvxEditSourceHint::SvxEditSourceHint(enum SfxHintId,unsigned long,int,int)
enum SfxHintId nId
32
include/editeng/writingmodeitem.hxx:31
void SvxWritingModeItem::SvxWritingModeItem(enum com::sun::star::text::WritingMode,unsigned short)
unsigned short nWhich
1160
include/filter/msfilter/dffpropset.hxx:64
class rtl::OUString DffPropSet::GetPropertyString(unsigned int,class SvStream &) const
unsigned int nId
896
include/filter/msfilter/escherex.hxx:708
void EscherPropertyContainer::Commit(class SvStream &,unsigned short,unsigned short)
unsigned short nVersion
3
include/filter/msfilter/msdffimp.hxx:547
_Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const
unsigned short nRecId2
4000
include/filter/msfilter/msdffimp.hxx:547
_Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const
unsigned short nRecId1
4008
include/filter/msfilter/util.hxx:109
_Bool msfilter::util::WW8ReadFieldParams::GetTokenSttFromTo(int *,int *,int)
int _nMax
9
include/formula/FormulaCompiler.hxx:97
void formula::FormulaCompiler::OpCodeMap::OpCodeMap(unsigned short,_Bool,enum formula::FormulaGrammar::Grammar)
unsigned short nSymbols
494
include/formula/tokenarray.hxx:174
unsigned short formula::FormulaTokenArray::RemoveToken(unsigned short,unsigned short)
unsigned short nCount
2
include/formula/tokenarray.hxx:372
void formula::FormulaTokenIterator::Item::Item(const class formula::FormulaTokenArray *,short,short)
short stop
32767
include/formula/tokenarray.hxx:372
void formula::FormulaTokenIterator::Item::Item(const class formula::FormulaTokenArray *,short,short)
short pc
-1
include/o3tl/string_view.hxx:282
void o3tl::basic_string_view::remove_prefix(unsigned long)
unsigned long n
2
include/o3tl/string_view.hxx:291
void o3tl::basic_string_view::remove_suffix(unsigned long)
unsigned long n
2
include/o3tl/string_view.hxx:304
unsigned long o3tl::basic_string_view::copy(type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long n
10
include/o3tl/string_view.hxx:333
int o3tl::basic_string_view::compare(unsigned long,unsigned long,basic_string_view<charT, traits>) const
unsigned long n1
2
include/o3tl/string_view.hxx:337
int o3tl::basic_string_view::compare(unsigned long,unsigned long,basic_string_view<charT, traits>,unsigned long,unsigned long) const
unsigned long n2
2
include/o3tl/string_view.hxx:337
int o3tl::basic_string_view::compare(unsigned long,unsigned long,basic_string_view<charT, traits>,unsigned long,unsigned long) const
unsigned long n1
2
include/o3tl/string_view.hxx:345
int o3tl::basic_string_view::compare(unsigned long,unsigned long,const type-parameter-?-? *) const
unsigned long n1
2
include/o3tl/string_view.hxx:348
int o3tl::basic_string_view::compare(unsigned long,unsigned long,const type-parameter-?-? *,unsigned long) const
unsigned long n1
2
include/o3tl/string_view.hxx:348
int o3tl::basic_string_view::compare(unsigned long,unsigned long,const type-parameter-?-? *,unsigned long) const
unsigned long n2
2
include/o3tl/string_view.hxx:373
unsigned long o3tl::basic_string_view::find(type-parameter-?-?,unsigned long) const
type-parameter-?-? c
111
include/o3tl/string_view.hxx:376
unsigned long o3tl::basic_string_view::find(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long n
2
include/o3tl/string_view.hxx:408
unsigned long o3tl::basic_string_view::rfind(type-parameter-?-?,unsigned long) const
type-parameter-?-? c
111
include/o3tl/string_view.hxx:408
unsigned long o3tl::basic_string_view::rfind(type-parameter-?-?,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:411
unsigned long o3tl::basic_string_view::rfind(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:411
unsigned long o3tl::basic_string_view::rfind(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long n
2
include/o3tl/string_view.hxx:414
unsigned long o3tl::basic_string_view::rfind(const type-parameter-?-? *,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:433
unsigned long o3tl::basic_string_view::find_first_of(type-parameter-?-?,unsigned long) const
type-parameter-?-? c
111
include/o3tl/string_view.hxx:436
unsigned long o3tl::basic_string_view::find_first_of(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long n
2
include/o3tl/string_view.hxx:464
unsigned long o3tl::basic_string_view::find_last_of(type-parameter-?-?,unsigned long) const
type-parameter-?-? c
111
include/o3tl/string_view.hxx:464
unsigned long o3tl::basic_string_view::find_last_of(type-parameter-?-?,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:468
unsigned long o3tl::basic_string_view::find_last_of(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:468
unsigned long o3tl::basic_string_view::find_last_of(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long n
2
include/o3tl/string_view.hxx:472
unsigned long o3tl::basic_string_view::find_last_of(const type-parameter-?-? *,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:497
unsigned long o3tl::basic_string_view::find_first_not_of(type-parameter-?-?,unsigned long) const
type-parameter-?-? c
102
include/o3tl/string_view.hxx:501
unsigned long o3tl::basic_string_view::find_first_not_of(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long n
2
include/o3tl/string_view.hxx:535
unsigned long o3tl::basic_string_view::find_last_not_of(type-parameter-?-?,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:535
unsigned long o3tl::basic_string_view::find_last_not_of(type-parameter-?-?,unsigned long) const
type-parameter-?-? c
120
include/o3tl/string_view.hxx:539
unsigned long o3tl::basic_string_view::find_last_not_of(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long pos
18446744073709551615
include/o3tl/string_view.hxx:539
unsigned long o3tl::basic_string_view::find_last_not_of(const type-parameter-?-? *,unsigned long,unsigned long) const
unsigned long n
2
include/o3tl/string_view.hxx:543
unsigned long o3tl::basic_string_view::find_last_not_of(const type-parameter-?-? *,unsigned long) const
unsigned long pos
18446744073709551615
include/oox/core/contexthandler2.hxx:172
_Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
int nCountBack
4
include/oox/core/contexthandler2.hxx:172
_Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
int nElement
459852
include/oox/drawingml/color.hxx:44
int oox::drawingml::Color::getDmlPresetColor(int,int)
int nDefaultRgb
-1
include/oox/drawingml/drawingmltypes.hxx:197
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nHeight
-1
include/oox/drawingml/drawingmltypes.hxx:197
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nY
-1
include/oox/drawingml/drawingmltypes.hxx:197
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nWidth
-1
include/oox/drawingml/drawingmltypes.hxx:197
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nX
-1
include/oox/export/drawingml.hxx:180
void oox::drawingml::DrawingML::WriteBlipFill(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,int)
int nXmlNamespace
421
include/oox/export/vmlexport.hxx:129
void oox::vml::VMLExport::AddShapeAttribute(int,const class rtl::OString &)
int nAttribute
5455
include/oox/helper/attributelist.hxx:134
const char * oox::AttributeList::getChar(int) const
int nAttrToken
4176
include/oox/helper/attributelist.hxx:157
unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
unsigned int nDefault
4294967295
include/oox/helper/attributelist.hxx:157
unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
int nAttrToken
4315
include/oox/helper/binaryoutputstream.hxx:86
void oox::BinaryOutputStream::writeCharArrayUC(const class rtl::OUString &,unsigned short)
unsigned short eTextEnc
12
include/oox/helper/binarystreambase.hxx:103
void oox::BinaryStreamBase::alignToBlock(int,long)
int nBlockSize
4
include/oox/helper/textinputstream.hxx:42
void oox::TextInputStream::TextInputStream(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,unsigned short)
unsigned short eTextEnc
76
include/oox/mathml/importutils.hxx:122
class rtl::OUString & oox::formulaimport::XmlStream::AttributeList::operator[](int)
###1
1447388
include/oox/mathml/importutils.hxx:150
_Bool oox::formulaimport::XmlStream::Tag::attribute(int,_Bool) const
int token
1447388
include/oox/mathml/importutils.hxx:154
char16_t oox::formulaimport::XmlStream::Tag::attribute(int,char16_t) const
int token
1447388
include/oox/ole/axcontrol.hxx:953
type-parameter-?-? & oox::ole::EmbeddedControl::createModel(const type-parameter-?-? &)
const type-parameter-?-? & rParam
6
include/oox/ole/olehelper.hxx:78
void oox::ole::StdFontInfo::StdFontInfo(const class rtl::OUString &,unsigned int)
unsigned int nHeight
82500
include/oox/ole/vbaproject.hxx:150
void oox::ole::VbaProject::addDummyModule(const class rtl::OUString &,int)
int nType
4
include/sax/fastattribs.hxx:84
void sax_fastparser::FastAttributeList::addNS(int,int,const class rtl::OString &)
int nToken
572
include/sfx2/controlwrapper.hxx:82
void sfx::PosValueMapper::PosValueMapper<PosT, ValueT>(type-parameter-?-?,const struct sfx::PosValueMapper::MapEntryType *)
type-parameter-?-? nNFPos
65535
include/sfx2/ctrlitem.hxx:88
void SfxStatusForwarder::SfxStatusForwarder(unsigned short,class SfxControllerItem &)
unsigned short nSlotId
10930
include/sfx2/fcontnr.hxx:57
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetAnyFilter(enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:57
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetAnyFilter(enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nMust
3
include/sfx2/fcontnr.hxx:58
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4EA(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nMust
2
include/sfx2/fcontnr.hxx:58
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4EA(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:59
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4Extension(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:60
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4FilterName(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:91
class std::shared_ptr<const class SfxFilter> SfxFilterMatcher::GetFilter4Mime(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:113
void SfxFilterMatcherIter::SfxFilterMatcherIter(const class SfxFilterMatcher &,enum SfxFilterFlags,enum SfxFilterFlags)
enum SfxFilterFlags nNotMask
393216
include/sfx2/infobar.hxx:93
class VclPtr<class SfxInfoBarWindow> SfxInfoBarContainerWindow::appendInfoBar(const class rtl::OUString &,const class rtl::OUString &,enum InfoBarType,long)
long nMessageStyle
278528
include/sfx2/itemconnect.hxx:298
void sfx::MetricConnection::MetricConnection<ItemWrpT>(unsigned short,class MetricField &,enum FieldUnit,enum ItemConnFlags)
unsigned short nSlot
10460
include/sfx2/itemconnect.hxx:298
void sfx::MetricConnection::MetricConnection<ItemWrpT>(unsigned short,class MetricField &,enum FieldUnit,enum ItemConnFlags)
enum FieldUnit eItemUnit
5
include/sfx2/itemconnect.hxx:348
void sfx::ValueSetConnection::ValueSetConnection<ItemWrpT>(unsigned short,class ValueSet &,const typename ItemControlConnection<type-parameter-?-?, ValueSetWrapper<typename type-parameter-?-?::ItemValueType> >::ControlWrapperType::MapEntryType *,enum ItemConnFlags)
unsigned short nSlot
10578
include/sfx2/linkmgr.hxx:62
_Bool sfx2::LinkManager::InsertLink(class sfx2::SvBaseLink *,unsigned short,enum SfxLinkUpdateMode,const class rtl::OUString *)
enum SfxLinkUpdateMode nUpdateType
3
include/sfx2/request.hxx:65
void SfxRequest::SfxRequest(unsigned short,enum SfxCallMode,const class SfxAllItemSet &,const class SfxAllItemSet &)
unsigned short nSlot
5904
include/sfx2/sfxhtml.hxx:64
_Bool SfxHTMLParser::ParseAreaOptions(class ImageMap *,const class rtl::OUString &,unsigned short,unsigned short)
unsigned short nEventMouseOver
5100
include/sfx2/sfxhtml.hxx:64
_Bool SfxHTMLParser::ParseAreaOptions(class ImageMap *,const class rtl::OUString &,unsigned short,unsigned short)
unsigned short nEventMouseOut
5102
include/sfx2/sidebar/Theme.hxx:138
_Bool sfx2::sidebar::Theme::GetBoolean(const enum sfx2::sidebar::Theme::ThemeItem)
const enum sfx2::sidebar::Theme::ThemeItem eItem
50
include/sfx2/tabdlg.hxx:54
void SfxTabDialogItem::SfxTabDialogItem(unsigned short,const class SfxItemSet &)
unsigned short nId
11022
include/sfx2/tbxctrl.hxx:96
void SfxPopupWindow::SfxPopupWindow(unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,long)
long nBits
1610612810
include/sfx2/tbxctrl.hxx:107
void SfxPopupWindow::SfxPopupWindow(unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,class vcl::Window *,long)
long nBits
139049566410
include/sot/stg.hxx:108
class BaseStorage * BaseStorage::OpenUCBStorage(const class rtl::OUString &,enum StreamMode,_Bool)
enum StreamMode
2050
include/sot/stg.hxx:111
class BaseStorage * BaseStorage::OpenOLEStorage(const class rtl::OUString &,enum StreamMode,_Bool)
enum StreamMode
2050
include/sot/storage.hxx:47
void SotStorageStream::SotStorageStream(const class rtl::OUString &,enum StreamMode)
enum StreamMode
2051
include/svl/filerec.hxx:321
_Bool SfxSingleRecordReader::FindHeader_Impl(unsigned short,unsigned short)
unsigned short nTypes
15
include/svl/filerec.hxx:432
void SfxMultiVarRecordWriter::SfxMultiVarRecordWriter(unsigned char,class SvStream *,unsigned short)
unsigned char nRecordType
8
include/svl/filerec.hxx:439
void SfxMultiVarRecordWriter::SfxMultiVarRecordWriter(class SvStream *,unsigned short)
unsigned short nRecordTag
32
include/svl/globalnameitem.hxx:34
void SfxGlobalNameItem::SfxGlobalNameItem(unsigned short,const class SvGlobalName &)
unsigned short nWhich
5561
include/svl/int64item.hxx:21
void SfxInt64Item::SfxInt64Item(unsigned short,long)
long nVal
75
include/svl/int64item.hxx:21
void SfxInt64Item::SfxInt64Item(unsigned short,long)
unsigned short nWhich
11141
include/svl/itemset.hxx:134
void SfxItemSet::PutExtended(const class SfxItemSet &,enum SfxItemState,enum SfxItemState)
enum SfxItemState eDontCareAs
16
include/svl/languageoptions.hxx:119
_Bool SvtSystemLanguageOptions::isKeyboardLayoutTypeInstalled(short) const
short scriptType
2
include/svl/svdde.hxx:165
void DdePoke::DdePoke(class DdeConnection &,const class rtl::OUString &,const class DdeData &,long)
long
30000
include/svl/svdde.hxx:172
void DdeExecute::DdeExecute(class DdeConnection &,const class rtl::OUString &,long)
long
30000
include/svl/zformat.hxx:349
_Bool SvNumberformat::IsInQuote(const class rtl::OUString &,int,char16_t,char16_t,char16_t)
char16_t cEscOut
92
include/svtools/accessiblefactory.hxx:115
class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> svt::IAccessibleFactory::createAccessibleBrowseBoxHeaderBar(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class svt::IAccessibleTableProvider &,enum svt::AccessibleBrowseBoxObjType) const
enum svt::AccessibleBrowseBoxObjType _eObjType
3
include/svtools/brwbox.hxx:572
void BrowseBox::commitBrowseBoxEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short nEventId
7
include/svtools/ctrlbox.hxx:381
void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nStep
5
include/svtools/ctrlbox.hxx:381
void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nMax
995
include/svtools/ctrlbox.hxx:381
void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nMin
5
include/svtools/ctrlbox.hxx:383
void FontSizeBox::EnablePtRelativeMode(short,short,short)
short nStep
10
include/svtools/grfmgr.hxx:340
_Bool GraphicObject::IsCached(class OutputDevice *,const class Size &,const class GraphicAttr *,enum GraphicManagerDrawFlags) const
enum GraphicManagerDrawFlags nFlags
3
include/svtools/grfmgr.hxx:450
void GraphicObject::DrawTiled(class OutputDevice *,const class tools::Rectangle &,const class Size &,const class Size &,enum GraphicManagerDrawFlags,int)
enum GraphicManagerDrawFlags nFlags
3
include/svtools/htmlout.hxx:69
class SvStream & HTMLOutFuncs::Out_Hex(class SvStream &,unsigned long,unsigned char,unsigned short)
unsigned char nLen
2
include/svtools/imap.hxx:115
unsigned long ImageMap::Read(class SvStream &,unsigned long)
unsigned long nFormat
4294967295
include/svtools/roadmapwizard.hxx:69
void svt::RoadmapWizard::RoadmapWizard(class vcl::Window *,const long)
const long i_nStyle
1280
include/svtools/roadmapwizard.hxx:207
void svt::RoadmapWizard::updateRoadmapItemLabel(short)
short _nState
2
include/svtools/sampletext.hxx:42
class rtl::OUString makeMinimalTextForScript(enum UScriptCode)
enum UScriptCode eScript
19
include/svtools/simptabl.hxx:97
void SvSimpleTable::InsertHeaderEntry(const class rtl::OUString &,unsigned short,enum HeaderBarItemBits)
unsigned short nCol
65535
include/svtools/svtabbx.hxx:108
void SvTabListBox::SetTabJustify(unsigned short,enum SvTabJustify)
unsigned short nTab
2
include/svtools/svtabbx.hxx:108
void SvTabListBox::SetTabJustify(unsigned short,enum SvTabJustify)
enum SvTabJustify
2
include/svtools/transfer.hxx:215
void TransferableHelper::RemoveFormat(enum SotClipboardFormatId)
enum SotClipboardFormatId nFormat
59
include/svtools/transfer.hxx:315
_Bool TransferableDataHelper::GetBitmapEx(enum SotClipboardFormatId,class BitmapEx &)
enum SotClipboardFormatId nFormat
2
include/svtools/transfer.hxx:326
_Bool TransferableDataHelper::GetGDIMetaFile(enum SotClipboardFormatId,class GDIMetaFile &,unsigned long)
enum SotClipboardFormatId nFormat
3
include/svtools/transfer.hxx:332
_Bool TransferableDataHelper::GetImageMap(enum SotClipboardFormatId,class ImageMap &)
enum SotClipboardFormatId nFormat
13
include/svtools/transfer.hxx:347
class com::sun::star::uno::Sequence<signed char> TransferableDataHelper::GetSequence(enum SotClipboardFormatId,const class rtl::OUString &)
enum SotClipboardFormatId nFormat
59
include/svtools/treelistbox.hxx:561
class SvLBoxTab * SvTreeListBox::GetFirstTab(enum SvLBoxTabFlags,unsigned short &)
enum SvLBoxTabFlags nFlagMask
64
include/svtools/treelistbox.hxx:562
void SvTreeListBox::GetLastTab(enum SvLBoxTabFlags,unsigned short &)
enum SvLBoxTabFlags nFlagMask
64
include/svtools/wizardmachine.hxx:172
void svt::OWizardMachine::OWizardMachine(class vcl::Window *,const long,enum WizardButtonFlags)
enum WizardButtonFlags _nButtonFlags
31
include/svtools/wizdlg.hxx:199
long WizardDialog::LogicalCoordinateToPixel(int)
int iCoordinate
6
include/svx/AccessibleShape.hxx:211
_Bool accessibility::AccessibleShape::GetState(short)
short aState
11
include/svx/chrtitem.hxx:85
void SvxChartRegressItem::SvxChartRegressItem(enum SvxChartRegress,unsigned short)
unsigned short nId
84
include/svx/chrtitem.hxx:99
void SvxChartTextOrderItem::SvxChartTextOrderItem(enum SvxChartTextOrder,unsigned short)
unsigned short nId
64
include/svx/chrtitem.hxx:116
void SvxChartKindErrorItem::SvxChartKindErrorItem(enum SvxChartKindError,unsigned short)
unsigned short nId
17
include/svx/chrtitem.hxx:132
void SvxChartIndicateItem::SvxChartIndicateItem(enum SvxChartIndicate,unsigned short)
unsigned short nId
22
include/svx/ctredlin.hxx:169
class SvTreeListEntry * SvxRedlinTable::InsertEntry(const class rtl::OUString &,class RedlinData *,class SvTreeListEntry *,unsigned long)
unsigned long nPos
18446744073709551615
include/svx/dbaexchange.hxx:63
void svx::OColumnTransferable::OColumnTransferable(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum ColumnTransferFormatFlags)
enum ColumnTransferFormatFlags _nFormats
5
include/svx/dbaexchange.hxx:84
void svx::OColumnTransferable::OColumnTransferable(const class svx::ODataAccessDescriptor &,enum ColumnTransferFormatFlags)
enum ColumnTransferFormatFlags _nFormats
7
include/svx/dbaexchange.hxx:110
void svx::OColumnTransferable::OColumnTransferable(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,enum ColumnTransferFormatFlags)
enum ColumnTransferFormatFlags _nFormats
5
include/svx/DescriptionGenerator.hxx:76
void accessibility::DescriptionGenerator::Initialize(int)
int nResourceId
2679
include/svx/dlgctrl.hxx:110
void SvxRectCtl::SvxRectCtl(class vcl::Window *,enum RectPoint,unsigned short,unsigned short)
unsigned short nBorder
200
include/svx/dlgctrl.hxx:110
void SvxRectCtl::SvxRectCtl(class vcl::Window *,enum RectPoint,unsigned short,unsigned short)
enum RectPoint eRpt
4
include/svx/dlgctrl.hxx:110
void SvxRectCtl::SvxRectCtl(class vcl::Window *,enum RectPoint,unsigned short,unsigned short)
unsigned short nCircle
80
include/svx/dlgctrl.hxx:112
void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short,unsigned short)
unsigned short nBorder
240
include/svx/dlgctrl.hxx:112
void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short,unsigned short)
unsigned short nCircl
100
include/svx/dlgctrl.hxx:112
void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short,unsigned short)
enum RectPoint eRpt
4
include/svx/dlgctrl.hxx:239
void FillAttrLB::FillAttrLB(class vcl::Window *,long)
long aWB
402653448
include/svx/dlgctrl.hxx:253
void FillTypeLB::FillTypeLB(class vcl::Window *,long)
long aWB
402653448
include/svx/drawitem.hxx:60
void SvxGradientListItem::SvxGradientListItem(const class rtl::Reference<class XGradientList> &,unsigned short)
unsigned short nWhich
10180
include/svx/drawitem.hxx:84
void SvxHatchListItem::SvxHatchListItem(const class rtl::Reference<class XHatchList> &,unsigned short)
unsigned short nWhich
10181
include/svx/drawitem.hxx:109
void SvxBitmapListItem::SvxBitmapListItem(const class rtl::Reference<class XBitmapList> &,unsigned short)
unsigned short nWhich
10182
include/svx/drawitem.hxx:134
void SvxPatternListItem::SvxPatternListItem(const class rtl::Reference<class XPatternList> &,unsigned short)
unsigned short nWhich
10183
include/svx/drawitem.hxx:158
void SvxDashListItem::SvxDashListItem(const class rtl::Reference<class XDashList> &,unsigned short)
unsigned short nWhich
10184
include/svx/drawitem.hxx:183
void SvxLineEndListItem::SvxLineEndListItem(const class rtl::Reference<class XLineEndList> &,unsigned short)
unsigned short nWhich
10185
include/svx/float3d.hxx:242
void Svx3DCtrlItem::Svx3DCtrlItem(unsigned short,class SfxBindings *)
unsigned short
10645
include/svx/fmgridcl.hxx:42
void FmGridHeader::FmGridHeader(class BrowseBox *,long)
long nWinBits
1051648
include/svx/fntctrl.hxx:83
void SvxFontPrevWindow::SetFontEscapement(unsigned char,unsigned char,short)
unsigned char nProp
100
include/svx/fontworkgallery.hxx:77
void svx::FontWorkGalleryDialog::initFavorites(unsigned short)
unsigned short nThemeId
37
include/svx/fontworkgallery.hxx:79
void svx::FontWorkGalleryDialog::fillFavorites(unsigned short)
unsigned short nThemeId
37
include/svx/framelink.hxx:113
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle)
double nP
3
include/svx/galmisc.hxx:185
void GalleryTransferable::StartDrag(class vcl::Window *,signed char)
signed char nDragSourceActions
5
include/svx/galmisc.hxx:213
void GalleryHint::GalleryHint(enum GalleryHintType,const class rtl::OUString &,const class rtl::OUString &,unsigned long)
enum GalleryHintType nType
2
include/svx/grfcrop.hxx:33
void SvxGrfCrop::SvxGrfCrop(unsigned short)
unsigned short
131
include/svx/langbox.hxx:104
int SvxLanguageBoxBase::ImplInsertLanguage(struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,short)
int nPos
2147483647
include/svx/numinf.hxx:38
void SvxNumberInfoItem::SvxNumberInfoItem(const unsigned short)
const unsigned short nId
10086
include/svx/numinf.hxx:41
void SvxNumberInfoItem::SvxNumberInfoItem(class SvNumberFormatter *,const class rtl::OUString &,const unsigned short)
const unsigned short nId
10086
include/svx/numinf.hxx:43
void SvxNumberInfoItem::SvxNumberInfoItem(class SvNumberFormatter *,const double &,const unsigned short)
const unsigned short nId
10086
include/svx/numinf.hxx:46
void SvxNumberInfoItem::SvxNumberInfoItem(class SvNumberFormatter *,const double &,const class rtl::OUString &,const unsigned short)
const unsigned short nId
10086
include/svx/ofaitem.hxx:34
void OfaPtrItem::OfaPtrItem(unsigned short,void *)
unsigned short nWhich
11021
include/svx/ofaitem.hxx:51
void OfaRefItem::OfaRefItem<reference_type>(unsigned short,const Reference<type-parameter-?-?> &)
unsigned short _nWhich
10441
include/svx/optgrid.hxx:81
void SvxGridItem::SvxGridItem(unsigned short)
unsigned short _nWhich
10298
include/svx/relfld.hxx:45
void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nMax
999
include/svx/relfld.hxx:45
void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nStep
5
include/svx/ruler.hxx:243
_Bool SvxRuler::IsActLastColumn(_Bool,unsigned short) const
unsigned short nAct
65535
include/svx/ruler.hxx:246
_Bool SvxRuler::IsActFirstColumn(_Bool,unsigned short) const
unsigned short nAct
65535
include/svx/sdtaitm.hxx:39
void SdrTextVertAdjustItem::SdrTextVertAdjustItem(enum SdrTextVertAdjust,unsigned short)
unsigned short nWhich
129
include/svx/strarray.hxx:30
void SvxStringArray::SvxStringArray(unsigned int)
unsigned int nResId
10311
include/svx/svdhdl.hxx:335
void SdrHdlLine::SdrHdlLine(class SdrHdl &,class SdrHdl &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
14
include/svx/svdhdl.hxx:354
void SdrHdlBezWgt::SdrHdlBezWgt(const class SdrHdl *,enum SdrHdlKind)
enum SdrHdlKind eNewKind
10
include/svx/svdhdl.hxx:379
void ImpEdgeHdl::ImpEdgeHdl(const class Point &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
9
include/svx/svdhdl.hxx:395
void ImpMeasureHdl::ImpMeasureHdl(const class Point &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
20
include/svx/svditer.hxx:64
void SdrObjListIter::SdrObjListIter(const class SdrMarkList &,enum SdrIterMode)
enum SdrIterMode eMode
2
include/svx/svdmodel.hxx:133
void SdrHint::SdrHint(enum SdrHintKind,const class SdrPage *)
enum SdrHintKind eNewHint
2
include/svx/svdmrkv.hxx:275
_Bool SdrMarkView::PickMarkedObj(const class Point &,class SdrObject *&,class SdrPageView *&,enum SdrSearchOptions) const
enum SdrSearchOptions nOptions
2048
include/svx/xcolit.hxx:45
void XColorItem::XColorItem(unsigned short,const class Color &)
unsigned short nWhich
1048
include/svx/xflclit.hxx:38
void XFillColorItem::XFillColorItem(int,const class Color &)
int nIndex
-1
include/svx/xflgrit.hxx:39
void XFillGradientItem::XFillGradientItem(int,const class XGradient &)
int nIndex
-1
include/svx/xlnclit.hxx:34
void XLineColorItem::XLineColorItem(int,const class Color &)
int nIndex
-1
include/svx/xpoly.hxx:74
void XPolygon::Insert(unsigned short,const class XPolygon &)
unsigned short nPos
65535
include/toolkit/controls/unocontrolbase.hxx:48
int UnoControlBase::ImplGetPropertyValue_INT32(unsigned short)
unsigned short nProp
74
include/tools/b3dtrans.hxx:106
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fL
-2
include/tools/b3dtrans.hxx:106
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fB
-2
include/tools/b3dtrans.hxx:106
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fR
2
include/tools/b3dtrans.hxx:106
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fT
2
include/tools/gen.hxx:90
class Point & Point::operator*=(const long)
###1
-1
include/tools/gen.hxx:91
class Point & Point::operator/=(const long)
###1
2
include/tools/inetstrm.hxx:53
int INetMIMEMessageStream::GetMsgLine(char *,unsigned long)
unsigned long nSize
2048
include/tools/poly.hxx:99
void tools::Polygon::Polygon(const class Point &,const class Point &,const class Point &,const class Point &,unsigned short)
unsigned short nPoints
25
include/tools/urlobj.hxx:270
class rtl::OUString INetURLObject::GetURLNoMark(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:275
class rtl::OUString INetURLObject::getAbbreviated(const class com::sun::star::uno::Reference<class com::sun::star::util::XStringWidth> &,int,enum INetURLObject::DecodeMechanism,unsigned short) const
enum INetURLObject::DecodeMechanism eMechanism
3
include/tools/urlobj.hxx:275
class rtl::OUString INetURLObject::getAbbreviated(const class com::sun::star::uno::Reference<class com::sun::star::util::XStringWidth> &,int,enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:293
_Bool INetURLObject::SetURL(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:351
class rtl::OUString INetURLObject::GetRelURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
enum FSysStyle eStyle
7
include/tools/urlobj.hxx:351
class rtl::OUString INetURLObject::GetRelURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
unsigned short eCharset
76
include/tools/urlobj.hxx:362
_Bool INetURLObject::translateToExternal(const class rtl::OUString &,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:369
_Bool INetURLObject::translateToInternal(const class rtl::OUString &,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:369
_Bool INetURLObject::translateToInternal(const class rtl::OUString &,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::DecodeMechanism eDecodeMechanism
3
include/tools/urlobj.hxx:416
class rtl::OUString INetURLObject::GetUser(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:421
class rtl::OUString INetURLObject::GetPass(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:438
class rtl::OUString INetURLObject::GetHost(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:443
class rtl::OUString INetURLObject::GetHostPort(enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::DecodeMechanism eMechanism
2
include/tools/urlobj.hxx:443
class rtl::OUString INetURLObject::GetHostPort(enum INetURLObject::DecodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:462
_Bool INetURLObject::SetURLPath(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:516
_Bool INetURLObject::removeSegment(int,_Bool)
int nIndex
-1
include/tools/urlobj.hxx:600
class rtl::OUString INetURLObject::getBase(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
int nIndex
-1
include/tools/urlobj.hxx:600
class rtl::OUString INetURLObject::getBase(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:624
_Bool INetURLObject::setBase(const class rtl::OUString &,int,enum INetURLObject::EncodeMechanism,unsigned short)
int nIndex
-1
include/tools/urlobj.hxx:624
_Bool INetURLObject::setBase(const class rtl::OUString &,int,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:653
class rtl::OUString INetURLObject::getExtension(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:653
class rtl::OUString INetURLObject::getExtension(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
int nIndex
-1
include/tools/urlobj.hxx:677
_Bool INetURLObject::setExtension(const class rtl::OUString &,int,_Bool,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:677
_Bool INetURLObject::setExtension(const class rtl::OUString &,int,_Bool,unsigned short)
int nIndex
-1
include/tools/urlobj.hxx:696
_Bool INetURLObject::removeExtension(int,_Bool)
int nIndex
-1
include/tools/urlobj.hxx:729
class rtl::OUString INetURLObject::GetParam(unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:733
_Bool INetURLObject::SetParam(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:741
class rtl::OUString INetURLObject::GetMark(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:746
_Bool INetURLObject::SetMark(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:911
_Bool INetURLObject::Append(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:929
void INetURLObject::SetName(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:1056
_Bool INetURLObject::setUser(const class rtl::OUString &,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:1062
_Bool INetURLObject::setPassword(const class rtl::OUString &,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:1077
_Bool INetURLObject::setHost(const class rtl::OUString &,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:1151
void INetURLObject::changeScheme(enum INetProtocol)
enum INetProtocol eTargetScheme
25
include/ucbhelper/simpleinteractionrequest.hxx:76
void ucbhelper::SimpleInteractionRequest::SimpleInteractionRequest(const class com::sun::star::uno::Any &,const enum ContinuationFlags)
const enum ContinuationFlags nContinuations
12
include/unotools/calendarwrapper.hxx:73
void CalendarWrapper::addValue(short,int)
int nAmount
7
include/unotools/compatibility.hxx:204
void SvtCompatibilityOptions::SetDefault(enum SvtCompatibilityEntry::Index,_Bool)
enum SvtCompatibilityEntry::Index rIdx
12
include/unotools/configvaluecontainer.hxx:80
void utl::OConfigurationValueContainer::OConfigurationValueContainer(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,class osl::Mutex &,const char *,const int)
const int _nLevels
2
include/vcl/alpha.hxx:61
_Bool AlphaMask::Replace(const class Bitmap &,unsigned char)
unsigned char rReplaceTransparency
255
include/vcl/bitmapaccess.hxx:284
void BitmapReadAccess::BitmapReadAccess(class Bitmap &,enum BitmapAccessMode)
enum BitmapAccessMode nMode
2
include/vcl/btndlg.hxx:53
void ButtonDialog::ButtonDialog(class vcl::Window *,long)
long nStyle
5376
include/vcl/btndlg.hxx:77
void ButtonDialog::ButtonDialog(enum WindowType)
enum WindowType nType
304
include/vcl/dockwin.hxx:143
void ImplDockingWindowWrapper::ShowTitleButton(enum TitleButton,_Bool)
enum TitleButton nButton
4
include/vcl/errinf.hxx:190
void TwoStringErrorInfo::TwoStringErrorInfo(unsigned int,const class rtl::OUString &,const class rtl::OUString &,enum DialogMask)
enum DialogMask nMask
4097
include/vcl/font.hxx:91
void vcl::Font::IncreaseQualityBy(int)
int
50
include/vcl/font.hxx:92
void vcl::Font::DecreaseQualityBy(int)
int
100
include/vcl/lstbox.hxx:113
void ListBox::ListBox(enum WindowType)
enum WindowType nType
332
include/vcl/outdev.hxx:1162
int OutputDevice::GetTextBreak(const class rtl::OUString &,long,char16_t,int &,int,int,long,const class vcl::TextLayoutCache *) const
char16_t nExtraChar
45
include/vcl/texteng.hxx:151
class TextPaM TextEngine::ImpInsertText(const class TextSelection &,char16_t,_Bool)
char16_t c
9
include/vcl/texteng.hxx:297
_Bool TextEngine::HasAttrib(unsigned short) const
unsigned short nWhich
2
include/vcl/vclevent.hxx:226
void VclAccessibleEvent::VclAccessibleEvent(enum VclEventId,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &)
enum VclEventId n
36
include/vcl/vclptr.hxx:162
VclPtr<T> VclPtr::Create(type-parameter-?-? &&...)
###9
100
include/vcl/window.hxx:1171
void vcl::Window::InvertTracking(const class tools::Polygon &,enum ShowTrackFlags)
enum ShowTrackFlags nFlags
4097
include/vcl/window.hxx:1540
void vcl::Window::SimulateKeyPress(unsigned short) const
unsigned short nKeyCode
1312
include/vcl/wrkwin.hxx:64
void WorkWindow::WorkWindow(enum WindowType)
enum WindowType nType
371
include/vcl/wrkwin.hxx:70
void WorkWindow::WorkWindow(class vcl::Window *,const class com::sun::star::uno::Any &,long)
long nStyle
1312
include/xmloff/txtparae.hxx:401
void XMLTextParagraphExport::exportListAndSectionChange(class com::sun::star::uno::Reference<class com::sun::star::text::XTextSection> &,class MultiPropertySetHelper &,short,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextContent> &,const class XMLTextNumRuleInfo &,const class XMLTextNumRuleInfo &,_Bool)
short nTextSectionId
5
include/xmloff/txtparae.hxx:429
void XMLTextParagraphExport::Add(unsigned short,class MultiPropertySetHelper &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
unsigned short nFamily
100
include/xmloff/xmlaustp.hxx:84
void SvXMLAutoStylePoolP::SetFamilyPropSetMapper(int,const class rtl::Reference<class SvXMLExportPropertyMapper> &)
int nFamily
203
include/xmloff/xmlaustp.hxx:91
void SvXMLAutoStylePoolP::RegisterDefinedName(int,const class rtl::OUString &)
int nFamily
204
include/xmloff/xmlerror.hxx:135
void XMLErrors::ThrowErrorAsSAXException(int)
int nIdMask
1073741824
include/xmloff/xmlexp.hxx:271
void SvXMLExport::SvXMLExport(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const short,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XDocumentHandler> &)
const short eDefaultMeasureUnit
3
include/xmloff/xmlexp.hxx:336
void SvXMLExport::AddAttributeASCII(unsigned short,const char *,const char *)
unsigned short nPrefix
24
include/xmloff/xmlexp.hxx:511
void SvXMLExport::SetError(int,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
int nId
1074266113
include/xmloff/xmlexppr.hxx:131
void SvXMLExportPropertyMapper::exportXML(class SvXMLExport &,const class std::__debug::vector<struct XMLPropertyState, class std::allocator<struct XMLPropertyState> > &,enum SvXmlExportFlags,_Bool) const
enum SvXmlExportFlags nFlags
8
include/xmloff/xmlimp.hxx:472
void SvXMLImport::SetError(int,const class rtl::OUString &,const class rtl::OUString &)
int nId
268566538
include/xmloff/xmlnumfi.hxx:166
void SvXMLNumFormatContext::SvXMLNumFormatContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,const int,class SvXMLStylesContext &)
unsigned short nPrfx
9
include/xmloff/xmlnumfi.hxx:199
_Bool SvXMLNumFormatContext::ReplaceNfKeyword(unsigned short,unsigned short)
unsigned short nNew
23
include/xmloff/xmlnumfi.hxx:199
_Bool SvXMLNumFormatContext::ReplaceNfKeyword(unsigned short,unsigned short)
unsigned short nOld
26
include/xmloff/XMLSettingsExportContext.hxx:37
void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,const class rtl::OUString &)
enum xmloff::token::XMLTokenEnum i_eName
1202
include/xmloff/XMLSettingsExportContext.hxx:39
void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum i_eName
1848
lotuswordpro/source/filter/bento.hxx:217
enum OpenStormBento::BenError OpenStormBento::LtcBenContainer::SeekFromEnd(long)
long Offset
-24
lotuswordpro/source/filter/tocread.hxx:82
enum OpenStormBento::BenError OpenStormBento::CBenTOCReader::GetData(void *,unsigned long)
unsigned long Amt
4
lotuswordpro/source/filter/xfilter/xfdrawstyle.hxx:94
void XFDrawStyle::SetLineDashStyle(enum enumXFLineStyle,double,double,double)
enum enumXFLineStyle style
3
lotuswordpro/source/filter/xfilter/xfdrawstyle.hxx:116
void XFDrawStyle::SetFontWorkStyle(enum enumXFFWStyle,enum enumXFFWAdjust)
enum enumXFFWStyle eStyle
4
lotuswordpro/source/filter/xfilter/xffont.hxx:202
void XFFont::SetPosition(_Bool,short,short)
short pos
33
lotuswordpro/source/filter/xfilter/xffont.hxx:202
void XFFont::SetPosition(_Bool,short,short)
short scale
58
lotuswordpro/source/filter/xfilter/xfindex.hxx:100
void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
enum enumXFTab type
3
lotuswordpro/source/filter/xfilter/xfindex.hxx:100
void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
char16_t delimiter
100
o3tl/qa/cow_wrapper_clients.hxx:69
void o3tltests::cow_wrapper_client2::cow_wrapper_client2(int)
int nVal
4
o3tl/qa/cow_wrapper_clients.hxx:100
void o3tltests::cow_wrapper_client3::cow_wrapper_client3(int)
int nVal
7
o3tl/qa/cow_wrapper_clients.hxx:132
void o3tltests::cow_wrapper_client4::cow_wrapper_client4(int)
int
4
reportdesign/source/filter/xml/xmlStyleImport.hxx:73
void rptxml::OControlStyleContext::AddProperty(short,const class com::sun::star::uno::Any &)
short nContextID
28673
reportdesign/source/ui/inc/ReportController.hxx:207
void rptui::OReportController::alignControlsWithUndo(unsigned short,enum rptui::ControlModification,_Bool)
unsigned short _nUndoStrId
30885
reportdesign/source/ui/inc/ReportController.hxx:219
void rptui::OReportController::shrinkSection(unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::report::XSection> &,int)
unsigned short _nUndoStrId
30923
rsc/inc/rscdef.hxx:205
class RscDefine * RscDefineList::New(struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType>,const class rtl::OString &,int,unsigned long)
unsigned long lPos
18446744073709551615
rsc/inc/rscdef.hxx:207
class RscDefine * RscDefineList::New(struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType>,const class rtl::OString &,class RscExpression *,unsigned long)
unsigned long lPos
18446744073709551615
rsc/inc/rsckey.hxx:45
unsigned int RscNameTable::Put(const char *,unsigned int)
unsigned int nTyp
273
rsc/inc/rsckey.hxx:46
void RscNameTable::Put(unsigned int,unsigned int,class RscTop *)
unsigned int nTyp
272
rsc/inc/rscrange.hxx:41
void RscLongRange::SetRange(int,int)
int nMinimum
-2147483648
rsc/inc/rscrange.hxx:41
void RscLongRange::SetRange(int,int)
int nMaximum
2147483647
sal/osl/unx/file_path_helper.cxx:167
void path_list_iterator::path_list_iterator(const class rtl::OUString &,char16_t)
char16_t list_separator
58
sal/osl/unx/file_url.cxx:744
unsigned long (anonymous namespace)::UnicodeToTextConverter_Impl::convert(const char16_t *,unsigned long,char *,unsigned long,unsigned int,unsigned int *,unsigned long *)
unsigned int nFlags
34150
sal/osl/unx/file_url.cxx:797
unsigned long (anonymous namespace)::TextToUnicodeConverter_Impl::convert(const char *,unsigned long,char16_t *,unsigned long,unsigned int,unsigned int *,unsigned long *)
unsigned int nFlags
33587
sax/inc/xml2utf.hxx:56
void sax_expatwrap::Unicode2TextConverter::Unicode2TextConverter(unsigned short)
unsigned short encoding
76
sax/inc/xml2utf.hxx:95
int sax_expatwrap::XMLFile2UTFConverter::readAndConvert(class com::sun::star::uno::Sequence<signed char> &,int)
int nMaxToRead
16384
sc/inc/address.hxx:320
void ScAddress::Format(class rtl::OStringBuffer &,enum ScRefFlags,const class ScDocument *,const struct ScAddress::Details &) const
enum ScRefFlags nFlags
32768
sc/inc/autoform.hxx:124
void ScAfVersions::Write(class SvStream &,unsigned short)
unsigned short fileVersion
5050
sc/inc/autoform.hxx:293
void ScAutoFormatData::CopyItem(unsigned short,unsigned short,unsigned short)
unsigned short nWhich
150
sc/inc/autoform.hxx:303
_Bool ScAutoFormatData::Save(class SvStream &,unsigned short)
unsigned short fileVersion
5050
sc/inc/cellsuno.hxx:498
void ScCellRangeObj::SetArrayFormula_Impl(const class rtl::OUString &,const enum formula::FormulaGrammar::Grammar)
const enum formula::FormulaGrammar::Grammar eGrammar
16908294
sc/inc/cellvalues.hxx:69
void sc::CellValues::reset(unsigned long)
unsigned long nSize
1048576
sc/inc/chgtrack.hxx:247
void ScChangeAction::ScChangeAction(enum ScChangeActionType,const class ScBigRange &,const unsigned long)
enum ScChangeActionType
8
sc/inc/colcontainer.hxx:38
void ScColContainer::ScColContainer(class ScDocument *,const unsigned long)
const unsigned long nSize
1024
sc/inc/column.hxx:266
void ScColumn::DeleteRanges(const class std::__debug::vector<struct sc::RowSpan, class std::allocator<struct sc::RowSpan> > &,enum InsertDeleteFlags)
enum InsertDeleteFlags nDelFlag
2071
sc/inc/column.hxx:511
unsigned short ScColumn::GetOptimalColWidth(class OutputDevice *,double,double,const class Fraction &,const class Fraction &,_Bool,unsigned short,const class ScMarkData *,const struct ScColWidthParam *) const
unsigned short nOldWidth
1167
sc/inc/column.hxx:592
void ScColumn::BroadcastRows(int,int,enum SfxHintId)
enum SfxHintId nHint
54
sc/inc/columnspanset.hxx:60
void sc::ColumnSpanSet::ColumnType::ColumnType(int,int,_Bool)
int nEnd
1048575
sc/inc/columnspanset.hxx:134
void sc::SingleColumnSpanSet::scan(struct sc::ColumnBlockConstPosition &,const class ScColumn &,int,int)
int nEnd
1048575
sc/inc/compressedarray.hxx:153
void ScBitMaskCompressedArray::ScBitMaskCompressedArray<A, D>(type-parameter-?-?,const type-parameter-?-? &,unsigned long)
unsigned long nDeltaP
4
sc/inc/compressedarray.hxx:153
void ScBitMaskCompressedArray::ScBitMaskCompressedArray<A, D>(type-parameter-?-?,const type-parameter-?-? &,unsigned long)
type-parameter-?-? nMaxAccessP
1048575
sc/inc/compressedarray.hxx:163
void ScBitMaskCompressedArray::AndValue(type-parameter-?-?,const type-parameter-?-? &)
const type-parameter-?-? & rValueToAnd
7
sc/inc/compressedarray.hxx:169
void ScBitMaskCompressedArray::CopyFromAnded(const ScBitMaskCompressedArray<A, D> &,type-parameter-?-?,type-parameter-?-?,const type-parameter-?-? &)
const type-parameter-?-? & rValueToAnd
8
sc/inc/compressedarray.hxx:176
type-parameter-?-? ScBitMaskCompressedArray::GetLastAnyBitAccess(const type-parameter-?-? &) const
const type-parameter-?-? & rBitMask
15
sc/inc/document.hxx:1203
_Bool ScDocument::CompileErrorCells(enum FormulaError)
enum FormulaError nErrCode
525
sc/inc/document.hxx:1520
void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
enum InsertDeleteFlags nFlags
2303
sc/inc/document.hxx:1520
void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
short nCol2
1023
sc/inc/document.hxx:1690
void ScDocument::DeleteSelectionTab(short,enum InsertDeleteFlags,const class ScMarkData &)
enum InsertDeleteFlags nDelFlag
2303
sc/inc/document.hxx:1747
void ScDocument::SetRowFlags(int,int,short,enum CRFlags)
enum CRFlags nNewFlags
8
sc/inc/document.hxx:1747
void ScDocument::SetRowFlags(int,int,short,enum CRFlags)
int nEndRow
1048575
sc/inc/document.hxx:1777
int ScDocument::LastNonFilteredRow(int,int,short) const
int nEndRow
1048575
sc/inc/document.hxx:2054
void ScDocument::BroadcastCells(const class ScRange &,enum SfxHintId,_Bool)
enum SfxHintId nHint
34
sc/inc/dpsave.hxx:318
class ScDPSaveDimension * ScDPSaveData::GetFirstDimension(enum com::sun::star::sheet::DataPilotFieldOrientation)
enum com::sun::star::sheet::DataPilotFieldOrientation eOrientation
4
sc/inc/externalrefmgr.hxx:796
void ScExternalRefManager::purgeStaleSrcDocument(int)
int nTimeOut
30000
sc/inc/formulacell.hxx:352
void ScFormulaCell::AddRecalcMode(enum ScRecalcMode)
enum ScRecalcMode
8
sc/inc/nameuno.hxx:64
void ScNamedRangeObj::Modify_Impl(const class rtl::OUString *,const class ScTokenArray *,const class rtl::OUString *,const class ScAddress *,const enum ScRangeData::Type *,const enum formula::FormulaGrammar::Grammar)
const enum formula::FormulaGrammar::Grammar eGrammar
16908294
sc/inc/optutil.hxx:44
void ScLinkConfigItem::ScLinkConfigItem(const class rtl::OUString &,enum ConfigItemMode)
enum ConfigItemMode nMode
2
sc/inc/scmod.hxx:250
class vcl::Window * ScModule::Find1RefWindow(unsigned short,class vcl::Window *)
unsigned short nSlotId
26161
sc/inc/simpleformulacalc.hxx:39
void ScSimpleFormulaCalculator::ScSimpleFormulaCalculator(class ScDocument *,const class ScAddress &,const class rtl::OUString &,_Bool,enum formula::FormulaGrammar::Grammar)
enum formula::FormulaGrammar::Grammar eGram
65539
sc/inc/stlpool.hxx:54
class ScStyleSheet * ScStyleSheetPool::FindCaseIns(const class rtl::OUString &,enum SfxStyleFamily)
enum SfxStyleFamily eFam
2
sc/inc/table.hxx:381
void ScTable::SetFormula(short,int,const class ScTokenArray &,enum formula::FormulaGrammar::Grammar)
enum formula::FormulaGrammar::Grammar eGram
65539
sc/inc/table.hxx:633
_Bool ScTable::HasAttribSelection(const class ScMarkData &,enum HasAttrFlags) const
enum HasAttrFlags nMask
8
sc/inc/table.hxx:733
void ScTable::SetOptimalHeightOnly(class sc::RowHeightContext &,int,int,class ScProgress *,unsigned long)
int nEndRow
1048575
sc/inc/tokenarray.hxx:254
void ScTokenArray::WrapReference(const class ScAddress &,short,int)
short nMaxCol
255
sc/inc/tokenarray.hxx:254
void ScTokenArray::WrapReference(const class ScAddress &,short,int)
int nMaxRow
65535
sc/inc/tokenarray.hxx:255
_Bool ScTokenArray::NeedsWrapReference(const class ScAddress &,short,int) const
int nMaxRow
65535
sc/inc/tokenarray.hxx:255
_Bool ScTokenArray::NeedsWrapReference(const class ScAddress &,short,int) const
short nMaxCol
255
sc/inc/zforauto.hxx:39
void ScNumFormatAbbrev::Save(class SvStream &,unsigned short) const
unsigned short eByteStrSet
76
sc/qa/unit/ucalc.hxx:30
void FormulaGrammarSwitch::FormulaGrammarSwitch(class ScDocument *,enum formula::FormulaGrammar::Grammar)
enum formula::FormulaGrammar::Grammar eGrammar
17104900
sc/qa/unit/ucalc_formula.cxx:7524
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nTotalRows
330
sc/qa/unit/ucalc_formula.cxx:7524
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nEnd2
319
sc/qa/unit/ucalc_formula.cxx:7524
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nStart2
169
sc/qa/unit/ucalc_formula.cxx:7524
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nStart1
9
sc/qa/unit/ucalc_formula.cxx:7524
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nEnd1
159
sc/source/core/data/documen8.cxx:508
void (anonymous namespace)::IdleCalcTextWidthScope::incCol(short)
short nInc
-1
sc/source/core/data/segmenttree.cxx:254
void ScFlatUInt16SegmentsImpl::ScFlatUInt16SegmentsImpl(int,unsigned short)
int nMax
1048575
sc/source/core/tool/compiler.cxx:1240
void ConventionXL_A1::ConventionXL_A1(enum formula::FormulaGrammar::AddressConvention)
enum formula::FormulaGrammar::AddressConvention eConv
4
sc/source/filter/excel/xelink.cxx:294
void XclExpSupbook::XclExpSupbook(const class XclExpRoot &,const class rtl::OUString &,enum XclSupbookType)
enum XclSupbookType
5
sc/source/filter/excel/xepage.cxx:340
void XclExpXmlStartHeaderFooterElementRecord::XclExpXmlStartHeaderFooterElementRecord(const int)
const int nElement
2611
sc/source/filter/inc/addressconverter.hxx:483
void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
int nMaxXlsCol
16383
sc/source/filter/inc/addressconverter.hxx:483
void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
short nMaxXlsTab
32767
sc/source/filter/inc/addressconverter.hxx:483
void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
int nMaxXlsRow
1048575
sc/source/filter/inc/addressconverter.hxx:495
void oox::xls::AddressConverter::ControlCharacters::set(char16_t,char16_t,char16_t,char16_t,char16_t)
char16_t cSameSheet
65535
sc/source/filter/inc/addressconverter.hxx:495
void oox::xls::AddressConverter::ControlCharacters::set(char16_t,char16_t,char16_t,char16_t,char16_t)
char16_t cThisWorkbook
65535
sc/source/filter/inc/addressconverter.hxx:495
void oox::xls::AddressConverter::ControlCharacters::set(char16_t,char16_t,char16_t,char16_t,char16_t)
char16_t cThisSheet
65535
sc/source/filter/inc/formulabase.hxx:276
void oox::xls::ApiTokenVector::reserve(unsigned long)
unsigned long n
8192
sc/source/filter/inc/formulabase.hxx:763
void oox::xls::FormulaProcessorBase::convertStringToStringList(class com::sun::star::uno::Sequence<struct com::sun::star::sheet::FormulaToken> &,char16_t,_Bool) const
char16_t cStringSep
44
sc/source/filter/inc/fprogressbar.hxx:191
void ScfSimpleProgressBar::ScfSimpleProgressBar(unsigned long,class SfxObjectShell *,unsigned short)
unsigned short nResId
70
sc/source/filter/inc/tokstack.hxx:215
_Bool TokenPool::IsSingleOp(const struct TokenId &,const enum OpCode) const
const enum OpCode eId
13
sc/source/filter/inc/unitconverter.hxx:74
double oox::xls::UnitConverter::scaleValue(double,enum oox::xls::Unit,enum oox::xls::Unit) const
enum oox::xls::Unit eToUnit
3
sc/source/filter/inc/unitconverter.hxx:79
double oox::xls::UnitConverter::scaleFromMm100(int,enum oox::xls::Unit) const
enum oox::xls::Unit eUnit
8
sc/source/filter/inc/xechart.hxx:192
void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
unsigned long nRecSize
4
sc/source/filter/inc/xechart.hxx:192
void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
unsigned short nRecId
2155
sc/source/filter/inc/xeescher.hxx:151
void XclExpImgData::XclExpImgData(const class Graphic &,unsigned short)
unsigned short nRecId
233
sc/source/filter/inc/xeescher.hxx:430
void XclExpEmbeddedObjectManager::XclExpEmbeddedObjectManager(const class XclExpObjectManager &,const class Size &,int,int)
int nScaleY
4000
sc/source/filter/inc/xeescher.hxx:430
void XclExpEmbeddedObjectManager::XclExpEmbeddedObjectManager(const class XclExpObjectManager &,const class Size &,int,int)
int nScaleX
4000
sc/source/filter/inc/xeformula.hxx:62
class std::shared_ptr<class XclTokenArray> XclExpFormulaCompiler::CreateFormula(enum XclFormulaType,const class ScAddress &)
enum XclFormulaType eType
7
sc/source/filter/inc/xeformula.hxx:68
class std::shared_ptr<class XclTokenArray> XclExpFormulaCompiler::CreateFormula(enum XclFormulaType,const class ScRangeList &)
enum XclFormulaType eType
5
sc/source/filter/inc/xelink.hxx:176
unsigned short XclExpLinkManager::FindExtSheet(char16_t)
char16_t cCode
4
sc/source/filter/inc/xepivot.hxx:237
void XclExpPTItem::XclExpPTItem(unsigned short,unsigned short)
unsigned short nCacheIdx
65535
sc/source/filter/inc/xepivot.hxx:339
unsigned short XclExpPivotTable::GetDataFieldIndex(const class rtl::OUString &,unsigned short) const
unsigned short nDefaultIdx
65535
sc/source/filter/inc/xerecord.hxx:360
void XclExpSubStream::XclExpSubStream(unsigned short)
unsigned short nSubStrmType
32
sc/source/filter/inc/xestream.hxx:309
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const class rtl::OString &,struct FSEND_t)
int nAttribute
3477
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute6
5380
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute7
2137
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute4
2965
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute6
1809
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute3
5566
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute11
4111
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute11
5627
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute5
2685
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute12
2922
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute10
2922
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute3
2549
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute8
5380
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute10
4310
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute2
1667
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute2
380571728
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute7
2685
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute8
4310
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute1
5807
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute13
4111
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute9
5627
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute2
2965
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute3
4564
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute14
4068
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute4
273681094
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute9
2137
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute5
4564
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute1
2549
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute12
4068
sc/source/filter/inc/xestream.hxx:352
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,int,const char *,struct FSEND_t)
int attribute4
1809
sc/source/filter/inc/xestream.hxx:353
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,struct FSEND_t)
int attribute4
2236
sc/source/filter/inc/xestream.hxx:353
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,struct FSEND_t)
int attribute1
4242
sc/source/filter/inc/xestream.hxx:353
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,struct FSEND_t)
int attribute2
2241
sc/source/filter/inc/xestream.hxx:353
class std::shared_ptr<class sax_fastparser::FastSerializerHelper> & XclExpXmlStream::WriteAttributes(int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,int,const class rtl::OString &,struct FSEND_t)
int attribute3
2237
sc/source/filter/inc/xestring.hxx:51
void XclExpString::XclExpString(unsigned short,unsigned short)
unsigned short nMaxLen
32767
sc/source/filter/inc/xestyle.hxx:589
unsigned int XclExpXFBuffer::InsertWithFont(const class ScPatternAttr *,short,unsigned short,_Bool)
short nScript
4
sc/source/filter/inc/xetable.hxx:81
void XclExpRangeFmlaBase::XclExpRangeFmlaBase(unsigned short,unsigned int,const class ScRange &)
unsigned short nRecId
545
sc/source/filter/inc/xiescher.hxx:1211
unsigned int XclImpDffPropSet::GetPropertyValue(unsigned short) const
unsigned short nPropId
384
sc/source/filter/inc/xiformula.hxx:41
void XclImpFormulaCompiler::CreateRangeList(class ScRangeList &,enum XclFormulaType,const class XclTokenArray &,class XclImpStream &)
enum XclFormulaType eType
7
sc/source/filter/inc/xiformula.hxx:51
const class ScTokenArray * XclImpFormulaCompiler::CreateFormula(enum XclFormulaType,const class XclTokenArray &)
enum XclFormulaType eType
6
sc/source/filter/xcl97/XclExpChangeTrack.cxx:1398
void EndXmlElement::EndXmlElement(int)
int nElement
2619
sc/source/filter/xml/xmlfonte.cxx:39
void ScXMLFontAutoStylePool_Impl::AddFontItems(unsigned short *,unsigned char,const class SfxItemPool *,const _Bool)
unsigned char nIdCount
3
sc/source/filter/xml/xmlstyli.cxx:280
void XMLTableCellPropsContext::XMLTableCellPropsContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,unsigned int,class std::__debug::vector<struct XMLPropertyState, class std::allocator<struct XMLPropertyState> > &,const class rtl::Reference<class SvXMLImportPropertyMapper> &)
unsigned int nFamily
196608
sc/source/ui/inc/AccessibleCell.hxx:158
void ScAccessibleCell::AddRelation(const class ScAddress &,const unsigned short,class utl::AccessibleRelationSetHelper *)
const unsigned short aRelationType
4
sc/source/ui/inc/AccessibleSpreadsheet.hxx:289
_Bool ScAccessibleSpreadsheet::CalcScRangeListDifferenceMax(class ScRangeList *,class ScRangeList *,int,class std::__debug::vector<class ScMyAddress, class std::allocator<class ScMyAddress> > &)
int nMax
10
sc/source/ui/inc/docfunc.hxx:75
void ScDocFunc::EnterListAction(unsigned short)
unsigned short nNameResId
19
sc/source/ui/inc/docfunc.hxx:112
_Bool ScDocFunc::SetCellText(const class ScAddress &,const class rtl::OUString &,_Bool,_Bool,_Bool,const enum formula::FormulaGrammar::Grammar)
const enum formula::FormulaGrammar::Grammar eGrammar
16908294
sc/source/ui/inc/select.hxx:35
void ScViewSelectionEngine::ScViewSelectionEngine(class vcl::Window *,class ScTabView *,enum ScSplitPos)
enum ScSplitPos eSplitPos
2
sc/source/ui/inc/spellparam.hxx:47
void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,const class vcl::Font &,int,_Bool)
enum ScConversionType eConvType
2
sc/source/ui/inc/tabview.hxx:421
void ScTabView::MoveCursorPage(short,int,enum ScFollowMode,_Bool,_Bool)
enum ScFollowMode eMode
2
sc/source/ui/inc/tabview.hxx:423
void ScTabView::MoveCursorArea(short,int,enum ScFollowMode,_Bool,_Bool)
enum ScFollowMode eMode
3
sc/source/ui/inc/uiitems.hxx:56
void ScInputStatusItem::ScInputStatusItem(unsigned short,const class ScAddress &,const class ScAddress &,const class ScAddress &,const class rtl::OUString &,const class EditTextObject *)
unsigned short nWhich
26100
sc/source/ui/inc/uiitems.hxx:121
void ScIndexHint::ScIndexHint(enum SfxHintId,unsigned short)
enum SfxHintId nNewId
45
sc/source/ui/inc/uiitems.hxx:132
void ScSortItem::ScSortItem(unsigned short,class ScViewData *,const struct ScSortParam *)
unsigned short nWhich
1102
sc/source/ui/inc/uiitems.hxx:135
void ScSortItem::ScSortItem(unsigned short,const struct ScSortParam *)
unsigned short nWhich
1102
sc/source/ui/inc/uiitems.hxx:155
void ScQueryItem::ScQueryItem(unsigned short,class ScViewData *,const struct ScQueryParam *)
unsigned short nWhich
1103
sc/source/ui/inc/uiitems.hxx:182
void ScSubTotalItem::ScSubTotalItem(unsigned short,class ScViewData *,const struct ScSubTotalParam *)
unsigned short nWhich
1104
sc/source/ui/inc/uiitems.hxx:260
void ScSolveItem::ScSolveItem(unsigned short,const struct ScSolveParam *)
unsigned short nWhich
1107
sc/source/ui/inc/uiitems.hxx:277
void ScTabOpItem::ScTabOpItem(unsigned short,const struct ScTabOpParam *)
unsigned short nWhich
26344
sc/source/ui/inc/viewfunc.hxx:187
void ScViewFunc::Protect(short,const class rtl::OUString &)
short nTab
32767
scaddins/source/analysis/analysishelper.hxx:118
class rtl::OUString GetString(double,_Bool,unsigned short)
unsigned short nMaxNumOfDigits
15
scaddins/source/analysis/analysishelper.hxx:513
void sca::analysis::ComplexList::Append(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<class rtl::OUString> > &,enum sca::analysis::ComplListAppendHandl)
enum sca::analysis::ComplListAppendHandl eAH
2
scaddins/source/analysis/analysishelper.hxx:573
void sca::analysis::ConvertDataLinear::ConvertDataLinear(const char *,double,double,enum sca::analysis::ConvertDataClass,_Bool)
enum sca::analysis::ConvertDataClass eClass
8
sd/inc/sdpage.hxx:351
class SdStyleSheet * SdPage::getPresentationStyle(unsigned int) const
unsigned int nHelpId
59865
sd/source/filter/html/htmlex.hxx:74
void HtmlErrorContext::SetContext(unsigned short,const class rtl::OUString &,const class rtl::OUString &)
unsigned short nResId
20580
sd/source/ui/animations/STLPropertySet.hxx:64
void sd::STLPropertySet::setPropertyState(int,enum sd::STLPropertyState)
enum sd::STLPropertyState nState
3
sd/source/ui/inc/animobjs.hxx:158
void sd::AnimationControllerItem::AnimationControllerItem(unsigned short,class sd::AnimationWindow *,class SfxBindings *)
unsigned short
27112
sd/source/ui/inc/assclass.hxx:47
void Assistent::Assistent(int)
int nNoOfPage
6
sd/source/ui/inc/assclass.hxx:49
_Bool Assistent::IsEnabled(int) const
int nPage
4
sd/source/ui/inc/assclass.hxx:50
void Assistent::EnablePage(int)
int nPage
4
sd/source/ui/inc/assclass.hxx:51
void Assistent::DisablePage(int)
int nPage
4
sd/source/ui/inc/navigatr.hxx:156
void SdNavigatorControllerItem::SdNavigatorControllerItem(unsigned short,class SdNavigatorWin *,class SfxBindings *,const class std::function<void (void)> &)
unsigned short
27288
sd/source/ui/inc/navigatr.hxx:174
void SdPageNameControllerItem::SdPageNameControllerItem(unsigned short,class SdNavigatorWin *,class SfxBindings *)
unsigned short
27287
sd/source/ui/inc/smarttag.hxx:168
void sd::SmartHdl::SmartHdl(const class rtl::Reference<class sd::SmartTag> &,const class Point &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
23
sd/source/ui/inc/ViewShellManager.hxx:159
class SfxShell * sd::ViewShellManager::GetShell(int) const
int nId
23016
sd/source/ui/remotecontrol/ImagePreparer.hxx:37
class com::sun::star::uno::Sequence<signed char> sd::ImagePreparer::preparePreview(unsigned int,unsigned int,unsigned int,unsigned long &)
unsigned int aWidth
320
sd/source/ui/remotecontrol/ImagePreparer.hxx:37
class com::sun::star::uno::Sequence<signed char> sd::ImagePreparer::preparePreview(unsigned int,unsigned int,unsigned int,unsigned long &)
unsigned int aHeight
240
sd/source/ui/sidebar/LayoutMenu.hxx:178
class SfxRequest sd::sidebar::LayoutMenu::CreateRequest(unsigned short,enum AutoLayout)
unsigned short nSlotId
27014
sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx:120
void sd::slidesorter::controller::SelectionFunction::EventDescriptor::EventDescriptor(unsigned int,const struct AcceptDropEvent &,const signed char,class sd::slidesorter::SlideSorter &)
unsigned int nEventType
2048
sd/source/ui/slidesorter/inc/view/SlsPageObjectLayouter.hxx:137
class tools::Rectangle sd::slidesorter::view::PageObjectLayouter::CalculatePreviewBoundingBox(class Size &,const class Size &,const int,const int)
const int nFocusIndicatorWidth
3
sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx:60
void sd::slidesorter::view::LayeredDevice::RemovePainter(const class std::shared_ptr<class sd::slidesorter::view::ILayerPainter> &,const int)
const int nLayer
2
sdext/source/minimizer/configurationaccess.hxx:93
short ConfigurationAccess::GetConfigProperty(const enum PPPOptimizerTokenEnum,const short) const
const enum PPPOptimizerTokenEnum
38
sdext/source/minimizer/optimizerdialog.hxx:115
void OptimizerDialog::EnablePage(short)
short nStep
4
sdext/source/minimizer/optimizerdialog.hxx:116
void OptimizerDialog::DisablePage(short)
short nStep
4
sfx2/source/control/thumbnailviewacc.hxx:183
void ThumbnailViewItemAcc::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short nEventId
4
sfx2/source/doc/oleprops.cxx:98
void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &)
int nPropType
30
sfx2/source/doc/oleprops.cxx:101
void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &,const class rtl::OUString &)
int nPropType
30
sfx2/source/doc/oleprops.cxx:104
void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short)
unsigned short eTextEnc
65535
sfx2/source/doc/oleprops.cxx:104
void SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short)
int nPropType
31
sfx2/source/doc/oleprops.hxx:306
void SfxOleSection::SetThumbnailValue(int,const class com::sun::star::uno::Sequence<signed char> &)
int nPropId
17
slideshow/source/engine/transitions/checkerboardwipe.hxx:36
void slideshow::internal::CheckerBoardWipe::CheckerBoardWipe(int)
int unitsPerEdge
10
slideshow/source/engine/transitions/combtransition.hxx:42
void slideshow::internal::CombTransition::CombTransition(const class boost::optional<class std::shared_ptr<class slideshow::internal::Slide> > &,const class std::shared_ptr<class slideshow::internal::Slide> &,const class std::shared_ptr<class slideshow::internal::SoundPlayer> &,const class slideshow::internal::UnoViewContainer &,class slideshow::internal::ScreenUpdater &,class slideshow::internal::EventMultiplexer &,const class basegfx::B2DVector &,int)
int nNumStripes
24
slideshow/source/engine/transitions/snakewipe.hxx:55
void slideshow::internal::ParallelSnakesWipe::ParallelSnakesWipe(int,_Bool,_Bool,_Bool)
int nElements
64
slideshow/source/engine/transitions/spiralwipe.hxx:50
void slideshow::internal::BoxSnakesWipe::BoxSnakesWipe(int,_Bool)
int nElements
64
slideshow/source/engine/transitions/waterfallwipe.hxx:34
void slideshow::internal::WaterfallWipe::WaterfallWipe(int,_Bool)
int nElements
128
slideshow/source/engine/transitions/zigzagwipe.hxx:45
void slideshow::internal::BarnZigZagWipe::BarnZigZagWipe(int)
int nZigs
5
sot/source/sdstor/stgdir.hxx:65
void StgDirEntry::StgDirEntry(const void *,unsigned int,unsigned long,_Bool *)
unsigned int nBufferLen
128
sot/source/sdstor/stgstrms.hxx:77
_Bool StgStrm::Copy(int,int)
int nFrom
-1
sot/source/sdstor/stgstrms.hxx:137
void StgSmallStrm::StgSmallStrm(class StgIo &,int)
int nBgn
-2
starmath/inc/node.hxx:441
void SmSpecialNode::SmSpecialNode(enum SmNodeType,const struct SmToken &,unsigned short)
unsigned short _nFontDesc
7
starmath/inc/node.hxx:618
void SmLineNode::SmLineNode(enum SmNodeType,const struct SmToken &)
enum SmNodeType eNodeType
21
starmath/inc/rect.hxx:174
void SmRect::ExtendBy(const class SmRect &,enum RectCopyMBL,long)
enum RectCopyMBL eCopyMode
2
starmath/inc/view.hxx:143
void SmGraphicController::SmGraphicController(class SmGraphicWindow &,unsigned short,class SfxBindings &)
unsigned short
30357
starmath/inc/view.hxx:155
void SmEditController::SmEditController(class SmEditWindow &,unsigned short,class SfxBindings &)
unsigned short
30356
store/source/storbase.hxx:314
void store::PageData::location(unsigned int)
unsigned int nAddr
-1
svl/source/numbers/zforfind.hxx:403
_Bool ImpSvNumberInputScan::IsDatePatternNumberOfType(unsigned short,char16_t)
char16_t cType
89
svl/source/numbers/zforscan.hxx:242
_Bool ImpSvNumberformatScan::InsertSymbol(unsigned short &,enum svt::NfSymbolType,const class rtl::OUString &)
enum svt::NfSymbolType eType
-7
svtools/inc/table/tablecontrol.hxx:130
void svt::table::TableControl::commitCellEventIfAccessibleAlive(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short i_eventID
4
svtools/inc/table/tablecontrolinterface.hxx:225
void svt::table::ITableControl::showTracking(const class tools::Rectangle &,const enum ShowTrackFlags)
const enum ShowTrackFlags i_flags
4099
svtools/source/contnr/imivctl.hxx:322
void SvxIconChoiceCtrl_Impl::InsertEntry(class SvxIconChoiceCtrlEntry *,unsigned long)
unsigned long nPos
18446744073709551615
svtools/source/table/tablecontrol_impl.hxx:241
void svt::table::TableControl_Impl::commitAccessibleEvent(const short)
const short i_eventID
9
svx/inc/AccessibleTableShape.hxx:129
_Bool accessibility::AccessibleTableShape::ResetStateDirectly(short)
short aState
11
svx/inc/sxmoitm.hxx:29
void SdrMeasureOverhangItem::SdrMeasureOverhangItem(long)
long nVal
600
svx/inc/sxmtaitm.hxx:41
void SdrMeasureTextAutoAngleViewItem::SdrMeasureTextAutoAngleViewItem(long)
long nVal
31500
svx/inc/xpolyimp.hxx:39
void ImpXPolygon::ImpXPolygon(unsigned short,unsigned short)
unsigned short nResize
16
svx/source/inc/AccessibleFrameSelector.hxx:99
void svx::a11y::AccFrameSelector::NotifyAccessibleEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short _nEventId
4
svx/source/inc/charmapacc.hxx:260
void svx::SvxShowCharSetItemAcc::fireEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short _nEventId
4
svx/source/inc/fmcontrolbordermanager.hxx:74
void svxform::UnderlineDescriptor::UnderlineDescriptor(short,int)
short _nUnderlineType
10
svx/source/inc/fmexch.hxx:105
void svxform::OLocalExchangeHelper::startDrag(signed char)
signed char nDragSourceActions
3
svx/source/inc/fmitems.hxx:33
void FmInterfaceItem::FmInterfaceItem(const unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
const unsigned short nId
10703
svx/source/inc/fmshimp.hxx:476
void FmXFormShell::UpdateSlot(short)
short nId
10636
svx/source/inc/GraphCtlAccessibleContext.hxx:194
void SvxGraphCtrlAccessibleContext::CommitChange(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short aEventId
7
svx/source/inc/svxpixelctlaccessiblecontext.hxx:128
void SvxPixelCtlAccessibleChild::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short nEventId
4
svx/source/inc/svxpixelctlaccessiblecontext.hxx:219
void SvxPixelCtlAccessible::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short nEventId
5
sw/inc/authfld.hxx:132
void SwAuthorityFieldType::SetSortKeys(unsigned short,struct SwTOXSortKey *)
unsigned short nKeyCount
3
sw/inc/docary.hxx:394
_Bool SwExtraRedlineTable::DeleteAllTableRedlines(class SwDoc *,const class SwTable &,_Bool,unsigned short)
unsigned short nRedlineTypeToDelete
65535
sw/inc/docary.hxx:395
_Bool SwExtraRedlineTable::DeleteTableRowRedline(class SwDoc *,const class SwTableLine &,_Bool,unsigned short)
unsigned short nRedlineTypeToDelete
65535
sw/inc/docary.hxx:396
_Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,unsigned short)
unsigned short nRedlineTypeToDelete
65535
sw/inc/editsh.hxx:174
void SwEditShell::Insert(char16_t,_Bool)
char16_t
32
sw/inc/editsh.hxx:249
class std::__debug::vector<struct std::pair<const class SfxPoolItem *, class std::unique_ptr<class SwPaM, struct std::default_delete<class SwPaM> > >, class std::allocator<struct std::pair<const class SfxPoolItem *, class std::unique_ptr<class SwPaM, struct std::default_delete<class SwPaM> > > > > SwEditShell::GetItemWithPaM(unsigned short)
unsigned short nWhich
8
sw/inc/fesh.hxx:525
_Bool SwFEShell::BeginCreate(unsigned short,enum SdrInventor,const class Point &)
enum SdrInventor eObjInventor
825249094
sw/inc/fmtcol.hxx:69
void SwTextFormatColl::SwTextFormatColl(class SwAttrPool &,const char *,class SwTextFormatColl *,unsigned short)
unsigned short nFormatWh
154
sw/inc/frmfmt.hxx:83
void SwFrameFormat::SwFrameFormat(class SwAttrPool &,const char *,class SwFrameFormat *,unsigned short,const unsigned short *)
unsigned short nFormatWhich
152
sw/inc/IDocumentRedlineAccess.hxx:182
_Bool IDocumentRedlineAccess::DeleteRedline(const class SwStartNode &,_Bool,unsigned short)
unsigned short nDelType
65535
sw/inc/ndtxt.hxx:156
void SwTextNode::SetLanguageAndFont(const class SwPaM &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nFontWhichId
22
sw/inc/ndtxt.hxx:156
void SwTextNode::SetLanguageAndFont(const class SwPaM &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nLangWhichId
24
sw/inc/node.hxx:445
const class SfxPoolItem * SwContentNode::GetNoCondAttr(unsigned short,_Bool) const
unsigned short nWhich
72
sw/inc/swfltopt.hxx:30
void SwFilterOptions::SwFilterOptions(unsigned short,const char **,unsigned long *)
unsigned short nCnt
13
sw/inc/tblafmt.hxx:190
_Bool SwBoxAutoFormat::SaveVersionNo(class SvStream &,unsigned short) const
unsigned short fileVersion
5050
sw/inc/tblafmt.hxx:325
_Bool SwTableAutoFormat::Save(class SvStream &,unsigned short) const
unsigned short fileVersion
5050
sw/inc/unostyle.hxx:107
void sw::ICoreFrameStyle::SetItem(enum RES_FRMATR,const class SfxPoolItem &)
enum RES_FRMATR eAtr
107
sw/inc/unostyle.hxx:108
const class SfxPoolItem * sw::ICoreFrameStyle::GetItem(enum RES_FRMATR)
enum RES_FRMATR eAtr
107
sw/inc/unotextcursor.hxx:87
void SwXTextCursor::SwXTextCursor(const class com::sun::star::uno::Reference<class com::sun::star::text::XText> &,const class SwPaM &,const enum CursorType)
const enum CursorType eType
7
sw/source/core/access/accmap.cxx:366
void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,const class sw::access::SwAccessibleChild &)
enum SwAccessibleEvent_Impl::EventType eT
5
sw/source/core/access/accmap.cxx:377
void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType)
enum SwAccessibleEvent_Impl::EventType eT
4
sw/source/core/access/accmap.cxx:416
void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,const class SwFrame *,const class sw::access::SwAccessibleChild &,const class SwRect &)
enum SwAccessibleEvent_Impl::EventType eT
3
sw/source/core/inc/swcache.hxx:110
void SwCache::IncreaseMax(const unsigned short)
const unsigned short nAdd
100
sw/source/core/inc/swcache.hxx:111
void SwCache::DecreaseMax(const unsigned short)
const unsigned short nSub
100
sw/source/core/inc/txtfrm.hxx:365
long SwTextFrame::GrowTst(const long)
const long nGrow
9223372036854775807
sw/source/core/inc/UndoAttribute.hxx:71
void SwUndoResetAttr::SwUndoResetAttr(const struct SwPosition &,unsigned short)
unsigned short nFormatId
47
sw/source/core/inc/UndoNumbering.hxx:40
void SwUndoInsNum::SwUndoInsNum(const class SwNumRule &,const class SwNumRule &,const class SwDoc *,enum SwUndoId)
enum SwUndoId nUndoId
10
sw/source/core/layout/objectformattertxtfrm.hxx:96
class SwAnchoredObject * SwObjectFormatterTextFrame::GetFirstObjWithMovedFwdAnchor(const short,unsigned int &,_Bool &)
const short _nWrapInfluenceOnPosition
2
sw/source/core/undo/untbl.cxx:2282
void RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags)
enum RedlineFlags eRedlineFlagsMask
2
sw/source/filter/html/htmlatr.cxx:1135
_Bool HTMLEndPosLst::IsHTMLMode(unsigned long) const
unsigned long nMode
32
sw/source/filter/html/svxcss1.hxx:153
void SvxCSS1PropertyInfo::SetBoxItem(class SfxItemSet &,unsigned short,const class SvxBoxItem *)
unsigned short nMinBorderDist
28
sw/source/filter/html/svxcss1.hxx:245
void SvxCSS1Parser::SvxCSS1Parser(class SfxItemPool &,const class rtl::OUString &,unsigned short *,unsigned short)
unsigned short nWhichIds
3
sw/source/filter/html/swhtml.hxx:628
void SwHTMLParser::NewStdAttr(enum HtmlTokenId)
enum HtmlTokenId nToken
414
sw/source/filter/inc/fltshell.hxx:182
class SfxPoolItem * SwFltControlStack::GetFormatStackAttr(unsigned short,unsigned short *)
unsigned short nWhich
6
sw/source/filter/inc/fltshell.hxx:183
const class SfxPoolItem * SwFltControlStack::GetOpenStackAttr(const struct SwPosition &,unsigned short)
unsigned short nWhich
14
sw/source/filter/inc/fltshell.hxx:236
void SwFltRedline::SwFltRedline(unsigned short,unsigned long,const class DateTime &,unsigned short,unsigned long)
unsigned long nAutorNoPrev_
18446744073709551615
sw/source/filter/ww8/docxexport.hxx:178
void DocxExport::WriteOutliner(const class OutlinerParaObject &,unsigned char)
unsigned char nTyp
5
sw/source/filter/ww8/escher.hxx:122
void SwBasicEscherEx::WriteEmptyFlyFrame(const class SwFrameFormat &,unsigned int)
unsigned int nShapeId
1025
sw/source/filter/ww8/wrtww8.hxx:1312
void WW8_WrPlcField::WW8_WrPlcField(unsigned short,unsigned char)
unsigned short nStructSz
2
sw/source/filter/ww8/wrtww8.hxx:1371
void SwWW8WrGrf::WritePICBulletFHeader(class SvStream &,const class Graphic &,unsigned short,unsigned short,unsigned short)
unsigned short mm
100
sw/source/filter/ww8/ww8glsy.hxx:61
void WW8Glossary::WW8Glossary(class tools::SvRef<class SotStorageStream> &,unsigned char,class SotStorage *)
unsigned char nVersion
8
sw/source/filter/ww8/ww8par.hxx:1565
class OutlinerParaObject * SwWW8ImplReader::ImportAsOutliner(class rtl::OUString &,int,int,enum ManTypes)
enum ManTypes eType
4
sw/source/filter/ww8/ww8par.hxx:1724
void SwWW8ImplReader::Read_Justify(unsigned short,const unsigned char *,short)
unsigned short
9219
sw/source/filter/ww8/ww8scan.hxx:358
void WW8PLCFpcd::WW8PLCFpcd(class SvStream *,unsigned int,unsigned int,unsigned int)
unsigned int nStruct
8
sw/source/filter/ww8/ww8scan.hxx:989
struct SprmResult WW8PLCFMan::HasCharSprm(unsigned short) const
unsigned short nId
2138
sw/source/filter/ww8/ww8scan.hxx:1528
void WW8Fib::WW8Fib(unsigned char,_Bool)
unsigned char nVersion
8
sw/source/filter/xml/xmlbrshi.hxx:56
void SwXMLBrushItemImportContext::SwXMLBrushItemImportContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,const class SvXMLUnitConverter &,unsigned short)
unsigned short nWhich
104
sw/source/filter/xml/xmlexpit.hxx:41
void SvXMLExportItemMapper::exportXML(const class SvXMLExport &,class SvXMLAttributeList &,const class SfxItemSet &,const class SvXMLUnitConverter &,const class SvXMLNamespaceMap &,enum SvXmlExportFlags,class std::__debug::vector<unsigned short, class std::allocator<unsigned short> > *) const
enum SvXmlExportFlags nFlags
8
sw/source/filter/xml/xmlexpit.hxx:57
void SvXMLExportItemMapper::exportElementItems(class SvXMLExport &,const class SvXMLUnitConverter &,const class SfxItemSet &,enum SvXmlExportFlags,const class std::__debug::vector<unsigned short, class std::allocator<unsigned short> > &) const
enum SvXmlExportFlags nFlags
8
sw/source/uibase/inc/frmmgr.hxx:118
void SwFlyFrameAttrMgr::DelAttr(unsigned short)
unsigned short nId
88
sw/source/uibase/inc/mailmergehelper.hxx:104
void SwAddressPreview::SetLayout(unsigned short,unsigned short)
unsigned short nColumns
2
sw/source/uibase/inc/prcntfld.hxx:74
void PercentField::SetUserValue(long,enum FieldUnit)
enum FieldUnit eInUnit
5
sw/source/uibase/inc/prcntfld.hxx:76
void PercentField::SetBaseValue(long,enum FieldUnit)
enum FieldUnit eInUnit
5
sw/source/uibase/inc/prcntfld.hxx:82
void PercentField::SetMax(long,enum FieldUnit)
enum FieldUnit eInUnit
5
sw/source/uibase/inc/prcntfld.hxx:84
void PercentField::SetMin(long,enum FieldUnit)
enum FieldUnit eInUnit
5
ucbhelper/source/provider/resultset.cxx:94
void ucbhelper_impl::PropertySetInfo::PropertySetInfo(const struct ucbhelper_impl::PropertyInfo *,int)
int nProps
2
vcl/inc/fontsubset.hxx:53
_Bool FontSubsetInfo::LoadFont(enum FontType,const unsigned char *,int)
enum FontType eInFontType
32
vcl/inc/listbox.hxx:455
void ImplListBox::SetMRUEntries(const class rtl::OUString &,char16_t)
char16_t cSep
59
vcl/inc/listbox.hxx:456
class rtl::OUString ImplListBox::GetMRUEntries(char16_t) const
char16_t cSep
59
vcl/inc/octree.hxx:101
void InverseColorMap::ImplCreateBuffers(const unsigned long)
const unsigned long nMax
32
vcl/inc/opengl/program.hxx:86
void OpenGLProgram::SetUniform1fv(const class rtl::OString &,int,float *)
int nCount
16
vcl/inc/opengl/program.hxx:87
void OpenGLProgram::SetUniform2fv(const class rtl::OString &,int,float *)
int nCount
16
vcl/inc/opengl/program.hxx:108
void OpenGLProgram::DrawElements(unsigned int,unsigned int)
unsigned int aMode
4
vcl/inc/salgdi.hxx:539
_Bool SalGraphics::hitTestNativeControl(enum ControlType,enum ControlPart,const class tools::Rectangle &,const class Point &,_Bool &)
enum ControlType eType
60
vcl/inc/unx/gendisp.hxx:66
void SalGenericDisplay::CancelInternalEvent(class SalFrame *,void *,enum SalEvent)
enum SalEvent nEvent
21
vcl/inc/unx/gtk/gtkprintwrapper.hxx:59
void vcl::unx::GtkPrintWrapper::print_unix_dialog_set_manual_capabilities(struct _GtkPrintUnixDialog *,GtkPrintCapabilities) const
GtkPrintCapabilities capabilities
846
vcl/inc/unx/saldata.hxx:62
void X11SalData::X11SalData(enum SalGenericDataType,class SalInstance *)
enum SalGenericDataType t
5
vcl/qa/cppunit/timer.cxx:35
void WatchDog::WatchDog(int)
int nSeconds
120
vcl/qa/cppunit/timer.cxx:303
void YieldTimer::YieldTimer(unsigned long)
unsigned long nMS
5
vcl/qa/cppunit/timer.cxx:330
void SlowCallbackTimer::SlowCallbackTimer(unsigned long,_Bool &)
unsigned long nMS
250
vcl/source/edit/textdoc.hxx:57
const class TextCharAttrib * TextCharAttribList::FindNextAttrib(unsigned short,int,int) const
unsigned short nWhich
2
vcl/source/filter/wmf/emfwr.hxx:60
void EMFWriter::ImplBeginCommentRecord(int)
int nCommentType
726027589
vcl/source/filter/wmf/wmfwr.hxx:145
void WMFWriter::WMFRecord_Escape(unsigned int,unsigned int,const signed char *)
unsigned int nEsc
2
vcl/source/gdi/pdfwriter_impl.hxx:1085
void vcl::PDFWriterImpl::insertError(enum vcl::PDFWriter::ErrorCode)
enum vcl::PDFWriter::ErrorCode eErr
3
vcl/unx/generic/dtrans/X11_selection.hxx:390
unsigned long x11::SelectionManager::createCursor(const unsigned char *,const unsigned char *,int,int,int,int)
int width
32
vcl/unx/generic/dtrans/X11_selection.hxx:390
unsigned long x11::SelectionManager::createCursor(const unsigned char *,const unsigned char *,int,int,int,int)
int height
32
vcl/unx/generic/gdi/xrender_peer.hxx:52
void XRenderPeer::ChangePicture(unsigned long,unsigned long,const struct _XRenderPictureAttributes *) const
unsigned long nValueMask
64
vcl/unx/generic/gdi/xrender_peer.hxx:55
void XRenderPeer::CompositePicture(int,unsigned long,unsigned long,unsigned long,int,int,int,int,unsigned int,unsigned int) const
int nOp
3
vcl/unx/generic/gdi/xrender_peer.hxx:62
void XRenderPeer::CompositeTrapezoids(int,unsigned long,unsigned long,const XRenderPictFormat *,int,int,const struct _XTrapezoid *,int) const
int nOp
3
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:175
void writerfilter::ooxml::OOXMLFastContextHandler::sendPropertiesWithId(unsigned int)
unsigned int nId
92455
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:490
void writerfilter::ooxml::OOXMLFastContextHandlerWrapper::addToken(int)
int Element
2102388
writerfilter/source/ooxml/OOXMLPropertySet.hxx:298
void writerfilter::ooxml::OOXMLPropertySetEntryToInteger::OOXMLPropertySetEntryToInteger(unsigned int)
unsigned int nId
92215
writerfilter/source/ooxml/OOXMLPropertySet.hxx:312
void writerfilter::ooxml::OOXMLPropertySetEntryToBool::OOXMLPropertySetEntryToBool(unsigned int)
unsigned int nId
92216
writerfilter/source/rtftok/rtfsprm.hxx:67
void writerfilter::rtftok::RTFSprms::eraseLast(unsigned int)
unsigned int nKeyword
92666
xmloff/inc/txtflde.hxx:253
void XMLTextFieldExport::ProcessIntegerDef(enum xmloff::token::XMLTokenEnum,int,int)
enum xmloff::token::XMLTokenEnum eXmlName
1299
xmloff/inc/txtflde.hxx:279
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,const class rtl::OUString &)
enum xmloff::token::XMLTokenEnum eXmlName
798
xmloff/inc/txtflde.hxx:279
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,const class rtl::OUString &)
unsigned short nValuePrefix
21
xmloff/inc/txtflde.hxx:292
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum eDefault
1757
xmloff/inc/txtflde.hxx:292
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum eXmlName
1428
xmloff/inc/txtflde.hxx:324
void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,double,_Bool,_Bool,_Bool,unsigned short)
unsigned short nPrefix
2
xmloff/inc/txtflde.hxx:340
void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &)
enum xmloff::token::XMLTokenEnum eXMLName
506
xmloff/inc/txtflde.hxx:345
void XMLTextFieldExport::ProcessTimeOrDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &)
enum xmloff::token::XMLTokenEnum eXMLName
1808
xmloff/inc/XMLBase64Export.hxx:41
_Bool XMLBase64Export::exportElement(const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum eName
2011
xmloff/source/draw/ximpstyl.cxx:129
void SdXMLDrawingPageStyleContext::SdXMLDrawingPageStyleContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,class SvXMLStylesContext &,unsigned short)
unsigned short nFamily
305
xmloff/source/forms/elementimport.cxx:1421
void xmloff::EqualHandle::EqualHandle(int)
int _nHandle
2
xmloff/source/forms/property_description.hxx:95
void xmloff::PropertyDescription::PropertyDescription(const class rtl::OUString &,const unsigned short,const enum xmloff::token::XMLTokenEnum,class rtl::Reference<class xmloff::PropertyHandlerBase> (*const)(enum xmloff::PropertyId),const enum xmloff::PropertyId,const enum xmloff::PropertyGroup)
const unsigned short i_namespacePrefix
15
xmloff/source/style/xmlbahdl.hxx:52
void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char)
enum xmloff::token::XMLTokenEnum eZeroString
402
xmloff/source/style/xmlbahdl.hxx:52
void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char)
signed char nB
2
xmloff/source/style/xmlbahdl.hxx:118
void XMLMeasurePxPropHdl::XMLMeasurePxPropHdl(signed char)
signed char nB
4
xmloff/source/transform/TransformerContext.hxx:58
_Bool XMLTransformerContext::HasNamespace(unsigned short) const
unsigned short nPrefix
15
xmlsecurity/inc/xsecctl.hxx:84
void InternalSignatureInformation::addReference(enum SignatureReferenceType,int,const class rtl::OUString &,int)
int keeperId
-1
xmlsecurity/source/framework/elementmark.hxx:58
void ElementMark::ElementMark(int,int)
int nSecurityId
-1
|