1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588
  
     | 
    
      basctl/source/inc/dlged.hxx:76
    void basctl::DlgEdHint::DlgEdHint(enum basctl::DlgEdHint::Kind,class basctl::DlgEdObj *)
    enum basctl::DlgEdHint::Kind 
    2
basic/source/classes/sbunoobj.cxx:3225
    class com::sun::star::uno::Reference<class com::sun::star::reflection::XTypeDescriptionEnumeration> getTypeDescriptorEnumeration(const class rtl::OUString &,const class com::sun::star::uno::Sequence<enum com::sun::star::uno::TypeClass> &,enum com::sun::star::reflection::TypeDescriptionSearchDepth)
    enum com::sun::star::reflection::TypeDescriptionSearchDepth depth
    -1
basic/source/inc/expr.hxx:196
    void SbiExpression::SbiExpression(class SbiParser *,double,enum SbxDataType)
    enum SbxDataType 
    2
basic/source/inc/runtime.hxx:425
    _Bool SbiRuntime::IsImageFlag(enum SbiImageFlags) const
    enum SbiImageFlags n
    2
basic/source/inc/sbjsmeth.hxx:31
    void SbJScriptMethod::SbJScriptMethod(enum SbxDataType)
    enum SbxDataType 
    12
basic/source/runtime/methods.cxx:3122
    short GetOptionalIntegerParamOrDefault(class SbxArray &,const unsigned int,const short)
    const unsigned int i
    2
basic/source/runtime/methods.cxx:3128
    class rtl::OUString GetOptionalOUStringParamOrDefault(class SbxArray &,const unsigned int,const class rtl::OUString &)
    const unsigned int i
    3
canvas/inc/verifyinput.hxx:103
    void verifyInput(const struct com::sun::star::geometry::Matrix2D &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
    short nArgPos
    2
canvas/workben/canvasdemo.cxx:142
    void (anonymous namespace)::DemoRenderer::drawStringAt(const class rtl::OString &,double,double)
    double y
    15
canvas/workben/canvasdemo.cxx:480
    void (anonymous namespace)::DemoRenderer::drawRegularPolygon(double,double,int,double)
    double centery
    35
canvas/workben/canvasdemo.cxx:480
    void (anonymous namespace)::DemoRenderer::drawRegularPolygon(double,double,int,double)
    double r
    15
chart2/qa/extras/chart2export.cxx:125
    void checkPolynomialTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int,double,double,double)
    int aExpectedDegree
    3
chart2/qa/extras/chart2export.cxx:147
    void checkMovingAverageTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int)
    int aExpectedPeriod
    3
chart2/qa/extras/PivotChartTest.cxx:82
    void lclModifyFunction(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotDescriptor> &,class std::basic_string_view<char16_t>,enum com::sun::star::sheet::GeneralFunction)
    enum com::sun::star::sheet::GeneralFunction eFunction
    2
chart2/source/controller/inc/AccessibleBase.hxx:143
    void chart::AccessibleBase::RemoveState(long)
    long aState
    4194304
chart2/source/inc/LinePropertiesHelper.hxx:62
    void SetLineColor(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,int)
    int nColor
    14540253
chart2/source/inc/ObjectIdentifier.hxx:184
    class rtl::OUString chart::ObjectIdentifier::createSeriesSubObjectStub(enum chart::ObjectType,class std::basic_string_view<char16_t>,class std::basic_string_view<char16_t>,class std::basic_string_view<char16_t>)
    enum chart::ObjectType eSubObjectType
    12
chart2/source/inc/StatisticsHelper.hxx:77
    class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> addErrorBars(const class rtl::Reference<class chart::DataSeries> &,int,_Bool)
    int nStyle
    2
chart2/source/model/template/PieChartTypeTemplate.hxx:36
    void chart::PieChartTypeTemplate::PieChartTypeTemplate(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,enum com::sun::star::chart2::PieChartOffsetMode,_Bool,enum com::sun::star::chart2::PieChartSubType,int,int)
    int nCompositeSize
    3
chart2/source/tools/RangeHighlighter.cxx:50
    void lcl_fillRanges(class com::sun::star::uno::Sequence<struct com::sun::star::chart2::data::HighlightedRange> &,const class com::sun::star::uno::Sequence<class rtl::OUString> &,class Color,int)
    int nIndex
    -1
chart2/source/view/charttypes/PieChart.hxx:235
    void chart::PieChart::createOneBar(enum chart::SubPieType,struct chart::PieChart::ShapeParam &,const class rtl::Reference<class SvxShapeGroupAnyD> &,const class rtl::Reference<class SvxShapeGroup> &,class chart::VDataSeries *,const class chart::PieDataSrcBase *,int)
    enum chart::SubPieType eType
    2
codemaker/source/javamaker/classfile.cxx:86
    void writeU4(class FileStream &,unsigned int)
    unsigned int data
    3405691582
comphelper/qa/unit/variadictemplates.cxx:63
    void extract(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int,optional<type-parameter-?-?> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
    int nArg
    4
connectivity/source/drivers/firebird/StatementCommonBase.hxx:91
    short connectivity::firebird::OStatementCommonBase::getSqlInfoItem(char)
    char aInfoItem
    21
connectivity/source/drivers/postgresql/pq_connection.cxx:371
    void properties2arrays(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,const class com::sun::star::uno::Reference<class com::sun::star::script::XTypeConverter> &,unsigned short,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &)
    unsigned short enc
    76
connectivity/source/drivers/postgresql/pq_statics.cxx:80
    void pq_sdbc_driver::(anonymous namespace)::PropertyDefEx::PropertyDefEx(const class rtl::OUString &,const class com::sun::star::uno::Type &,int)
    int a
    16
connectivity/source/drivers/postgresql/pq_statics.cxx:100
    class cppu::IPropertyArrayHelper * createPropertyArrayHelper(const struct pq_sdbc_driver::(anonymous namespace)::PropertyDefEx *,int)
    int count
    12
connectivity/source/inc/java/sql/ConnectionLog.hxx:105
    void 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:111
    void 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:117
    void 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/mysql/YTable.hxx:83
    void connectivity::mysql::OMySQLTable::OMySQLTable(class connectivity::sdbcx::OCollection *,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int)
    int _nPrivileges
    511
connectivity/source/inc/odbc/OFunctions.hxx:38
    short connectivity::odbc::Functions::DriverConnect(void *,void *,unsigned char *,short,unsigned char *,short,short *,unsigned short) const
    short BufferLength
    4095
connectivity/source/inc/odbc/OFunctions.hxx:46
    short connectivity::odbc::Functions::DriverConnectW(void *,void *,unsigned short *,short,unsigned short *,short,short *,unsigned short) const
    short BufferLength
    4095
connectivity/source/inc/odbc/OFunctions.hxx:60
    short connectivity::odbc::Functions::GetInfoW(void *,unsigned short,void *,short,short *) const
    short BufferLength
    1022
connectivity/source/inc/odbc/OFunctions.hxx:65
    short connectivity::odbc::Functions::GetFunctions(void *,unsigned short,unsigned short *) const
    unsigned short FunctionId
    1021
connectivity/source/inc/odbc/OFunctions.hxx:74
    short connectivity::odbc::Functions::SetConnectAttrW(void *,int,void *,int) const
    int Attribute
    109
connectivity/source/inc/odbc/OFunctions.hxx:74
    short connectivity::odbc::Functions::SetConnectAttrW(void *,int,void *,int) const
    int StringLength
    -3
connectivity/source/inc/odbc/OFunctions.hxx:83
    short connectivity::odbc::Functions::GetConnectAttrW(void *,int,void *,int,int *) const
    int Attribute
    109
connectivity/source/inc/odbc/OFunctions.hxx:83
    short connectivity::odbc::Functions::GetConnectAttrW(void *,int,void *,int,int *) const
    int BufferLength
    2046
connectivity/source/inc/odbc/OFunctions.hxx:88
    short connectivity::odbc::Functions::SetEnvAttr(void *,int,void *,int) const
    int Attribute
    200
connectivity/source/inc/odbc/OFunctions.hxx:88
    short connectivity::odbc::Functions::SetEnvAttr(void *,int,void *,int) const
    void * ValuePtr
    3
connectivity/source/inc/odbc/OFunctions.hxx:88
    short connectivity::odbc::Functions::SetEnvAttr(void *,int,void *,int) const
    int StringLength
    -5
connectivity/source/inc/odbc/OFunctions.hxx:226
    short connectivity::odbc::Functions::BulkOperations(void *,short) const
    short Operation
    4
connectivity/source/inc/odbc/OFunctions.hxx:237
    short connectivity::odbc::Functions::GetDiagRec(short,void *,short,unsigned char *,int *,unsigned char *,short,short *) const
    short BufferLength
    511
connectivity/source/inc/odbc/OFunctions.hxx:245
    short connectivity::odbc::Functions::GetDiagRecW(short,void *,short,unsigned short *,int *,unsigned short *,short,short *) const
    short BufferLength
    511
connectivity/source/inc/odbc/OFunctions.hxx:254
    short connectivity::odbc::Functions::ColumnPrivileges(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:254
    short connectivity::odbc::Functions::ColumnPrivileges(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:263
    short connectivity::odbc::Functions::ColumnPrivilegesW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:263
    short connectivity::odbc::Functions::ColumnPrivilegesW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:272
    short connectivity::odbc::Functions::Columns(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:272
    short connectivity::odbc::Functions::Columns(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:281
    short connectivity::odbc::Functions::ColumnsW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:281
    short connectivity::odbc::Functions::ColumnsW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:316
    short connectivity::odbc::Functions::PrimaryKeys(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:323
    short connectivity::odbc::Functions::PrimaryKeysW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:330
    short connectivity::odbc::Functions::ProcedureColumns(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:330
    short connectivity::odbc::Functions::ProcedureColumns(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:339
    short connectivity::odbc::Functions::ProcedureColumnsW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:339
    short connectivity::odbc::Functions::ProcedureColumnsW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:348
    short connectivity::odbc::Functions::Procedures(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:355
    short connectivity::odbc::Functions::ProceduresW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:362
    short connectivity::odbc::Functions::SpecialColumns(void *,unsigned short,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned short,unsigned short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:372
    short connectivity::odbc::Functions::SpecialColumnsW(void *,unsigned short,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short,unsigned short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:382
    short connectivity::odbc::Functions::Statistics(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned short,unsigned short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:391
    short connectivity::odbc::Functions::StatisticsW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short,unsigned short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:400
    short connectivity::odbc::Functions::TablePrivileges(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:407
    short connectivity::odbc::Functions::TablePrivilegesW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength3
    -3
connectivity/source/inc/odbc/OFunctions.hxx:414
    short connectivity::odbc::Functions::Tables(void *,unsigned char *,short,unsigned char *,short,unsigned char *,short,unsigned char *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:423
    short connectivity::odbc::Functions::TablesW(void *,unsigned short *,short,unsigned short *,short,unsigned short *,short,unsigned short *,short) const
    short NameLength4
    -3
connectivity/source/inc/odbc/OFunctions.hxx:436
    short connectivity::odbc::Functions::EndTran(short,void *,short) const
    short HandleType
    2
connectivity/source/inc/odbc/OFunctions.hxx:442
    short connectivity::odbc::Functions::GetCursorName(void *,unsigned char *,short,short *) const
    short BufferLength
    256
connectivity/source/inc/odbc/OFunctions.hxx:446
    short connectivity::odbc::Functions::GetCursorNameW(void *,unsigned short *,short,short *) const
    short BufferLength
    256
connectivity/source/inc/odbc/OFunctions.hxx:450
    short connectivity::odbc::Functions::NativeSql(void *,unsigned char *,int,unsigned char *,int,int *) const
    int BufferLength
    2047
connectivity/source/inc/odbc/OFunctions.hxx:456
    short connectivity::odbc::Functions::NativeSqlW(void *,unsigned short *,int,unsigned short *,int,int *) const
    int BufferLength
    2047
connectivity/source/inc/odbc/OPreparedStatement.hxx:75
    void connectivity::odbc::OPreparedStatement::setParameter(int,int,const class com::sun::star::uno::Sequence<signed char> &)
    int _nType
    -2
connectivity/source/inc/odbc/OTools.hxx:216
    class com::sun::star::uno::Sequence<signed char> connectivity::odbc::OTools::getBytesValue(const class connectivity::odbc::OConnection *,void *,int,short,_Bool &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
    short _fSqlType
    -2
cppcanvas/source/inc/implrenderer.hxx:183
    _Bool cppcanvas::internal::ImplRenderer::isActionContained(class GDIMetaFile &,const char *,enum MetaActionType)
    enum MetaActionType nType
    147
cui/source/inc/autocdlg.hxx:312
    void OfaQuoteTabPage::CreateEntry(class weld::TreeView &,const class rtl::OUString &,unsigned short,unsigned short)
    unsigned short nCol
    2
cui/source/inc/autocdlg.hxx:312
    void OfaQuoteTabPage::CreateEntry(class weld::TreeView &,const class rtl::OUString &,unsigned short,unsigned short)
    unsigned short nTextCol
    2
cui/source/inc/chardlg.hxx:275
    void SvxCharPositionPage::UpdatePreview_Impl(unsigned char,unsigned char,short)
    unsigned char nProp
    100
cui/source/inc/cuihyperdlg.hxx:49
    void SvxHlinkCtrl::SvxHlinkCtrl(unsigned short,class SfxBindings &,class SvxHpLinkDlg *)
    unsigned short nId
    10361
cui/source/inc/MacroManagerDialog.hxx:162
    void ScriptContainersListBox::Insert(const class com::sun::star::uno::Reference<class com::sun::star::script::browse::XBrowseNode> &,const class weld::TreeIter *,const class rtl::OUString &,const class rtl::OUString &,_Bool,int,class weld::TreeIter *)
    int nPos
    -1
cui/source/inc/SpellDialog.hxx:118
    void svx::SentenceEditWindow_Impl::UndoActionStart(unsigned short)
    unsigned short nId
    205
cui/source/inc/SvxToolbarConfigPage.hxx:63
    void SvxToolbarConfigPage::AddFunction(int)
    int nTarget
    -1
cui/source/options/cfgchart.hxx:69
    void SvxChartColorTableItem::SvxChartColorTableItem(unsigned short,class SvxChartColorTable)
    unsigned short nWhich
    10437
cui/source/options/connpoolsettings.hxx:75
    void offapp::DriverPoolingSettingsItem::DriverPoolingSettingsItem(unsigned short,class offapp::DriverPoolingSettings)
    unsigned short _nId
    17148
cui/source/options/dbregistersettings.hxx:68
    void svx::DatabaseMapItem::DatabaseMapItem(unsigned short,class std::map<class rtl::OUString, struct svx::DatabaseRegistration> &&)
    unsigned short _nId
    17149
cui/source/tabpages/align.cxx:58
    void lcl_MaybeResetAlignToDistro(class weld::ComboBox &,unsigned short,const class SfxItemSet &,class TypedWhichId<class SfxEnumItemInterface>,class TypedWhichId<class SfxEnumItemInterface>,type-parameter-?-?)
    type-parameter-?-? eBlock
    4
dbaccess/source/core/dataaccess/documentdefinition.hxx:183
    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:39
    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/ui/dlg/dsnItem.hxx:39
    void dbaui::DbuTypeCollectionItem::DbuTypeCollectionItem(short,class dbaccess::ODsnTypeCollection *)
    short nWhich
    5
dbaccess/source/ui/inc/FieldDescControl.hxx:140
    void dbaui::OFieldDescControl::CellModified(int,unsigned short)
    int nRow
    -1
dbaccess/source/ui/inc/JAccess.hxx:51
    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/querydesign/SelectionBrowseBox.hxx:88
    class rtl::Reference<class dbaui::OTableFieldDesc> dbaui::OSelectionBrowseBox::InsertField(const class rtl::Reference<class dbaui::OTableFieldDesc> &,unsigned short,_Bool,_Bool)
    unsigned short _nColumnPosition
    65535
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:106
    class drawinglayer::primitive3d::Primitive3DContainer getLineTubeSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &)
    unsigned int nSegments
    8
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:180
    class drawinglayer::primitive3d::Primitive3DContainer getLineCapSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &)
    unsigned int nSegments
    8
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:272
    class drawinglayer::primitive3d::Primitive3DContainer getLineCapRoundSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &)
    unsigned int nSegments
    8
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:281
    class drawinglayer::primitive3d::Primitive3DContainer getLineJoinSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &,double,double,enum basegfx::B2DLineJoin)
    unsigned int nSegments
    8
editeng/inc/ContentNode.hxx:80
    class EditCharAttrib * CharAttribList::FindAttribRightOpen(unsigned short,int)
    unsigned short nWhich
    4041
editeng/inc/outleeng.hxx:71
    class std::optional<_Bool> OutlinerEditEng::GetCompatFlag(enum SdrCompatibilityFlag) const
    enum SdrCompatibilityFlag eFlag
    3
editeng/source/editeng/impedit.hxx:754
    _Bool ImpEditEngine::HasScriptType(int,unsigned short) const
    unsigned short nType
    3
editeng/source/editeng/impedit.hxx:1220
    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
    4056
editeng/source/editeng/impedit.hxx:1220
    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
    4058
editeng/source/editeng/textconv.hxx:87
    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
    4056
editeng/source/editeng/textconv.hxx:87
    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
    4058
editeng/source/outliner/outlundo.hxx:31
    void OutlinerUndoBase::OutlinerUndoBase(unsigned short,class Outliner *)
    unsigned short nId
    200
filter/source/config/cache/filtercache.hxx:331
    _Bool filter::config::FilterCache::isFillState(enum filter::config::FilterCache::EFillState) const
    enum filter::config::FilterCache::EFillState eRequired
    2
filter/source/msfilter/mscodec.cxx:58
    void lclRotateLeft(type-parameter-?-? &,unsigned char,unsigned char)
    unsigned char nWidth
    15
filter/source/msfilter/mscodec.cxx:73
    unsigned short lclGetKey(const unsigned char *,unsigned long)
    unsigned long nBufferSize
    16
filter/source/msfilter/mscodec.cxx:98
    unsigned short lclGetHash(const unsigned char *,unsigned long)
    unsigned long nBufferSize
    16
forms/source/richtext/richtextcontrol.cxx:81
    void implAdjustTriStateFlag(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,long &,long,long)
    long _nPositiveFlag
    256
forms/source/richtext/richtextcontrol.cxx:81
    void implAdjustTriStateFlag(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,long &,long,long)
    long nNegativeFlag
    512
forms/source/richtext/rtattributes.hxx:51
    void frm::AttributeState::AttributeState(enum frm::AttributeCheckState)
    enum frm::AttributeCheckState _eCheckState
    2
formula/source/core/api/FormulaCompiler.cxx:303
    const char16_t * lcl_UnicodeStrChr(const char16_t *,char16_t)
    char16_t c
    34
fpicker/source/office/autocmpledit.hxx:41
    void AutocompleteEdit::select_region(int,int)
    int nEndPos
    -1
fpicker/source/office/iodlg.hxx:203
    void SvtFileDialog::displayIOException(const class rtl::OUString &,enum com::sun::star::ucb::IOErrorCode)
    enum com::sun::star::ucb::IOErrorCode _eCode
    5
framework/inc/uielement/macrosmenucontroller.hxx:49
    void framework::MacrosMenuController::addScriptItems(const class com::sun::star::uno::Reference<class com::sun::star::awt::XPopupMenu> &,unsigned short)
    unsigned short startItemId
    4
framework/source/uielement/thesaurusmenucontroller.cxx:50
    void (anonymous namespace)::ThesaurusMenuController::getMeanings(class std::vector<class rtl::OUString> &,const class rtl::OUString &,const struct com::sun::star::lang::Locale &,unsigned long)
    unsigned long nMaxSynonms
    7
hwpfilter/source/hgzip.h:90
    int gz_flush(struct gz_stream *,int)
    int flush
    4
hwpfilter/source/hwpfile.h:250
    _Bool HWPFile::already_importing_type(unsigned char) const
    unsigned char scflag
    16
hwpfilter/source/lexer.cxx:202
    struct (anonymous namespace)::yy_buffer_state * yy_create_buffer(struct _IO_FILE *,int)
    int size
    16384
include/basctl/sbxitem.hxx:49
    void basctl::SbxItem::SbxItem(unsigned short,class basctl::ScriptDocument,class rtl::OUString,class rtl::OUString,enum basctl::SbxItemType)
    unsigned short nWhich
    30799
include/basctl/sbxitem.hxx:50
    void basctl::SbxItem::SbxItem(unsigned short,class basctl::ScriptDocument,class rtl::OUString,class rtl::OUString,class rtl::OUString,enum basctl::SbxItemType)
    unsigned short nWhich
    30799
include/basegfx/curve/b2dbeziertools.hxx:44
    void basegfx::B2DCubicBezierHelper::B2DCubicBezierHelper(const class basegfx::B2DCubicBezier &,unsigned int)
    unsigned int nDivisions
    9
include/basegfx/range/b2ibox.hxx:71
    void basegfx::B2IBox::B2IBox(int,int,int,int)
    int x2
    10
include/basegfx/range/b2ibox.hxx:71
    void basegfx::B2IBox::B2IBox(int,int,int,int)
    int y2
    10
include/basegfx/utils/tools.hxx:118
    class basegfx::B2DPolyPolygon number2PolyPolygon(double,int,int,_Bool)
    int nTotalDigits
    10
include/basegfx/utils/tools.hxx:118
    class basegfx::B2DPolyPolygon number2PolyPolygon(double,int,int,_Bool)
    int nDecPlaces
    3
include/basic/sbxcore.hxx:68
    _Bool SbxBase::IsReset(enum SbxFlagBits) const
    enum SbxFlagBits n
    256
include/comphelper/accessiblecomponenthelper.hxx:107
    void comphelper::OCommonAccessibleComponent::NotifyAccessibleEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &,int)
    int nIndexHint
    -1
include/comphelper/docpasswordhelper.hxx:286
    class rtl::OUString comphelper::DocPasswordHelper::GetOoxHashAsBase64(const class rtl::OUString &,class std::basic_string_view<char16_t>,unsigned int,enum comphelper::Hash::IterCount,class std::basic_string_view<char16_t>)
    enum comphelper::Hash::IterCount eIterCount
    2
include/comphelper/docpasswordhelper.hxx:342
    class com::sun::star::uno::Sequence<signed char> comphelper::DocPasswordHelper::GenerateRandomByteSequence(int)
    int nLength
    16
include/comphelper/propagg.hxx:120
    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:286
    void comphelper::OPropertySetAggregationHelper::declareForwardedProperty(int)
    int _nHandle
    194
include/comphelper/property.hxx:52
    void ModifyPropertyAttributes(class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,const class rtl::OUString &,short,short)
    short _nRemoveAttrib
    8
include/comphelper/seqstream.hxx:117
    void comphelper::OSequenceOutputStream::OSequenceOutputStream(class com::sun::star::uno::Sequence<signed char> &,double,int)
    int _nMinimumResize
    128
include/comphelper/storagehelper.hxx:119
    class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> comphelper::OStorageHelper::GetStorageFromStream(const class com::sun::star::uno::Reference<class com::sun::star::io::XStream> &,int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &)
    int nStorageMode
    7
include/comphelper/string.hxx:74
    class std::basic_string_view<char> stripStart(class std::basic_string_view<char>,char)
    char c
    32
include/comphelper/string.hxx:122
    class std::basic_string_view<char> strip(class std::basic_string_view<char>,char)
    char c
    32
include/comphelper/string.hxx:134
    class std::basic_string_view<char16_t> strip(class std::basic_string_view<char16_t>,char16_t)
    char16_t c
    32
include/comphelper/traceevent.hxx:100
    void comphelper::TraceEvent::setBufferSizeAndCallback(unsigned long,void (*)(void))
    unsigned long bufferSize
    100
include/connectivity/dbtools.hxx:303
    class com::sun::star::sdbc::SQLException prependErrorInfo(const class com::sun::star::sdbc::SQLException &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class rtl::OUString &,const enum dbtools::StandardSQLState)
    const enum dbtools::StandardSQLState _eSQLState
    2147483647
include/connectivity/sqlerror.hxx:83
    class rtl::OUString connectivity::SQLError::getErrorMessage(const int) const
    const int _eCondition
    300
include/connectivity/sqlerror.hxx:94
    int connectivity::SQLError::getErrorCode(const int)
    const int _eCondition
    550
include/connectivity/sqlerror.hxx:162
    void connectivity::SQLError::raiseException(const int) const
    const int _eCondition
    200
include/connectivity/sqlerror.hxx:187
    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:294
    _Bool dbaui::OGenericUnoController::isFeatureSupported(int)
    int _nId
    5502
include/drawinglayer/attribute/fillhatchattribute.hxx:51
    void drawinglayer::attribute::FillHatchAttribute::FillHatchAttribute(enum drawinglayer::attribute::HatchStyle,double,double,const class basegfx::BColor &,unsigned int,_Bool)
    unsigned int nMinimalDiscreteDistance
    3
include/drawinglayer/converters.hxx:34
    class AlphaMask createAlphaMask(class drawinglayer::primitive2d::Primitive2DContainer &&,const class drawinglayer::geometry::ViewInformation2D &,unsigned int,unsigned int,unsigned int,_Bool)
    unsigned int nMaxSquarePixels
    250000
include/drawinglayer/primitive2d/mediaprimitive2d.hxx:63
    void drawinglayer::primitive2d::MediaPrimitive2D::MediaPrimitive2D(class basegfx::B2DHomMatrix,class rtl::OUString,const class basegfx::BColor &,unsigned int,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:242
    void accessibility::AccessibleParaManager::SetState(int,const long)
    const long nStateId
    1024
include/editeng/AccessibleParaManager.hxx:244
    void accessibility::AccessibleParaManager::UnSetState(int,const long)
    const long nStateId
    1024
include/editeng/bulletitem.hxx:61
    void SvxBulletItem::SvxBulletItem(unsigned short)
    unsigned short nWhich
    4033
include/editeng/editeng.hxx:305
    struct ESelection EditEngine::GetWord(const struct ESelection &,unsigned short) const
    unsigned short nWordType
    2
include/editeng/editeng.hxx:317
    void EditEngine::InsertParagraph(int,const class EditTextObject &,const _Bool)
    int nPara
    2147483647
include/editeng/editeng.hxx:350
    void EditEngine::UndoActionStart(unsigned short,const struct ESelection &)
    unsigned short nId
    111
include/editeng/editstat.hxx:91
    void SetFlags(enum EVControlBits &,enum EVControlBits,_Bool)
    enum EVControlBits nMask
    16
include/editeng/editund2.hxx:38
    void EditUndoManager::EditUndoManager(unsigned short)
    unsigned short nMaxUndoActionCount
    20
include/editeng/editview.hxx:276
    void EditView::RemoveCharAttribs(int,unsigned short)
    unsigned short nWhich
    4045
include/editeng/editview.hxx:389
    void EditView::InitLOKSpecialPositioning(enum MapUnit,const class tools::Rectangle &,const class Point &)
    enum MapUnit eUnit
    9
include/editeng/fhgtitem.hxx:75
    void SvxFontHeightItem::SetHeight(unsigned int,unsigned short,enum MapUnit,enum MapUnit)
    enum MapUnit eUnit
    8
include/editeng/flditem.hxx:74
    void SvxFieldItem::SvxFieldItem(class std::unique_ptr<class SvxFieldData>,const unsigned short)
    const unsigned short nId
    4076
include/editeng/flditem.hxx:75
    void SvxFieldItem::SvxFieldItem(const class SvxFieldData &,const unsigned short)
    const unsigned short nId
    4076
include/editeng/justifyitem.hxx:34
    void SvxHorJustifyItem::SvxHorJustifyItem(const unsigned short)
    const unsigned short nId
    1059
include/editeng/justifyitem.hxx:62
    void SvxVerJustifyItem::SvxVerJustifyItem(const unsigned short)
    const unsigned short nId
    1060
include/editeng/legacyitem.hxx:171
    void Create(class SvxFormatBreakItem &,class SvStream &,unsigned short)
    unsigned short nItemVersion
    5050
include/editeng/legacyitem.hxx:178
    void Create(class SvxFormatKeepItem &,class SvStream &,unsigned short)
    unsigned short nItemVersion
    5050
include/editeng/legacyitem.hxx:185
    void Create(class SvxShadowItem &,class SvStream &,unsigned short)
    unsigned short nItemVersion
    5050
include/editeng/lrspitem.hxx:104
    void SvxLeftMarginItem::SetLeft(const long,const unsigned short)
    const unsigned short nProp
    100
include/editeng/lrspitem.hxx:112
    void SvxLeftMarginItem::SvxLeftMarginItem(const unsigned short)
    const unsigned short nId
    94
include/editeng/lrspitem.hxx:159
    void SvxTextLeftMarginItem::SvxTextLeftMarginItem(struct SvxIndentValue,const unsigned short)
    const unsigned short nId
    92
include/editeng/lrspitem.hxx:206
    void SvxFirstLineIndentItem::SvxFirstLineIndentItem(struct SvxIndentValue,const unsigned short)
    const unsigned short nId
    91
include/editeng/lrspitem.hxx:251
    void SvxRightMarginItem::SvxRightMarginItem(struct SvxIndentValue,const unsigned short)
    const unsigned short nId
    93
include/editeng/lrspitem.hxx:287
    void SvxGutterLeftMarginItem::SvxGutterLeftMarginItem(const unsigned short)
    const unsigned short nId
    95
include/editeng/lrspitem.hxx:320
    void SvxGutterRightMarginItem::SvxGutterRightMarginItem(const unsigned short)
    const unsigned short nId
    96
include/editeng/lrspitem.hxx:385
    void SvxLRSpaceItem::SetLeft(struct SvxIndentValue,const unsigned short)
    const unsigned short nProp
    100
include/editeng/numitem.hxx:324
    void SvxNumBulletItem::SvxNumBulletItem(class SvxNumRule &&,unsigned short)
    unsigned short nWhich
    4026
include/editeng/opaqitem.hxx:37
    void SvxOpaqueItem::SvxOpaqueItem(const unsigned short,const _Bool)
    const unsigned short nId
    105
include/editeng/optitems.hxx:35
    void SfxHyphenRegionItem::SfxHyphenRegionItem(const unsigned short)
    const unsigned short nId
    12012
include/editeng/outliner.hxx:156
    void Paragraph::RemoveFlag(enum ParaFlag)
    enum ParaFlag nFlag
    256
include/editeng/outliner.hxx:389
    void OutlinerViewShell::NotifyOtherView(class OutlinerViewShell *,int,const class rtl::OString &,const class rtl::OString &)
    int nType
    25
include/editeng/outliner.hxx:865
    void Outliner::SetParaFlag(class Paragraph *,enum ParaFlag)
    enum ParaFlag nFlag
    256
include/editeng/outliner.hxx:866
    _Bool Outliner::HasParaFlag(const class Paragraph *,enum ParaFlag)
    enum ParaFlag nFlag
    256
include/editeng/outlobj.hxx:120
    void OutlinerParaObject::SetStyleSheets(unsigned short,const class rtl::OUString &,const enum SfxStyleFamily &)
    const enum SfxStyleFamily & rNewFamily
    8
include/editeng/prntitem.hxx:39
    void SvxPrintItem::SvxPrintItem(const unsigned short,const _Bool)
    const unsigned short nId
    104
include/editeng/svxrtf.hxx:158
    void SvxRTFParser::DelCharAtEnd(class rtl::OUStringBuffer &,const char16_t)
    const char16_t cDel
    59
include/editeng/txtrange.hxx:59
    void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool)
    unsigned short nCacheSize
    30
include/editeng/txtrange.hxx:59
    void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool)
    unsigned short nLeft
    2
include/editeng/txtrange.hxx:59
    void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool)
    unsigned short nRight
    2
include/editeng/unoedhlp.hxx:44
    void SvxEditSourceHint::SvxEditSourceHint(enum SfxHintId)
    enum SfxHintId nId
    51
include/editeng/unoedhlp.hxx:45
    void SvxEditSourceHint::SvxEditSourceHint(enum SfxHintId,int,int,int)
    enum SfxHintId nId
    50
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:728
    void EscherPropertyContainer::Commit(class SvStream &,unsigned short,unsigned short)
    unsigned short nVersion
    3
include/filter/msfilter/msdffimp.hxx:568
    _Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const
    unsigned short nRecId1
    4008
include/filter/msfilter/msdffimp.hxx:568
    _Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const
    unsigned short nRecId2
    4000
include/filter/msfilter/rtfutil.hxx:27
    class rtl::OString OutHex(unsigned long,unsigned char)
    unsigned char nLen
    2
include/filter/msfilter/rtfutil.hxx:63
    class rtl::OString WriteHex(const unsigned char *,unsigned int,class SvStream *,unsigned int)
    unsigned int nLimit
    64
include/filter/msfilter/util.hxx:100
    _Bool msfilter::util::WW8ReadFieldParams::GetTokenSttFromTo(int *,int *,int)
    int _nMax
    9
include/formula/tokenarray.hxx:288
    unsigned short formula::FormulaTokenArray::RemoveToken(unsigned short,unsigned short)
    unsigned short nCount
    2
include/formula/tokenarray.hxx:547
    void formula::FormulaTokenIterator::Item::Item(const class formula::FormulaTokenArray *,short,short,_Bool)
    short pc
    -1
include/formula/tokenarray.hxx:547
    void formula::FormulaTokenIterator::Item::Item(const class formula::FormulaTokenArray *,short,short,_Bool)
    short stop
    32767
include/formula/tokenarray.hxx:673
    void formula::FormulaTokenArrayPlainIterator::AfterRemoveToken(unsigned short,unsigned short)
    unsigned short nCount
    2
include/i18nutil/searchopt.hxx:116
    void i18nutil::SearchOptions2::SearchOptions2(const int,class rtl::OUString,class rtl::OUString,struct com::sun::star::lang::Locale,const int,const int,const int,const enum TransliterationFlags &,const short,const int)
    const int WildcardEscapeCharacter_
    92
include/i18nutil/unicode.hxx:42
    short unicode::getUnicodeScriptType(const char16_t,const struct ScriptTypeList *,short)
    short unknownType
    87
include/linguistic/spelldta.hxx:87
    class com::sun::star::uno::Reference<class com::sun::star::linguistic2::XSpellAlternatives> linguistic::SpellAlternatives::CreateSpellAlternatives(const class rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,short,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
    short nTypeP
    4
include/o3tl/string_view.hxx:493
    long toInt64(class std::basic_string_view<char16_t>,short)
    short radix
    10
include/o3tl/string_view.hxx:497
    long toInt64(class std::basic_string_view<char>,short)
    short radix
    10
include/o3tl/typed_flags_set.hxx:135
    typename typed_flags<type-parameter-?-?>::Wrap operator^(type-parameter-?-?,typename typed_flags<type-parameter-?-?>::Wrap)
    type-parameter-?-? lhs
    1535
include/oox/core/contexthandler2.hxx:168
    _Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
    int nElement
    656467
include/oox/core/contexthandler2.hxx:168
    _Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
    int nCountBack
    4
include/oox/drawingml/color.hxx:116
    class model::ComplexColor oox::drawingml::Color::createComplexColor(const class oox::GraphicHelper &,short) const
    short nPhClrTheme
    -1
include/oox/drawingml/drawingmltypes.hxx:231
    void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
    long nX
    -1
include/oox/drawingml/drawingmltypes.hxx:231
    void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
    long nY
    -1
include/oox/drawingml/drawingmltypes.hxx:231
    void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
    long nWidth
    -1
include/oox/drawingml/drawingmltypes.hxx:231
    void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
    long nHeight
    -1
include/oox/export/drawingml.hxx:381
    void oox::drawingml::DrawingML::WriteSolidFill(const class Color,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,int)
    int nAlpha
    100000
include/oox/export/drawingml.hxx:401
    void oox::drawingml::DrawingML::WriteBlipFill(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const struct com::sun::star::awt::Size &,const class rtl::OUString &,int)
    int nXmlNamespace
    421
include/oox/helper/attributelist.hxx:100
    class oox::drawingml::Color oox::AttributeList::getHighlightColor(int) const
    int nAttrToken
    1119755
include/oox/helper/attributelist.hxx:170
    unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
    int nAttrToken
    4354
include/oox/helper/attributelist.hxx:170
    unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
    unsigned int nDefault
    4294967295
include/oox/helper/binaryoutputstream.hxx:86
    void oox::BinaryOutputStream::writeCharArrayUC(class std::basic_string_view<char16_t>,unsigned short)
    unsigned short eTextEnc
    12
include/oox/helper/binarystreambase.hxx:103
    void oox::BinaryStreamBase::alignToBlock(int,long)
    int nBlockSize
    4
include/oox/helper/containerhelper.hxx:193
    class rtl::OUString oox::ContainerHelper::insertByUnusedName(const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> &,const class rtl::OUString &,char16_t,const class com::sun::star::uno::Any &)
    char16_t cSeparator
    32
include/oox/helper/containerhelper.hxx:258
    const typename type-parameter-?-?::value_type & oox::ContainerHelper::getVectorElement(const type-parameter-?-? &,int,const typename type-parameter-?-?::value_type &)
    const typename type-parameter-?-?::value_type & rDefault
    -1
include/oox/helper/helper.hxx:116
    type-parameter-?-? getIntervalValue(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
    type-parameter-?-? nEnd
    360
include/oox/helper/propertyset.hxx:110
    _Bool oox::PropertySet::setProperty(int,class Color)
    int nPropId
    574
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:123
    class rtl::OUString & oox::formulaimport::XmlStream::AttributeList::operator[](int)
     ###1
    1644043
include/oox/mathml/importutils.hxx:136
    void oox::formulaimport::XmlStream::Tag::Tag(int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &)
    int token
    -1
include/oox/mathml/importutils.hxx:151
    _Bool oox::formulaimport::XmlStream::Tag::attribute(int,_Bool) const
    int token
    1644043
include/oox/mathml/importutils.hxx:155
    char16_t oox::formulaimport::XmlStream::Tag::attribute(int,char16_t) const
    int token
    1644043
include/oox/ole/axcontrol.hxx:950
    type-parameter-?-? & oox::ole::EmbeddedControl::createModel(const type-parameter-?-? &)
    const type-parameter-?-? & rParam
    6
include/oox/ole/olehelper.hxx:77
    void oox::ole::StdFontInfo::StdFontInfo(class rtl::OUString,unsigned int)
    unsigned int nHeight
    82500
include/oox/ole/vbaproject.hxx:154
    void oox::ole::VbaProject::addDummyModule(const class rtl::OUString &,int)
    int nType
    4
include/package/Deflater.hxx:49
    void ZipUtils::Deflater::Deflater(int,_Bool)
    int nSetLevel
    -1
include/sax/fastattribs.hxx:99
    void sax_fastparser::FastAttributeList::addNS(int,int,class std::basic_string_view<char16_t>)
    int nToken
    573
include/sfx2/app.hxx:87
    void SfxLinkItem::SfxLinkItem(unsigned short,const class Link<const class SfxPoolItem *, void> &)
    unsigned short nWhichId
    5646
include/sfx2/ctrlitem.hxx:91
    void SfxStatusForwarder::SfxStatusForwarder(unsigned short,class SfxControllerItem &)
    unsigned short nSlotId
    10930
include/sfx2/evntconf.hxx:73
    void SfxEventNamesItem::SfxEventNamesItem(const unsigned short)
    const unsigned short nId
    6101
include/sfx2/fcontnr.hxx:54
    class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetAnyFilter(enum SfxFilterFlags,enum SfxFilterFlags) const
    enum SfxFilterFlags nMust
    3
include/sfx2/fcontnr.hxx:54
    class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetAnyFilter(enum SfxFilterFlags,enum SfxFilterFlags) const
    enum SfxFilterFlags nDont
    393216
include/sfx2/fcontnr.hxx:55
    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:55
    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:56
    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:57
    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:88
    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:109
    void SfxFilterMatcherIter::SfxFilterMatcherIter(const class SfxFilterMatcher &,enum SfxFilterFlags,enum SfxFilterFlags)
    enum SfxFilterFlags nNotMask
    393216
include/sfx2/frame.hxx:192
    void SfxUnoFrameItem::SfxUnoFrameItem(unsigned short,class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame>)
    unsigned short nWhich
    6516
include/sfx2/linkmgr.hxx:64
    _Bool sfx2::LinkManager::InsertLink(class sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const class rtl::OUString *)
    enum SfxLinkUpdateMode nUpdateType
    3
include/sfx2/lokhelper.hxx:72
    void LokMouseEventData::LokMouseEventData(int,class Point,int,enum MouseEventModifiers,int,int)
    enum MouseEventModifiers eModifiers
    256
include/sfx2/lokhelper.hxx:158
    void SfxLokHelper::notifyOtherViews(const class SfxViewShell *,int,const class boost::property_tree::basic_ptree<class std::basic_string<char>, class std::basic_string<char> > &)
    int nType
    24
include/sfx2/opengrf.hxx:37
    void SvxOpenGraphicDialog::SvxOpenGraphicDialog(const class rtl::OUString &,class weld::Window *,short)
    short nDialogType
    13
include/sfx2/request.hxx:63
    void SfxRequest::SfxRequest(unsigned short,enum SfxCallMode,const class SfxAllItemSet &,const class SfxAllItemSet &)
    unsigned short nSlot
    5925
include/sfx2/sfxhtml.hxx:63
    _Bool SfxHTMLParser::ParseAreaOptions(class ImageMap *,class std::basic_string_view<char16_t>,enum SvMacroItemId,enum SvMacroItemId)
    enum SvMacroItemId nEventMouseOver
    5100
include/sfx2/sfxhtml.hxx:63
    _Bool SfxHTMLParser::ParseAreaOptions(class ImageMap *,class std::basic_string_view<char16_t>,enum SvMacroItemId,enum SvMacroItemId)
    enum SvMacroItemId nEventMouseOut
    5102
include/sfx2/sidebar/SidebarController.hxx:133
    _Bool sfx2::sidebar::SidebarController::IsDeckOpen(const int)
    const int nIndex
    -1
include/sfx2/tabdlg.hxx:53
    void SfxTabDialogItem::SfxTabDialogItem(unsigned short,const class SfxItemSet &)
    unsigned short nId
    11022
include/sot/stg.hxx:98
    class BaseStorage * BaseStorage::OpenUCBStorage(const class rtl::OUString &,enum StreamMode,_Bool)
    enum StreamMode 
    2050
include/sot/stg.hxx:101
    class BaseStorage * BaseStorage::OpenOLEStorage(const class rtl::OUString &,enum StreamMode,_Bool)
    enum StreamMode 
    2050
include/sot/storage.hxx:40
    class std::unique_ptr<class SvStream> Create(const class rtl::OUString &,enum StreamMode)
    enum StreamMode 
    2051
include/store/store.h:62
    storeError store_createMemoryFile(unsigned short,void **)
    unsigned short nPageSize
    1024
include/store/store.h:79
    storeError store_openFile(struct _rtl_uString *,enum storeAccessMode,unsigned short,void **)
    unsigned short nPageSize
    1024
include/svl/globalnameitem.hxx:35
    void SfxGlobalNameItem::SfxGlobalNameItem(unsigned short,const class SvGlobalName &)
    unsigned short nWhich
    5561
include/svl/int64item.hxx:22
    void SfxInt64Item::SfxInt64Item(unsigned short,long)
    unsigned short nWhich
    11141
include/svl/int64item.hxx:22
    void SfxInt64Item::SfxInt64Item(unsigned short,long)
    long nVal
    75
include/svl/itemset.hxx:40
    void listSfxPoolItemsWithHighestUsage(unsigned short)
    unsigned short 
    20
include/svl/itemset.hxx:239
    void SfxItemSet::PutExtended(const class SfxItemSet &,enum SfxItemState,enum SfxItemState)
    enum SfxItemState eDontCareAs
    16
include/svl/svdde.hxx:157
    void DdePoke::DdePoke(class DdeConnection &,const class rtl::OUString &,const class DdeData &,long)
    long 
    30000
include/svl/svdde.hxx:164
    void DdeExecute::DdeExecute(class DdeConnection &,const class rtl::OUString &,long)
    long 
    30000
include/svl/urihelper.hxx:51
    class rtl::OUString SmartRel2Abs(const class INetURLObject &,const class rtl::OUString &,const class Link<class rtl::OUString *, _Bool> &,_Bool,_Bool,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
    unsigned short eCharset
    76
include/svl/urihelper.hxx:51
    class rtl::OUString SmartRel2Abs(const class INetURLObject &,const class rtl::OUString &,const class Link<class rtl::OUString *, _Bool> &,_Bool,_Bool,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
    enum FSysStyle eStyle
    7
include/svl/urihelper.hxx:116
    class rtl::OUString FindFirstURLInText(const class rtl::OUString &,int &,int &,const class CharClass &,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/svl/urihelper.hxx:153
    class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
    enum INetURLObject::DecodeMechanism eDecodeMechanism
    3
include/svl/urihelper.hxx:153
    class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/svl/zformat.hxx:408
    _Bool SvNumberformat::IsInQuote(const class rtl::OUString &,int,char16_t,char16_t,char16_t)
    char16_t cEscOut
    92
include/svl/zformat.hxx:423
    int SvNumberformat::GetQuoteEnd(const class rtl::OUString &,int,char16_t,char16_t)
    char16_t cQuote
    34
include/svtools/brwbox.hxx:655
    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:378
    void FontNameBox::set_size_request(int,int)
    int nHeight
    -1
include/svtools/ctrlbox.hxx:467
    void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
    unsigned short nMin
    5
include/svtools/ctrlbox.hxx:467
    void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
    unsigned short nMax
    995
include/svtools/ctrlbox.hxx:467
    void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
    unsigned short nStep
    5
include/svtools/ctrlbox.hxx:468
    void FontSizeBox::EnablePtRelativeMode(short,short,short)
    short nStep
    10
include/svtools/htmlout.hxx:54
    class SvStream & HTMLOutFuncs::Out_Hex(class SvStream &,unsigned int,unsigned char)
    unsigned char nLen
    2
include/svtools/unitconv.hxx:42
    long ControlToItem(long,enum FieldUnit,enum MapUnit)
    enum FieldUnit eCtrl
    5
include/svx/AccessibleShape.hxx:200
    _Bool accessibility::AccessibleShape::GetState(long)
    long aState
    1024
include/svx/annotation/Annotation.hxx:44
    void LOKCommentNotify(enum sdr::annotation::CommentNotificationType,const class SfxViewShell *,class sdr::annotation::Annotation &)
    enum sdr::annotation::CommentNotificationType nType
    2
include/svx/dbaexchange.hxx:58
    void svx::OColumnTransferable::OColumnTransferable(enum ColumnTransferFormatFlags)
    enum ColumnTransferFormatFlags nFormats
    7
include/svx/dbaexchange.hxx:98
    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/dlgctrl.hxx:104
    void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short)
    enum RectPoint eRpt
    4
include/svx/dlgctrl.hxx:104
    void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short)
    unsigned short nBorder
    240
include/svx/float3d.hxx:265
    void Svx3DCtrlItem::Svx3DCtrlItem(unsigned short,class SfxBindings *)
    unsigned short 
    10645
include/svx/fmgridcl.hxx:40
    void FmGridHeader::FmGridHeader(class BrowseBox *,long)
    long nWinBits
    1051648
include/svx/fmview.hxx:90
    void FmFormView::createControlLabelPair(const class OutputDevice *,int,int,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormats> &,enum SdrObjKind,enum SdrInventor,enum SdrObjKind,class SdrModel &,class rtl::Reference<class SdrUnoObj> &,class rtl::Reference<class SdrUnoObj> &)
    enum SdrInventor _nInventor
    827609170
include/svx/fmview.hxx:90
    void FmFormView::createControlLabelPair(const class OutputDevice *,int,int,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormats> &,enum SdrObjKind,enum SdrInventor,enum SdrObjKind,class SdrModel &,class rtl::Reference<class SdrUnoObj> &,class rtl::Reference<class SdrUnoObj> &)
    enum SdrObjKind _nLabelObjectID
    501
include/svx/fontworkgallery.hxx:65
    void svx::FontWorkGalleryDialog::initFavorites(unsigned short)
    unsigned short nThemeId
    37
include/svx/fontworkgallery.hxx:67
    void svx::FontWorkGalleryDialog::fillFavorites(unsigned short)
    unsigned short nThemeId
    37
include/svx/gallery.hxx:114
    _Bool GalleryExplorer::GetGraphicObj(unsigned int,unsigned int,class Graphic *)
    unsigned int nThemeId
    3
include/svx/galmisc.hxx:186
    void GalleryHint::GalleryHint(enum GalleryHintType,class rtl::OUString,class rtl::OUString)
    enum GalleryHintType nType
    2
include/svx/ofaitem.hxx:34
    void OfaPtrItem::OfaPtrItem(unsigned short,void *)
    unsigned short nWhich
    11021
include/svx/ofaitem.hxx:48
    void OfaXColorListItem::OfaXColorListItem(unsigned short,class rtl::Reference<class XColorList>)
    unsigned short _nWhich
    10441
include/svx/RectangleAlignmentItem.hxx:31
    void SvxRectangleAlignmentItem::SvxRectangleAlignmentItem(unsigned short,enum model::RectangleAlignment)
    unsigned short nWhich
    1058
include/svx/relfld.hxx:46
    void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short)
    unsigned short nMax
    999
include/svx/ruler.hxx:249
    _Bool SvxRuler::IsActLastColumn(_Bool,unsigned short) const
    unsigned short nAct
    65535
include/svx/ruler.hxx:252
    _Bool SvxRuler::IsActFirstColumn(_Bool,unsigned short) const
    unsigned short nAct
    65535
include/svx/svdhdl.hxx:347
    void SdrHdlLine::SdrHdlLine(class SdrHdl &,class SdrHdl &,enum SdrHdlKind)
    enum SdrHdlKind eNewKind
    14
include/svx/svdhdl.hxx:360
    void SdrHdlBezWgt::SdrHdlBezWgt(const class SdrHdl *,enum SdrHdlKind)
    enum SdrHdlKind eNewKind
    10
include/svx/svdhdl.hxx:391
    void ImpEdgeHdl::ImpEdgeHdl(const class Point &,enum SdrHdlKind)
    enum SdrHdlKind eNewKind
    9
include/svx/svdhdl.hxx:407
    void ImpMeasureHdl::ImpMeasureHdl(const class Point &,enum SdrHdlKind)
    enum SdrHdlKind eNewKind
    20
include/svx/svdmodel.hxx:110
    void SdrHint::SdrHint(enum SdrHintKind,const class SdrPage *)
    enum SdrHintKind eNewHint
    2
include/svx/svdmrkv.hxx:292
    _Bool SdrMarkView::PickMarkedObj(const class Point &,class SdrObject *&,class SdrPageView *&,enum SdrSearchOptions) const
    enum SdrSearchOptions nOptions
    128
include/svx/svdpage.hxx:108
    void SdrObjList::InsertObjectThenMakeNameUnique(class SdrObject *,class std::unordered_set<class rtl::OUString> &,unsigned long)
    unsigned long nPos
    18446744073709551615
include/svx/txencbox.hxx:143
    int SvxTextEncodingTreeView::get_height_rows(int) const
    int nRows
    6
include/svx/txencbox.hxx:147
    void SvxTextEncodingTreeView::set_size_request(int,int)
    int nWidth
    -1
include/svx/unoapi.hxx:43
    class rtl::Reference<class SvxShape> CreateSvxShapeByTypeAndInventor(enum SdrObjKind,enum SdrInventor,const class rtl::OUString &)
    enum SdrInventor nInventor
    1917081171
include/svx/xflclit.hxx:38
    void XFillColorItem::XFillColorItem(int,const class Color &)
    int nIndex
    -1
include/svx/xflgrit.hxx:40
    void XFillGradientItem::XFillGradientItem(int,const class basegfx::BGradient &,class TypedWhichId<class XFillGradientItem>)
    int nIndex
    -1
include/svx/xlnclit.hxx:34
    void XLineColorItem::XLineColorItem(int,const class Color &)
    int nIndex
    -1
include/svx/xpoly.hxx:69
    void XPolygon::Insert(unsigned short,const class XPolygon &)
    unsigned short nPos
    65535
include/test/a11y/AccessibilityTools.hxx:250
    _Bool AccessibilityTools::Await(const class std::function<_Bool (void)> &,unsigned long)
    unsigned long nTimeoutMs
    3000
include/test/a11y/AccessibilityTools.hxx:266
    void AccessibilityTools::Wait(unsigned long)
    unsigned long nTimeoutMs
    500
include/test/a11y/accessibletestbase.hxx:248
    _Bool test::AccessibleTestBase::DialogWaiter::waitEndDialog(unsigned long)
    unsigned long nTimeoutMs
    3000
include/test/helper/form.hxx:40
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nX
    15000
include/test/helper/form.hxx:40
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nY
    10000
include/test/helper/form.hxx:40
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nHeight
    3000
include/test/helper/form.hxx:40
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nWidth
    4500
include/test/helper/shape.hxx:55
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nX
    7500
include/test/helper/shape.hxx:55
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nY
    10000
include/test/helper/shape.hxx:55
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nWidth
    5000
include/test/helper/shape.hxx:55
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nHeight
    3500
include/test/helper/shape.hxx:69
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createRectangle(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nY
    5000
include/test/helper/shape.hxx:69
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createRectangle(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
    const int nWidth
    5000
include/test/unoapi_property_testers.hxx:85
    void testLongOptionalProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const int &)
    const int & nValue
    42
include/test/unoapi_property_testers.hxx:166
    void testColorProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const int &)
    const int & rValue
    305419896
include/toolkit/controls/unocontrolbase.hxx:47
    int UnoControlBase::ImplGetPropertyValue_INT32(unsigned short)
    unsigned short nProp
    74
include/tools/b3dtrans.hxx:112
    void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
    double fL
    -2
include/tools/b3dtrans.hxx:112
    void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
    double fR
    2
include/tools/b3dtrans.hxx:112
    void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
    double fB
    -2
include/tools/b3dtrans.hxx:112
    void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
    double fT
    2
include/tools/datetime.hxx:96
    class DateTime operator+(const class DateTime &,int)
    int nDays
    10
include/tools/fract.hxx:68
    class Fraction & Fraction::operator*=(double)
     ###1
    -1
include/tools/gen.hxx:130
    type-parameter-?-? & PointTemplate::operator*=(const long)
     ###1
    -1
include/tools/gen.hxx:136
    type-parameter-?-? & PointTemplate::operator/=(const long)
     ###1
    2
include/tools/gen.hxx:291
    void SizeTemplate::extendBy(long,long)
    long x
    10
include/tools/gen.hxx:321
    type-parameter-?-? & SizeTemplate::operator/=(const long)
     ###1
    2
include/tools/gen.hxx:401
    class Size operator/(const class Size &,const long)
    const long nVal2
    2
include/tools/poly.hxx:98
    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:271
    class rtl::OUString INetURLObject::GetURLNoMark(enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:276
    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:276
    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:294
    _Bool INetURLObject::SetURL(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:344
    class rtl::OUString INetURLObject::GetAbsURL(class std::basic_string_view<char16_t>,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:351
    class rtl::OUString INetURLObject::GetRelURL(class std::basic_string_view<char16_t>,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:351
    class rtl::OUString INetURLObject::GetRelURL(class std::basic_string_view<char16_t>,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
    enum FSysStyle eStyle
    7
include/tools/urlobj.hxx:362
    _Bool INetURLObject::translateToExternal(class std::basic_string_view<char16_t>,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:369
    _Bool INetURLObject::translateToInternal(class std::basic_string_view<char16_t>,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
    enum INetURLObject::DecodeMechanism eDecodeMechanism
    3
include/tools/urlobj.hxx:369
    _Bool INetURLObject::translateToInternal(class std::basic_string_view<char16_t>,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:415
    class rtl::OUString INetURLObject::GetUser(enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:420
    class rtl::OUString INetURLObject::GetPass(enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:434
    class rtl::OUString INetURLObject::GetHost(enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:439
    class rtl::OUString INetURLObject::GetHostPort(enum INetURLObject::DecodeMechanism,unsigned short) const
    enum INetURLObject::DecodeMechanism eMechanism
    2
include/tools/urlobj.hxx:439
    class rtl::OUString INetURLObject::GetHostPort(enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:458
    _Bool INetURLObject::SetURLPath(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:512
    _Bool INetURLObject::removeSegment(int,_Bool)
    int nIndex
    -1
include/tools/urlobj.hxx:582
    _Bool INetURLObject::setName(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:602
    class rtl::OUString INetURLObject::getBase(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
    int nIndex
    -1
include/tools/urlobj.hxx:602
    class rtl::OUString INetURLObject::getBase(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:626
    _Bool INetURLObject::setBase(class std::basic_string_view<char16_t>,int,enum INetURLObject::EncodeMechanism,unsigned short)
    int nIndex
    -1
include/tools/urlobj.hxx:626
    _Bool INetURLObject::setBase(class std::basic_string_view<char16_t>,int,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:655
    class rtl::OUString INetURLObject::getExtension(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
    int nIndex
    -1
include/tools/urlobj.hxx:655
    class rtl::OUString INetURLObject::getExtension(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:679
    _Bool INetURLObject::setExtension(class std::basic_string_view<char16_t>,int,_Bool,unsigned short)
    int nIndex
    -1
include/tools/urlobj.hxx:679
    _Bool INetURLObject::setExtension(class std::basic_string_view<char16_t>,int,_Bool,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:698
    _Bool INetURLObject::removeExtension(int,_Bool)
    int nIndex
    -1
include/tools/urlobj.hxx:731
    class rtl::OUString INetURLObject::GetParam(unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:735
    _Bool INetURLObject::SetParam(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:743
    class rtl::OUString INetURLObject::GetMark(enum INetURLObject::DecodeMechanism,unsigned short) const
    unsigned short eCharset
    76
include/tools/urlobj.hxx:748
    _Bool INetURLObject::SetMark(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:889
    _Bool INetURLObject::Append(class std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:1028
    _Bool INetURLObject::setUser(class std::basic_string_view<char16_t>,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:1034
    _Bool INetURLObject::setPassword(class std::basic_string_view<char16_t>,unsigned short)
    unsigned short eCharset
    76
include/tools/urlobj.hxx:1049
    _Bool INetURLObject::setHost(class std::basic_string_view<char16_t>,unsigned short)
    unsigned short eCharset
    76
include/ucbhelper/simpleinteractionrequest.hxx:79
    void ucbhelper::SimpleInteractionRequest::SimpleInteractionRequest(const class com::sun::star::uno::Any &,const enum ContinuationFlags)
    const enum ContinuationFlags nContinuations
    12
include/unotools/confignode.hxx:239
    class utl::OConfigurationTreeRoot utl::OConfigurationTreeRoot::tryCreateWithComponentContext(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,int,enum utl::OConfigurationTreeRoot::CREATION_MODE)
    int _nDepth
    -1
include/unotools/configvaluecontainer.hxx:83
    void utl::OConfigurationValueContainer::OConfigurationValueContainer(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,class std::mutex &,const class rtl::OUString &,const int)
    const int _nLevels
    2
include/unotools/fontdefs.hxx:43
    class rtl::OUString GetSubsFontName(class std::basic_string_view<char16_t>,enum SubsFontFlags)
    enum SubsFontFlags nFlags
    3
include/unotools/useroptions.hxx:90
    void SvtUserOptions::SetBoolValue(enum UserOptToken,_Bool)
    enum UserOptToken nToken
    19
include/vcl/accessibility/AccessibleTextAttributeHelper.hxx:63
    class rtl::OUString GetIAccessible2TextAttributes(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessibleText> &,enum IA2AttributeType,int,int &,int &)
    enum IA2AttributeType eAttributeType
    3
include/vcl/bitmap/BitmapBasicMorphologyFilter.hxx:47
    void BitmapErodeFilter::BitmapErodeFilter(int,unsigned char)
    unsigned char nValueOutside
    255
include/vcl/BitmapBuffer.hxx:46
    class std::optional<struct BitmapBuffer> StretchAndConvert(const struct BitmapBuffer &,const struct SalTwoRect &,enum ScanlineFormat,class std::optional<class BitmapPalette>)
    enum ScanlineFormat nDstBitmapFormat
    10
include/vcl/BitmapReadAccess.hxx:36
    void BitmapReadAccess::BitmapReadAccess(const class AlphaMask &,enum BitmapAccessMode)
    enum BitmapAccessMode nMode
    2
include/vcl/DocWindow.hxx:21
    void vcl::DocWindow::Window(class vcl::Window *,long)
    long 
    3
include/vcl/fieldvalues.hxx:66
    double ConvertDoubleValue(long,unsigned short,enum FieldUnit,enum MapUnit)
    enum MapUnit eOutUnit
    9
include/vcl/fieldvalues.hxx:72
    double ConvertDoubleValue(long,unsigned short,enum MapUnit,enum FieldUnit)
    enum MapUnit eInUnit
    9
include/vcl/filter/PDFiumLibrary.hxx:116
    class rtl::OUString vcl::pdf::PDFiumAnnotation::getFormAdditionalActionJavaScript(class vcl::pdf::PDFiumDocument *,enum vcl::pdf::PDFAnnotAActionType)
    enum vcl::pdf::PDFAnnotAActionType eEvent
    12
include/vcl/filter/PDFiumLibrary.hxx:277
    _Bool vcl::pdf::PDFiumDocument::saveWithVersion(class SvMemoryStream &,int)
    int nFileVersion
    16
include/vcl/font.hxx:90
    void vcl::Font::IncreaseQualityBy(int)
    int 
    50
include/vcl/font.hxx:91
    void vcl::Font::DecreaseQualityBy(int)
    int 
    100
include/vcl/gdimtf.hxx:183
    _Bool GDIMetaFile::CreateThumbnail(class BitmapEx &,enum BmpConversion,enum BmpScaleFlag) const
    enum BmpConversion nColorConversion
    4
include/vcl/gdimtf.hxx:183
    _Bool GDIMetaFile::CreateThumbnail(class BitmapEx &,enum BmpConversion,enum BmpScaleFlag) const
    enum BmpScaleFlag nScaleFlag
    2
include/vcl/imap.hxx:116
    unsigned long ImageMap::Read(class SvStream &,enum IMapFormat)
    enum IMapFormat nFormat
    15
include/vcl/outdev.hxx:1081
    int OutputDevice::GetTextBreak(const class rtl::OUString &,long,char16_t,int &,int,int,long,const class vcl::text::TextLayoutCache *,const class SalLayoutGlyphs *) const
    char16_t nExtraChar
    45
include/vcl/print.hxx:615
    class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
    int i_nMinValue
    10
include/vcl/print.hxx:615
    class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
    int i_nMaxValue
    1000
include/vcl/svapp.hxx:760
    struct ImplSVEvent * Application::PostGestureEvent(enum VclEventId,class vcl::Window *,const class GestureEventPan *)
    enum VclEventId nEvent
    130
include/vcl/texteng.hxx:132
    class TextPaM TextEngine::ImpInsertText(const class TextSelection &,char16_t,_Bool)
    char16_t c
    9
include/vcl/toolbox.hxx:305
    void ToolBox::InsertItem(struct o3tl::strong_int<unsigned short, struct ToolBoxItemIdTag>,const class Image &,const class rtl::OUString &,enum ToolBoxItemBits,unsigned long)
    unsigned long nPos
    18446744073709551615
include/vcl/toolbox.hxx:318
    void ToolBox::InsertBreak(unsigned long)
    unsigned long nPos
    18446744073709551615
include/vcl/toolkit/ivctrl.hxx:65
    void SvxIconChoiceCtrlEntry::ClearFlags(enum SvxIconViewFlags)
    enum SvxIconViewFlags nMask
    2
include/vcl/toolkit/lstbox.hxx:117
    void ListBox::ListBox(enum WindowType)
    enum WindowType eType
    331
include/vcl/toolkit/svtabbx.hxx:70
    class rtl::OUString SvTabListBox::GetEntryText(unsigned int,unsigned short) const
    unsigned short nCol
    65535
include/vcl/toolkit/treelistbox.hxx:505
    class SvLBoxTab * SvTreeListBox::GetFirstTab(enum SvLBoxTabFlags,unsigned short &)
    enum SvLBoxTabFlags nFlagMask
    16
include/vcl/toolkit/treelistbox.hxx:506
    void SvTreeListBox::GetLastTab(enum SvLBoxTabFlags,unsigned short &)
    enum SvLBoxTabFlags nFlagMask
    16
include/vcl/toolkit/treelistbox.hxx:645
    void SvTreeListBox::SetHighlightRange(unsigned short,unsigned short)
    unsigned short nLastTab
    65535
include/vcl/transfer.hxx:226
    void TransferableHelper::RemoveFormat(enum SotClipboardFormatId)
    enum SotClipboardFormatId nFormat
    59
include/vcl/transfer.hxx:318
    _Bool TransferableDataHelper::GetBitmapEx(enum SotClipboardFormatId,class BitmapEx &) const
    enum SotClipboardFormatId nFormat
    2
include/vcl/transfer.hxx:329
    _Bool TransferableDataHelper::GetGDIMetaFile(enum SotClipboardFormatId,class GDIMetaFile &,unsigned long) const
    enum SotClipboardFormatId nFormat
    3
include/vcl/transfer.hxx:335
    _Bool TransferableDataHelper::GetImageMap(enum SotClipboardFormatId,class ImageMap &) const
    enum SotClipboardFormatId nFormat
    13
include/vcl/transfer.hxx:350
    class com::sun::star::uno::Sequence<signed char> TransferableDataHelper::GetSequence(enum SotClipboardFormatId,const class rtl::OUString &) const
    enum SotClipboardFormatId nFormat
    59
include/vcl/TypeSerializer.hxx:29
    unsigned int createMagic(char,char,char,char)
    char char4
    48
include/vcl/uitest/logger.hxx:40
    void UITestLogger::logAction(class vcl::Window *const &,enum VclEventId)
    enum VclEventId nEvent
    85
include/vcl/vectorgraphicdata.hxx:84
    void VectorGraphicData::VectorGraphicData(class BinaryDataContainer,enum VectorGraphicDataType,int)
    int nPageIndex
    -1
include/vcl/weld.hxx:786
    void weld::ComboBox::insert(int,const struct weld::ComboBoxEntry &)
    int pos
    -1
include/vcl/weld.hxx:1079
    void weld::TreeView::insert_separator(int,const class rtl::OUString &)
    int pos
    -1
include/vcl/weld.hxx:1665
    void weld::MenuButton::insert_item(int,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString *,class VirtualDevice *,enum TriState)
    int pos
    -1
include/vcl/weld.hxx:1689
    void weld::MenuButton::insert_separator(int,const class rtl::OUString &)
    int pos
    -1
include/vcl/window.hxx:1440
    void vcl::Window::SimulateKeyPress(unsigned short) const
    unsigned short nKeyCode
    1312
include/vcl/wrkwin.hxx:61
    void WorkWindow::WorkWindow(enum WindowType)
    enum WindowType eType
    369
include/vcl/wrkwin.hxx:67
    void WorkWindow::WorkWindow(class vcl::Window *,const class com::sun::star::uno::Any &,long)
    long nStyle
    1312
include/xmloff/txtparae.hxx:356
    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:392
    void XMLTextParagraphExport::Add(enum XmlStyleFamily,class MultiPropertySetHelper &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
    enum XmlStyleFamily nFamily
    100
include/xmloff/xmlaustp.hxx:94
    void SvXMLAutoStylePoolP::SetFamilyPropSetMapper(enum XmlStyleFamily,const class rtl::Reference<class SvXMLExportPropertyMapper> &)
    enum XmlStyleFamily nFamily
    203
include/xmloff/xmlaustp.hxx:101
    void SvXMLAutoStylePoolP::RegisterDefinedName(enum XmlStyleFamily,const class rtl::OUString &)
    enum XmlStyleFamily nFamily
    204
include/xmloff/XMLComplexColorExport.hxx:37
    void XMLComplexColorExport::exportComplexColor(const class model::ComplexColor &,unsigned short,enum xmloff::token::XMLTokenEnum)
    unsigned short nPrefix
    54
include/xmloff/xmlerror.hxx:135
    void XMLErrors::ThrowErrorAsSAXException(int)
    int nIdMask
    1073741824
include/xmloff/xmlexp.hxx:275
    void SvXMLExport::SvXMLExport(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,class rtl::OUString,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:511
    void SvXMLExport::SetError(int,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
    int nId
    1074266113
include/xmloff/xmlexppr.hxx:138
    void SvXMLExportPropertyMapper::exportXML(class SvXMLExport &,const class std::vector<struct XMLPropertyState> &,enum SvXmlExportFlags,_Bool) const
    enum SvXmlExportFlags nFlags
    8
include/xmloff/xmlnumfi.hxx:205
    _Bool SvXMLNumFormatContext::ReplaceNfKeyword(unsigned short,unsigned short)
    unsigned short nOld
    24
include/xmloff/xmlnumfi.hxx:205
    _Bool SvXMLNumFormatContext::ReplaceNfKeyword(unsigned short,unsigned short)
    unsigned short nNew
    25
include/xmloff/XMLSettingsExportContext.hxx:37
    void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,const class rtl::OUString &)
    enum xmloff::token::XMLTokenEnum i_eName
    1295
include/xmloff/XMLSettingsExportContext.hxx:39
    void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
    enum xmloff::token::XMLTokenEnum i_eName
    1987
libreofficekit/qa/tilebench/tilebench.cxx:72
    void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int)
    int nTotalWidth
    -1
libreofficekit/qa/tilebench/tilebench.cxx:352
    int testJoinsAt(class lok::Document *,long,long,const long,const long)
    const long nTilePixelSize
    256
lotuswordpro/inc/xfilter/xfdrawstyle.hxx:95
    void XFDrawStyle::SetLineDashStyle(enum enumXFLineStyle,double,double,double)
    enum enumXFLineStyle style
    3
lotuswordpro/inc/xfilter/xfdrawstyle.hxx:118
    void XFDrawStyle::SetFontWorkStyle(enum enumXFFWStyle,enum enumXFFWAdjust)
    enum enumXFFWStyle eStyle
    4
lotuswordpro/inc/xfilter/xffont.hxx:203
    void XFFont::SetPosition(_Bool,short,short)
    short pos
    33
lotuswordpro/inc/xfilter/xffont.hxx:203
    void XFFont::SetPosition(_Bool,short,short)
    short scale
    58
lotuswordpro/inc/xfilter/xfindex.hxx:100
    void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
    enum enumXFTab type
    3
lotuswordpro/inc/xfilter/xfindex.hxx:100
    void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
    char16_t delimiter
    100
lotuswordpro/source/filter/bento.hxx:213
    void OpenStormBento::LtcBenContainer::SeekFromEnd(long)
    long Offset
    -24
lotuswordpro/source/filter/tocread.hxx:87
    enum OpenStormBento::BenError OpenStormBento::CBenTOCReader::GetData(void *,unsigned long)
    unsigned long Amt
    4
o3tl/qa/cow_wrapper_clients.hxx:70
    void o3tltests::cow_wrapper_client2::cow_wrapper_client2(int)
    int nVal
    4
o3tl/qa/cow_wrapper_clients.hxx:101
    void o3tltests::cow_wrapper_client3::cow_wrapper_client3(int)
    int nVal
    7
o3tl/qa/cow_wrapper_clients.hxx:133
    void o3tltests::cow_wrapper_client4::cow_wrapper_client4(int)
    int 
    4
oox/source/core/xmlfilterbase.cxx:604
    void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
    int nXmlElement
    94636939
oox/source/core/xmlfilterbase.cxx:618
    void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class LanguageTag &)
    int nXmlElement
    111217575
oox/source/drawingml/table/predefined-table-styles.cxx:211
    void setBorderLineType(const class std::shared_ptr<struct oox::drawingml::LineProperties> &,int)
    int nToken
    4856
oox/source/export/vmlexport.cxx:333
    void impl_AddInt(class sax_fastparser::FastAttributeList *,int,unsigned int)
    int nElement
    5767
package/inc/ThreadedDeflater.hxx:53
    void ZipUtils::ThreadedDeflater::ThreadedDeflater(int)
    int nSetLevel
    -1
reportdesign/source/filter/xml/xmlExport.hxx:120
    void rptxml::ORptExport::collectStyleNames(enum XmlStyleFamily,const class std::vector<int> &,class std::vector<class rtl::OUString> &)
    enum XmlStyleFamily _nFamily
    202
reportdesign/source/filter/xml/xmlExport.hxx:121
    void rptxml::ORptExport::collectStyleNames(enum XmlStyleFamily,const class std::vector<int> &,const class std::vector<int> &,class std::vector<class rtl::OUString> &)
    enum XmlStyleFamily _nFamily
    203
reportdesign/source/filter/xml/xmlStyleImport.hxx:60
    void rptxml::OControlStyleContext::AddProperty(short,const class com::sun::star::uno::Any &)
    short nContextID
    28673
reportdesign/source/ui/inc/UITools.hxx:142
    class SdrObject * isOver(const class tools::Rectangle &,const class SdrPage &,const class SdrView &,_Bool,class rtl::Reference<class SdrUnoObj> *,int)
    int _nIgnoreListLength
    2
sal/osl/unx/file_path_helper.cxx:175
    void (anonymous namespace)::path_list_iterator::path_list_iterator(class rtl::OUString,char16_t)
    char16_t list_separator
    58
sal/osl/unx/file_url.cxx:483
    _Bool _islastchr(char16_t *,char16_t)
    char16_t Chr
    47
sal/osl/unx/file_url.hxx:36
    int TextToUnicode(const char *,unsigned long,char16_t *,int)
    int unic_text_buffer_size
    4096
sal/osl/unx/nlsupport.cxx:105
    char * compose_locale(struct _rtl_Locale *,char *,unsigned long)
    unsigned long n
    64
sal/osl/unx/profile.cxx:140
    void osl_ProfileGenerateExtension(const char *,const char *,char *,int)
    int BufferMaxLen
    4096
sal/osl/unx/readwrite_helper.hxx:22
    _Bool safeRead(int,void *,unsigned long)
    unsigned long count
    511
sal/osl/unx/uunxapi.hxx:74
    int mkdir(const class rtl::OString &,unsigned int)
    unsigned int aMode
    511
sal/qa/osl/file/osl_File.cxx:102
    _Bool t_compareTime(struct TimeValue *,struct TimeValue *,int)
    int nDelta
    2000
sax/inc/xml2utf.hxx:96
    int sax_expatwrap::XMLFile2UTFConverter::readAndConvert(class com::sun::star::uno::Sequence<signed char> &,int)
    int nMaxToRead
    16384
sax/source/tools/converter.cxx:64
    long toInt64_WithLength(const char16_t *,short,int)
    short radix
    10
sax/source/tools/converter.cxx:68
    long toInt64_WithLength(const char *,short,int)
    short radix
    10
sax/source/tools/converter.cxx:1310
    enum sax::(anonymous namespace)::Result readUnsignedNumberMaxDigits(int,type-parameter-?-?,unsigned long &,int &)
    int maxDigits
    9
sc/inc/address.hxx:346
    void ScAddress::Format(class rtl::OStringBuffer &,enum ScRefFlags,const class ScDocument *,const struct ScAddress::Details &) const
    enum ScRefFlags nFlags
    32768
sc/inc/autoform.hxx:83
    void ScAfVersions::Write(class SvStream &,unsigned short)
    unsigned short fileVersion
    5050
sc/inc/autoform.hxx:164
    void ScAutoFormatData::CopyItem(unsigned short,unsigned short,unsigned short)
    unsigned short nWhich
    150
sc/inc/autoform.hxx:174
    _Bool ScAutoFormatData::Save(class SvStream &,unsigned short)
    unsigned short fileVersion
    5050
sc/inc/cellsuno.hxx:487
    void ScCellRangeObj::SetArrayFormula_Impl(const class rtl::OUString &,const enum formula::FormulaGrammar::Grammar)
    const enum formula::FormulaGrammar::Grammar eGrammar
    16908294
sc/inc/chgtrack.hxx:217
    void ScChangeAction::ScChangeAction(enum ScChangeActionType,class ScBigRange,const unsigned long)
    enum ScChangeActionType 
    8
sc/inc/column.hxx:345
    void ScColumn::DeleteRanges(const class std::vector<struct sc::RowSpan> &,enum InsertDeleteFlags)
    enum InsertDeleteFlags nDelFlag
    2071
sc/inc/column.hxx:594
    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:679
    void ScColumn::BroadcastRows(int,int,enum SfxHintId)
    enum SfxHintId nHint
    73
sc/inc/compressedarray.hxx:190
    void ScBitMaskCompressedArray::AndValue(type-parameter-?-?,const type-parameter-?-? &)
    const type-parameter-?-? & rValueToAnd
    7
sc/inc/compressedarray.hxx:196
    void ScBitMaskCompressedArray::CopyFromAnded(const ScBitMaskCompressedArray<A, D> &,type-parameter-?-?,type-parameter-?-?,const type-parameter-?-? &)
    const type-parameter-?-? & rValueToAnd
    8
sc/inc/compressedarray.hxx:203
    type-parameter-?-? ScBitMaskCompressedArray::GetLastAnyBitAccess(const type-parameter-?-? &) const
    const type-parameter-?-? & rBitMask
    15
sc/inc/docoptio.hxx:134
    void ScTpCalcItem::ScTpCalcItem(unsigned short,const class ScDocOptions &)
    unsigned short nWhich
    26040
sc/inc/document.hxx:1456
    _Bool ScDocument::CompileErrorCells(enum FormulaError)
    enum FormulaError nErrCode
    525
sc/inc/document.hxx:1834
    void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
    enum InsertDeleteFlags nFlags
    18943
sc/inc/document.hxx:2038
    void ScDocument::DeleteSelectionTab(short,enum InsertDeleteFlags,const class ScMarkData &)
    enum InsertDeleteFlags nDelFlag
    18943
sc/inc/document.hxx:2106
    void ScDocument::SetRowFlags(int,int,short,enum CRFlags)
    enum CRFlags nNewFlags
    8
sc/inc/document.hxx:2442
    void ScDocument::BroadcastCells(const class ScRange &,enum SfxHintId,_Bool)
    enum SfxHintId nHint
    52
sc/inc/dpsave.hxx:324
    class ScDPSaveDimension * ScDPSaveData::GetFirstDimension(enum com::sun::star::sheet::DataPilotFieldOrientation)
    enum com::sun::star::sheet::DataPilotFieldOrientation eOrientation
    4
sc/inc/externalrefmgr.hxx:804
    void ScExternalRefManager::purgeStaleSrcDocument(int)
    int nTimeOut
    30000
sc/inc/formulacell.hxx:388
    void ScFormulaCell::AddRecalcMode(enum ScRecalcMode)
    enum ScRecalcMode 
    4
sc/inc/global.hxx:656
    void ScGlobal::AddQuotes(class rtl::OUString &,char16_t,_Bool)
    char16_t cQuote
    34
sc/inc/global.hxx:679
    const char16_t * ScGlobal::FindUnquoted(const char16_t *,char16_t)
    char16_t cChar
    46
sc/inc/nameuno.hxx:61
    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/rangeutl.hxx:111
    int ScRangeStringConverter::GetTokenCount(class std::basic_string_view<char16_t>,char16_t)
    char16_t cSeparator
    32
sc/inc/rangeutl.hxx:127
    _Bool ScRangeStringConverter::GetAddressFromString(class ScAddress &,class std::basic_string_view<char16_t>,const class ScDocument &,enum formula::FormulaGrammar::AddressConvention,int &,char16_t,char16_t)
    char16_t cSeparator
    32
sc/inc/rangeutl.hxx:127
    _Bool ScRangeStringConverter::GetAddressFromString(class ScAddress &,class std::basic_string_view<char16_t>,const class ScDocument &,enum formula::FormulaGrammar::AddressConvention,int &,char16_t,char16_t)
    char16_t cQuote
    39
sc/inc/rangeutl.hxx:143
    _Bool ScRangeStringConverter::GetRangeListFromString(class ScRangeList &,class std::basic_string_view<char16_t>,const class ScDocument &,enum formula::FormulaGrammar::AddressConvention,char16_t,char16_t)
    char16_t cQuote
    39
sc/inc/rangeutl.hxx:151
    _Bool ScRangeStringConverter::GetAreaFromString(class ScArea &,class std::basic_string_view<char16_t>,const class ScDocument &,enum formula::FormulaGrammar::AddressConvention,int &,char16_t)
    char16_t cSeparator
    32
sc/inc/rangeutl.hxx:160
    _Bool ScRangeStringConverter::GetRangeFromString(struct com::sun::star::table::CellRangeAddress &,class std::basic_string_view<char16_t>,const class ScDocument &,enum formula::FormulaGrammar::AddressConvention,int &,char16_t)
    char16_t cSeparator
    32
sc/inc/rangeutl.hxx:185
    void ScRangeStringConverter::GetStringFromRangeList(class rtl::OUString &,const class ScRangeList *,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t)
    char16_t cSeparator
    32
sc/inc/rangeutl.hxx:192
    void ScRangeStringConverter::GetStringFromArea(class rtl::OUString &,const class ScArea &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags)
    char16_t cSeparator
    32
sc/inc/rangeutl.hxx:192
    void ScRangeStringConverter::GetStringFromArea(class rtl::OUString &,const class ScArea &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags)
    enum ScRefFlags nFormatFlags
    32776
sc/inc/rangeutl.hxx:202
    void ScRangeStringConverter::GetStringFromAddress(class rtl::OUString &,const struct com::sun::star::table::CellAddress &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool)
    char16_t cSeparator
    32
sc/inc/rangeutl.hxx:209
    void ScRangeStringConverter::GetStringFromRange(class rtl::OUString &,const struct com::sun::star::table::CellRangeAddress &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags)
    enum ScRefFlags nFormatFlags
    32776
sc/inc/rangeutl.hxx:217
    void ScRangeStringConverter::GetStringFromRangeList(class rtl::OUString &,const class com::sun::star::uno::Sequence<struct com::sun::star::table::CellRangeAddress> &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t)
    char16_t cSeparator
    32
sc/inc/scabstdlg.hxx:477
    class VclPtr<class AbstractScMetricInputDlg> ScAbstractDialogFactory::CreateScMetricInputDlg(class weld::Window *,const class rtl::OUString &,long,long,enum FieldUnit,unsigned short,long,long)
    unsigned short nDecimals
    2
sc/inc/scmod.hxx:239
    void ScModule::RegisterRefController(unsigned short,class std::shared_ptr<class SfxDialogController> &,class weld::Window *)
    unsigned short nSlotId
    26161
sc/inc/scmod.hxx:240
    void ScModule::UnregisterRefController(unsigned short,const class std::shared_ptr<class SfxDialogController> &)
    unsigned short nSlotId
    26161
sc/inc/scmod.hxx:241
    class std::shared_ptr<class SfxDialogController> ScModule::Find1RefWindow(unsigned short,const class weld::Window *)
    unsigned short nSlotId
    26161
sc/inc/sheetlimits.hxx:32
    void ScSheetLimits::ScSheetLimits(short,int)
    short nMaxCol
    16383
sc/inc/simpleformulacalc.hxx:38
    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:55
    class ScStyleSheet * ScStyleSheetPool::FindCaseIns(const class rtl::OUString &,enum SfxStyleFamily)
    enum SfxStyleFamily eFam
    2
sc/inc/stringutil.hxx:155
    _Bool ScStringUtil::parseSimpleNumber(const char *,unsigned long,char,char,double &)
    char dsep
    46
sc/inc/stringutil.hxx:155
    _Bool ScStringUtil::parseSimpleNumber(const char *,unsigned long,char,char,double &)
    char gsep
    44
sc/inc/table.hxx:444
    void ScTable::SetFormula(short,int,const class ScTokenArray &,enum formula::FormulaGrammar::Grammar)
    enum formula::FormulaGrammar::Grammar eGram
    65539
sc/inc/table.hxx:741
    _Bool ScTable::HasAttribSelection(const class ScMarkData &,enum HasAttrFlags) const
    enum HasAttrFlags nMask
    8
sc/inc/tokenarray.hxx:264
    void ScTokenArray::WrapReference(const class ScAddress &,short,int)
    short nMaxCol
    255
sc/inc/tokenarray.hxx:264
    void ScTokenArray::WrapReference(const class ScAddress &,short,int)
    int nMaxRow
    65535
sc/inc/zforauto.hxx:38
    void ScNumFormatAbbrev::Save(class SvStream &,unsigned short) const
    unsigned short eByteStrSet
    76
sc/qa/extras/new_cond_format.cxx:365
    void testColorScaleEntries(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,int,int,const class rtl::OUString &,class Color,int,const class rtl::OUString &,class Color,int,const class rtl::OUString &,class Color)
    int nMediumType
    2
sc/qa/extras/scpdfexport.cxx:55
    void ScPDFExportTest::setFont(class ScFieldEditEngine &,int,int,const class rtl::OUString &)
    int nEnd
    4
sc/qa/unit/helper/qahelper.hxx:118
    void ScUcalcTestBase::pasteOneCellFromClip(class ScDocument *,const class ScRange &,class ScDocument *,enum InsertDeleteFlags)
    enum InsertDeleteFlags eFlags
    18943
sc/qa/unit/subsequent_export_test3.cxx:1766
    void impl_testLegacyCellAnchoredRotatedShape(class ScDocument &,const class tools::Rectangle &,const class ScDrawObjData &,long)
    long TOLERANCE
    30
sc/qa/unit/subsequent_export_test.cxx:1312
    _Bool (unnamed struct at /home/noel/libo-plugin/sc/qa/unit/subsequent_export_test.cxx:1282:5)::isOverline(const struct editeng::Section &,enum FontLineStyle)
    enum FontLineStyle eStyle
    2
sc/qa/unit/subsequent_export_test.cxx:1322
    _Bool (unnamed struct at /home/noel/libo-plugin/sc/qa/unit/subsequent_export_test.cxx:1282:5)::isUnderline(const struct editeng::Section &,enum FontLineStyle)
    enum FontLineStyle eStyle
    2
sc/qa/unit/subsequent_filters_test4.cxx:1284
    void (lambda at /home/noel/libo-plugin/sc/qa/unit/subsequent_filters_test4.cxx:1284:28)::operator()(const class rtl::OUString &,enum FontWeight) const
     ###2
    8
sc/qa/unit/ucalc.cxx:1591
    _Bool checkRelativeRefToken(class ScDocument &,const class ScAddress &,short,int)
    short nRelCol
    -1
sc/qa/unit/ucalc_copypaste.cxx:48
    void TestCopyPaste::executeCopyPasteSpecial(_Bool,_Bool,_Bool,_Bool,_Bool,_Bool,_Bool,enum ScClipParam::Direction,enum TestCopyPaste::CalcMode,enum InsertDeleteFlags)
    enum InsertDeleteFlags aFlags
    18559
sc/qa/unit/ucalc_copypaste.cxx:83
    void TestCopyPaste::checkReferencedCutRangesRow(const short,const short)
    const short nDestTab
    2
sc/qa/unit/ucalc_copypaste.cxx:91
    void TestCopyPaste::checkReferencedCutRangesCol(const short,const short)
    const short nDestTab
    2
sc/qa/unit/ucalc_copypaste.cxx:98
    void TestCopyPaste::prepareUndoAfterPaste(class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> > &,class std::unique_ptr<class ScDocument> &,const class ScMarkData &,const class ScRange &,class std::unique_ptr<class ScRefUndoData> &,class std::unique_ptr<class ScUndoPaste> &,_Bool,_Bool,_Bool,enum ScPasteFunc,enum InsCellCmd)
    enum InsCellCmd eMoveMode
    4
sc/qa/unit/ucalc_formula2.cxx:93
    void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
    int nTotalRows
    330
sc/qa/unit/ucalc_formula2.cxx:93
    void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
    int nStart1
    9
sc/qa/unit/ucalc_formula2.cxx:93
    void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
    int nEnd1
    159
sc/qa/unit/ucalc_formula2.cxx:93
    void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
    int nStart2
    169
sc/qa/unit/ucalc_formula2.cxx:93
    void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
    int nEnd2
    319
sc/qa/unit/ucalc_parallelism.cxx:326
    void lcl_setupCommon(class ScDocument *,unsigned long,unsigned long)
    unsigned long nNumRows
    1048
sc/qa/unit/ucalc_parallelism.cxx:326
    void lcl_setupCommon(class ScDocument *,unsigned long,unsigned long)
    unsigned long nConstCellValue
    20
sc/qa/unit/ucalc_parallelism.cxx:456
    void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long)
    unsigned long nNumRowsInBlock
    200
sc/qa/unit/ucalc_parallelism.cxx:456
    void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long)
    unsigned long nNumFG
    50
sc/qa/unit/ucalc_parallelism.cxx:456
    void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long)
    unsigned long nOffset
    100
sc/source/core/data/documen8.cxx:512
    void (anonymous namespace)::IdleCalcTextWidthScope::incCol(short)
    short nInc
    -1
sc/source/core/data/dpoutput.cxx:303
    void lcl_SetFrame(class ScDocument *,short,short,int,short,int,unsigned short)
    unsigned short nWidth
    20
sc/source/core/opencl/opbase.hxx:383
    void sc::opencl::SlidingFunctionBase::GenerateRangeArgs(class std::vector<class std::shared_ptr<class sc::opencl::DynamicKernelArgument> > &,class sc::opencl::outputstream &,enum sc::opencl::SlidingFunctionBase::EmptyArgType,const char *)
    enum sc::opencl::SlidingFunctionBase::EmptyArgType empty
    2
sc/source/core/opencl/opbase.hxx:386
    void sc::opencl::SlidingFunctionBase::GenerateRangeArg(int,class std::vector<class std::shared_ptr<class sc::opencl::DynamicKernelArgument> > &,class sc::opencl::outputstream &,enum sc::opencl::SlidingFunctionBase::EmptyArgType,const char *)
    enum sc::opencl::SlidingFunctionBase::EmptyArgType empty
    2
sc/source/core/tool/compiler.cxx:1362
    void (anonymous namespace)::ConventionXL_A1::ConventionXL_A1(enum formula::FormulaGrammar::AddressConvention)
    enum formula::FormulaGrammar::AddressConvention eConv
    4
sc/source/core/tool/compiler.cxx:2154
    _Bool lcl_isUnicodeIgnoreAscii(const char16_t *,const char *,unsigned long)
    unsigned long n
    4
sc/source/core/tool/editutil.cxx:93
    class rtl::OUString lcl_GetDelimitedString(const class EditTextObject &,const char)
    const char c
    10
sc/source/core/tool/scmatrix.cxx:376
    unsigned long GetElementsMax(unsigned long)
    unsigned long nMemory
    6442450944
sc/source/filter/excel/xechart.cxx:133
    void lclSaveRecord(class XclExpStream &,const class rtl::Reference<class XclExpRecordBase> &,unsigned short,type-parameter-?-?)
    unsigned short nRecId
    4129
sc/source/filter/excel/xechart.cxx:143
    void lclSaveRecord(class XclExpStream &,type-parameter-?-? *,unsigned short,type-parameter-?-?)
    unsigned short nRecId
    4124
sc/source/filter/excel/xechart.cxx:560
    class rtl::Reference<class XclExpChLineFormat> lclCreateLineFormat(const class XclExpChRoot &,const class ScfPropertySet &,enum XclChObjectType)
    enum XclChObjectType eObjType
    9
sc/source/filter/excel/xelink.cxx:299
    void (anonymous namespace)::XclExpSupbook::XclExpSupbook(const class XclExpRoot &,const class rtl::OUString &,enum XclSupbookType)
    enum XclSupbookType 
    5
sc/source/filter/excel/xepage.cxx:402
    void (anonymous namespace)::XclExpXmlStartHeaderFooterElementRecord::XclExpXmlStartHeaderFooterElementRecord(const int,const _Bool,const _Bool)
    const int nElement
    2638
sc/source/filter/excel/xepivotxml.cxx:715
    void WriteGrabBagItemToStream(class XclExpXmlStream &,int,const class com::sun::star::uno::Any &)
    int tokenId
    4045
sc/source/filter/inc/addressconverter.hxx:431
    void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
    short nMaxXlsTab
    32767
sc/source/filter/inc/addressconverter.hxx:431
    void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
    int nMaxXlsCol
    16383
sc/source/filter/inc/addressconverter.hxx:431
    void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
    int nMaxXlsRow
    1048575
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/ftools.hxx:48
    type-parameter-?-? llimit_cast(type-parameter-?-?,type-parameter-?-?)
    type-parameter-?-? nMin
    8
sc/source/filter/inc/pivottablebuffer.hxx:121
    void oox::xls::PivotTableField::PivotTableField(class oox::xls::PivotTable &,int)
    int nFieldIndex
    -2
sc/source/filter/inc/tokstack.hxx:256
    _Bool TokenPool::IsSingleOp(const struct TokenId &,const enum OpCode) const
    const enum OpCode eId
    13
sc/source/filter/inc/xechart.hxx:196
    void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
    unsigned short nRecId
    2155
sc/source/filter/inc/xechart.hxx:196
    void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
    unsigned long nRecSize
    4
sc/source/filter/inc/xeescher.hxx:153
    void XclExpImgData::XclExpImgData(class Graphic,unsigned short)
    unsigned short nRecId
    233
sc/source/filter/inc/xeformula.hxx:63
    class std::shared_ptr<class XclTokenArray> XclExpFormulaCompiler::CreateFormula(enum XclFormulaType,const class ScAddress &)
    enum XclFormulaType eType
    7
sc/source/filter/inc/xeformula.hxx:69
    class std::shared_ptr<class XclTokenArray> XclExpFormulaCompiler::CreateFormula(enum XclFormulaType,const class ScRangeList &)
    enum XclFormulaType eType
    5
sc/source/filter/inc/xehelper.hxx:245
    class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,char16_t,enum XclStrFlags,unsigned short)
    enum XclStrFlags nFlags
    2
sc/source/filter/inc/xehelper.hxx:245
    class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,char16_t,enum XclStrFlags,unsigned short)
    unsigned short nMaxLen
    32767
sc/source/filter/inc/xelink.hxx:183
    unsigned short XclExpLinkManager::FindExtSheet(char16_t)
    char16_t cCode
    4
sc/source/filter/inc/xepivot.hxx:234
    void XclExpPTItem::XclExpPTItem(unsigned short,unsigned short)
    unsigned short nCacheIdx
    65535
sc/source/filter/inc/xepivot.hxx:336
    unsigned short XclExpPivotTable::GetDataFieldIndex(const class rtl::OUString &,unsigned short) const
    unsigned short nDefaultIdx
    65535
sc/source/filter/inc/xerecord.hxx:410
    void XclExpSubStream::XclExpSubStream(unsigned short)
    unsigned short nSubStrmType
    32
sc/source/filter/inc/xestream.hxx:300
    void XclExpXmlStream::WriteAttributes(int,type-parameter-?-? &&,type-parameter-?-? &&...)
     ###26
    4107
sc/source/filter/inc/xestring.hxx:55
    void XclExpString::XclExpString(enum XclStrFlags,unsigned short)
    unsigned short nMaxLen
    32767
sc/source/filter/inc/xestyle.hxx:602
    unsigned int XclExpXFBuffer::InsertWithFont(const class ScPatternAttr *,short,unsigned short,_Bool)
    short nScript
    4
sc/source/filter/inc/xetable.hxx:80
    void XclExpRangeFmlaBase::XclExpRangeFmlaBase(unsigned short,unsigned int,const class ScRange &)
    unsigned short nRecId
    545
sc/source/filter/inc/xiescher.hxx:1203
    unsigned int XclImpDffPropSet::GetPropertyValue(unsigned short) const
    unsigned short nPropId
    384
sc/source/filter/inc/xiformula.hxx:40
    void XclImpFormulaCompiler::CreateRangeList(class ScRangeList &,enum XclFormulaType,const class XclTokenArray &,class XclImpStream &)
    enum XclFormulaType eType
    7
sc/source/filter/inc/xiformula.hxx:47
    class std::unique_ptr<class ScTokenArray> XclImpFormulaCompiler::CreateFormula(enum XclFormulaType,const class XclTokenArray &)
    enum XclFormulaType eType
    6
sc/source/filter/inc/xipivot.hxx:223
    void XclImpPTField::XclImpPTField(const class XclImpPivotTable &,unsigned short)
    unsigned short nCacheIdx
    65534
sc/source/filter/inc/xlformula.hxx:517
    _Bool XclTokenArrayHelper::GetStringList(class rtl::OUString &,const class ScTokenArray &,char16_t)
    char16_t cSep
    10
sc/source/filter/inc/xlformula.hxx:525
    void XclTokenArrayHelper::ConvertStringToList(class ScTokenArray &,class svl::SharedStringPool &,char16_t)
    char16_t cStringSep
    10
sc/source/filter/xcl97/XclExpChangeTrack.cxx:1460
    void (anonymous namespace)::EndXmlElement::EndXmlElement(int)
    int nElement
    2646
sc/source/filter/xml/xmlfonte.cxx:41
    void (anonymous namespace)::ScXMLFontAutoStylePool_Impl::AddFontItems(const unsigned short *,unsigned char,const class SfxItemPool *,const _Bool)
    unsigned char nIdCount
    3
sc/source/filter/xml/xmlstyli.cxx:272
    void (anonymous namespace)::XMLTableCellPropsContext::XMLTableCellPropsContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,unsigned int,class std::vector<struct XMLPropertyState> &,const class rtl::Reference<class SvXMLImportPropertyMapper> &)
    unsigned int nFamily
    196608
sc/source/ui/Accessibility/AccessibleCsvControl.cxx:217
    int lcl_ExpandSequence(class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,int)
    int nExp
    7
sc/source/ui/dbgui/pvfundlg.cxx:72
    _Bool lclFillListBox(class weld::ComboBox &,const class std::vector<struct ScDPLabelData::Member> &,int)
    int nEmptyPos
    2
sc/source/ui/inc/AccessibleCell.hxx:157
    void ScAccessibleCell::AddRelation(const class ScAddress &,const enum com::sun::star::accessibility::AccessibleRelationType,class utl::AccessibleRelationSetHelper *)
    const enum com::sun::star::accessibility::AccessibleRelationType eRelationType
    4
sc/source/ui/inc/AccessibleSpreadsheet.hxx:84
    _Bool ScAccessibleSpreadsheet::CalcScRangeListDifferenceMax(class ScRangeList *,class ScRangeList *,int,class std::vector<class ScMyAddress> &)
    int nMax
    10
sc/source/ui/inc/content.hxx:148
    void ScContentTree::SelectEntryByName(const enum ScContentId,class std::basic_string_view<char16_t>)
    const enum ScContentId nRoot
    8
sc/source/ui/inc/datatransformation.hxx:85
    void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t)
    short nCol
    2
sc/source/ui/inc/datatransformation.hxx:85
    void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t)
    char16_t cSeparator
    44
sc/source/ui/inc/datatransformation.hxx:151
    void sc::NumberTransformation::NumberTransformation(class std::set<short> &&,const enum sc::NUMBER_TRANSFORM_TYPE,int)
    int nPrecision
    4
sc/source/ui/inc/docfunc.hxx:123
    _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/imoptdlg.hxx:31
    void ScImportOptions::ScImportOptions(char16_t,char16_t,unsigned short)
    char16_t nTextSep
    34
sc/source/ui/inc/pvfundlg.hxx:44
    int ScDPFunctionListBox::get_height_rows(int) const
    int nRows
    8
sc/source/ui/inc/pvfundlg.hxx:45
    void ScDPFunctionListBox::set_size_request(int,int)
    int nWidth
    -1
sc/source/ui/inc/select.hxx:33
    void ScViewSelectionEngine::ScViewSelectionEngine(class vcl::Window *,class ScTabView *,enum ScSplitPos)
    enum ScSplitPos eSplitPos
    2
sc/source/ui/inc/spellparam.hxx:46
    void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,class vcl::Font,int,_Bool)
    enum ScConversionType eConvType
    2
sc/source/ui/inc/TableFillingAndNavigationTools.hxx:44
    void FormulaTemplate::applyRangeList(class std::basic_string_view<char16_t>,const class ScRangeList &,char16_t)
    char16_t cDelimiter
    59
sc/source/ui/inc/tabview.hxx:446
    void ScTabView::MoveCursorPage(short,int,enum ScFollowMode,_Bool,_Bool)
    enum ScFollowMode eMode
    2
sc/source/ui/inc/tabview.hxx:448
    void ScTabView::MoveCursorArea(short,int,enum ScFollowMode,_Bool,_Bool,_Bool)
    enum ScFollowMode eMode
    3
sc/source/ui/inc/uiitems.hxx:55
    void ScInputStatusItem::ScInputStatusItem(unsigned short,const class ScAddress &,const class ScAddress &,const class ScAddress &,class rtl::OUString,const class EditTextObject *)
    unsigned short nWhich
    26100
sc/source/ui/inc/uiitems.hxx:120
    void ScIndexHint::ScIndexHint(enum SfxHintId,unsigned short)
    enum SfxHintId nNewId
    64
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:154
    void ScQueryItem::ScQueryItem(unsigned short,class ScViewData *,const struct ScQueryParam *)
    unsigned short nWhich
    1103
sc/source/ui/inc/uiitems.hxx:258
    void ScSolveItem::ScSolveItem(unsigned short,const struct ScSolveParam *)
    unsigned short nWhich
    1107
sc/source/ui/inc/uiitems.hxx:274
    void ScTabOpItem::ScTabOpItem(unsigned short,const struct ScTabOpParam *)
    unsigned short nWhich
    26346
sc/source/ui/inc/viewdata.hxx:679
    _Bool ScViewData::SetLOKSheetFreezeIndex(const int,_Bool,short)
    short nForTab
    -1
sc/source/ui/pagedlg/tptable.cxx:59
    _Bool lcl_PutScaleItem3(class TypedWhichId<class SfxUInt16Item>,class SfxItemSet &,const class SfxItemSet &,const class weld::ComboBox &,unsigned short,const class weld::SpinButton &,unsigned short)
    unsigned short nLBEntry
    2
sc/source/ui/unoobj/cellsuno.cxx:1184
    _Bool lcl_PutFormulaArray(class ScDocShell &,const class ScRange &,const class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<class rtl::OUString> > &,const enum formula::FormulaGrammar::Grammar)
    const enum formula::FormulaGrammar::Grammar eGrammar
    16908294
sc/source/ui/vba/vbarange.hxx:167
    class com::sun::star::uno::Reference<class ooo::vba::excel::XRange> ScVbaRange::getRangeObjectForName(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,class ScDocShell *,enum formula::FormulaGrammar::AddressConvention)
    enum formula::FormulaGrammar::AddressConvention eConv
    3
sc/source/ui/view/printfun.cxx:79
    unsigned short lcl_GetUShort(const class SfxItemSet *,unsigned short)
    unsigned short nWhich
    176
sc/source/ui/view/tabview.cxx:2768
    void (anonymous namespace)::ScRangeProvider::calculateDimensionBounds(const long,const long,_Bool,int &,int &,long &,long &,int,class ScViewData &)
    int nEnlarge
    2
sc/source/ui/view/viewfun3.cxx:836
    _Bool lcl_SelHasAttrib(const class ScDocument &,short,int,short,int,const class ScMarkData &,enum HasAttrFlags)
    enum HasAttrFlags nMask
    4
scaddins/source/analysis/analysishelper.hxx:93
    double ConvertToDec(const class rtl::OUString &,unsigned short,unsigned short)
    unsigned short nCharLim
    10
scaddins/source/analysis/analysishelper.hxx:96
    class rtl::OUString ConvertFromDec(double,double,double,unsigned short,int,int,_Bool)
    int nMaxPlaces
    10
scaddins/source/analysis/analysishelper.hxx:102
    class rtl::OUString GetString(double,_Bool,unsigned short)
    unsigned short nMaxNumOfDigits
    15
sccomp/source/solver/DifferentialEvolution.hxx:48
    void DifferentialEvolutionAlgorithm::DifferentialEvolutionAlgorithm<DataProvider>(type-parameter-?-? &,unsigned long)
    unsigned long nPopulationSize
    50
sccomp/source/solver/ParticelSwarmOptimization.hxx:67
    void ParticleSwarmOptimizationAlgorithm::ParticleSwarmOptimizationAlgorithm<DataProvider>(type-parameter-?-? &,unsigned long)
    unsigned long nNumOfParticles
    100
sd/inc/CustomAnimationEffect.hxx:75
    void sd::CustomAnimationEffect::setPresetClassAndId(short,const class rtl::OUString &)
    short nPresetClass
    4
sd/inc/sdpage.hxx:347
    class SdStyleSheet * SdPage::getPresentationStyle(unsigned int) const
    unsigned int nHelpId
    59865
sd/qa/unit/export-tests.cxx:173
    void checkFontAttributes(const class SdrTextObj *,type-parameter-?-?,unsigned int)
    unsigned int nId
    4072
sd/qa/unit/PNGExportTests.cxx:33
    void assertColorsAreSimilar(const class std::basic_string<char> &,const class BitmapColor &,const class BitmapColor &,int)
    int nDelta
    5
sd/qa/unit/tiledrendering/tiledrendering.cxx:2138
    void assertTilePixelColor(class SdXImpressDocument *,int,int,class Color)
    int nPixelX
    255
sd/qa/unit/tiledrendering/tiledrendering.cxx:2138
    void assertTilePixelColor(class SdXImpressDocument *,int,int,class Color)
    int nPixelY
    255
sd/qa/unit/tiledrendering/tiledrenderingmodeltestbase.cxx:117
    class std::vector<class rtl::OUString> lcl_convertSeparated(class std::basic_string_view<char16_t>,char16_t)
    char16_t nSeparator
    59
sd/source/core/sdpage.cxx:1218
    enum PresObjKind operator|(enum PresObjKind,int)
    int x
    32768
sd/source/filter/eppt/pptexanimations.hxx:84
    void ppt::AnimationExporter::exportAnimPropertyByte(class SvStream &,const unsigned short,const unsigned char)
    const unsigned short nPropertyId
    13
sd/source/ui/animations/STLPropertySet.hxx:62
    void sd::STLPropertySet::setPropertyState(int,enum sd::STLPropertyState)
    enum sd::STLPropertyState nState
    3
sd/source/ui/inc/animobjs.hxx:152
    void sd::AnimationControllerItem::AnimationControllerItem(unsigned short,class sd::AnimationWindow *,class SfxBindings *)
    unsigned short 
    27112
sd/source/ui/inc/CustomAnimationList.hxx:109
    int sd::CustomAnimationList::get_height_rows(int)
    int nRows
    4
sd/source/ui/inc/navigatr.hxx:182
    void SdNavigatorControllerItem::SdNavigatorControllerItem(unsigned short,class SdNavigatorWin *,class SfxBindings *,class std::function<void (void)>)
    unsigned short 
    27288
sd/source/ui/inc/navigatr.hxx:200
    void SdPageNameControllerItem::SdPageNameControllerItem(unsigned short,class SdNavigatorWin *,class SfxBindings *)
    unsigned short 
    27287
sd/source/ui/inc/sdtreelb.hxx:208
    int SdPageObjsTLV::get_height_rows(int) const
    int nRows
    12
sd/source/ui/inc/smarttag.hxx:158
    void sd::SmartHdl::SmartHdl(class rtl::Reference<class sd::SmartTag>,const class Point &,enum SdrHdlKind)
    enum SdrHdlKind eNewKind
    23
sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx:50
    class std::shared_ptr<class sd::tools::TimerBasedTaskExecution> sd::tools::TimerBasedTaskExecution::Create(const class std::shared_ptr<class sd::tools::AsynchronousTask> &,unsigned int,unsigned int)
    unsigned int nMillisecondsBetweenSteps
    5
sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx:50
    class std::shared_ptr<class sd::tools::TimerBasedTaskExecution> sd::tools::TimerBasedTaskExecution::Create(const class std::shared_ptr<class sd::tools::AsynchronousTask> &,unsigned int,unsigned int)
    unsigned int nMaxTimePerStep
    50
sd/source/ui/inc/ViewShellManager.hxx:159
    class SfxShell * sd::ViewShellManager::GetShell(enum ToolbarId) const
    enum ToolbarId nId
    23016
sd/source/ui/remotecontrol/AvahiNetworkService.hxx:19
    void sd::AvahiNetworkService::AvahiNetworkService(const class std::basic_string<char> &,unsigned int)
    unsigned int aport
    1599
sd/source/ui/remotecontrol/ImagePreparer.hxx:35
    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:35
    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:139
    class SfxRequest sd::sidebar::LayoutMenu::CreateRequest(unsigned short,enum AutoLayout)
    unsigned short nSlotId
    27014
sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx:109
    void sd::slidesorter::controller::SelectionFunction::EventDescriptor::EventDescriptor(unsigned int,const struct AcceptDropEvent &,const signed char,const class sd::slidesorter::SlideSorter &)
    unsigned int nEventType
    2048
sd/source/ui/slidesorter/inc/view/SlsPageObjectLayouter.hxx:135
    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:61
    void sd::slidesorter::view::LayeredDevice::RemovePainter(const class std::shared_ptr<class sd::slidesorter::view::ILayerPainter> &,const int)
    const int nLayer
    2
sd/source/ui/slidesorter/view/SlsLayouter.cxx:146
    int sd::slidesorter::view::Layouter::Implementation::ResolvePositionInGap(int,enum sd::slidesorter::view::Layouter::Implementation::GapMembership,int,int)
    int nGap
    4
sdext/source/minimizer/configurationaccess.hxx:90
    short ConfigurationAccess::GetConfigProperty(const enum PPPOptimizerTokenEnum,const short) const
    const enum PPPOptimizerTokenEnum 
    20
sfx2/inc/SfxRedactionHelper.hxx:63
    class rtl::OUString SfxRedactionHelper::getStringParam(const class SfxRequest &,unsigned short)
    unsigned short nParamId
    6734
sfx2/source/dialog/filedlghelper.cxx:1997
    void SetToken(class rtl::OUString &,int,char16_t,class std::basic_string_view<char16_t>)
    char16_t cTok
    32
sfx2/source/dialog/mgetempl.hxx:82
    _Bool SfxManageStyleSheetPage::Execute_Impl(unsigned short,const class rtl::OUString &,unsigned short)
    unsigned short nId
    5550
sfx2/source/doc/oleprops.cxx:101
    void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &)
    int nPropType
    30
sfx2/source/doc/oleprops.cxx:104
    void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &,class rtl::OUString)
    int nPropType
    30
sfx2/source/doc/oleprops.cxx:107
    void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short)
    int nPropType
    31
sfx2/source/doc/oleprops.cxx:107
    void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short)
    unsigned short eTextEnc
    65535
sfx2/source/doc/oleprops.hxx:306
    void SfxOleSection::SetThumbnailValue(int,const class com::sun::star::uno::Sequence<signed char> &)
    int nPropId
    17
sfx2/source/doc/syspath.hxx:27
    _Bool GetUserTemplateLocation(char16_t *,int)
    int nSize
    16000
slideshow/source/engine/eventmultiplexer.cxx:106
    void slideshow::internal::ListenerOperations::pruneListeners(type-parameter-?-? &,unsigned long)
    unsigned long nSizeThreshold
    16
slideshow/source/engine/opengl/Operation.hxx:262
    class std::shared_ptr<class RotateAndScaleDepthByHeight> makeRotateAndScaleDepthByHeight(const struct glm::vec<3, float> &,const struct glm::vec<3, float> &,double,_Bool,_Bool,double,double)
    double Angle
    -120
slideshow/source/engine/opengl/TransitionImpl.cxx:1829
    class std::shared_ptr<class OGLTransitionImpl> makeVortexTransition(class std::vector<class Primitive> &&,class std::vector<class Primitive> &&,const struct TransitionSettings &,int,int)
    int NX
    96
slideshow/source/engine/opengl/TransitionImpl.cxx:1829
    class std::shared_ptr<class OGLTransitionImpl> makeVortexTransition(class std::vector<class Primitive> &&,class std::vector<class Primitive> &&,const struct TransitionSettings &,int,int)
    int NY
    96
slideshow/source/engine/opengl/TransitionImpl.cxx:1943
    void createHexagon(class Primitive &,const int,const int,const int,const int)
    const int NX
    80
slideshow/source/engine/opengl/TransitionImpl.cxx:1943
    void createHexagon(class Primitive &,const int,const int,const int,const int)
    const int NY
    106
slideshow/source/engine/opengl/TransitionImpl.hxx:250
    class std::shared_ptr<class OGLTransitionImpl> makeRevolvingCircles(unsigned short,unsigned short)
    unsigned short nCircles
    8
slideshow/source/engine/opengl/TransitionImpl.hxx:250
    class std::shared_ptr<class OGLTransitionImpl> makeRevolvingCircles(unsigned short,unsigned short)
    unsigned short nPointsOnCircles
    128
slideshow/source/engine/opengl/TransitionImpl.hxx:251
    class std::shared_ptr<class OGLTransitionImpl> makeHelix(unsigned short)
    unsigned short nRows
    20
slideshow/source/inc/box2dtools.hxx:254
    double box2d::utils::box2DWorld::stepAmount(const double,const float,const int,const int)
    const int nVelocityIterations
    6
slideshow/source/inc/box2dtools.hxx:254
    double box2d::utils::box2DWorld::stepAmount(const double,const float,const int,const int)
    const int nPositionIterations
    2
slideshow/source/inc/listenercontainer.hxx:103
    void slideshow::internal::ListenerOperations::pruneListeners(type-parameter-?-? &,unsigned long)
    unsigned long 
    16
solenv/bin/concat-deps.c:439
    struct hash * hash_create(unsigned int)
    unsigned int size
    4096
sot/source/sdstor/stgdir.hxx:60
    void StgDirEntry::StgDirEntry(const void *,unsigned int,unsigned long,_Bool *)
    unsigned int nBufferLen
    128
sot/source/sdstor/stgstrms.hxx:80
    _Bool StgStrm::Copy(int,int)
    int nFrom
    -1
sot/source/sdstor/stgstrms.hxx:141
    void StgSmallStrm::StgSmallStrm(class StgIo &,int)
    int nBgn
    -2
starmath/inc/node.hxx:880
    void SmSpecialNode::SmSpecialNode(enum SmNodeType,const struct SmToken &,unsigned short)
    unsigned short _nFontDesc
    7
starmath/inc/node.hxx:1180
    void SmLineNode::SmLineNode(enum SmNodeType,const struct SmToken &)
    enum SmNodeType eNodeType
    21
starmath/inc/rect.hxx:172
    void SmRect::ExtendBy(const class SmRect &,enum RectCopyMBL,long)
    enum RectCopyMBL eCopyMode
    2
starmath/inc/view.hxx:173
    void SmGraphicController::SmGraphicController(class SmGraphicWidget &,unsigned short,class SfxBindings &)
    unsigned short 
    30357
starmath/inc/view.hxx:184
    void SmEditController::SmEditController(class SmEditWindow &,unsigned short,class SfxBindings &)
    unsigned short 
    30356
store/source/storbase.hxx:260
    void store::PageData::location(unsigned int)
    unsigned int nAddr
    -1
store/source/stordir.cxx:38
    unsigned long convertTextToUnicode(void *,const char *,unsigned long,char16_t *,unsigned long)
    unsigned long nDstLength
    255
svgio/inc/svgtools.hxx:98
    void skip_char(class std::basic_string_view<char16_t>,char16_t,char16_t,int &,const int)
    char16_t aCharA
    32
svl/source/config/itemholder2.hxx:41
    void ItemHolder2::holdConfigItem(enum EItem)
    enum EItem eItem
    2
svl/source/config/languageoptions.cxx:98
    _Bool isKeyboardLayoutTypeInstalled(short)
    short scriptType
    2
svl/source/numbers/zforfind.hxx:397
    _Bool ImpSvNumberInputScan::IsDatePatternNumberOfType(unsigned short,char16_t)
    char16_t cType
    89
svl/source/numbers/zforscan.hxx:287
    _Bool ImpSvNumberformatScan::InsertSymbol(unsigned short &,enum svt::NfSymbolType,const class rtl::OUString &)
    enum svt::NfSymbolType eType
    -7
svtools/source/dialogs/ServerDetailsControls.hxx:74
    void HostDetailsContainer::HostDetailsContainer(class PlaceEditDialog *,unsigned short,class rtl::OUString)
    unsigned short nPort
    80
svtools/source/misc/sampletext.cxx:566
    class rtl::OUString makeMinimalTextForScript(enum UScriptCode)
    enum UScriptCode eScript
    19
svtools/source/svhtml/htmlout.cxx:43
    unsigned long convertUnicodeToText(const char16_t *,unsigned long,char *,unsigned long,unsigned int,unsigned int *,unsigned long *)
    unsigned long nDestBytes
    20
svtools/source/svhtml/htmlout.cxx:57
    const char * lcl_svhtml_GetEntityForChar(unsigned int,unsigned short)
    unsigned short eDestEnc
    76
svtools/source/svhtml/htmlout.cxx:390
    unsigned long lcl_FlushContext(char *,unsigned int)
    unsigned int nFlags
    6161
svtools/source/svrtf/rtfout.cxx:29
    class SvStream & Out_Hex(class SvStream &,unsigned long,unsigned char)
    unsigned char nLen
    2
svx/inc/AccessibleTableShape.hxx:121
    _Bool accessibility::AccessibleTableShape::ResetStateDirectly(long)
    long aState
    1024
svx/inc/sxmoitm.hxx:31
    void SdrMeasureOverhangItem::SdrMeasureOverhangItem(long)
    long nVal
    600
svx/inc/xpolyimp.hxx:41
    void ImpXPolygon::ImpXPolygon(unsigned short,unsigned short)
    unsigned short nResize
    16
svx/source/dialog/fntctrl.cxx:465
    void SetPrevFontEscapement(class SvxFont &,unsigned char,unsigned char,short)
    unsigned char nProp
    100
svx/source/inc/AccessibleFrameSelector.hxx:106
    void svx::a11y::AccFrameSelectorChild::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:195
    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:71
    void svxform::UnderlineDescriptor::UnderlineDescriptor(short,class Color)
    short _nUnderlineType
    10
svx/source/inc/fmshimp.hxx:468
    void FmXFormShell::UpdateSlot_Lock(short)
    short nId
    10636
svx/source/inc/GraphCtlAccessibleContext.hxx:144
    void SvxGraphCtrlAccessibleContext::CommitChange(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
    short aEventId
    7
svx/source/sidebar/textcolumns/TextColumnsPropertyPanel.cxx:28
    enum MapUnit GetUnit(const class SfxBindings *,unsigned short)
    unsigned short nWhich
    1250
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:68
    void textconversiondlgs::DictionaryList::set_size_request(int,int)
    int nWidth
    -1
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:81
    int textconversiondlgs::DictionaryList::get_height_rows(int) const
    int nRows
    8
sw/inc/authfld.hxx:133
    void SwAuthorityFieldType::SetSortKeys(unsigned short,const struct SwTOXSortKey *)
    unsigned short nKeyCount
    3
sw/inc/coreframestyle.hxx:30
    void sw::ICoreFrameStyle::SetItem(unsigned short,const class SfxPoolItem &)
    unsigned short eAtr
    114
sw/inc/coreframestyle.hxx:31
    const class SfxPoolItem * sw::ICoreFrameStyle::GetItem(unsigned short)
    unsigned short eAtr
    114
sw/inc/crsrsh.hxx:884
    void SwCursorShell::FireSectionChangeEvent(unsigned short,unsigned short)
    unsigned short nOldSection
    2
sw/inc/crsrsh.hxx:885
    void SwCursorShell::FireColumnChangeEvent(unsigned short,unsigned short)
    unsigned short nOldColumn
    2
sw/inc/docary.hxx:308
    _Bool SwExtraRedlineTable::DeleteAllTableRedlines(class SwDoc &,const class SwTable &,_Bool,enum RedlineType)
    enum RedlineType nRedlineTypeToDelete
    65535
sw/inc/docary.hxx:309
    _Bool SwExtraRedlineTable::DeleteTableRowRedline(class SwDoc *,const class SwTableLine &,_Bool,enum RedlineType)
    enum RedlineType nRedlineTypeToDelete
    65535
sw/inc/docary.hxx:310
    _Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,enum RedlineType)
    enum RedlineType nRedlineTypeToDelete
    65535
sw/inc/editsh.hxx:164
    void SwEditShell::Insert(char16_t,_Bool)
    char16_t 
    32
sw/inc/editsh.hxx:245
    class std::vector<struct std::pair<const class SfxPoolItem *, class std::unique_ptr<class SwPaM> > > SwEditShell::GetItemWithPaM(unsigned short)
    unsigned short nWhich
    8
sw/inc/fesh.hxx:539
    _Bool SwFEShell::BeginCreate(enum SdrObjKind,enum SdrInventor,const class Point &)
    enum SdrInventor eObjInventor
    825249094
sw/inc/fmteiro.hxx:38
    void SwFormatEditInReadonly::SwFormatEditInReadonly(unsigned short,_Bool)
    unsigned short nId
    118
sw/inc/IDocumentRedlineAccess.hxx:163
    _Bool IDocumentRedlineAccess::DeleteRedline(const class SwStartNode &,_Bool,enum RedlineType)
    enum RedlineType nDelType
    65535
sw/inc/IDocumentRedlineAccess.hxx:172
    unsigned long IDocumentRedlineAccess::GetRedlineEndPos(unsigned long,const class SwNode &,enum RedlineType) const
    enum RedlineType nType
    65535
sw/inc/ndtxt.hxx:200
    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/ndtxt.hxx:200
    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:465
    class SwTextAttr * SwTextNode::GetTextAttrForEndCharAt(int,unsigned short) const
    unsigned short nWhich
    56
sw/inc/swfltopt.hxx:31
    void SwFilterOptions::SwFilterOptions(unsigned short,const class rtl::OUString *,unsigned long *)
    unsigned short nCnt
    13
sw/inc/swregion.hxx:46
    void SwRegionRects::SwRegionRects(unsigned short)
    unsigned short nInit
    20
sw/inc/tblafmt.hxx:249
    _Bool SwTableAutoFormat::Save(class SvStream &,unsigned short) const
    unsigned short fileVersion
    5050
sw/inc/unotextcursor.hxx:98
    void SwXTextCursor::SwXTextCursor(class com::sun::star::uno::Reference<class com::sun::star::text::XText>,const class SwPaM &,const enum CursorType)
    const enum CursorType eType
    7
sw/qa/core/Test-BigPtrArray.cxx:53
    void fillBigPtrArray(class BigPtrArray &,int)
    int numEntries
    10
sw/qa/extras/ooxmlexport/ooxmlexport12.cxx:2171
    _Bool lcl_nearEqual(const int,const int,int)
    int nMaxDiff
    5
sw/qa/extras/tiledrendering/tiledrendering.cxx:1330
    class Color getTilePixelColor(class SwXTextDocument *,int,int)
    int nPixelX
    255
sw/qa/extras/tiledrendering/tiledrendering.cxx:1330
    class Color getTilePixelColor(class SwXTextDocument *,int,int)
    int nPixelY
    255
sw/source/core/access/accmap.cxx:393
    void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,class sw::access::SwAccessibleChild)
    enum SwAccessibleEvent_Impl::EventType eT
    5
sw/source/core/access/accmap.cxx:404
    void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType)
    enum SwAccessibleEvent_Impl::EventType eT
    4
sw/source/core/access/accmap.cxx:443
    void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,const class SwFrame *,class sw::access::SwAccessibleChild,const class SwRect &)
    enum SwAccessibleEvent_Impl::EventType eT
    3
sw/source/core/crsr/bookmark.cxx:168
    void lcl_SetFieldMarks(class sw::mark::Fieldmark &,class SwDoc &,const char16_t,const char16_t,const struct SwPosition *const)
    const char16_t aStartMark
    7
sw/source/core/crsr/bookmark.cxx:231
    void lcl_RemoveFieldMarks(const class sw::mark::Fieldmark &,class SwDoc &,const char16_t,const char16_t)
    const char16_t aStartMark
    7
sw/source/core/doc/doclay.cxx:98
    _Bool lcl_IsItemSet(const class SwContentNode &,unsigned short)
    unsigned short which
    64
sw/source/core/doc/docredln.cxx:287
    void lcl_LOKInvalidateFrames(const class sw::BroadcastingModify &,const class SwRootFrame *,const enum SwFrameType,const class Point *)
    const enum SwFrameType nFrameType
    49152
sw/source/core/doc/DocumentStylePoolManager.cxx:125
    void lcl_SetDfltFont(enum DefaultFontType,class SfxItemSet &)
    enum DefaultFontType nFntType
    4
sw/source/core/doc/DocumentStylePoolManager.cxx:148
    void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &)
    enum DefaultFontType nLatinFntType
    2000
sw/source/core/doc/DocumentStylePoolManager.cxx:148
    void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &)
    enum DefaultFontType nCJKFntType
    3000
sw/source/core/doc/DocumentStylePoolManager.cxx:148
    void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &)
    enum DefaultFontType nCTLFntType
    4000
sw/source/core/doc/SwStyleNameMapper.cxx:90
    class std::unordered_map<class rtl::OUString, unsigned short> HashFromRange(unsigned short,unsigned short,unsigned short,const class std::vector<class rtl::OUString> &(*)(void),type-parameter-?-?...)
     ###16
    12288
sw/source/core/doc/SwStyleNameMapper.cxx:90
    class std::unordered_map<class rtl::OUString, unsigned short> HashFromRange(unsigned short,unsigned short,unsigned short,const class std::vector<class rtl::OUString> &(*)(void),type-parameter-?-?...)
     ###17
    12293
sw/source/core/doc/tblafmt.cxx:184
    void SwAfVersions::Write(class SvStream &,unsigned short)
    unsigned short fileVersion
    5050
sw/source/core/fields/reffld.cxx:408
    class rtl::OUString lcl_formatStringByCombiningCharacter(class std::basic_string_view<char16_t>,const char16_t)
    const char16_t cChar
    822
sw/source/core/inc/swcache.hxx:115
    void SwCache::DecreaseMax(const unsigned short)
    const unsigned short nSub
    100
sw/source/core/inc/txtfrm.hxx:520
    long SwTextFrame::GrowTst(const long,enum SwResizeLimitReason &)
    const long nGrow
    9223372036854775807
sw/source/core/inc/UndoCore.hxx:273
    class rtl::OUString ShortenString(const class rtl::OUString &,int,class std::basic_string_view<char16_t>)
    int nLength
    20
sw/source/core/inc/UndoNumbering.hxx:39
    void SwUndoInsNum::SwUndoInsNum(const class SwNumRule &,const class SwNumRule &,const class SwDoc &,enum SwUndoId)
    enum SwUndoId nUndoId
    10
sw/source/core/inc/unocontentcontrol.hxx:60
    void SwXContentControl::AttachImpl(const class com::sun::star::uno::Reference<class com::sun::star::text::XTextRange> &,unsigned short)
    unsigned short nWhich
    56
sw/source/core/layout/dbg_lay.cxx:495
    void lcl_Padded(class rtl::OStringBuffer &,const long,unsigned long)
    unsigned long length
    5
sw/source/core/layout/objectformattertxtfrm.hxx:96
    class SwAnchoredObject * SwObjectFormatterTextFrame::GetFirstObjWithMovedFwdAnchor(const short,unsigned int &,_Bool &,_Bool &)
    const short _nWrapInfluenceOnPosition
    2
sw/source/core/txtnode/txtedt.cxx:214
    _Bool lcl_MaskRedlinesAndHiddenText(const class SwTextNode &,class rtl::OUStringBuffer &,int,int,const char16_t)
    const char16_t cChar
    65529
sw/source/core/undo/untbl.cxx:2198
    void (anonymous namespace)::RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags)
    enum RedlineFlags eRedlineFlagsMask
    2
sw/source/filter/html/htmlatr.cxx:1189
    _Bool (anonymous namespace)::HTMLEndPosLst::IsHTMLMode(unsigned long) const
    unsigned long nMode
    32
sw/source/filter/html/svxcss1.hxx:162
    void SvxCSS1PropertyInfo::SetBoxItem(class SfxItemSet &,unsigned short,const class SvxBoxItem *)
    unsigned short nMinBorderDist
    28
sw/source/filter/html/swhtml.hxx:652
    void SwHTMLParser::NewStdAttr(enum HtmlTokenId)
    enum HtmlTokenId nToken
    416
sw/source/filter/inc/fltshell.hxx:153
    class SfxPoolItem * SwFltControlStack::GetFormatStackAttr(unsigned short,unsigned short *)
    unsigned short nWhich
    6
sw/source/filter/inc/fltshell.hxx:154
    const class SfxPoolItem * SwFltControlStack::GetOpenStackAttr(const struct SwPosition &,unsigned short)
    unsigned short nWhich
    14
sw/source/filter/ww8/docxattributeoutput.hxx:1159
    void DocxAttributeOutput::AddToAttrList(class rtl::Reference<class sax_fastparser::FastAttributeList> &,type-parameter-?-? &&...)
     ###7
    374604737
sw/source/filter/ww8/docxexport.hxx:209
    int DocxExport::WriteOutliner(const class OutlinerParaObject &,unsigned char,_Bool)
    unsigned char nTyp
    5
sw/source/filter/ww8/docxtableexport.cxx:53
    class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char)
    int nLen
    4
sw/source/filter/ww8/docxtableexport.cxx:53
    class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char)
    char cFill
    48
sw/source/filter/ww8/escher.hxx:125
    void SwBasicEscherEx::WriteEmptyFlyFrame(const class SwFrameFormat &,unsigned int)
    unsigned int nShapeId
    1025
sw/source/filter/ww8/writerhelper.hxx:323
    const type-parameter-?-? * HasItem(const class std::map<unsigned short, const class SfxPoolItem *, class sw::util::ItemSort> &,unsigned short)
    unsigned short eType
    52
sw/source/filter/ww8/wrtww8.hxx:1390
    void WW8_WrPlcField::WW8_WrPlcField(unsigned short,unsigned char)
    unsigned short nStructSz
    2
sw/source/filter/ww8/wrtww8.hxx:1447
    void SwWW8WrGrf::WritePICBulletFHeader(class SvStream &,const class Graphic &,unsigned short,unsigned short,unsigned short)
    unsigned short mm
    100
sw/source/filter/ww8/ww8glsy.hxx:63
    void WW8Glossary::WW8Glossary(class rtl::Reference<class SotStorageStream> &,unsigned char,class SotStorage *)
    unsigned char nVersion
    8
sw/source/filter/ww8/ww8par.hxx:1638
    class std::optional<OutlinerParaObject> SwWW8ImplReader::ImportAsOutliner(class rtl::OUString &,int,int,enum ManTypes)
    enum ManTypes eType
    4
sw/source/filter/ww8/ww8scan.cxx:7185
    _Bool readS16(const unsigned char *,unsigned long,const unsigned char *,short *)
    unsigned long offset
    2
sw/source/filter/ww8/ww8scan.cxx:7200
    int getStringLengthWithMax(const unsigned char *,unsigned long,const unsigned char *,unsigned long)
    unsigned long maxchars
    65
sw/source/filter/ww8/ww8scan.hxx:996
    struct SprmResult WW8PLCFMan::HasCharSprm(unsigned short) const
    unsigned short nId
    2138
sw/source/filter/ww8/ww8scan.hxx:1535
    void WW8Fib::WW8Fib(unsigned char,_Bool)
    unsigned char nVersion
    8
sw/source/filter/xml/xmlbrshi.hxx:58
    void SwXMLBrushItemImportContext::SwXMLBrushItemImportContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,const class SvXMLUnitConverter &,unsigned short)
    unsigned short nWhich
    111
sw/source/uibase/inc/frmmgr.hxx:121
    void SwFlyFrameAttrMgr::DelAttr(unsigned short)
    unsigned short nId
    89
sw/source/uibase/inc/mailmergehelper.hxx:100
    void SwAddressPreview::SetLayout(unsigned short,unsigned short)
    unsigned short nColumns
    2
sw/source/uibase/inc/numpara.hxx:64
    void SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const class rtl::OUString &,enum SfxStyleFamily)
    unsigned short nId
    5550
sw/source/uibase/inc/numpara.hxx:64
    void SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const class rtl::OUString &,enum SfxStyleFamily)
    enum SfxStyleFamily nFamily
    16
sw/source/uibase/inc/prcntfld.hxx:65
    void SwPercentField::set_min(long,enum FieldUnit)
    enum FieldUnit eInUnit
    5
sw/source/uibase/inc/prcntfld.hxx:66
    void SwPercentField::set_max(long,enum FieldUnit)
    enum FieldUnit eInUnit
    5
sw/source/uibase/inc/swuipardlg.hxx:34
    void SwParaDlg::SwParaDlg(class weld::Window *,class SwView &,const class SfxItemSet &,unsigned char,const class rtl::OUString *,_Bool,const class rtl::OUString &)
    unsigned char nDialogMode
    2
sw/source/uibase/uiview/view2.cxx:192
    void (anonymous namespace)::SwNumberInputDlg::SwNumberInputDlg(class weld::Window *,const class rtl::OUString &,const class rtl::OUString &,const long,const long,const long,const class rtl::OUString &)
    const long max
    10
sw/source/writerfilter/dmapper/DomainMapper_Impl.hxx:920
    class com::sun::star::uno::Any writerfilter::dmapper::DomainMapper_Impl::GetInheritedParaProperty(enum writerfilter::dmapper::PropertyIds)
    enum writerfilter::dmapper::PropertyIds eId
    230
sw/source/writerfilter/dmapper/NumberingManager.hxx:79
    short writerfilter::dmapper::ListLevel::GetNumberingType(short) const
    short nDefault
    5
sw/source/writerfilter/ooxml/OOXMLFastContextHandler.hxx:175
    void writerfilter::ooxml::OOXMLFastContextHandler::sendPropertiesWithId(unsigned int)
    unsigned int nId
    92501
sw/source/writerfilter/ooxml/OOXMLFastContextHandler.hxx:518
    void writerfilter::ooxml::OOXMLFastContextHandlerWrapper::addToken(int)
    int Element
    2299042
sw/source/writerfilter/rtftok/rtfdocumentimpl.hxx:678
    class tools::SvRef<class writerfilter::rtftok::RTFValue> getNestedSprm(class writerfilter::rtftok::RTFSprms &,unsigned int,unsigned int)
    unsigned int nParent
    92188
sw/source/writerfilter/rtftok/rtfsprm.hxx:58
    void writerfilter::rtftok::RTFSprms::eraseLast(unsigned int)
    unsigned int nKeyword
    92728
toolkit/inc/controls/table/tablecontrol.hxx:133
    void svt::table::TableControl::commitCellEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
    const short i_eventID
    4
toolkit/inc/controls/table/tablecontrolinterface.hxx:203
    void svt::table::ITableControl::showTracking(const class tools::Rectangle &,const enum ShowTrackFlags)
    const enum ShowTrackFlags i_flags
    4099
toolkit/inc/helper/btndlg.hxx:61
    void ButtonDialog::RemoveButton(unsigned short)
    unsigned short nId
    10
toolkit/inc/helper/btndlg.hxx:64
    void ButtonDialog::ButtonDialog(enum WindowType)
    enum WindowType eType
    304
toolkit/source/awt/vclxspinbutton.cxx:39
    void lcl_modifyStyle(class vcl::Window *,long,_Bool)
    long _nStyleBits
    4096
toolkit/source/awt/vclxwindows.cxx:6281
    void lcl_setWinBits(class vcl::Window *,long,_Bool)
    long _nBits
    68719476736
toolkit/source/controls/table/tablecontrol_impl.hxx:239
    void svt::table::TableControl_Impl::commitAccessibleEvent(const short)
    const short i_eventID
    9
tools/source/stream/strmunx.cxx:95
    class ErrCode GetSvError(int)
    int nErrno
    21
ucb/source/core/ucbcmds.cxx:70
    struct com::sun::star::beans::Property makeProperty(const class rtl::OUString &,int,class com::sun::star::uno::Type,short)
    int h
    -1
ucb/source/ucp/webdav-curl/CurlSession.cxx:209
    void (anonymous namespace)::CurlOption::CurlOption(const CURLoption,const void *const,const char *const)
    const CURLoption i_Option
    10036
ucb/source/ucp/webdav-curl/PropfindCache.hxx:73
    void http_dav_ucp::PropertyNamesCache::addCachePropertyNames(class http_dav_ucp::PropertyNames &,const unsigned int)
    const unsigned int nLifeTime
    10
ucbhelper/source/provider/resultset.cxx:98
    void ucbhelper_impl::(anonymous namespace)::PropertySetInfo::PropertySetInfo(const struct ucbhelper_impl::(anonymous namespace)::PropertyInfo *,int)
    int nProps
    2
unotools/source/config/useroptions.cxx:99
    _Bool SvtUserOptions::Impl::GetBoolValue(enum UserOptToken) const
    enum UserOptToken nToken
    19
unotools/source/misc/datetime.cxx:74
    _Bool convertNumber64(long &,class std::basic_string_view<char16_t>,long,long)
    long 
    -1
vcl/backendtest/outputdevice/common.cxx:109
    void checkValueAA(class BitmapScopedWriteAccess &,int,int,class Color,int &,int &,int)
    int nColorDeltaThresh
    64
vcl/backendtest/outputdevice/common.cxx:147
    _Bool checkConvexHullProperty(class Bitmap &,class Color,int,int)
    int nWidthOffset
    2
vcl/backendtest/outputdevice/rectangle.cxx:25
    void drawInvertOffset(class OutputDevice &,const class tools::Rectangle &,int,enum InvertFlags)
    int nOffset
    2
vcl/backendtest/VisualBackendTest.cxx:144
    class std::vector<class tools::Rectangle> (anonymous namespace)::VisualBackendTestWindow::setupRegions(int,int,int,int)
    int nPartitionsY
    2
vcl/inc/canvasbitmap.hxx:58
    void vcl::unotools::VclCanvasBitmap::setComponentInfo(unsigned int,unsigned int,unsigned int)
    unsigned int greenShift
    65280
vcl/inc/driverblocklist.hxx:152
    unsigned long OpenGLVersion(unsigned int,unsigned int,unsigned int,unsigned int)
    unsigned int a
    10
vcl/inc/driverblocklist.hxx:152
    unsigned long OpenGLVersion(unsigned int,unsigned int,unsigned int,unsigned int)
    unsigned int b
    20
vcl/inc/driverblocklist.hxx:152
    unsigned long OpenGLVersion(unsigned int,unsigned int,unsigned int,unsigned int)
    unsigned int c
    30
vcl/inc/driverblocklist.hxx:152
    unsigned long OpenGLVersion(unsigned int,unsigned int,unsigned int,unsigned int)
    unsigned int d
    40
vcl/inc/FileDefinitionWidgetDraw.hxx:60
    void vcl::FileDefinitionWidgetDraw::drawPolyLine(class SalGraphics &,const class basegfx::B2DHomMatrix &,const class basegfx::B2DPolygon &,double,double,const class std::vector<double> *,enum basegfx::B2DLineJoin,enum com::sun::star::drawing::LineCap,double,_Bool)
    enum basegfx::B2DLineJoin i_eLineJoin
    4
vcl/inc/fontsubset.hxx:53
    void FontSubsetInfo::LoadFont(enum FontType,const unsigned char *,int)
    enum FontType eInFontType
    32
vcl/inc/fontsubset.hxx:56
    _Bool FontSubsetInfo::CreateFontSubset(enum FontType,class SvStream *,const unsigned int *,const unsigned char *,int)
    enum FontType nOutFontTypeMask
    16
vcl/inc/headless/SvpGraphicsBackend.hxx:126
    void SvpGraphicsBackend::drawBitmapBuffer(const struct SalTwoRect &,const struct BitmapBuffer *,enum _cairo_operator)
    enum _cairo_operator eOp
    2
vcl/inc/listbox.hxx:493
    void ImplListBox::SetMRUEntries(class std::basic_string_view<char16_t>,char16_t)
    char16_t cSep
    59
vcl/inc/listbox.hxx:494
    class rtl::OUString ImplListBox::GetMRUEntries(char16_t) const
    char16_t cSep
    59
vcl/inc/pdf/PDFEncryptorR6.hxx:35
    _Bool validateUserPassword(const unsigned char *,unsigned long,class std::vector<unsigned char> &)
    unsigned long nPasswordLength
    4
vcl/inc/pdf/PDFEncryptorR6.hxx:42
    _Bool validateOwnerPassword(const unsigned char *,unsigned long,class std::vector<unsigned char> &,class std::vector<unsigned char> &)
    unsigned long nPasswordLength
    5
vcl/inc/pdf/PDFEncryptorR6.hxx:78
    class std::vector<unsigned char> decryptKey(const unsigned char *,unsigned long,class std::vector<unsigned char> &,class std::vector<unsigned char> &)
    unsigned long nPasswordLength
    4
vcl/inc/pdf/PDFEncryptorR6.hxx:111
    unsigned long addPaddingToVector(class std::vector<unsigned char> &,unsigned long)
    unsigned long nBlockSize
    16
vcl/inc/pdf/PDFEncryptorR6.hxx:157
    void vcl::pdf::PDFEncryptorR6::encryptWithIV(const void *,unsigned long,class std::vector<unsigned char> &,class std::vector<unsigned char> &)
    unsigned long nInputSize
    5
vcl/inc/pdf/pdfwriter_impl.hxx:1121
    void vcl::PDFWriterImpl::insertError(enum vcl::PDFWriter::ErrorCode)
    enum vcl::PDFWriter::ErrorCode eErr
    3
vcl/inc/skia/utils.hxx:62
    class sk_sp<class SkSurface> createSkSurface(const class Size &,enum SkColorType,enum SkAlphaType)
    enum SkAlphaType alpha
    2
vcl/inc/test/outputdevice.hxx:67
    void vcl::test::OutputDeviceTestCommon::createDiamondPoints(class tools::Rectangle,int,class Point &,class Point &,class Point &,class Point &)
    int nOffset
    4
vcl/inc/test/outputdevice.hxx:115
    class Bitmap vcl::test::OutputDeviceTestBitmap::setupComplexDrawTransformedBitmap(enum vcl::PixelFormat,_Bool)
    enum vcl::PixelFormat aBitmapFormat
    24
vcl/inc/unx/gendisp.hxx:43
    void SalGenericDisplay::CancelInternalEvent(class SalFrame *,void *,enum SalEvent)
    enum SalEvent nEvent
    21
vcl/inc/unx/gtk/gtkdata.hxx:137
    struct _cairo_surface * surface_create_similar_surface(struct _GdkWindow *,enum _cairo_content,int,int)
    enum _cairo_content eContent
    12288
vcl/inc/WidgetDrawInterface.hxx:46
    _Bool vcl::WidgetDrawInterface::hitTestNativeControl(enum ControlType,enum ControlPart,const class tools::Rectangle &,const class Point &,_Bool &)
    enum ControlType eType
    60
vcl/inc/wizdlg.hxx:88
    long vcl::RoadmapWizard::LogicalCoordinateToPixel(int) const
    int iCoordinate
    6
vcl/inc/wizdlg.hxx:133
    void vcl::RoadmapWizard::AddButtonResponse(class Button *,int)
    int response
    10
vcl/qa/cppunit/BitmapScaleTest.cxx:58
    void assertColorsAreSimilar(int,int,const class BitmapColor &,const class BitmapColor &)
    int maxDifference
    2
vcl/qa/cppunit/gradient.cxx:52
    unsigned long TestLinearStripes(class GDIMetaFile &,unsigned long,unsigned long)
    unsigned long nTimes
    3
vcl/qa/cppunit/gradient.cxx:117
    unsigned long TestAxialStripes(class GDIMetaFile &,unsigned long,unsigned long)
    unsigned long nTimes
    3
vcl/qa/cppunit/gradient.cxx:192
    unsigned long TestComplexStripes(class GDIMetaFile &,unsigned long,unsigned long)
    unsigned long nTimes
    40
vcl/qa/cppunit/jpeg/JpegReaderTest.cxx:54
    _Bool checkRect(class Bitmap &,int,long,long,class Color,int)
    long nAreaHeight
    8
vcl/qa/cppunit/jpeg/JpegReaderTest.cxx:54
    _Bool checkRect(class Bitmap &,int,long,long,class Color,int)
    long nAreaWidth
    8
vcl/qa/cppunit/outdev.cxx:1908
    unsigned long ClipGradientTest(class GDIMetaFile &,unsigned long)
    unsigned long nIndex
    5
vcl/qa/cppunit/timer.cxx:37
    void (anonymous namespace)::WatchDog::WatchDog(int)
    int nSeconds
    120
vcl/qa/cppunit/timer.cxx:342
    void (anonymous namespace)::YieldTimer::YieldTimer(unsigned long)
    unsigned long nMS
    5
vcl/qa/cppunit/timer.cxx:372
    void (anonymous namespace)::SlowCallbackTimer::SlowCallbackTimer(unsigned long,_Bool &)
    unsigned long nMS
    250
vcl/source/filter/eps/eps.cxx:94
    enum (anonymous namespace)::NMode operator|(enum (anonymous namespace)::NMode,enum (anonymous namespace)::NMode)
    enum (anonymous namespace)::NMode b
    4
vcl/source/filter/eps/eps.cxx:188
    void (anonymous namespace)::PSWriter::ImplCurveTo(const class Point &,const class Point &,const class Point &,enum (anonymous namespace)::NMode)
    enum (anonymous namespace)::NMode nMode
    4
vcl/source/filter/idxf/dxf2mtf.hxx:110
    _Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short)
    unsigned short nMinPercent
    60
vcl/source/filter/idxf/dxf2mtf.hxx:110
    _Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short)
    unsigned short nMaxPercent
    100
vcl/source/filter/jpeg/JpegReader.cxx:55
    long StreamRead(class SvStream *,void *,long)
    long nBufferSize
    4096
vcl/source/filter/png/PngImageWriter.cxx:62
    void writeFctlChunk(class std::vector<unsigned char> &,unsigned int,class Size,class Point,unsigned short,unsigned short,enum Disposal,enum Blend)
    unsigned short nDelayDen
    100
vcl/source/filter/wmf/emfwr.hxx:56
    void EMFWriter::ImplBeginCommentRecord(int)
    int nCommentType
    726027589
vcl/source/filter/wmf/wmfwr.hxx:143
    void WMFWriter::WMFRecord_Escape(unsigned int,unsigned int,const signed char *)
    unsigned int nEsc
    2
vcl/source/fontsubset/ttcr.hxx:60
    void vcl::TrueTypeCreator::TrueTypeCreator(unsigned int)
    unsigned int tag
    1953658213
vcl/source/fontsubset/ttcr.hxx:243
    void vcl::TrueTypeTableCmap::cmapAdd(unsigned int,unsigned int,unsigned int)
    unsigned int id
    65536
vcl/source/fontsubset/ttcr.hxx:271
    void vcl::TrueTypeTablePost::TrueTypeTablePost(int,int,short,short,unsigned int)
    int format
    196608
vcl/source/graphic/GraphicObject.cxx:136
    void lclImplAdjust(class BitmapEx &,const class GraphicAttr &,enum GraphicAdjustmentFlags)
    enum GraphicAdjustmentFlags nAdjustmentFlags
    31
vcl/source/graphic/GraphicObject.cxx:187
    void lclImplAdjust(class GDIMetaFile &,const class GraphicAttr &,enum GraphicAdjustmentFlags)
    enum GraphicAdjustmentFlags nAdjustmentFlags
    31
vcl/source/graphic/GraphicObject.cxx:238
    void lclImplAdjust(class Animation &,const class GraphicAttr &,enum GraphicAdjustmentFlags)
    enum GraphicAdjustmentFlags nAdjustmentFlags
    31
vcl/source/pdf/PDFEncryptor.cxx:133
    _Bool computeODictionaryValue(const unsigned char *,const unsigned char *,class std::vector<unsigned char> &,int)
    int i_nKeyLength
    16
vcl/source/window/menu.cxx:517
    void ImplCopyItem(class Menu *,const class Menu &,unsigned short,unsigned short)
    unsigned short nNewPos
    65535
vcl/unx/generic/app/saldisp.cxx:598
    unsigned int GetKeySymMask(struct _XDisplay *,unsigned long)
    unsigned long nKeySym
    65509
vcl/unx/generic/dtrans/X11_selection.hxx:382
    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:382
    unsigned long x11::SelectionManager::createCursor(const unsigned char *,const unsigned char *,int,int,int,int)
    int height
    32
xmloff/inc/txtflde.hxx:260
    void XMLTextFieldExport::ProcessIntegerDef(enum xmloff::token::XMLTokenEnum,int,int)
    enum xmloff::token::XMLTokenEnum eXmlName
    1398
xmloff/inc/txtflde.hxx:286
    void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,class std::basic_string_view<char16_t>)
    enum xmloff::token::XMLTokenEnum eXmlName
    858
xmloff/inc/txtflde.hxx:286
    void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,class std::basic_string_view<char16_t>)
    unsigned short nValuePrefix
    30
xmloff/inc/txtflde.hxx:299
    void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
    enum xmloff::token::XMLTokenEnum eXmlName
    1527
xmloff/inc/txtflde.hxx:299
    void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
    enum xmloff::token::XMLTokenEnum eDefault
    1891
xmloff/inc/txtflde.hxx:331
    void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,double,_Bool,_Bool,_Bool,unsigned short)
    unsigned short nPrefix
    2
xmloff/inc/txtflde.hxx:347
    void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &)
    enum xmloff::token::XMLTokenEnum eXMLName
    554
xmloff/inc/txtflde.hxx:352
    void XMLTextFieldExport::ProcessTimeOrDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &)
    enum xmloff::token::XMLTokenEnum eXMLName
    1946
xmloff/inc/xmlbahdl.hxx:50
    void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char)
    enum xmloff::token::XMLTokenEnum eZeroString
    433
xmloff/inc/xmlbahdl.hxx:50
    void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char)
    signed char nB
    2
xmloff/inc/xmlbahdl.hxx:135
    void XMLMeasurePxPropHdl::XMLMeasurePxPropHdl(signed char)
    signed char nB
    4
xmloff/inc/XMLBase64Export.hxx:38
    _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
    2159
xmloff/source/chart/transporttypes.hxx:218
    void DataRowPointStyle::DataRowPointStyle(enum DataRowPointStyle::StyleType,class rtl::OUString,int)
    enum DataRowPointStyle::StyleType eType
    5
xmloff/source/draw/ximpcustomshape.cxx:85
    void GetInt32(class std::vector<struct com::sun::star::beans::PropertyValue> &,class std::basic_string_view<char>,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    88
xmloff/source/draw/ximpcustomshape.cxx:111
    void GetString(class std::vector<struct com::sun::star::beans::PropertyValue> &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    69
xmloff/source/draw/ximpcustomshape.cxx:121
    void GetEnum(class std::vector<struct com::sun::star::beans::PropertyValue> &,class std::basic_string_view<char>,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum,const SvXMLEnumMapEntry<type-parameter-?-?> &)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    123
xmloff/source/draw/ximpcustomshape.cxx:425
    void GetPosition3D(class std::vector<struct com::sun::star::beans::PropertyValue> &,class std::basic_string_view<char>,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum,const class SvXMLUnitConverter &)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    105
xmloff/source/draw/ximpcustomshape.cxx:439
    void GetDoubleSequence(class std::vector<struct com::sun::star::beans::PropertyValue> &,class std::basic_string_view<char>,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    122
xmloff/source/draw/ximpcustomshape.cxx:464
    void GetSizeSequence(class std::vector<struct com::sun::star::beans::PropertyValue> &,class std::basic_string_view<char>,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    129
xmloff/source/draw/ximpcustomshape.cxx:530
    int GetEnhancedParameterPairSequence(class std::vector<struct com::sun::star::beans::PropertyValue> &,class std::basic_string_view<char16_t>,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    121
xmloff/source/draw/ximpcustomshape.cxx:552
    void GetEnhancedRectangleSequence(class std::vector<struct com::sun::star::beans::PropertyValue> &,class std::basic_string_view<char16_t>,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
    const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
    120
xmloff/source/forms/elementimport.cxx:1373
    void xmloff::(anonymous namespace)::EqualHandle::EqualHandle(int)
    int _nHandle
    2
xmloff/source/forms/property_description.hxx:81
    void xmloff::PropertyDescription::PropertyDescription(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 unsigned short i_namespacePrefix
    15
xmloff/source/script/xmlbasicscript.hxx:33
    _Bool xmloff::BasicElementBase::getBoolAttr(_Bool *,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &)
    int nToken
    1968759
xmloff/source/text/XMLIndexMarkExport.cxx:178
    void lcl_ExportPropertyBool(class SvXMLExport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,enum xmloff::token::XMLTokenEnum,class com::sun::star::uno::Any &)
    enum xmloff::token::XMLTokenEnum eToken
    2270
xmloff/source/transform/TransformerContext.hxx:57
    _Bool XMLTransformerContext::HasNamespace(unsigned short) const
    unsigned short nPrefix
    15
xmlsecurity/inc/xsecctl.hxx:85
    void InternalSignatureInformation::addReference(enum SignatureReferenceType,int,const class rtl::OUString &,int,const class rtl::OUString &)
    int keeperId
    -1
xmlsecurity/source/framework/elementmark.hxx:56
    void ElementMark::ElementMark(int,int)
    int nSecurityId
    -1
 
     |