1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756
  
     | 
    
      basctl/source/basicide/moduldlg.hxx:112
    void basctl::LibDialog::EnableReference(_Bool)
    _Bool b
    0
basegfx/source/polygon/b2dpolygon.cxx:41
    void (anonymous namespace)::CoordinateDataArray2D::CoordinateDataArray2D(unsigned int)
    unsigned int nCount
    0
basegfx/source/polygon/b3dpolygon.cxx:78
    void (anonymous namespace)::CoordinateDataArray3D::CoordinateDataArray3D(unsigned int)
    unsigned int nCount
    0
basic/source/inc/runtime.hxx:402
    void SbiRuntime::StepRESUME(unsigned int)
    unsigned int 
    1
basic/source/inc/runtime.hxx:433
    _Bool SbiRuntime::IsMissing(class SbxVariable *,unsigned short)
    unsigned short 
    1
basic/source/runtime/iosys.cxx:60
    void (anonymous namespace)::SbiInputDialog::SbiInputDialog(class weld::Window *,const class rtl::OUString &)
    class weld::Window * 
    0
basic/source/runtime/methods.cxx:3122
    short GetOptionalIntegerParamOrDefault(class SbxArray &,const unsigned int,const short)
    const short defaultValue
    0
canvas/inc/parametricpolypolygon.hxx:138
    void canvas::ParametricPolyPolygon::ParametricPolyPolygon(class com::sun::star::uno::Reference<class com::sun::star::rendering::XGraphicDevice>,enum canvas::ParametricPolyPolygon::GradientType,const class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<double> > &,const class com::sun::star::uno::Sequence<double> &)
    enum canvas::ParametricPolyPolygon::GradientType eType
    0
canvas/inc/spriteredrawmanager.hxx:109
    void canvas::SpriteRedrawManager::SpriteInfo::SpriteInfo(class rtl::Reference<class canvas::Sprite>,const class basegfx::B2DRange &,_Bool,_Bool)
    _Bool bNeedsUpdate
    1
canvas/inc/verifyinput.hxx:147
    void verifyInput(const struct com::sun::star::geometry::RealBezierSegment2D &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
    short nArgPos
    0
canvas/inc/verifyinput.hxx:279
    void verifyInput(const struct com::sun::star::rendering::IntegerBitmapLayout &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
    short nArgPos
    0
canvas/inc/verifyinput.hxx:518
    void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
    type-parameter-?-? bound
    1
canvas/inc/verifyinput.hxx:518
    void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
    _Bool bLowerBound
    1
canvas/qa/cppunit/canvastest.cxx:77
    void CanvasTest::setupCanvas(const class Size &,class Color,_Bool)
    _Bool alpha
    0
canvas/source/cairo/cairo_canvashelper.hxx:248
    void cairocanvas::CanvasHelper::useStates(const struct com::sun::star::rendering::ViewState &,const struct com::sun::star::rendering::RenderState &,_Bool)
    _Bool setColor
    1
canvas/source/vcl/spritecanvashelper.hxx:44
    void vclcanvas::SpriteCanvasHelper::init(const class std::shared_ptr<class vclcanvas::OutDevProvider> &,class vclcanvas::SpriteCanvas &,class canvas::SpriteRedrawManager &,_Bool,_Bool)
    _Bool bProtect
    0
canvas/source/vcl/spritecanvashelper.hxx:44
    void vclcanvas::SpriteCanvasHelper::init(const class std::shared_ptr<class vclcanvas::OutDevProvider> &,class vclcanvas::SpriteCanvas &,class canvas::SpriteRedrawManager &,_Bool,_Bool)
    _Bool bHaveAlpha
    0
chart2/qa/extras/chart2dump/chart2dump.cxx:90
    void Chart2DumpTest::Chart2DumpTest(_Bool)
    _Bool bDumpMode
    0
chart2/qa/extras/charttest.hxx:74
    class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> ChartTest::getPivotChartDocFromSheet(int)
    int nSheet
    1
chart2/qa/extras/charttest.hxx:76
    class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> ChartTest::getPivotChartDocFromSheet(const class com::sun::star::uno::Reference<class com::sun::star::table::XTablePivotCharts> &,int)
    int nIndex
    0
chart2/qa/extras/charttest.hxx:81
    class com::sun::star::uno::Reference<class com::sun::star::chart2::XAxis> ChartTest::getAxisFromDoc(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int,int)
    int nCooSys
    0
chart2/qa/extras/charttest.hxx:84
    int ChartTest::getNumberOfDataSeries(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int)
    int nChartType
    0
chart2/qa/extras/charttest.hxx:84
    int ChartTest::getNumberOfDataSeries(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int)
    int nCooSys
    0
chart2/qa/extras/charttest.hxx:87
    class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> ChartTest::getDataSeriesFromDoc(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int,int)
    int nCooSys
    0
chart2/qa/extras/charttest.hxx:90
    class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XDataSequence> ChartTest::getLabelDataSequenceFromDoc(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int)
    int nChartType
    0
chart2/qa/extras/charttest.hxx:93
    class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XDataSequence> ChartTest::getDataSequenceFromDocByRole(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,class std::basic_string_view<char16_t>,int,int)
    int nChartType
    0
chart2/qa/extras/PivotChartTest.cxx:60
    class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotTable> PivotChartTest::getPivotTableByName(int,const class rtl::OUString &)
    int nIndex
    1
chart2/qa/extras/PivotChartTest.cxx:138
    void lclModifyColumnGrandTotal(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotDescriptor> &,_Bool)
    _Bool bTotal
    1
chart2/qa/extras/PivotChartTest.cxx:144
    void lclModifyRowGrandTotal(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotDescriptor> &,_Bool)
    _Bool bTotal
    1
chart2/qa/extras/PivotChartTest.cxx:204
    class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotTables> lclGetDataPilotTables(int,const class com::sun::star::uno::Reference<class com::sun::star::sheet::XSpreadsheetDocument> &)
    int nIndex
    0
chart2/source/controller/dialogs/DialogModel.cxx:175
    struct (anonymous namespace)::lcl_RolesWithRangeAppend & (anonymous namespace)::lcl_RolesWithRangeAppend::operator++(int)
    int 
    0
chart2/source/controller/inc/ChartController.hxx:366
    class chart::ChartController::TheModelRef & chart::ChartController::TheModelRef::operator=(class chart::ChartController::TheModel *)
     ###1
    0
chart2/source/controller/inc/dlg_InsertAxis_Grid.hxx:49
    void chart::SchAxisDlg::SchAxisDlg(class weld::Window *,const struct chart::InsertAxisOrGridDialogData &,_Bool)
    _Bool bAxisDlg
    0
chart2/source/controller/inc/ViewElementListProvider.hxx:51
    class Graphic chart::ViewElementListProvider::GetSymbolGraphic(int,const class SfxItemSet *) const
    int nStandardSymbol
    0
chart2/source/inc/AxisHelper.hxx:193
    class rtl::Reference<class chart::ChartType> chart::AxisHelper::getChartTypeByIndex(const class rtl::Reference<class chart::BaseCoordinateSystem> &,int)
    int nIndex
    0
chart2/source/inc/ChartTypeDialogController.hxx:56
    void chart::ChartTypeParameter::ChartTypeParameter(int,_Bool,_Bool,enum chart::GlobalStackMode,_Bool,_Bool,enum com::sun::star::chart2::CurveStyle)
    enum com::sun::star::chart2::CurveStyle eCurveStyle
    0
chart2/source/inc/CommonConverters.hxx:85
    void AddPointToPoly(struct com::sun::star::drawing::PolyPolygonShape3D &,const struct com::sun::star::drawing::Position3D &,int)
    int nSequenceIndex
    0
chart2/source/inc/RegressionCurveHelper.hxx:121
    class rtl::Reference<class chart::RegressionCurveModel> addRegressionCurve(enum SvxChartRegress,const class rtl::Reference<class chart::DataSeries> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
    enum SvxChartRegress eType
    1
chart2/source/model/template/ColumnLineChartTypeTemplate.hxx:35
    void chart::ColumnLineChartTypeTemplate::ColumnLineChartTypeTemplate(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,enum chart::StackMode,int)
    int nNumberOfLines
    1
chart2/source/model/template/HistogramChartTypeTemplate.hxx:22
    void chart::HistogramChartTypeTemplate::HistogramChartTypeTemplate(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,enum chart::StackMode)
    enum chart::StackMode eStackMode
    0
chart2/source/tools/InternalDataProvider.cxx:228
    void chart::(anonymous namespace)::lcl_setAnyAtLevelFromStringSequence::lcl_setAnyAtLevelFromStringSequence(int)
    int nLevel
    0
chart2/source/view/axes/VAxisProperties.hxx:159
    struct chart::TickmarkProperties chart::AxisProperties::makeTickmarkPropertiesForComplexCategories(int,int) const
    int nTickStartDistanceToAxis
    0
chart2/source/view/axes/VCartesianAxis.hxx:30
    void chart::VCartesianAxis::VCartesianAxis(const struct chart::AxisProperties &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormatsSupplier> &,int,int,class chart::PlottingPositionHelper *)
    int nDimensionIndex
    1
chart2/source/view/charttypes/CategoryPositionHelper.hxx:27
    void chart::CategoryPositionHelper::CategoryPositionHelper(double,double)
    double fSeriesCount
    1
chart2/source/view/inc/Clipping.hxx:47
    void chart::Clipping::clipPolygonAtRectangle(const struct com::sun::star::drawing::PolyPolygonShape3D &,const class basegfx::B2DRange &,struct com::sun::star::drawing::PolyPolygonShape3D &,_Bool)
    _Bool bSplitPiecesToDifferentPolygons
    1
chart2/source/view/inc/PlottingPositionHelper.hxx:153
    void chart::PlottingPositionHelper::AllowShiftXAxisPos(_Bool)
    _Bool bAllowShift
    1
chart2/source/view/inc/PlottingPositionHelper.hxx:154
    void chart::PlottingPositionHelper::AllowShiftZAxisPos(_Bool)
    _Bool bAllowShift
    1
chart2/source/view/inc/Stripe.hxx:52
    void chart::Stripe::InvertNormal(_Bool)
    _Bool bInvertNormal
    1
chart2/source/view/main/ShapeFactory.cxx:720
    void appendAndCloseBezierCoords(struct com::sun::star::drawing::PolyPolygonBezierCoords &,const struct com::sun::star::drawing::PolyPolygonBezierCoords &,_Bool)
    _Bool bAppendInverse
    1
chart2/source/view/main/VButton.hxx:47
    void chart::VButton::showArrow(_Bool)
    _Bool bShowArrow
    0
codemaker/source/javamaker/classfile.hxx:119
    void codemaker::javamaker::ClassFile::Code::storeLocalReference(unsigned short)
    unsigned short index
    1
comphelper/source/misc/backupfilehelper.cxx:58
    unsigned int createCrc32(const class std::shared_ptr<class osl::File> &,unsigned int)
    unsigned int nOffset
    0
connectivity/inc/sdbcx/VIndex.hxx:63
    void connectivity::sdbcx::OIndex::OIndex(_Bool)
    _Bool _bCase
    1
connectivity/inc/sdbcx/VIndex.hxx:64
    void connectivity::sdbcx::OIndex::OIndex(const class rtl::OUString &,class rtl::OUString,_Bool,_Bool,_Bool,_Bool)
    _Bool _bCase
    1
connectivity/inc/sdbcx/VKey.hxx:78
    void connectivity::sdbcx::OKey::OKey(_Bool)
    _Bool _bCase
    1
connectivity/inc/sdbcx/VKey.hxx:79
    void connectivity::sdbcx::OKey::OKey(const class rtl::OUString &,class std::shared_ptr<struct connectivity::sdbcx::KeyProperties>,_Bool)
    _Bool _bCase
    1
connectivity/inc/sdbcx/VUser.hxx:61
    void connectivity::sdbcx::OUser::OUser(_Bool)
    _Bool _bCase
    1
connectivity/inc/sdbcx/VUser.hxx:62
    void connectivity::sdbcx::OUser::OUser(const class rtl::OUString &,_Bool)
    _Bool _bCase
    1
connectivity/source/drivers/postgresql/pq_connection.cxx:353
    void pq_sdbc_driver::(anonymous namespace)::cstr_vector::push_back(const char *,enum __sal_NoAcquire)
    enum __sal_NoAcquire 
    0
connectivity/source/drivers/postgresql/pq_resultsetmetadata.hxx:88
    _Bool pq_sdbc_driver::ResultSetMetaData::getBoolColumnProperty(const class rtl::OUString &,int,_Bool)
    _Bool def
    0
connectivity/source/drivers/postgresql/pq_updateableresultset.hxx:163
    class com::sun::star::uno::Sequence<class com::sun::star::uno::Type> pq_sdbc_driver::UpdateableResultSet::getStaticTypes(_Bool)
    _Bool updateable
    0
connectivity/source/inc/dbase/DIndex.hxx:108
    _Bool connectivity::dbase::ODbaseIndex::Find(unsigned int,const class connectivity::ORowSetValue &)
    unsigned int nRec
    0
connectivity/source/inc/OColumn.hxx:68
    void connectivity::OColumn::OColumn(class rtl::OUString,const class rtl::OUString &,int,int,int,int,int)
    int _aScale
    0
connectivity/source/inc/odbc/OFunctions.hxx:38
    short connectivity::odbc::Functions::DriverConnect(void *,void *,unsigned char *,short,unsigned char *,short,short *,unsigned short) const
    void * WindowHandle
    0
connectivity/source/inc/odbc/OFunctions.hxx:46
    short connectivity::odbc::Functions::DriverConnectW(void *,void *,unsigned short *,short,unsigned short *,short,short *,unsigned short) const
    void * WindowHandle
    0
connectivity/source/inc/odbc/OFunctions.hxx:68
    short connectivity::odbc::Functions::GetTypeInfo(void *,short) const
    short DataType
    0
connectivity/source/inc/odbc/OFunctions.hxx:101
    short connectivity::odbc::Functions::GetStmtAttr(void *,int,void *,int,int *) const
    int * StringLength
    0
connectivity/source/inc/odbc/OFunctions.hxx:148
    short connectivity::odbc::Functions::BindParameter(void *,unsigned short,short,short,short,unsigned long,short,void *,long,long *) const
    short InputOutputType
    1
connectivity/source/inc/odbc/OFunctions.hxx:199
    short connectivity::odbc::Functions::ColAttributeW(void *,unsigned short,unsigned short,void *,short,short *,long *) const
    long * NumericAttributePtr
    0
connectivity/source/inc/odbc/OFunctions.hxx:222
    short connectivity::odbc::Functions::SetPos(void *,unsigned long,unsigned short,unsigned short) const
    unsigned long RowNumber
    1
connectivity/source/inc/odbc/OFunctions.hxx:222
    short connectivity::odbc::Functions::SetPos(void *,unsigned long,unsigned short,unsigned short) const
    unsigned short LockType
    0
connectivity/source/inc/odbc/OFunctions.hxx:237
    short connectivity::odbc::Functions::GetDiagRec(short,void *,short,unsigned char *,int *,unsigned char *,short,short *) const
    short RecNumber
    1
connectivity/source/inc/odbc/OFunctions.hxx:245
    short connectivity::odbc::Functions::GetDiagRecW(short,void *,short,unsigned short *,int *,unsigned short *,short,short *) const
    short RecNumber
    1
cppcanvas/source/mtfrenderer/mtftools.cxx:284
    void appendRect(class basegfx::B2DPolyPolygon &,const class basegfx::B2DPoint &,const double,const double,const double,const double)
    const double nX1
    0
cppu/qa/test_reference.cxx:88
    const class com::sun::star::uno::Type & (anonymous namespace)::Base1::static_type(void *)
    void * 
    0
cppu/qa/test_unotype.cxx:63
    void (anonymous namespace)::DerivedInterface1::dummy(struct (anonymous namespace)::DerivedInterface1 *)
    struct (anonymous namespace)::DerivedInterface1 * p
    0
cppu/qa/test_unotype.cxx:74
    void (anonymous namespace)::DerivedInterface2::dummy(struct (anonymous namespace)::DerivedInterface2 *)
    struct (anonymous namespace)::DerivedInterface2 * p
    0
cui/source/inc/acccfg.hxx:46
    void TAccInfo::TAccInfo(int,int,const class vcl::KeyCode &)
    int nListPos
    0
cui/source/inc/cfg.hxx:339
    void SvxMenuEntriesListBox::set_text(int,const class rtl::OUString &,int)
    int col
    0
cui/source/inc/cfg.hxx:460
    void SvxConfigPage::InsertEntryIntoUI(class SvxConfigEntry *,class weld::TreeView &,class weld::TreeIter &,_Bool)
    _Bool bMenu
    1
cui/source/inc/cfgutil.hxx:137
    void CuiConfigFunctionListBox::append(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *)
    const class weld::TreeIter * pParent
    0
cui/source/inc/cfgutil.hxx:152
    class std::unique_ptr<class weld::TreeIter> CuiConfigFunctionListBox::make_iterator(const class weld::TreeIter *) const
    const class weld::TreeIter * pOrig
    0
cui/source/inc/cuitabarea.hxx:268
    void SvxAreaTabPage::SvxAreaTabPage(class weld::Container *,class weld::DialogController *,const class SfxItemSet &,_Bool)
    _Bool bSlideBackground
    0
cui/source/inc/cuitabarea.hxx:736
    void SvxColorTabPage::SetPropertyList(enum XPropertyListType,const class rtl::Reference<class XPropertyList> &)
    enum XPropertyListType t
    0
cui/source/inc/hangulhanjadlg.hxx:54
    void svx::SuggestionDisplay::SelectEntryPos(unsigned short)
    unsigned short nPos
    0
cui/source/inc/hangulhanjadlg.hxx:58
    class rtl::OUString svx::SuggestionDisplay::GetEntry(unsigned short) const
    unsigned short nPos
    0
cui/source/inc/MacroManagerDialog.hxx:86
    void ScriptsListBox::append(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *)
    const class weld::TreeIter * pParent
    0
cui/source/inc/MacroManagerDialog.hxx:94
    class std::unique_ptr<class weld::TreeIter> ScriptsListBox::make_iterator(const class weld::TreeIter *) const
    const class weld::TreeIter * pOrig
    0
cui/source/inc/MacroManagerDialog.hxx:106
    void ScriptsListBox::select(int)
    int pos
    0
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 *)
    class weld::TreeIter * pRet
    0
cui/source/inc/scriptdlg.hxx:118
    void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry> &&,class std::basic_string_view<char16_t>,_Bool)
    const class weld::TreeIter * pParent
    0
cui/source/inc/scriptdlg.hxx:118
    void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry> &&,class std::basic_string_view<char16_t>,_Bool)
    _Bool bChildrenOnDemand
    1
cui/source/inc/scriptdlg.hxx:118
    void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry> &&,class std::basic_string_view<char16_t>,_Bool)
    _Bool bSelect
    0
cui/source/options/optjsearch.hxx:67
    void SvxJSearchOptionsPage::EnableSaveOptions(_Bool)
    _Bool bVal
    0
dbaccess/source/core/dataaccess/databasedocument.hxx:679
    void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::DefaultMethod_)
    enum dbaccess::DocumentGuard::DefaultMethod_ 
    0
dbaccess/source/core/dataaccess/databasedocument.hxx:697
    void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::InitMethod_)
    enum dbaccess::DocumentGuard::InitMethod_ 
    0
dbaccess/source/core/dataaccess/databasedocument.hxx:716
    void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::MethodUsedDuringInit_)
    enum dbaccess::DocumentGuard::MethodUsedDuringInit_ 
    0
dbaccess/source/core/dataaccess/databasedocument.hxx:731
    void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::MethodWithoutInit_)
    enum dbaccess::DocumentGuard::MethodWithoutInit_ 
    0
dbaccess/source/core/inc/column.hxx:167
    void dbaccess::OColumns::OColumns(class cppu::OWeakObject &,class osl::Mutex &,_Bool,const class std::vector<class rtl::OUString> &,class dbaccess::IColumnFactory *,class connectivity::sdbcx::IRefreshableColumns *,_Bool,_Bool,_Bool)
    _Bool _bDropColumn
    0
dbaccess/source/core/inc/column.hxx:178
    void dbaccess::OColumns::OColumns(class cppu::OWeakObject &,class osl::Mutex &,class com::sun::star::uno::Reference<class com::sun::star::container::XNameAccess>,_Bool,const class std::vector<class rtl::OUString> &,class dbaccess::IColumnFactory *,class connectivity::sdbcx::IRefreshableColumns *,_Bool,_Bool,_Bool)
    _Bool _bUseHardRef
    1
dbaccess/source/ui/control/tabletree.cxx:166
    class std::vector<class rtl::OUString> lcl_getMetaDataStrings_throw(const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XResultSet> &,int)
    int _nColumnIndex
    1
dbaccess/source/ui/inc/charsets.hxx:45
    class dbaui::OCharsetDisplay::ExtendedCharsetIterator dbaui::OCharsetDisplay::findEncoding(const unsigned short) const
    const unsigned short _eEncoding
    0
dbaccess/source/ui/inc/FieldDescControl.hxx:122
    void dbaui::OFieldDescControl::InitializeControl(class dbaui::OPropListBoxCtrl *,const class rtl::OUString &,_Bool)
    _Bool _bAddChangeHandler
    1
dbaccess/source/ui/inc/imageprovider.hxx:70
    class com::sun::star::uno::Reference<class com::sun::star::graphic::XGraphic> dbaui::ImageProvider::getXGraphic(const class rtl::OUString &,const int)
    const int _nDatabaseObjectType
    0
dbaccess/source/ui/inc/IUpdateHelper.hxx:32
    void dbaui::IUpdateHelper::updateInt(int,int)
    int _nPos
    1
dbaccess/source/ui/inc/WCopyTable.hxx:310
    void dbaui::OCopyTableWizard::OCopyTableWizard(class weld::Window *,class rtl::OUString,short,class std::map<class rtl::OUString, class dbaui::OFieldDescription *, struct comphelper::UStringMixLess> &&,const class std::vector<class __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<struct std::pair<const class rtl::OUString, class dbaui::OFieldDescription *> >, class std::map<class rtl::OUString, class dbaui::OFieldDescription *, struct comphelper::UStringMixLess> > > &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,const class com::sun::star::uno::Reference<class com::sun::star::util::XNumberFormatter> &,class std::unique_ptr<class dbaui::OWizTypeSelect> (*)(class weld::Container *, class dbaui::OCopyTableWizard *, class SvStream &),class SvStream &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &)
    class weld::Window * pParent
    0
dbaccess/source/ui/inc/WTypeSelect.hxx:121
    void dbaui::OWizTypeSelect::EnableAuto(_Bool)
    _Bool bEnable
    0
desktop/qa/desktop_lib/test_desktop_lib.cxx:140
    struct desktop::LibLODocument_Impl * DesktopLOKTest::loadDocUrl(const class rtl::OUString &,LibreOfficeKitDocumentType)
    LibreOfficeKitDocumentType eType
    1
desktop/qa/desktop_lib/test_desktop_lib.cxx:3575
    void lcl_repeatKeyStroke(struct desktop::LibLODocument_Impl *,int,int,unsigned long)
    int nCharCode
    0
desktop/source/deployment/gui/dp_gui_updatedialog.hxx:100
    void dp_gui::UpdateDialog::addAdditional(const struct dp_gui::UpdateDialog::Index *,_Bool)
    _Bool bEnableCheckBox
    0
desktop/source/lib/init.cxx:8431
    struct _LibreOfficeKit * libreofficekit_hook_2(const char *,const char *)
    const char * user_profile_url
    0
drawinglayer/qa/unit/vclmetafileprocessor2d.cxx:62
    void VclMetaFileProcessor2DTest::setupCanvas(const class Size &,class Color,_Bool)
    _Bool alpha
    0
editeng/inc/ParagraphPortionList.hxx:74
    void ParaPortionList::MarkAllSelectionsInvalid(int)
    int nStart
    0
editeng/inc/TextPortion.hxx:121
    void TextPortion::adjustSize(long,long)
    long nDeltaY
    0
emfio/inc/mtftools.hxx:464
    void emfio::WinMtfLineStyle::WinMtfLineStyle(const class Color &,_Bool)
    _Bool bTrans
    1
emfio/inc/mtftools.hxx:469
    void emfio::WinMtfLineStyle::WinMtfLineStyle(const class Color &,const unsigned int,const int)
    const unsigned int nStyle
    0
emfio/inc/mtftools.hxx:469
    void emfio::WinMtfLineStyle::WinMtfLineStyle(const class Color &,const unsigned int,const int)
    const int nPenWidth
    0
emfio/inc/mtftools.hxx:786
    void emfio::MtfTools::DrawArc(const class tools::Rectangle &,const class Point &,const class Point &,_Bool)
    _Bool bDrawTo
    0
extensions/source/propctrlr/browserline.hxx:95
    void pcr::OBrowserLine::Show(_Bool)
    _Bool bFlag
    0
extensions/source/propctrlr/newdatatype.hxx:39
    void pcr::NewDataTypeDialog::NewDataTypeDialog(class weld::Window *,class std::basic_string_view<char16_t>,const class std::vector<class rtl::OUString> &)
    class weld::Window * _pParent
    0
extensions/source/propctrlr/propertyhandler.hxx:183
    void pcr::PropertyHandler::addDoublePropertyDescription(class std::vector<struct com::sun::star::beans::Property> &,const class rtl::OUString &,short) const
    short _nAttribs
    1
extensions/source/propctrlr/propertyhandler.hxx:191
    void pcr::PropertyHandler::addDatePropertyDescription(class std::vector<struct com::sun::star::beans::Property> &,const class rtl::OUString &,short) const
    short _nAttribs
    1
extensions/source/propctrlr/propertyhandler.hxx:199
    void pcr::PropertyHandler::addTimePropertyDescription(class std::vector<struct com::sun::star::beans::Property> &,const class rtl::OUString &,short) const
    short _nAttribs
    1
extensions/source/propctrlr/propertyhandler.hxx:207
    void pcr::PropertyHandler::addDateTimePropertyDescription(class std::vector<struct com::sun::star::beans::Property> &,const class rtl::OUString &,short) const
    short _nAttribs
    1
extensions/source/propctrlr/usercontrol.hxx:41
    void pcr::OFormatSampleControl::OFormatSampleControl(class std::unique_ptr<class weld::Container>,class std::unique_ptr<class weld::Builder>,_Bool)
    _Bool bReadOnly
    0
extensions/source/propctrlr/usercontrol.hxx:91
    void pcr::OFormattedNumericControl::OFormattedNumericControl(class std::unique_ptr<class weld::FormattedSpinButton>,class std::unique_ptr<class weld::Builder>,_Bool)
    _Bool bReadOnly
    0
extensions/source/propctrlr/usercontrol.hxx:124
    void pcr::OFileUrlControl::OFileUrlControl(class std::unique_ptr<class SvtURLBox>,class std::unique_ptr<class weld::Builder>,_Bool)
    _Bool bReadOnly
    0
extensions/source/scanner/grid.cxx:129
    void GridWindow::Init(double *,double *,int,_Bool,const class BitmapEx &)
    _Bool bCutValues
    1
extensions/source/scanner/grid.hxx:46
    void GridDialog::setBoundings(double,double,double,double)
    double fMinX
    0
filter/source/graphicfilter/icgm/cgm.hxx:90
    unsigned char CGM::ImplGetByte(unsigned int,unsigned int)
    unsigned int nPrecision
    1
filter/source/svg/svgfilter.hxx:255
    _Bool SVGFilter::implExportMasterPages(const class std::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > &,int,int)
    int nFirstPage
    0
filter/source/svg/svgfilter.hxx:257
    void SVGFilter::implExportDrawPages(const class std::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > &,int,int)
    int nFirstPage
    0
filter/source/svg/svgwriter.hxx:247
    void SVGTextWriter::addFontAttributes(_Bool)
    _Bool bIsTextContainer
    0
filter/source/svg/svgwriter.hxx:258
    void SVGTextWriter::startTextPosition(_Bool,_Bool)
    _Bool bExportY
    1
forms/source/component/DatabaseForm.hxx:233
    void frm::ODatabaseForm::fire(int *,const class com::sun::star::uno::Any *,const class com::sun::star::uno::Any *,int)
    int nCount
    1
forms/source/component/GroupManager.hxx:143
    const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> & frm::OGroup::GetObject(unsigned short) const
    unsigned short nP
    0
forms/source/inc/featuredispatcher.hxx:50
    void frm::IFeatureDispatcher::dispatchWithArgument(short,const class rtl::OUString &,const class com::sun::star::uno::Any &) const
    short _nFeatureId
    1
formula/source/core/api/FormulaCompiler.cxx:160
    void formula::(anonymous namespace)::OpCodeList::OpCodeList(const struct std::pair<struct TranslateId, int> *,const class std::shared_ptr<class formula::FormulaCompiler::OpCodeMap> &,enum formula::FormulaCompiler::SeparatorType)
    enum formula::FormulaCompiler::SeparatorType 
    1
formula/source/ui/dlg/structpg.hxx:58
    _Bool formula::StructPage::InsertEntry(const class rtl::OUString &,const class weld::TreeIter *,unsigned short,int,const class formula::FormulaToken *,class weld::TreeIter &)
    int nPos
    0
fpicker/source/office/autocmpledit.hxx:41
    void AutocompleteEdit::select_region(int,int)
    int nStartPos
    0
fpicker/source/office/fileview.hxx:162
    void SvtFileView::EnableDelete(_Bool)
    _Bool bEnable
    1
framework/inc/uielement/uicommanddescription.hxx:81
    void framework::UICommandDescription::UICommandDescription(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,_Bool)
    _Bool 
    1
helpcompiler/inc/HelpCompiler.hxx:57
    void fs::path::path(const class std::basic_string<char> &,enum fs::convert)
    enum fs::convert 
    0
hwpfilter/source/hfont.h:62
    const char * HWPFont::GetFontName(int,int)
    int lang
    0
i18npool/source/localedata/LocaleNode.hxx:74
    const class rtl::OUString & Attr::getValueByIndex(int) const
    int idx
    0
include/avmedia/mediaplayer.hxx:49
    void avmedia::MediaFloater::setURL(const class rtl::OUString &,const class rtl::OUString &,_Bool)
    _Bool bPlayImmediately
    1
include/basctl/scriptdocument.hxx:88
    void basctl::ScriptDocument::ScriptDocument(enum basctl::ScriptDocument::SpecialDocument)
    enum basctl::ScriptDocument::SpecialDocument _eType
    0
include/basegfx/DrawCommands.hxx:59
    void gfx::GradientInfo::GradientInfo(enum gfx::GradientType)
    enum gfx::GradientType eType
    0
include/basegfx/polygon/b2dpolygon.hxx:82
    void basegfx::B2DPolygon::insert(unsigned int,const class basegfx::B2DPoint &,unsigned int)
    unsigned int nCount
    1
include/basegfx/polygon/b2dpolygontools.hxx:91
    _Bool isInside(const class basegfx::B2DPolygon &,const class basegfx::B2DPolygon &,_Bool)
    _Bool bWithBorder
    1
include/basegfx/polygon/b2dpolygontools.hxx:299
    class basegfx::B2DPolygon createPolygonFromEllipse(const class basegfx::B2DPoint &,double,double,unsigned int)
    unsigned int nStartQuadrant
    0
include/basegfx/polygon/b2dpolygontools.hxx:367
    enum basegfx::B2VectorOrientation getOrientationForIndex(const class basegfx::B2DPolygon &,unsigned int)
    unsigned int nIndex
    0
include/basegfx/polygon/b2dpolygontools.hxx:374
    _Bool isPointOnPolygon(const class basegfx::B2DPolygon &,const class basegfx::B2DPoint &,_Bool)
    _Bool bWithPoints
    1
include/basegfx/polygon/b2dpolygontools.hxx:377
    _Bool isPointInTriangle(const class basegfx::B2DPoint &,const class basegfx::B2DPoint &,const class basegfx::B2DPoint &,const class basegfx::B2DPoint &,_Bool)
    _Bool bWithBorder
    1
include/basegfx/polygon/b2dpolypolygon.hxx:68
    void basegfx::B2DPolyPolygon::insert(unsigned int,const class basegfx::B2DPolygon &,unsigned int)
    unsigned int nIndex
    0
include/basegfx/polygon/b2dpolypolygon.hxx:68
    void basegfx::B2DPolyPolygon::insert(unsigned int,const class basegfx::B2DPolygon &,unsigned int)
    unsigned int nCount
    1
include/basegfx/polygon/b2dpolypolygon.hxx:69
    void basegfx::B2DPolyPolygon::append(const class basegfx::B2DPolygon &,unsigned int)
    unsigned int nCount
    1
include/basegfx/polygon/b2dpolypolygon.hxx:95
    void basegfx::B2DPolyPolygon::remove(unsigned int,unsigned int)
    unsigned int nCount
    1
include/basegfx/polygon/b2dpolypolygon.hxx:130
    shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(type-parameter-?-? &&...) const
     ###2
    0
include/basegfx/polygon/b2dpolypolygon.hxx:130
    shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(type-parameter-?-? &&...) const
     ###3
    0
include/basegfx/polygon/b2dpolypolygon.hxx:130
    shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(type-parameter-?-? &&...) const
     ###4
    0
include/basegfx/polygon/b3dpolygon.hxx:70
    void basegfx::B3DPolygon::append(const class basegfx::B3DPoint &,unsigned int)
    unsigned int nCount
    1
include/basegfx/polygon/b3dpolygon.hxx:94
    void basegfx::B3DPolygon::append(const class basegfx::B3DPolygon &,unsigned int,unsigned int)
    unsigned int nIndex
    0
include/basegfx/polygon/b3dpolygon.hxx:94
    void basegfx::B3DPolygon::append(const class basegfx::B3DPolygon &,unsigned int,unsigned int)
    unsigned int nCount
    0
include/basegfx/polygon/b3dpolygon.hxx:97
    void basegfx::B3DPolygon::remove(unsigned int,unsigned int)
    unsigned int nCount
    1
include/basegfx/polygon/b3dpolygontools.hxx:100
    _Bool isInside(const class basegfx::B3DPolygon &,const class basegfx::B3DPoint &,_Bool)
    _Bool bWithBorder
    0
include/basegfx/polygon/b3dpolygontools.hxx:103
    _Bool isPointOnLine(const class basegfx::B3DPoint &,const class basegfx::B3DPoint &,const class basegfx::B3DPoint &,_Bool)
    _Bool bWithPoints
    1
include/basegfx/polygon/b3dpolypolygon.hxx:81
    void basegfx::B3DPolyPolygon::append(const class basegfx::B3DPolygon &,unsigned int)
    unsigned int nCount
    1
include/basegfx/range/b2ibox.hxx:71
    void basegfx::B2IBox::B2IBox(int,int,int,int)
    int x1
    0
include/basegfx/range/b2ibox.hxx:71
    void basegfx::B2IBox::B2IBox(int,int,int,int)
    int y1
    0
include/basegfx/utils/tools.hxx:118
    class basegfx::B2DPolyPolygon number2PolyPolygon(double,int,int,_Bool)
    _Bool bLitSegments
    1
include/basic/basrdll.hxx:35
    void BasicDLL::EnableBreak(_Bool)
    _Bool bEnable
    1
include/basic/sbstar.hxx:140
    class SbxVariable * StarBASIC::VBAFind(const class rtl::OUString &,enum SbxClassType)
    enum SbxClassType t
    1
include/basic/sbxobj.hxx:62
    class SbxVariable * SbxObject::FindQualified(const class rtl::OUString &,enum SbxClassType)
    enum SbxClassType 
    1
include/basic/sbxobj.hxx:73
    void SbxObject::Remove(const class rtl::OUString &,enum SbxClassType)
    enum SbxClassType 
    1
include/comphelper/configurationhelper.hxx:211
    class com::sun::star::uno::Any comphelper::ConfigurationHelper::readDirectKey(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum comphelper::EConfigurationModes)
    enum comphelper::EConfigurationModes eMode
    1
include/comphelper/configurationhelper.hxx:227
    void comphelper::ConfigurationHelper::writeDirectKey(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class com::sun::star::uno::Any &,enum comphelper::EConfigurationModes)
    enum comphelper::EConfigurationModes eMode
    0
include/comphelper/errcode.hxx:73
    void ErrCode::ErrCode(enum WarningFlag,enum ErrCodeArea,enum ErrCodeClass,unsigned short)
    enum WarningFlag 
    0
include/comphelper/interfacecontainer2.hxx:174
    class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> comphelper::OInterfaceContainerHelper2::getInterface(int) const
    int nIndex
    0
include/comphelper/lok.hxx:70
    void setLocalRendering(_Bool)
    _Bool bLocalRendering
    1
include/comphelper/lok.hxx:95
    void setRangeHeaders(_Bool)
    _Bool bTiledAnnotations
    1
include/comphelper/parallelsort.hxx:286
    void s3sort(const type-parameter-?-?,const type-parameter-?-?,type-parameter-?-?,_Bool)
    _Bool bThreaded
    1
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 _nAddAttrib
    0
include/comphelper/random.hxx:35
    unsigned long uniform_size_distribution(unsigned long,unsigned long)
    unsigned long a
    0
include/comphelper/storagehelper.hxx:187
    class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> comphelper::OStorageHelper::GetStorageAtPath(const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,class std::basic_string_view<char16_t>,unsigned int,const class comphelper::LifecycleProxy &)
    unsigned int nOpenMode
    1
include/comphelper/string.hxx:236
    void replaceAt(class rtl::OUStringBuffer &,int,int,class std::basic_string_view<char16_t>)
    int index
    0
include/comphelper/unique_disposing_ptr.hxx:165
    void comphelper::unique_disposing_solar_mutex_reset_ptr::unique_disposing_solar_mutex_reset_ptr<T>(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,type-parameter-?-? *,_Bool)
    _Bool bComponent
    1
include/comphelper/unique_disposing_ptr.hxx:170
    void comphelper::unique_disposing_solar_mutex_reset_ptr::reset(type-parameter-?-? *)
    type-parameter-?-? * p
    0
include/connectivity/dbexception.hxx:319
    void throwSQLException(const class rtl::OUString &,enum dbtools::StandardSQLState,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const int)
    const int _nErrorCode
    0
include/connectivity/dbtools.hxx:335
    _Bool isDataSourcePropertyEnabled(const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class rtl::OUString &,_Bool)
    _Bool _bDefault
    1
include/connectivity/dbtools.hxx:627
    class rtl::OUString createStandardCreateStatement(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> &,class dbtools::ISQLStatementHelper *,class std::basic_string_view<char16_t>)
    class dbtools::ISQLStatementHelper * _pHelper
    0
include/connectivity/sqlscan.hxx:49
    void connectivity::OSQLScanner::prepareScan(const class rtl::OUString &,const class connectivity::IParseContext *,_Bool)
    _Bool bInternational
    1
include/cppcanvas/color.hxx:60
    int makeColorARGB(unsigned char,unsigned char,unsigned char,unsigned char)
    unsigned char nAlpha
    0
include/drawinglayer/converters.hxx:34
    class AlphaMask createAlphaMask(class drawinglayer::primitive2d::Primitive2DContainer &&,const class drawinglayer::geometry::ViewInformation2D &,unsigned int,unsigned int,unsigned int,_Bool)
    _Bool bUseLuminance
    0
include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:236
    void drawinglayer::processor2d::CairoPixelProcessor2D::CairoPixelProcessor2D(const class drawinglayer::geometry::ViewInformation2D &,struct _cairo_surface *,long,long,long,long)
    long nOffsetPixelX
    0
include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:236
    void drawinglayer::processor2d::CairoPixelProcessor2D::CairoPixelProcessor2D(const class drawinglayer::geometry::ViewInformation2D &,struct _cairo_surface *,long,long,long,long)
    long nOffsetPixelY
    0
include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:236
    void drawinglayer::processor2d::CairoPixelProcessor2D::CairoPixelProcessor2D(const class drawinglayer::geometry::ViewInformation2D &,struct _cairo_surface *,long,long,long,long)
    long nWidthPixel
    0
include/drawinglayer/processor2d/cairopixelprocessor2d.hxx:236
    void drawinglayer::processor2d::CairoPixelProcessor2D::CairoPixelProcessor2D(const class drawinglayer::geometry::ViewInformation2D &,struct _cairo_surface *,long,long,long,long)
    long nHeightPixel
    0
include/drawinglayer/processor2d/processor2dtools.hxx:49
    class std::unique_ptr<class drawinglayer::processor2d::BaseProcessor2D> createPixelProcessor2DFromScratch(const class drawinglayer::geometry::ViewInformation2D &,unsigned int,unsigned int,_Bool)
    _Bool bUseRGBA
    1
include/drawinglayer/XShapeDumper.hxx:23
    class rtl::OUString XShapeDumper::dump(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShapes> &,_Bool)
    _Bool bDumpInteropProperties
    0
include/drawinglayer/XShapeDumper.hxx:24
    class rtl::OUString XShapeDumper::dump(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,_Bool)
    _Bool bDumpInteropProperties
    0
include/editeng/borderline.hxx:188
    class Color editeng::SvxBorderLine::GetColorOut(_Bool) const
    _Bool bLeftOrTop
    1
include/editeng/borderline.hxx:189
    class Color editeng::SvxBorderLine::GetColorIn(_Bool) const
    _Bool bLeftOrTop
    1
include/editeng/boxitem.hxx:162
    _Bool SvxBoxItem::HasBorder(_Bool) const
    _Bool bTreatPaddingAsBorder
    1
include/editeng/editeng.hxx:552
    void EditEngine::dumpAsXmlEditDoc(struct _xmlTextWriter *) const
    struct _xmlTextWriter * pWriter
    0
include/editeng/editeng.hxx:577
    class EditPaM EditEngine::CursorLeft(const class EditPaM &,unsigned short)
    unsigned short nCharacterIteratorMode
    0
include/editeng/editobj.hxx:91
    class rtl::OUString EditTextObject::GetText(enum LineEnd) const
    enum LineEnd eEnd
    1
include/editeng/editobj.hxx:95
    _Bool EditTextObject::HasText(int) const
    int nPara
    0
include/editeng/editobj.hxx:115
    const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
    int nPara
    0
include/editeng/editobj.hxx:115
    const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
    unsigned long nPos
    0
include/editeng/editobj.hxx:115
    const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
    int nType
    1
include/editeng/editview.hxx:343
    int EditView::GetPosWithField(int,int) const
    int nPara
    0
include/editeng/edtdlg.hxx:75
    enum editeng::HangulHanjaConversion::ConversionDirection AbstractHangulHanjaConversionDialog::GetDirection(enum editeng::HangulHanjaConversion::ConversionDirection) const
    enum editeng::HangulHanjaConversion::ConversionDirection _eDefaultDirection
    0
include/editeng/outliner.hxx:244
    void OutlinerView::SelectRange(int,int)
    int nFirst
    0
include/editeng/outliner.hxx:648
    _Bool Outliner::ImpCanDeleteSelectedPages(class OutlinerView *,int,int)
    int nPages
    1
include/editeng/splwrap.hxx:73
    void SvxSpellWrapper::SvxSpellWrapper(class weld::Widget *,const _Bool,const _Bool)
    const _Bool bIsAllRight
    0
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)
    _Bool bInner
    1
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)
    _Bool bVert
    0
include/editeng/urlfieldhelper.hxx:22
    _Bool URLFieldHelper::IsCursorAtURLField(const class OutlinerView *,_Bool)
    _Bool bAlsoCheckBeforeCursor
    1
include/filter/msfilter/escherex.hxx:495
    void EscherExAtom::EscherExAtom(class SvStream &,const unsigned short,const unsigned short,const unsigned char)
    const unsigned char nVersion
    0
include/filter/msfilter/escherex.hxx:587
    void EscherGraphicProvider::WriteBlibStoreEntry(class SvStream &,unsigned int,unsigned int)
    unsigned int nBlipId
    1
include/filter/msfilter/escherex.hxx:797
    void EscherPropertyContainer::CreateFillProperties(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &)
    _Bool bEdge
    1
include/filter/msfilter/escherex.hxx:1141
    void EscherEx::EndAtom(unsigned short,int,int)
    int nRecVersion
    0
include/filter/msfilter/msdffimp.hxx:711
    void SvxMSDffManager::ExchangeInShapeOrder(const class SdrObject *,unsigned long,class SdrObject *) const
    unsigned long nTxBx
    0
include/filter/msfilter/msdffimp.hxx:764
    void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
    unsigned int nId
    0
include/filter/msfilter/msdffimp.hxx:764
    void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
    unsigned short nSeqId
    0
include/filter/msfilter/msdffimp.hxx:764
    void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
    unsigned short nBoxId
    0
include/formula/FormulaCompiler.hxx:380
    void formula::FormulaCompiler::PushTokenArray(class formula::FormulaTokenArray *,_Bool)
    _Bool 
    1
include/formula/token.hxx:291
    void formula::FormulaByteToken::FormulaByteToken(enum OpCode,unsigned char,enum formula::StackVar,enum formula::ParamClass)
    enum formula::ParamClass c
    0
include/formula/tokenarray.hxx:168
    void formula::FormulaTokenArrayReferencesIterator::FormulaTokenArrayReferencesIterator(const class formula::FormulaTokenArrayStandardRange &,enum formula::FormulaTokenArrayReferencesIterator::Dummy)
    enum formula::FormulaTokenArrayReferencesIterator::Dummy 
    0
include/formula/tokenarray.hxx:547
    void formula::FormulaTokenIterator::Item::Item(const class formula::FormulaTokenArray *,short,short,_Bool)
    _Bool lambda
    0
include/formula/tokenarray.hxx:579
    void formula::FormulaTokenIterator::Lambda(_Bool)
    _Bool bOpt
    1
include/formula/vectortoken.hxx:50
    void formula::VectorRefArray::VectorRefArray(enum formula::VectorRefArray::InitInvalid)
    enum formula::VectorRefArray::InitInvalid 
    0
include/i18nutil/widthfolding.hxx:48
    class rtl::OUString i18nutil::widthfolding::compose_ja_voiced_sound_marks(const class rtl::OUString &,int,int,class com::sun::star::uno::Sequence<int> *,int)
    int startPos
    0
include/linguistic/misc.hxx:131
    _Bool IsUpper(const class rtl::OUString &,int,int,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>)
    int nPos
    0
include/o3tl/string_view.hxx:87
    _Bool matchIgnoreAsciiCase(class std::basic_string_view<char16_t>,class std::basic_string_view<char>,int)
    int fromIndex
    0
include/o3tl/string_view.hxx:96
    _Bool endsWithIgnoreAsciiCase(class std::basic_string_view<char16_t>,class std::basic_string_view<char16_t>,class std::basic_string_view<char16_t> *)
    class std::basic_string_view<char16_t> * rest
    0
include/o3tl/string_view.hxx:107
    _Bool endsWithIgnoreAsciiCase(class std::basic_string_view<char16_t>,class std::basic_string_view<char>,class std::basic_string_view<char16_t> *)
    class std::basic_string_view<char16_t> * rest
    0
include/o3tl/string_view.hxx:214
    class std::basic_string_view<char> getToken(class std::basic_string_view<char>,int,char,int &)
    int nToken
    0
include/o3tl/strong_int.hxx:98
    void o3tl::strong_int::strong_int<UNDERLYING_TYPE, PHANTOM_TYPE>(type-parameter-?-?,typename enable_if<std::is_integral<T>::value, int>::type)
    typename enable_if<std::is_integral<T>::value, int>::type 
    0
include/o3tl/strong_int.hxx:119
    strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> o3tl::strong_int::operator++(int)
     ###1
    0
include/o3tl/strong_int.hxx:121
    strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> o3tl::strong_int::operator--(int)
     ###1
    0
include/o3tl/unit_conversion.hxx:230
    auto convert(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,_Bool &,long)
    long nDefault
    0
include/oox/core/contexthandler2.hxx:214
    void oox::core::ContextHandler2Helper::addMCEState(enum oox::core::ContextHandler2Helper::MCE_STATE)
    enum oox::core::ContextHandler2Helper::MCE_STATE aState
    0
include/oox/drawingml/shape.hxx:110
    void oox::drawingml::Shape::Shape(const class rtl::OUString &,_Bool)
    _Bool bDefaultHeight
    1
include/oox/export/DMLPresetShapeExport.hxx:117
    struct oox::drawingml::DMLPresetShapeExporter::AdjustmentPointValueBase oox::drawingml::DMLPresetShapeExporter::GetAdjustmentPointRadiusValue(int)
    int nPoint
    0
include/oox/export/DMLPresetShapeExport.hxx:118
    struct oox::drawingml::DMLPresetShapeExporter::AdjustmentPointValueBase oox::drawingml::DMLPresetShapeExporter::GetAdjustmentPointAngleValue(int)
    int nPoint
    0
include/oox/export/drawingml.hxx:366
    class rtl::OUString oox::drawingml::DrawingML::writeGraphicToStorage(const class Graphic &,_Bool,enum oox::drawingml::GraphicExport::TypeHint)
    enum oox::drawingml::GraphicExport::TypeHint eHint
    0
include/oox/export/drawingml.hxx:446
    void oox::drawingml::DrawingML::WriteShapeTransformation(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,int,_Bool,_Bool,_Bool,_Bool,_Bool)
    _Bool bSuppressFlipping
    0
include/oox/export/vmlexport.hxx:144
    const class rtl::OString & oox::vml::VMLExport::AddInlineSdrObject(const class SdrObject &,const _Bool)
    const _Bool bOOxmlExport
    1
include/oox/helper/attributelist.hxx:164
    long oox::AttributeList::getHyper(int,long) const
    long nDefault
    0
include/oox/helper/containerhelper.hxx:98
    void oox::Matrix::Matrix<Type>(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
    typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type nHeight
    1
include/oox/helper/containerhelper.hxx:114
    typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_reference oox::Matrix::operator()(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type) const
    typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type nY
    0
include/oox/helper/helper.hxx:116
    type-parameter-?-? getIntervalValue(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
    type-parameter-?-? nBegin
    0
include/oox/mathml/importutils.hxx:212
    void oox::formulaimport::XmlStream::skipElementInternal(int,_Bool)
    _Bool silent
    0
include/oox/ole/olestorage.hxx:44
    void oox::ole::OleStorage::OleStorage(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> &,_Bool)
    _Bool bBaseStreamAccess
    0
include/oox/ole/olestorage.hxx:57
    void oox::ole::OleStorage::OleStorage(const class oox::ole::OleStorage &,const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> &,const class rtl::OUString &,_Bool)
    _Bool bReadOnly
    1
include/oox/ole/vbacontrol.hxx:189
    void oox::ole::VbaUserForm::VbaUserForm(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XModel> &,const class oox::GraphicHelper &,_Bool)
    _Bool bDefaultColorBgr
    1
include/oox/ole/vbaexport.hxx:91
    void VBACompressionChunk::SetFlagBit(unsigned long,_Bool,unsigned char &)
    _Bool bVal
    1
include/oox/vml/vmldrawing.hxx:69
    void oox::vml::OleObjectInfo::OleObjectInfo(_Bool)
    _Bool bDmlShape
    0
include/oox/vml/vmldrawing.hxx:96
    void oox::vml::Drawing::Drawing(class oox::core::XmlFilterBase &,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> &,enum oox::vml::DrawingType)
    enum oox::vml::DrawingType eType
    1
include/oox/vml/vmlformatting.hxx:126
    int decodeMeasureToHmm(const class oox::GraphicHelper &,class std::basic_string_view<char16_t>,int,_Bool,_Bool)
    int nRefValue
    0
include/oox/vml/vmlformatting.hxx:141
    int decodeMeasureToTwip(const class oox::GraphicHelper &,class std::basic_string_view<char16_t>,int,_Bool,_Bool)
    int nRefValue
    0
include/oox/vml/vmlformatting.hxx:141
    int decodeMeasureToTwip(const class oox::GraphicHelper &,class std::basic_string_view<char16_t>,int,_Bool,_Bool)
    _Bool bDefaultAsPixel
    1
include/opencl/openclwrapper.hxx:61
    _Bool buildProgramFromBinary(const char *,struct openclwrapper::GPUEnv *,const char *,int)
    int idx
    0
include/opencl/openclwrapper.hxx:86
    void setOpenCLCmdQueuePosition(int)
    int nPos
    0
include/package/Deflater.hxx:45
    int ZipUtils::Deflater::doDeflateBytes(class com::sun::star::uno::Sequence<signed char> &,int,int)
    int nNewOffset
    0
include/package/Deflater.hxx:49
    void ZipUtils::Deflater::Deflater(int,_Bool)
    _Bool bNowrap
    1
include/package/Inflater.hxx:43
    void ZipUtils::Inflater::Inflater(_Bool)
    _Bool bNoWrap
    1
include/package/Inflater.hxx:69
    int ZipUtils::InflaterBytes::doInflateSegment(signed char *,int,int,int)
    int nNewOffset
    0
include/sax/tools/converter.hxx:218
    _Bool sax::Converter::convert10thDegAngle(short &,class std::basic_string_view<char16_t>,_Bool)
    _Bool isWrongOOo10thDegAngle
    1
include/sax/tools/converter.hxx:293
    _Bool sax::Converter::parseDateOrDateTime(struct com::sun::star::util::Date *,struct com::sun::star::util::DateTime &,_Bool &,class std::optional<short> *,class std::basic_string_view<char>)
    struct com::sun::star::util::Date * pDate
    0
include/sax/tools/converter.hxx:293
    _Bool sax::Converter::parseDateOrDateTime(struct com::sun::star::util::Date *,struct com::sun::star::util::DateTime &,_Bool &,class std::optional<short> *,class std::basic_string_view<char>)
    class std::optional<short> * pTimeZoneOffset
    0
include/sfx2/app.hxx:112
    void SfxApplication::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/sfx2/dispatch.hxx:155
    enum ToolbarId SfxDispatcher::GetObjectBarId(unsigned short) const
    unsigned short nPos
    1
include/sfx2/docfile.hxx:182
    void SfxMedium::DisableFileSync(_Bool)
    _Bool bDisableFileSync
    1
include/sfx2/event.hxx:241
    void SfxPrintingHint::SfxPrintingHint(enum com::sun::star::view::PrintableState,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,class SfxObjectShell *,const class com::sun::star::uno::Reference<class com::sun::star::frame::XController2> &)
    enum com::sun::star::view::PrintableState nState
    0
include/sfx2/fcontnr.hxx:109
    void SfxFilterMatcherIter::SfxFilterMatcherIter(const class SfxFilterMatcher &,enum SfxFilterFlags,enum SfxFilterFlags)
    enum SfxFilterFlags nMask
    0
include/sfx2/filedlghelper.hxx:153
    void sfx2::FileDialogHelper::FileDialogHelper(short,enum FileDialogFlags,const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags,class weld::Window *)
    enum SfxFilterFlags nDont
    0
include/sfx2/lokhelper.hxx:146
    void SfxLokHelper::setViewTimezone(int,_Bool,const class rtl::OUString &)
    _Bool isSet
    1
include/sfx2/lokhelper.hxx:177
    void SfxLokHelper::notifyDocumentSizeChangedAllViews(class vcl::ITiledRenderable *,_Bool)
    _Bool bInvalidateAll
    1
include/sfx2/lokhelper.hxx:197
    void SfxLokHelper::notifyUpdatePerViewId(const class SfxViewShell *,int)
    int nType
    1
include/sfx2/module.hxx:58
    void SfxModule::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/sfx2/notebookbar/SfxNotebookBar.hxx:68
    void sfx2::SfxNotebookBar::ShowMenubar(const class SfxViewFrame *,_Bool)
    _Bool bShow
    1
include/sfx2/objsh.hxx:237
    void SfxObjectShell::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/sfx2/objsh.hxx:707
    void SfxObjectShell::AppendInfoBarWhenReady(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,_Bool)
    _Bool bShowCloseButton
    1
include/sfx2/opengrf.hxx:43
    void SvxOpenGraphicDialog::SetPath(const class rtl::OUString &,_Bool)
    _Bool bLinkState
    1
include/sfx2/opengrf.hxx:48
    void SvxOpenGraphicDialog::EnableLink(_Bool)
    _Bool 
    0
include/sfx2/passwd.hxx:132
    void SfxPasswordDialog::ShowMinLengthText(_Bool)
    _Bool bShow
    0
include/sfx2/request.hxx:60
    void SfxRequest::SfxRequest(const class SfxSlot *,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,enum SfxCallMode,class SfxItemPool &)
    enum SfxCallMode nCallMode
    1
include/sfx2/request.hxx:63
    void SfxRequest::SfxRequest(unsigned short,enum SfxCallMode,const class SfxAllItemSet &,const class SfxAllItemSet &)
    enum SfxCallMode nCallMode
    1
include/sfx2/request.hxx:103
    void SfxRequest::AllowRecording(_Bool)
    _Bool 
    1
include/sfx2/sfxdlg.hxx:142
    class VclPtr<class VclAbstractDialog> SfxAbstractDialogFactory::CreateEditObjectDialog(class weld::Window *,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::embed::XEmbeddedObject> &)
    class weld::Window * pParent
    0
include/sfx2/sfxdlg.hxx:158
    void SfxAbstractDialogFactory::ShowAsyncScriptErrorDialog(class weld::Window *,const class com::sun::star::uno::Any &)
    class weld::Window * pParent
    0
include/sfx2/thumbnailview.hxx:211
    void ThumbnailView::ShowTooltips(_Bool)
    _Bool bShowTooltips
    1
include/sfx2/thumbnailview.hxx:213
    void ThumbnailView::DrawMnemonics(_Bool)
    _Bool bDrawMnemonics
    1
include/sfx2/viewfrm.hxx:84
    void SfxViewFrame::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/sfx2/viewsh.hxx:215
    void SfxViewShell::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/sfx2/viewsh.hxx:444
    class Color SfxViewShell::GetColorConfigColor(enum svtools::ColorConfigEntry) const
    enum svtools::ColorConfigEntry nColorType
    0
include/sfx2/weldutils.hxx:53
    void ToolbarUnoDispatcher::ToolbarUnoDispatcher(class weld::Toolbar &,class weld::Builder &,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &,_Bool)
    _Bool bSideBar
    1
include/sot/stg.hxx:157
    void Storage::Storage(class rtl::OUString,enum StreamMode,_Bool)
    _Bool bDirect
    1
include/sot/stg.hxx:247
    void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
    enum StreamMode nMode
    1
include/sot/stg.hxx:247
    void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
    _Bool bDirect
    0
include/sot/stg.hxx:247
    void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
    _Bool bIsRoot
    1
include/sot/stg.hxx:253
    void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
    _Bool bDirect
    1
include/sot/stg.hxx:253
    void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
    _Bool bIsRoot
    1
include/sot/stg.hxx:258
    void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::ucb::XProgressHandler> &)
    _Bool bIsRoot
    0
include/sot/stg.hxx:268
    void UCBStorage::UCBStorage(class SvStream &,_Bool)
    _Bool bDirect
    0
include/sot/storage.hxx:84
    void SotStorage::SotStorage(_Bool,const class rtl::OUString &,enum StreamMode)
    _Bool bUCBStorage
    0
include/store/store.hxx:95
    storeError store::OStoreStream::writeAt(unsigned int,const void *,unsigned int,unsigned int &)
    unsigned int nOffset
    0
include/svl/ctloptions.hxx:84
    _Bool SvtCTLOptions::IsReadOnly(enum SvtCTLOptions::EOption) const
    enum SvtCTLOptions::EOption eOption
    0
include/svl/gridprinter.hxx:29
    void svl::GridPrinter::GridPrinter(unsigned long,unsigned long,_Bool)
    _Bool bPrint
    0
include/svl/itempool.hxx:104
    void ItemInfoUser::ItemInfoUser(const class ItemInfo &,class SfxItemPool &,const class SfxPoolItem &,_Bool)
    _Bool bPassingOwnership
    0
include/svl/itempool.hxx:206
    _Bool SfxItemPool::CheckItemInfoFlag(unsigned short,unsigned short) const
    unsigned short nMask
    1
include/svl/itemset.hxx:182
    const type-parameter-?-? * SfxItemSet::GetItem(const class SfxItemSet *,TypedWhichId<type-parameter-?-?>,_Bool)
    _Bool bSearchInParent
    0
include/svl/itemset.hxx:213
    _Bool SfxItemSet::HasItem(TypedWhichId<type-parameter-?-?>,const type-parameter-?-? **) const
    const type-parameter-?-? ** ppItem
    0
include/svl/numformat.hxx:534
    const struct std::array<class rtl::OUString, 53> & SvNumberFormatter::GetKeywords(unsigned int)
    unsigned int nKey
    0
include/svl/poolitem.hxx:640
    void SfxPoolItem::AddRef(unsigned int) const
    unsigned int n
    1
include/svl/svdde.hxx:131
    void DdeLink::DdeLink(class DdeConnection &,const class rtl::OUString &,long)
    long 
    0
include/svl/typedwhich.hxx:31
    void TypedWhichId::TypedWhichId<T>(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<T, derived_type>, int>::type)
    typename enable_if<std::is_base_of_v<T, derived_type>, int>::type 
    0
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 INetURLObject::EncodeMechanism eEncodeMechanism
    1
include/svl/urihelper.hxx:116
    class rtl::OUString FindFirstURLInText(const class rtl::OUString &,int &,int &,const class CharClass &,enum INetURLObject::EncodeMechanism,unsigned short)
    enum INetURLObject::EncodeMechanism eMechanism
    1
include/svl/urihelper.hxx:153
    class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
    enum INetURLObject::EncodeMechanism eEncodeMechanism
    1
include/svl/zformat.hxx:312
    class rtl::OUString SvNumberformat::GetPercentString(unsigned short) const
    unsigned short nNumFor
    0
include/svl/zformat.hxx:423
    int SvNumberformat::GetQuoteEnd(const class rtl::OUString &,int,char16_t,char16_t)
    char16_t cEscIn
    0
include/svl/zformat.hxx:433
    int SvNumberformat::InsertBlanks(class rtl::OUString &,int,char16_t)
    int nPos
    0
include/svl/zformat.hxx:503
    _Bool SvNumberformat::IsIso8601(unsigned short) const
    unsigned short nNumFor
    0
include/svtools/ctrlbox.hxx:283
    void SvtCalendarBox::SvtCalendarBox(class std::unique_ptr<class weld::MenuButton>,_Bool)
    _Bool bUseLabel
    1
include/svtools/imagemgr.hxx:124
    class Image SvFileInformationManager::GetImage(const class INetURLObject &,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::ucb::XCommandEnvironment> &)
    _Bool bBig
    1
include/svtools/inettbc.hxx:80
    void SvtURLBox::select_entry_region(int,int)
    int nStartPos
    0
include/svtools/ruler.hxx:730
    void Ruler::SetWinPos(long,long)
    long nWidth
    0
include/svtools/stringtransfer.hxx:61
    void svt::OStringTransfer::StartStringDrag(const class rtl::OUString &,class vcl::Window *,signed char)
    signed char _nDragSourceActions
    1
include/svtools/valueset.hxx:295
    void ValueSet::InsertItem(unsigned short,const class Image &,const class rtl::OUString &,unsigned long,_Bool)
    _Bool bShowLegend
    0
include/svtools/valueset.hxx:313
    void ValueSet::EnableFullItemMode(_Bool)
    _Bool bFullMode
    0
include/svtools/valueset.hxx:350
    void ValueSet::SetItemColor(unsigned short,const class Color &)
    unsigned short nItemId
    1
include/svx/ctredlin.hxx:218
    void SvxTPFilter::SelectedAuthorPos(int)
    int nPos
    0
include/svx/ctredlin.hxx:241
    void SvxTPFilter::CheckAction(_Bool)
    _Bool bFlag
    0
include/svx/cuicharmap.hxx:129
    void SvxCharacterMap::SvxCharacterMap(class weld::Widget *,const class SfxItemSet *,class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame>)
    const class SfxItemSet * pSet
    0
include/svx/dlgctrl.hxx:135
    void SvxRectCtl::DoCompletelyDisable(_Bool)
    _Bool bNew
    1
include/svx/extrusionbar.hxx:39
    void svx::ExtrusionBar::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/svx/fmshell.hxx:93
    void FmFormShell::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/svx/fmtools.hxx:77
    void CursorWrapper::CursorWrapper(const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XRowSet> &,_Bool)
    _Bool bUseCloned
    0
include/svx/fmtools.hxx:142
    void FmXDisposeListener::disposing(short)
    short _nId
    0
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> &)
    int _nYOffsetMM
    0
include/svx/fontworkbar.hxx:41
    void svx::FontworkBar::RegisterInterface(const class SfxModule *)
    const class SfxModule * pMod
    0
include/svx/frmsel.hxx:144
    void svx::FrameSelector::SelectAllBorders(_Bool)
    _Bool bSelect
    0
include/svx/gridctrl.hxx:402
    void DbGridControl::RemoveRows(_Bool)
    _Bool bNewCursor
    0
include/svx/IAccessibleParent.hxx:81
    _Bool accessibility::IAccessibleParent::ReplaceChild(class accessibility::AccessibleShape *,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,const long,const class accessibility::AccessibleShapeTreeInfo &)
    const long _nIndex
    0
include/svx/nbdtmg.hxx:131
    unsigned short svx::sidebar::NBOTypeMgrBase::GetNBOIndexForNumRule(class SvxNumRule &,unsigned short,unsigned short)
    unsigned short nFromIndex
    0
include/svx/nbdtmg.hxx:132
    void svx::sidebar::NBOTypeMgrBase::ReplaceNumRule(class SvxNumRule &,unsigned short,unsigned short)
    unsigned short mLevel
    1
include/svx/nbdtmg.hxx:134
    class rtl::OUString svx::sidebar::NBOTypeMgrBase::GetDescription(unsigned short,_Bool)
    _Bool isDefault
    1
include/svx/ParseContext.hxx:40
    void svxform::OSystemParseContext::OSystemParseContext(_Bool)
    _Bool bInit
    0
include/svx/RectangleAlignmentItem.hxx:31
    void SvxRectangleAlignmentItem::SvxRectangleAlignmentItem(unsigned short,enum model::RectangleAlignment)
    enum model::RectangleAlignment nValue
    0
include/svx/relfld.hxx:46
    void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short)
    unsigned short nMin
    0
include/svx/relfld.hxx:58
    long SvxRelativeField::get_min(enum FieldUnit) const
    enum FieldUnit eValueUnit
    0
include/svx/relfld.hxx:71
    void SvxRelativeField::SetFieldUnit(enum FieldUnit,_Bool)
    _Bool bAll
    0
include/svx/rulritem.hxx:129
    void SvxColumnDescription::SvxColumnDescription(long,long,_Bool)
    _Bool bVis
    1
include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:101
    void drawinglayer::primitive2d::SdrFrameBorderPrimitive2D::SdrFrameBorderPrimitive2D(class std::vector<class drawinglayer::primitive2d::SdrFrameBorderData> &&,_Bool)
    _Bool bForceToSingleDiscreteUnit
    1
include/svx/svdhlpln.hxx:43
    void SdrHelpLine::SdrHelpLine(enum SdrHelpLineKind)
    enum SdrHelpLineKind eNewKind
    0
include/svx/svditer.hxx:51
    void SdrObjListIter::SdrObjListIter(const class SdrObjList *,_Bool,enum SdrIterMode,_Bool)
    enum SdrIterMode eMode
    0
include/svx/svditer.hxx:51
    void SdrObjListIter::SdrObjListIter(const class SdrObjList *,_Bool,enum SdrIterMode,_Bool)
    _Bool bReverse
    0
include/svx/svditer.hxx:55
    void SdrObjListIter::SdrObjListIter(const class SdrObject &,enum SdrIterMode,_Bool)
    _Bool bReverse
    0
include/svx/svdmodel.hxx:560
    void SdrModel::SetCompatibilityFlag(enum SdrCompatibilityFlag,_Bool)
    _Bool bEnabled
    1
include/svx/svdundo.hxx:104
    class SdrUndoAction * SdrUndoGroup::GetAction(int) const
    int nNum
    0
include/svx/svdview.hxx:176
    void SdrView::EnableExtendedKeyInputDispatcher(_Bool)
    _Bool bOn
    0
include/svx/svx3ditems.hxx:67
    void Svx3DReducedLineGeometryItem::Svx3DReducedLineGeometryItem(_Bool)
    _Bool bVal
    0
include/svx/svxdlg.hxx:69
    void AbstractSvxZoomDialog::HideButton(enum ZoomButtonId)
    enum ZoomButtonId nBtnId
    1
include/svx/SvxPresetListBox.hxx:58
    void SvxPresetListBox::FillPresetListBox(class XGradientList &,unsigned int)
    unsigned int nStartIndex
    1
include/svx/SvxPresetListBox.hxx:59
    void SvxPresetListBox::FillPresetListBox(class XHatchList &,unsigned int)
    unsigned int nStartIndex
    1
include/svx/SvxPresetListBox.hxx:60
    void SvxPresetListBox::FillPresetListBox(class XBitmapList &,unsigned int)
    unsigned int nStartIndex
    1
include/svx/SvxPresetListBox.hxx:61
    void SvxPresetListBox::FillPresetListBox(class XPatternList &,unsigned int)
    unsigned int nStartIndex
    1
include/svx/sxenditm.hxx:65
    void SdrEdgeNode1GlueDistItem::SdrEdgeNode1GlueDistItem(long)
    long nVal
    0
include/svx/sxenditm.hxx:73
    void SdrEdgeNode2GlueDistItem::SdrEdgeNode2GlueDistItem(long)
    long nVal
    0
include/svx/sxmtfitm.hxx:33
    void SdrMeasureTextIsFixedAngleItem::SdrMeasureTextIsFixedAngleItem(_Bool)
    _Bool bOn
    0
include/svx/sxmtritm.hxx:44
    void SdrMeasureTextUpsideDownItem::SdrMeasureTextUpsideDownItem(_Bool)
    _Bool bOn
    0
include/svx/unoshtxt.hxx:43
    void SvxTextEditSource::SvxTextEditSource(class SdrObject &,class SdrText *,class SdrView &,const class OutputDevice &)
    class SdrText * pText
    0
include/svx/xflbmsli.hxx:30
    void XFillBmpSizeLogItem::XFillBmpSizeLogItem(_Bool)
    _Bool bLog
    1
include/svx/xflftrit.hxx:41
    void XFillFloatTransparenceItem::XFillFloatTransparenceItem(const class rtl::OUString &,const class basegfx::BGradient &,_Bool)
    _Bool bEnable
    1
include/svx/xtable.hxx:226
    class rtl::Reference<class XPropertyList> XPropertyList::CreatePropertyListFromURL(enum XPropertyListType,class std::basic_string_view<char16_t>)
    enum XPropertyListType t
    0
include/test/a11y/accessibletestbase.hxx:70
    void test::AccessibleTestBase::documentPostKeyEvent(int,int,int)
    int nType
    0
include/test/a11y/accessibletestbase.hxx:220
    void test::AccessibleTestBase::Dialog::close(int)
    int result
    0
include/test/a11y/accessibletestbase.hxx:303
    class std::shared_ptr<class test::AccessibleTestBase::DialogWaiter> test::AccessibleTestBase::awaitDialog(const class std::basic_string_view<char16_t>,class std::function<void (class test::AccessibleTestBase::Dialog &)>,_Bool)
    _Bool bAutoClose
    1
include/test/a11y/eventposter.hxx:42
    void test::EventPosterHelperBase::postKeyEventAsync(int,int) const
    int nCharCode
    0
include/test/sheet/xactivationbroadcaster.hxx:24
    class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XActivationBroadcaster::getXSpreadsheet(const short)
    const short nNumber
    1
include/test/sheet/xdocumentauditing.hxx:35
    _Bool apitest::XDocumentAuditing::hasRightAmountOfShapes(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> &,int,int)
    int nShapes
    1
include/test/sheet/xnamedranges.hxx:40
    class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XNamedRanges::getXNamedRanges(int)
    int nSheet
    1
include/test/text/textcontent.hxx:25
    void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
    const enum com::sun::star::text::TextContentAnchorType aExpectedTCAT
    1
include/test/text/textcontent.hxx:25
    void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
    const enum com::sun::star::text::TextContentAnchorType aNewTCAT
    1
include/test/text/textcontent.hxx:25
    void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
    const enum com::sun::star::text::WrapTextMode aExpectedWTM
    0
include/test/text/textcontent.hxx:25
    void apitest::TextContent::TextContent(const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::TextContentAnchorType,const enum com::sun::star::text::WrapTextMode,const enum com::sun::star::text::WrapTextMode)
    const enum com::sun::star::text::WrapTextMode aNewWTM
    0
include/test/xmltesttools.hxx:134
    void XmlTestTools::assertXPathChildren(const class std::unique_ptr<struct _xmlDoc, struct xmlDocDeleter> &,const class rtl::OString &,int)
    int nNumberOfChildNodes
    1
include/tools/color.hxx:87
    void Color::Color(enum ColorTransparencyTag,unsigned int)
    enum ColorTransparencyTag 
    0
include/tools/color.hxx:92
    void Color::Color(enum ColorAlphaTag,unsigned int)
    enum ColorAlphaTag 
    0
include/tools/color.hxx:97
    void Color::Color(enum ColorTransparencyTag,unsigned char,unsigned char,unsigned char,unsigned char)
    enum ColorTransparencyTag 
    0
include/tools/color.hxx:101
    void Color::Color(enum ColorAlphaTag,unsigned char,unsigned char,unsigned char,unsigned char)
    enum ColorAlphaTag 
    0
include/tools/date.hxx:73
    void Date::Date(enum Date::DateInitEmpty)
    enum Date::DateInitEmpty 
    0
include/tools/date.hxx:74
    void Date::Date(enum Date::DateInitSystem)
    enum Date::DateInitSystem 
    0
include/tools/datetime.hxx:47
    void DateTime::DateTime(enum DateTime::DateTimeInitEmpty)
    enum DateTime::DateTimeInitEmpty 
    0
include/tools/datetime.hxx:48
    void DateTime::DateTime(enum DateTime::DateTimeInitSystem)
    enum DateTime::DateTimeInitSystem 
    0
include/tools/debug.hxx:40
    void DbgTestSolarMutex(_Bool)
    _Bool owned
    1
include/tools/fract.hxx:42
    void Fraction::Fraction(type-parameter-?-?,type-parameter-?-?,typename enable_if<std::is_integral<T1>::value && std::is_integral<T2>::value, int>::type)
    typename enable_if<std::is_integral<T1>::value && std::is_integral<T2>::value, int>::type 
    0
include/tools/Guid.hxx:85
    void tools::Guid::Guid(enum tools::Guid::GenerateTag)
    enum tools::Guid::GenerateTag 
    0
include/tools/lazydelete.hxx:81
    void tools::DeleteOnDeinit::DeleteOnDeinit<T>(enum tools::DeleteOnDeinitFlag)
    enum tools::DeleteOnDeinitFlag 
    0
include/tools/stream.hxx:647
    void SvMemoryStream::ObjectOwnsMemory(_Bool)
    _Bool bOwn
    1
include/tools/time.hxx:81
    void tools::Time::Time(enum tools::Time::TimeInitEmpty)
    enum tools::Time::TimeInitEmpty 
    0
include/tools/time.hxx:83
    void tools::Time::Time(enum tools::Time::TimeInitSystem)
    enum tools::Time::TimeInitSystem 
    0
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)
    enum INetURLObject::EncodeMechanism eEncodeMechanism
    1
include/tools/urlobj.hxx:822
    class rtl::OUString INetURLObject::encode(class std::basic_string_view<char16_t>,enum INetURLObject::Part,enum INetURLObject::EncodeMechanism,unsigned short)
    enum INetURLObject::EncodeMechanism eMechanism
    0
include/tools/zcodec.hxx:82
    void ZCodec::SetCompressionMetadata(const class rtl::OString &,unsigned int,unsigned int)
    unsigned int nLastModifiedTime
    0
include/unotools/calendarwrapper.hxx:61
    void CalendarWrapper::loadDefaultCalendar(const struct com::sun::star::lang::Locale &,_Bool)
    _Bool bTimeZoneUTC
    1
include/unotools/calendarwrapper.hxx:63
    void CalendarWrapper::loadCalendar(const class rtl::OUString &,const struct com::sun::star::lang::Locale &,_Bool)
    _Bool bTimeZoneUTC
    1
include/unotools/charclass.hxx:129
    class rtl::OUString CharClass::titlecase(const class rtl::OUString &,int,int) const
    int nPos
    0
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)
    enum utl::OConfigurationTreeRoot::CREATION_MODE _eMode
    1
include/unotools/fontdefs.hxx:55
    void ConvertChar::RecodeString(class rtl::OUString &,int,int) const
    int nIndex
    0
include/unotools/historyoptions.hxx:84
    void DeleteItem(enum EHistoryType,const class rtl::OUString &,const _Bool)
    enum EHistoryType eHistory
    0
include/unotools/historyoptions.hxx:88
    void TogglePinItem(enum EHistoryType,const class rtl::OUString &)
    enum EHistoryType eHistory
    0
include/unotools/mediadescriptor.hxx:260
    class com::sun::star::uno::Sequence<struct com::sun::star::beans::NamedValue> utl::MediaDescriptor::requestAndVerifyDocPassword(class comphelper::IDocPasswordVerifier &,enum comphelper::DocPasswordRequestType,const class std::vector<class rtl::OUString> *)
    enum comphelper::DocPasswordRequestType eRequestType
    1
include/unotools/nativenumberwrapper.hxx:46
    class rtl::OUString NativeNumberWrapper::getNativeNumberString(const class rtl::OUString &,const struct com::sun::star::lang::Locale &,short) const
    short nNativeNumberMode
    0
include/unotools/sharedunocomponent.hxx:163
    void utl::SharedUNOComponent::SharedUNOComponent<INTERFACE, COMPONENT>(const class com::sun::star::uno::BaseReference &,enum com::sun::star::uno::UnoReference_QueryThrow)
    enum com::sun::star::uno::UnoReference_QueryThrow _queryThrow
    0
include/unotools/sharedunocomponent.hxx:180
    _Bool utl::SharedUNOComponent::set(const class com::sun::star::uno::BaseReference &,enum com::sun::star::uno::UnoReference_Query)
    enum com::sun::star::uno::UnoReference_Query _query
    0
include/unotools/sharedunocomponent.hxx:184
    void utl::SharedUNOComponent::set(const Reference<type-parameter-?-?> &,enum com::sun::star::uno::UnoReference_SetThrow)
    enum com::sun::star::uno::UnoReference_SetThrow _setThrow
    0
include/unotools/sharedunocomponent.hxx:185
    void utl::SharedUNOComponent::set(const SharedUNOComponent<INTERFACE, COMPONENT> &,enum com::sun::star::uno::UnoReference_SetThrow)
    enum com::sun::star::uno::UnoReference_SetThrow _setThrow
    0
include/unotools/streamwrap.hxx:163
    void utl::OStreamWrapper::OStreamWrapper(class SvStream *,_Bool)
    _Bool _bOwner
    0
include/unotools/transliterationwrapper.hxx:82
    class rtl::OUString utl::TransliterationWrapper::transliterate(const class rtl::OUString &,int,int) const
    int nStart
    0
include/unotools/transliterationwrapper.hxx:98
    _Bool utl::TransliterationWrapper::equals(const class rtl::OUString &,int,int,int &,const class rtl::OUString &,int,int,int &) const
    int nPos2
    0
include/unotools/ucbstreamhelper.hxx:47
    class std::unique_ptr<class SvStream> utl::UcbStreamHelper::CreateStream(const class rtl::OUString &,enum StreamMode,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::awt::XWindow> &,_Bool)
    _Bool bUseSimpleFileAccessInteraction
    1
include/vbahelper/vbaeventshelperbase.hxx:89
    void VbaEventsHelperBase::checkArgumentType(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int)
    int nIndex
    0
include/vbahelper/vbahelper.hxx:118
    class rtl::OUString extractStringFromAny(const class com::sun::star::uno::Any &,const class rtl::OUString &,_Bool)
    _Bool bUppercaseBool
    1
include/vcl/abstdlg.hxx:107
    void AbstractPasswordToOpenModifyDialog::Response(int)
    int 
    0
include/vcl/accessibletableprovider.hxx:110
    _Bool vcl::IAccessibleTableProvider::GetGlyphBoundRects(const class Point &,const class rtl::OUString &,int,int,class std::vector<class tools::Rectangle> &)
    int nIndex
    0
include/vcl/alpha.hxx:85
    _Bool AlphaMask::Scale(const class Size &,enum BmpScaleFlag)
    enum BmpScaleFlag nScaleFlag
    1
include/vcl/alpha.hxx:90
    _Bool AlphaMask::Convert(enum BmpConversion)
    enum BmpConversion eConversion
    1
include/vcl/bitmap.hxx:392
    class Bitmap Bitmap::CreateMask(const class Color &,unsigned char) const
    unsigned char nTol
    1
include/vcl/bitmap/BitmapBasicMorphologyFilter.hxx:43
    void BitmapErodeFilter::BitmapErodeFilter(int)
    int nRadius
    1
include/vcl/bitmap/BitmapFilter.hxx:29
    void generateStripRanges(long,long,class std::function<void (long, long, _Bool)>)
    long nFirst
    0
include/vcl/BitmapColor.hxx:31
    void BitmapColor::BitmapColor(enum ColorTransparencyTag,unsigned char,unsigned char,unsigned char,unsigned char)
    enum ColorTransparencyTag 
    0
include/vcl/BitmapColor.hxx:32
    void BitmapColor::BitmapColor(enum ColorAlphaTag,unsigned char,unsigned char,unsigned char,unsigned char)
    enum ColorAlphaTag 
    0
include/vcl/dibtools.hxx:40
    _Bool ReadDIB(class Bitmap &,class SvStream &,_Bool,_Bool)
    _Bool bMSOFormat
    0
include/vcl/embeddedfontshelper.hxx:54
    class rtl::OUString EmbeddedFontsHelper::fontFileUrl(class std::basic_string_view<char16_t>,enum FontFamily,enum FontItalic,enum FontWeight,enum FontPitch,enum EmbeddedFontsHelper::FontRights)
    enum EmbeddedFontsHelper::FontRights rights
    0
include/vcl/fieldvalues.hxx:38
    _Bool TextToValue(const class rtl::OUString &,double &,long,unsigned short,const class LocaleDataWrapper &,enum FieldUnit)
    long nBaseValue
    0
include/vcl/filter/PDFiumLibrary.hxx:68
    class std::unique_ptr<class vcl::pdf::PDFiumBitmap> vcl::pdf::PDFium::createBitmap(int &,int &,int)
    int nAlpha
    1
include/vcl/filter/PDFiumLibrary.hxx:77
    void vcl::pdf::PDFiumBitmap::fillRect(int,int,int,int,unsigned int)
    int left
    0
include/vcl/filter/PDFiumLibrary.hxx:77
    void vcl::pdf::PDFiumBitmap::fillRect(int,int,int,int,unsigned int)
    int top
    0
include/vcl/filter/PDFiumLibrary.hxx:78
    void vcl::pdf::PDFiumBitmap::renderPageBitmap(class vcl::pdf::PDFiumDocument *,class vcl::pdf::PDFiumPage *,int,int,int,int)
    int nStartX
    0
include/vcl/filter/PDFiumLibrary.hxx:78
    void vcl::pdf::PDFiumBitmap::renderPageBitmap(class vcl::pdf::PDFiumDocument *,class vcl::pdf::PDFiumPage *,int,int,int,int)
    int nStartY
    0
include/vcl/filter/PDFiumLibrary.hxx:211
    class std::unique_ptr<class vcl::pdf::PDFiumStructureElement> vcl::pdf::PDFiumStructureTree::getChild(int)
    int nIndex
    0
include/vcl/filter/PDFiumLibrary.hxx:281
    class std::unique_ptr<class vcl::pdf::PDFiumAttachment> vcl::pdf::PDFiumDocument::getAttachment(int)
    int nIndex
    0
include/vcl/font/Feature.hxx:49
    void vcl::font::FeatureParameter::FeatureParameter(unsigned int,class rtl::OUString)
    unsigned int nCode
    0
include/vcl/glyphitemcache.hxx:46
    const class SalLayoutGlyphs * SalLayoutGlyphsCache::GetLayoutGlyphs(const class VclPtr<const class OutputDevice> &,const class rtl::OUString &,const class vcl::text::TextLayoutCache *)
    const class vcl::text::TextLayoutCache * layoutCache
    0
include/vcl/glyphitemcache.hxx:56
    const class SalLayoutGlyphs * SalLayoutGlyphsCache::GetLayoutGlyphs(const class VclPtr<const class OutputDevice> &,const class rtl::OUString &,int,int,int,int,long,const class vcl::text::TextLayoutCache *)
    long nLogicWidth
    0
include/vcl/image.hxx:47
    void Image::Image(enum StockImage,const class rtl::OUString &)
    enum StockImage 
    0
include/vcl/menu.hxx:254
    _Bool Menu::HasValidEntries(_Bool) const
    _Bool bCheckPopups
    1
include/vcl/mtfxmldump.hxx:51
    void MetafileXmlDump::filterActionType(const enum MetaActionType,_Bool)
    _Bool bShouldFilter
    0
include/vcl/outdev.hxx:411
    _Bool OutputDevice::SupportsOperation(enum OutDevSupportType) const
    enum OutDevSupportType 
    0
include/vcl/outdev.hxx:1070
    void OutputDevice::GetCaretPositions(const class rtl::OUString &,class std::vector<double> &,int,int,const class SalLayoutGlyphs *) const
    int nIndex
    0
include/vcl/outdev.hxx:1070
    void OutputDevice::GetCaretPositions(const class rtl::OUString &,class std::vector<double> &,int,int,const class SalLayoutGlyphs *) const
    const class SalLayoutGlyphs * pGlyphs
    0
include/vcl/outdev.hxx:1112
    void OutputDevice::ImplDrawWaveTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool)
    long nY
    0
include/vcl/outdev.hxx:1113
    void OutputDevice::ImplDrawStraightTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool)
    long nY
    0
include/vcl/outdev.hxx:1114
    void OutputDevice::ImplDrawStrikeoutLine(long,long,long,long,long,enum FontStrikeout,class Color)
    long nY
    0
include/vcl/outdev.hxx:1115
    void OutputDevice::ImplDrawStrikeoutChar(long,long,long,long,long,enum FontStrikeout,class Color)
    long nY
    0
include/vcl/outdev.hxx:1135
    void OutputDevice::RefreshFontData(const _Bool)
    const _Bool bNewFontLists
    1
include/vcl/outdev.hxx:1288
    _Bool OutputDevice::GetTextIsRTL(const class rtl::OUString &,int,int) const
    int nIndex
    0
include/vcl/outdev/ScopedStates.hxx:25
    void vcl::ScopedAntialiasing::ScopedAntialiasing(class OutputDevice &,_Bool)
    _Bool bAAState
    1
include/vcl/pdfread.hxx:27
    unsigned long RenderPDFBitmaps(const void *,int,class std::vector<class BitmapEx> &,unsigned long,int,const class basegfx::B2DTuple *)
    int nPages
    1
include/vcl/print.hxx:226
    void Printer::ResetPrintArea(_Bool)
    _Bool bReset
    1
include/vcl/settings.hxx:741
    void AllSettings::SetLanguageTag(const class rtl::OUString &,_Bool)
    _Bool bCanonicalize
    1
include/vcl/splitwin.hxx:139
    void SplitWindow::InsertItem(unsigned short,long,unsigned short,unsigned short,enum SplitWindowItemFlags)
    unsigned short nIntoSetId
    0
include/vcl/splitwin.hxx:160
    long SplitWindow::GetItemSize(unsigned short,enum SplitWindowItemFlags) const
    enum SplitWindowItemFlags nBits
    1
include/vcl/status.hxx:33
    void DrawProgress(class vcl::Window *,class OutputDevice &,const class Point &,long,long,long,unsigned short,unsigned short,unsigned short,const class tools::Rectangle &,enum ControlType)
    unsigned short nPercent1
    0
include/vcl/syschild.hxx:50
    void SystemChildWindow::EnableEraseBackground(_Bool)
    _Bool bEnable
    0
include/vcl/TaskStopwatch.hxx:75
    void TaskStopwatch::TaskStopwatch(_Bool)
    _Bool bConciderLastIterTime
    1
include/vcl/texteng.hxx:258
    void TextEngine::UndoActionStart(unsigned short)
    unsigned short nId
    0
include/vcl/timer.hxx:55
    void Timer::Invoke(class Timer *)
    class Timer * arg
    0
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)
    enum ToolBoxItemBits nBits
    0
include/vcl/toolbox.hxx:313
    void ToolBox::InsertWindow(struct o3tl::strong_int<unsigned short, struct ToolBoxItemIdTag>,class vcl::Window *,enum ToolBoxItemBits,unsigned long)
    enum ToolBoxItemBits nBits
    0
include/vcl/toolbox.hxx:362
    void ToolBox::SetItemWindowNonInteractive(struct o3tl::strong_int<unsigned short, struct ToolBoxItemIdTag>,_Bool)
    _Bool bNonInteractive
    1
include/vcl/toolbox.hxx:427
    class Size ToolBox::CalcWindowSizePixel(unsigned long,enum WindowAlign)
    unsigned long nCalcLines
    1
include/vcl/toolbox.hxx:448
    void ToolBox::EnableCustomize(_Bool)
    _Bool bEnable
    1
include/vcl/toolkit/edit.hxx:99
    void Edit::ImplClearBackground(class OutputDevice &,const class tools::Rectangle &,long,long)
    long nXStart
    0
include/vcl/toolkit/field.hxx:89
    void FormatterBase::EnableEmptyFieldValue(_Bool)
    _Bool bEnable
    1
include/vcl/toolkit/treelistbox.hxx:554
    class SvTreeListEntry * SvTreeListBox::InsertEntry(const class rtl::OUString &,class SvTreeListEntry *,_Bool,unsigned int,void *)
    _Bool bChildrenOnDemand
    0
include/vcl/toolkit/treelistbox.hxx:617
    void SvTreeListBox::MakeVisible(class SvTreeListEntry *,_Bool)
    _Bool bMoveToTop
    1
include/vcl/toolkit/treelistbox.hxx:629
    struct std::pair<long, long> SvTreeListBox::GetItemPos(class SvTreeListEntry *,unsigned short)
    unsigned short nTabIdx
    0
include/vcl/toolkit/treelistbox.hxx:637
    unsigned int SvTreeListBox::SelectChildren(class SvTreeListEntry *,_Bool)
    _Bool bSelect
    0
include/vcl/toolkit/treelistbox.hxx:645
    void SvTreeListBox::SetHighlightRange(unsigned short,unsigned short)
    unsigned short nFirstTab
    0
include/vcl/toolkit/treelistentry.hxx:104
    void SvTreeListEntry::ReplaceItem(class std::unique_ptr<class SvLBoxItem>,unsigned long)
    unsigned long nPos
    0
include/vcl/vclptr.hxx:43
    _Bool isIncompleteOrDerivedFromVclReferenceBase(int (*)[sizeof(T)])
    int (*)[sizeof(T)] 
    0
include/vcl/vclptr.hxx:81
    void VclPtr::VclPtr<reference_type>(type-parameter-?-? *,enum __sal_NoAcquire)
    enum __sal_NoAcquire 
    0
include/vcl/vclptr.hxx:94
    void VclPtr::VclPtr<reference_type>(const VclPtr<type-parameter-?-?> &,typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type)
    typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type 
    0
include/vcl/vclptr.hxx:342
    void ScopedVclPtr::ScopedVclPtr<reference_type>(const VclPtr<type-parameter-?-?> &,typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type)
    typename enable_if<std::is_base_of<reference_type, derived_type>::value, int>::type 
    0
include/vcl/vclptr.hxx:389
    void ScopedVclPtr::ScopedVclPtr<reference_type>(type-parameter-?-? *,enum __sal_NoAcquire)
    enum __sal_NoAcquire 
    0
include/vcl/vectorgraphicdata.hxx:37
    class BitmapEx convertPrimitive2DSequenceToBitmapEx(const class std::deque<class com::sun::star::uno::Reference<class com::sun::star::graphic::XPrimitive2D> > &,const class basegfx::B2DRange &,const unsigned int,const enum o3tl::Length,const class std::optional<class Size> &)
    const enum o3tl::Length eTargetUnit
    0
include/vcl/vectorgraphicdata.hxx:84
    void VectorGraphicData::VectorGraphicData(class BinaryDataContainer,enum VectorGraphicDataType,int)
    enum VectorGraphicDataType eVectorDataType
    0
include/vcl/weld.hxx:423
    void weld::Grid::set_child_column_span(class weld::Widget &,int)
    int nCols
    1
include/vcl/weld.hxx:479
    void weld::ScrolledWindow::vadjustment_set_lower(int)
    int lower
    0
include/vcl/weld.hxx:1223
    _Bool weld::TreeView::get_sensitive(const class weld::TreeIter &,int) const
    int col
    0
include/vcl/weld.hxx:1225
    _Bool weld::TreeView::get_text_emphasis(const class weld::TreeIter &,int) const
    int col
    0
include/vcl/weld.hxx:1526
    class std::unique_ptr<class weld::TreeIter> weld::IconView::make_iterator(const class weld::TreeIter *) const
    const class weld::TreeIter * pOrig
    0
include/vcl/weld.hxx:2550
    class rtl::OUString weld::Menu::popup_at_rect(class weld::Widget *,const class tools::Rectangle &,enum weld::Placement)
    enum weld::Placement ePlace
    0
include/vcl/window.hxx:574
    void vcl::Window::ImplSetMouseTransparent(_Bool)
    _Bool bTransparent
    1
include/vcl/window.hxx:877
    void vcl::Window::Disable(_Bool)
    _Bool bChild
    1
include/vcl/window.hxx:1488
    void vcl::Window::SetSettings(const class AllSettings &,_Bool)
    _Bool bChild
    1
include/vcl/window.hxx:1490
    class tools::Rectangle vcl::Window::GetTextRect(const class tools::Rectangle &,const class rtl::OUString &,enum DrawTextFlags,class TextRectInfo *,const class vcl::TextLayoutCommon *) const
    const class vcl::TextLayoutCommon * _pTextLayout
    0
include/vcl/window.hxx:1514
    long vcl::Window::GetTextWidth(const class rtl::OUString &,int,int,const class vcl::text::TextLayoutCache *,const class SalLayoutGlyphs *const) const
    const class vcl::text::TextLayoutCache * 
    0
include/vcl/wmf.hxx:33
    _Bool ConvertGraphicToWMF(const class Graphic &,class SvStream &,const class FilterConfigItem *,_Bool)
    _Bool bPlaceable
    1
include/xmloff/maptype.hxx:118
    void XMLPropertyMapEntry::XMLPropertyMapEntry(nullptr_t)
    nullptr_t 
    0
include/xmloff/numehelp.hxx:93
    void XMLNumberFormatAttributesExportHelper::SetNumberFormatAttributes(class SvXMLExport &,const class rtl::OUString &,class std::basic_string_view<char16_t>,_Bool,_Bool)
    _Bool bExportTypeAttribute
    1
include/xmloff/ProgressBarHelper.hxx:47
    void ProgressBarHelper::ProgressBarHelper(class com::sun::star::uno::Reference<class com::sun::star::task::XStatusIndicator>,const _Bool)
    const _Bool bStrict
    1
include/xmloff/SchXMLImportHelper.hxx:95
    class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> SchXMLImportHelper::GetNewDataSeries(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,const class rtl::OUString &,_Bool)
    int nCoordinateSystemIndex
    0
include/xmloff/txtparae.hxx:227
    void XMLTextParagraphExport::exportText(const class com::sun::star::uno::Reference<class com::sun::star::text::XText> &,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextSection> &,_Bool,_Bool,_Bool)
    _Bool bExportParagraph
    1
include/xmloff/txtparae.hxx:269
    void XMLTextParagraphExport::exportTextFrame(const class com::sun::star::uno::Reference<class com::sun::star::text::XTextContent> &,_Bool,_Bool,_Bool,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> *)
    _Bool bExportContent
    1
include/xmloff/xmlaustp.hxx:115
    class rtl::OUString SvXMLAutoStylePoolP::Add(enum XmlStyleFamily,const class rtl::OUString &,class std::vector<struct XMLPropertyState> &&,_Bool)
    _Bool bDontSeek
    0
include/xmloff/XMLEventExport.hxx:89
    void XMLEventExport::Export(const class com::sun::star::uno::Reference<class com::sun::star::document::XEventsSupplier> &,_Bool)
    _Bool bUseWhitespace
    1
include/xmloff/xmlnumi.hxx:70
    void SvxXMLListStyleContext::SetDefaultStyle(const class com::sun::star::uno::Reference<class com::sun::star::container::XIndexReplace> &,short,_Bool)
    _Bool bOrdered
    0
include/xmloff/XMLPageExport.hxx:87
    void XMLPageExport::collectAutoStyles(_Bool)
    _Bool bUsed
    0
l10ntools/inc/common.hxx:50
    void writePoEntry(const class rtl::OString &,class PoOfstream &,const class rtl::OString &,class std::basic_string_view<char>,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,const enum PoEntry::TYPE)
    const enum PoEntry::TYPE eType
    0
l10ntools/inc/po.hxx:112
    void PoOfstream::PoOfstream(const class rtl::OString &,enum PoOfstream::OpenMode)
    enum PoOfstream::OpenMode aMode
    1
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:54
    void gtv_main_toolbar_doc_loaded(struct GtvMainToolbar *,LibreOfficeKitDocumentType,_Bool)
    _Bool bEditMode
    1
libreofficekit/qa/tilebench/tilebench.cxx:72
    void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int)
    const int nOffX
    0
libreofficekit/qa/tilebench/tilebench.cxx:72
    void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int)
    const int nOffY
    0
libreofficekit/qa/tilebench/tilebench.cxx:155
    void testTile(class lok::Document *,int,int,_Bool)
    _Bool dump
    1
lingucomponent/source/spellcheck/languagetool/languagetoolimp.cxx:199
    class std::basic_string<char> makeHttpRequest(class std::basic_string_view<char16_t>,enum (anonymous namespace)::HTTP_METHOD,const class rtl::OString &,long &,CURLcode &)
    enum (anonymous namespace)::HTTP_METHOD method
    1
lotuswordpro/inc/xfilter/xfborders.hxx:90
    void XFBorder::SetDoubleLine(_Bool,_Bool)
    _Bool dual
    1
lotuswordpro/inc/xfilter/xfborders.hxx:90
    void XFBorder::SetDoubleLine(_Bool,_Bool)
    _Bool bSameWidth
    0
lotuswordpro/inc/xfilter/xfcellstyle.hxx:108
    void XFCellStyle::SetAlignType(enum enumXFAlignType,enum enumXFAlignType)
    enum enumXFAlignType hori
    0
lotuswordpro/inc/xfilter/xfdrawstyle.hxx:118
    void XFDrawStyle::SetFontWorkStyle(enum enumXFFWStyle,enum enumXFFWAdjust)
    enum enumXFFWAdjust eAdjust
    0
lotuswordpro/inc/xfilter/xfframestyle.hxx:127
    void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool)
    _Bool content
    1
lotuswordpro/inc/xfilter/xfframestyle.hxx:127
    void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool)
    _Bool size
    1
lotuswordpro/inc/xfilter/xfframestyle.hxx:127
    void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool)
    _Bool pos
    1
lotuswordpro/inc/xfilter/xfindex.hxx:100
    void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
    double len
    0
lotuswordpro/inc/xfilter/xfparastyle.hxx:175
    void XFParaStyle::SetDropCap(short,short,double)
    double fDistance
    0
lotuswordpro/inc/xfilter/xfutil.hxx:91
    class rtl::OUString GetColorMode(enum enumXFColorMode)
    enum enumXFColorMode mode
    0
lotuswordpro/source/filter/bento.hxx:201
    class OpenStormBento::CBenObject * OpenStormBento::LtcBenContainer::FindNextObjectWithProperty(class OpenStormBento::CBenObject *,unsigned int)
    class OpenStormBento::CBenObject * pCurrObject
    0
lotuswordpro/source/filter/clone.hxx:26
    char & detail::has_clone::check_sig(type-parameter-?-? *,test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> *)
    type-parameter-?-? * 
    0
lotuswordpro/source/filter/clone.hxx:26
    char & detail::has_clone::check_sig(type-parameter-?-? *,test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> *)
    test<type-parameter-?-? *(type-parameter-?-?::*)(void) const, &U::clone> * 
    0
lotuswordpro/source/filter/lwpnumericfmt.hxx:113
    void LwpCurrencyInfo::LwpCurrencyInfo(class rtl::OUString,_Bool,_Bool)
    _Bool bShowSpace_
    1
o3tl/qa/cow_wrapper_clients.hxx:42
    void o3tltests::cow_wrapper_client1::cow_wrapper_client1(int)
    int nVal
    1
oox/inc/drawingml/chart/typegroupconverter.hxx:159
    void oox::drawingml::chart::TypeGroupConverter::convertLineSmooth(class oox::PropertySet &,_Bool) const
    _Bool bOoxSmooth
    1
oox/inc/drawingml/textspacing.hxx:42
    void oox::drawingml::TextSpacing::TextSpacing(int)
    int nPoints
    0
oox/qa/unit/drawingml.cxx:48
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> getChildShape(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,int)
    int nIndex
    0
oox/qa/unit/shape.cxx:49
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> getChildShape(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,int)
    int nIndex
    0
oox/qa/unit/testscene3d.cxx:43
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> TestScene3d::getShape(unsigned char,unsigned char)
    unsigned char nPageIndex
    0
oox/source/drawingml/lineproperties.cxx:48
    void lclSetDashData(struct com::sun::star::drawing::LineDash &,short,int,short,int,int)
    short nDots
    1
oox/source/export/chartexport.cxx:269
    int lcl_getCategoryAxisType(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XDiagram> &,int,int)
    int nDimensionIndex
    0
oox/source/ppt/pptshape.cxx:708
    _Bool Placeholders::hasByPrio(unsigned long) const
    unsigned long aIndex
    0
oox/source/ppt/timenodelistcontext.cxx:106
    void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
    short cs
    0
oox/source/ppt/timenodelistcontext.cxx:106
    void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
    int o
    0
oox/source/ppt/timenodelistcontext.cxx:106
    void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
    int t
    0
oox/source/ppt/timenodelistcontext.cxx:106
    void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
    int th
    0
oox/source/vml/vmlformatting.cxx:560
    long lclGetEmu(const class oox::GraphicHelper &,const class std::optional<class rtl::OUString> &,long)
    long nDefValue
    1
oox/source/vml/vmlshapecontext.cxx:134
    _Bool lclDecodeVmlxBool(class std::basic_string_view<char16_t>,_Bool)
    _Bool bDefaultForEmpty
    1
opencl/source/opencl_device.cxx:114
    double random(double,double)
    double min
    0
opencl/source/openclwrapper.cxx:500
    _Bool initOpenCLRunEnv(int)
    int argc
    0
pyuno/inc/pyuno.hxx:86
    void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire)
    enum __sal_NoAcquire 
    0
pyuno/inc/pyuno.hxx:88
    void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull)
    enum __sal_NoAcquire 
    0
pyuno/inc/pyuno.hxx:88
    void pyuno::PyRef::PyRef(struct _object *,enum __sal_NoAcquire,enum pyuno::NotNull)
    enum pyuno::NotNull 
    0
pyuno/source/module/pyuno_impl.hxx:79
    void log(struct pyuno::RuntimeCargo *,int,class std::basic_string_view<char16_t>)
    int level
    1
reportdesign/inc/RptModel.hxx:56
    void rptui::OReportModel::OReportModel(class reportdesign::OReportDefinition *)
    class reportdesign::OReportDefinition * _pReportDefinition
    0
reportdesign/source/core/inc/Tools.hxx:48
    void throwIllegallArgumentException(class std::basic_string_view<char16_t>,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
    short ArgumentPosition_
    1
reportdesign/source/filter/xml/xmlFixedContent.cxx:54
    void rptxml::(anonymous namespace)::OXMLCharContent::OXMLCharContent(class SvXMLImport &,class rptxml::OXMLFixedContent *,short)
    short nControl
    1
reportdesign/source/filter/xml/xmlFormattedField.hxx:34
    void rptxml::OXMLFormattedField::OXMLFormattedField(class rptxml::ORptFilter &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,const class com::sun::star::uno::Reference<class com::sun::star::report::XFormattedField> &,class rptxml::OXMLTable *,_Bool)
    _Bool _bPageCount
    0
reportdesign/source/ui/inc/DesignView.hxx:228
    void rptui::ODesignView::setMarked(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Reference<class com::sun::star::report::XReportComponent> > &,_Bool)
    _Bool _bMark
    1
reportdesign/source/ui/inc/GeometryHandler.hxx:96
    void rptui::GeometryHandler::implCreateListLikeControl(const class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlFactory> &,struct com::sun::star::inspection::LineDescriptor &,const struct TranslateId *,_Bool,_Bool)
    _Bool _bReadOnlyControl
    0
reportdesign/source/ui/inc/GeometryHandler.hxx:96
    void rptui::GeometryHandler::implCreateListLikeControl(const class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlFactory> &,struct com::sun::star::inspection::LineDescriptor &,const struct TranslateId *,_Bool,_Bool)
    _Bool _bTrueIfListBoxFalseIfComboBox
    1
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)
    _Bool _bAllObjects
    1
reportdesign/source/ui/report/SectionWindow.cxx:360
    void lcl_setOrigin(class vcl::Window &,long,long)
    long _nY
    0
sal/osl/unx/file.cxx:122
    void (anonymous namespace)::FileHandle_Impl::FileHandle_Impl(int,enum (anonymous namespace)::FileHandle_Impl::Kind,class rtl::OString)
    enum (anonymous namespace)::FileHandle_Impl::Kind kind
    1
sal/qa/osl/file/osl_File.cxx:433
    void osl_FileBase::getAbsoluteFileURL::check_getAbsoluteFileURL(const class rtl::OUString &,const class rtl::OString &,enum osl::FileBase::RC,const class rtl::OUString &)
    enum osl::FileBase::RC _nAssumeError
    0
sal/qa/osl/pipe/osl_Pipe.cxx:732
    void thread_sleep(unsigned int)
    unsigned int _nSec
    1
sal/qa/osl/process/osl_Thread.cxx:155
    void (anonymous namespace)::ThreadSafeValue::ThreadSafeValue<T>(type-parameter-?-?)
    type-parameter-?-? n
    0
sal/qa/rtl/random/rtl_random.cxx:171
    void rtl_random::(anonymous namespace)::Statistics::addValue(unsigned char,int)
    int _nValue
    1
sal/rtl/strtmpl.hxx:201
    _Bool rtl::str::NoShortening::operator>=(int)
     ###1
    0
sal/rtl/strtmpl.hxx:202
    _Bool rtl::str::NoShortening::operator==(int)
     ###1
    0
sc/inc/address.hxx:346
    void ScAddress::Format(class rtl::OStringBuffer &,enum ScRefFlags,const class ScDocument *,const struct ScAddress::Details &) const
    const class ScDocument * pDocument
    0
sc/inc/address.hxx:504
    void ScRange::ScRange(enum ScAddress::Uninitialized)
    enum ScAddress::Uninitialized eUninitialized
    0
sc/inc/address.hxx:507
    void ScRange::ScRange(enum ScAddress::InitializeInvalid)
    enum ScAddress::InitializeInvalid eInvalid
    0
sc/inc/cellform.hxx:42
    class rtl::OUString ScCellFormat::GetString(class ScDocument &,const class ScAddress &,unsigned int,const class Color **,struct ScInterpreterContext *,_Bool,_Bool)
    _Bool bFormula
    0
sc/inc/cellformtmpl.hxx:33
    auto ScCellFormat::visitInputSharedString(const struct ScRefCellValue &,unsigned int,struct ScInterpreterContext *,const class ScDocument &,class svl::SharedStringPool &,_Bool,_Bool,const type-parameter-?-? &)
    _Bool bFiltering
    1
sc/inc/cellformtmpl.hxx:33
    auto ScCellFormat::visitInputSharedString(const struct ScRefCellValue &,unsigned int,struct ScInterpreterContext *,const class ScDocument &,class svl::SharedStringPool &,_Bool,_Bool,const type-parameter-?-? &)
    _Bool bForceSystemLocale
    0
sc/inc/ChartTools.hxx:46
    class SdrOle2Obj * getChartByIndex(class ScDocShell *,short,long,enum sc::tools::ChartSourceType)
    enum sc::tools::ChartSourceType eChartSourceType
    1
sc/inc/chgtrack.hxx:705
    void ScChangeActionContent::PutOldValueToDoc(class ScDocument *,short,int) const
    short nDx
    0
sc/inc/chgtrack.hxx:705
    void ScChangeActionContent::PutOldValueToDoc(class ScDocument *,short,int) const
    int nDy
    0
sc/inc/colcontainer.hxx:33
    void ScColContainer::ScColContainer(const struct ScSheetLimits &,const unsigned long)
    const unsigned long nSize
    1
sc/inc/column.hxx:301
    _Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,struct ScDataAreaExtras *) const
    struct ScDataAreaExtras * pDataAreaExtras
    0
sc/inc/column.hxx:331
    void ScColumn::GetUnprotectedCells(int,int,class ScRangeList &) const
    int nStartRow
    0
sc/inc/column.hxx:416
    class ScFormulaCell * ScColumn::SetFormulaCell(int,class ScFormulaCell *,enum sc::StartListeningType,_Bool)
    _Bool bInheritNumFormatIfNeeded
    1
sc/inc/column.hxx:451
    class rtl::OUString ScColumn::GetString(struct sc::ColumnBlockConstPosition &,int,struct ScInterpreterContext *) const
    struct ScInterpreterContext * pContext
    0
sc/inc/column.hxx:458
    class rtl::OUString ScColumn::GetInputString(struct sc::ColumnBlockConstPosition &,int,_Bool) const
    _Bool bForceSystemLocale
    0
sc/inc/column.hxx:811
    void ScColumn::AttachNewFormulaCell(const class mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct sc::CellStoreTraits>::iterator_trait> &,int,class ScFormulaCell &,const class std::vector<int> &,_Bool,enum sc::StartListeningType)
    _Bool bJoin
    1
sc/inc/columnspanset.hxx:94
    void sc::ColumnSpanSet::set(const class ScDocument &,short,short,int,_Bool)
    _Bool bVal
    1
sc/inc/columnspanset.hxx:96
    void sc::ColumnSpanSet::set(const class ScDocument &,const class ScRange &,_Bool)
    _Bool bVal
    1
sc/inc/columnspanset.hxx:98
    void sc::ColumnSpanSet::set(const class ScDocument &,short,short,const class sc::SingleColumnSpanSet &,_Bool)
    _Bool bVal
    1
sc/inc/columnspanset.hxx:104
    void sc::ColumnSpanSet::scan(const class ScDocument &,short,short,int,short,int,_Bool)
    _Bool bVal
    1
sc/inc/compiler.hxx:388
    void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,struct ScInterpreterContext *)
    _Bool bComputeII
    0
sc/inc/compiler.hxx:388
    void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,struct ScInterpreterContext *)
    _Bool bMatrixFlag
    0
sc/inc/compiler.hxx:388
    void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,struct ScInterpreterContext *)
    struct ScInterpreterContext * pContext
    0
sc/inc/compiler.hxx:393
    void ScCompiler::ScCompiler(class ScDocument &,const class ScAddress &,enum formula::FormulaGrammar::Grammar,_Bool,_Bool,struct ScInterpreterContext *)
    struct ScInterpreterContext * pContext
    0
sc/inc/compressedarray.hxx:186
    void ScBitMaskCompressedArray::ScBitMaskCompressedArray<A, D>(type-parameter-?-?,const type-parameter-?-? &)
    const type-parameter-?-? & rValue
    0
sc/inc/compressedarray.hxx:196
    void ScBitMaskCompressedArray::CopyFromAnded(const ScBitMaskCompressedArray<A, D> &,type-parameter-?-?,type-parameter-?-?,const type-parameter-?-? &)
    type-parameter-?-? nStart
    0
sc/inc/dapiuno.hxx:288
    void ScFieldIdentifier::ScFieldIdentifier(class rtl::OUString,_Bool)
    _Bool bDataLayout
    1
sc/inc/dociter.hxx:412
    void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument &,short,short,int,short,int)
    short nCol1
    0
sc/inc/dociter.hxx:412
    void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument &,short,short,int,short,int)
    int nRow1
    0
sc/inc/dociter.hxx:448
    void ScDocRowHeightUpdater::TabRanges::TabRanges(short,int)
    short nTab
    0
sc/inc/document.hxx:634
    void ScDocument::setHasCustomXml(_Bool,class rtl::OUString &)
    _Bool bUse
    1
sc/inc/document.hxx:663
    void ScDocument::ScDocument(enum ScDocumentMode,class ScDocShell *)
    class ScDocShell * pDocShell
    0
sc/inc/document.hxx:1060
    void ScDocument::SetPendingRowHeights(short,_Bool)
    _Bool bSet
    0
sc/inc/document.hxx:1065
    void ScDocument::SetScenario(short,_Bool)
    _Bool bFlag
    1
sc/inc/document.hxx:1261
    class rtl::OUString ScDocument::GetString(short,int,short,struct ScInterpreterContext *) const
    struct ScInterpreterContext * pContext
    0
sc/inc/document.hxx:1424
    void ScDocument::GetBorderLines(short,int,short,const class editeng::SvxBorderLine **,const class editeng::SvxBorderLine **,const class editeng::SvxBorderLine **,const class editeng::SvxBorderLine **) const
    short nTab
    0
sc/inc/document.hxx:1685
    void ScDocument::EnableUserInteraction(_Bool)
    _Bool bVal
    0
sc/inc/document.hxx:1784
    void ScDocument::CopyMultiRangeFromClip(const class ScAddress &,const class ScMarkData &,enum InsertDeleteFlags,class ScDocument *,_Bool,_Bool,_Bool,_Bool)
    _Bool bResetCut
    1
sc/inc/document.hxx:1834
    void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
    short nCol1
    0
sc/inc/document.hxx:1834
    void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
    _Bool bMarked
    0
sc/inc/document.hxx:1841
    void ScDocument::UndoToDocument(const class ScRange &,enum InsertDeleteFlags,_Bool,class ScDocument &)
    _Bool bMarked
    0
sc/inc/document.hxx:1896
    const class ScPatternAttr * ScDocument::GetMostUsedPattern(short,int,int,short) const
    int nStartRow
    0
sc/inc/document.hxx:2073
    long ScDocument::GetColOffset(short,short,_Bool) const
    _Bool bHiddenAsZero
    1
sc/inc/document.hxx:2074
    long ScDocument::GetRowOffset(int,short,_Bool) const
    _Bool bHiddenAsZero
    1
sc/inc/document.hxx:2103
    void ScDocument::ShowRow(int,short,_Bool)
    _Bool bShow
    0
sc/inc/document.hxx:2106
    void ScDocument::SetRowFlags(int,int,short,enum CRFlags)
    int nStartRow
    0
sc/inc/document.hxx:2115
    void ScDocument::SetRowBreak(int,short,_Bool,_Bool)
    _Bool bPage
    0
sc/inc/document.hxx:2115
    void ScDocument::SetRowBreak(int,short,_Bool,_Bool)
    _Bool bManual
    1
sc/inc/document.hxx:2116
    void ScDocument::SetColBreak(short,short,_Bool,_Bool)
    _Bool bPage
    0
sc/inc/document.hxx:2116
    void ScDocument::SetColBreak(short,short,_Bool,_Bool)
    _Bool bManual
    1
sc/inc/document.hxx:2117
    void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool)
    _Bool bPage
    0
sc/inc/document.hxx:2117
    void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool)
    _Bool bManual
    1
sc/inc/document.hxx:2118
    void ScDocument::RemoveColBreak(short,short,_Bool,_Bool)
    _Bool bPage
    0
sc/inc/document.hxx:2118
    void ScDocument::RemoveColBreak(short,short,_Bool,_Bool)
    _Bool bManual
    1
sc/inc/document.hxx:2381
    class std::set<short> ScDocument::QueryColumnsWithFormulaCells(short) const
    short nTab
    0
sc/inc/document.hxx:2389
    void ScDocument::CheckIntegrity(short) const
    short nTab
    0
sc/inc/document.hxx:2447
    void ScDocument::UpdateBroadcastAreas(enum UpdateRefMode,const class ScRange &,short,int,short)
    enum UpdateRefMode eUpdateRefMode
    0
sc/inc/document.hxx:2479
    void ScDocument::CalcFormulaTree(_Bool,_Bool,_Bool)
    _Bool bSetAllDirty
    1
sc/inc/document.hxx:2700
    void ScDocument::StoreTabToCache(short,class SvStream &) const
    short nTab
    0
sc/inc/document.hxx:2701
    void ScDocument::RestoreTabFromCache(short,class SvStream &)
    short nTab
    0
sc/inc/document.hxx:2797
    void ScDocument::EndListeningIntersectedGroup(class sc::EndListeningContext &,const class ScAddress &,class std::vector<class ScAddress> *)
    class std::vector<class ScAddress> * pGroupPos
    0
sc/inc/document.hxx:2819
    void ScMutationDisable::ScMutationDisable(class ScDocument &,enum ScMutationGuardFlags)
    enum ScMutationGuardFlags nFlags
    1
sc/inc/document.hxx:2852
    void ScMutationGuard::ScMutationGuard(class ScDocument &,enum ScMutationGuardFlags)
    enum ScMutationGuardFlags nFlags
    1
sc/inc/documentimport.hxx:94
    void ScDocumentImport::setSheetName(short,const class rtl::OUString &)
    short nTab
    0
sc/inc/documentimport.hxx:129
    void ScDocumentImport::setRowsVisible(short,int,int,_Bool)
    _Bool bVisible
    0
sc/inc/documentlinkmgr.hxx:66
    _Bool sc::DocumentLinkManager::hasDdeOrOleOrWebServiceLinks(_Bool,_Bool,_Bool) const
    _Bool bDde
    1
sc/inc/dpdimsave.hxx:179
    class rtl::OUString ScDPDimensionSaveData::CreateDateGroupDimName(int,const class ScDPObject &,_Bool,const class std::vector<class rtl::OUString> *)
    _Bool bAllowSource
    1
sc/inc/dpglobal.hxx:53
    void ScDPValue::Set(double,enum ScDPValue::Type)
    enum ScDPValue::Type eT
    0
sc/inc/dpsave.hxx:230
    void ScDPSaveDimension::Dump(int) const
    int nIndent
    0
sc/inc/dptabdat.hxx:130
    const class ScDPItemData * ScDPTableData::GetMemberByIndex(int,int)
    int nIndex
    0
sc/inc/dptabres.hxx:139
    void ScDPRelativePos::ScDPRelativePos(long,long)
    long nBase
    0
sc/inc/filter.hxx:80
    class ErrCode ScFormatFilterPlugin::ScExportExcel5(class SfxMedium &,class ScDocument *,enum ExportFormatExcel,unsigned short)
    unsigned short eDest
    1
sc/inc/filter.hxx:83
    void ScFormatFilterPlugin::ScExportHTML(class SvStream &,const class rtl::OUString &,class ScDocument *,const class ScRange &,const unsigned short,_Bool,const class rtl::OUString &,class rtl::OUString &,const class rtl::OUString &)
    const unsigned short eDest
    0
sc/inc/filter.hxx:85
    void ScFormatFilterPlugin::ScExportRTF(class SvStream &,class ScDocument *,const class ScRange &,const unsigned short)
    const unsigned short eDest
    0
sc/inc/formulacell.hxx:204
    void ScFormulaCell::ScFormulaCell(class ScDocument &,const class ScAddress &,class std::unique_ptr<class ScTokenArray>,const enum formula::FormulaGrammar::Grammar,enum ScMatrixMode)
    enum ScMatrixMode cMatInd
    0
sc/inc/formulacell.hxx:233
    class rtl::OUString ScFormulaCell::GetFormula(class sc::CompileFormulaContext &,struct ScInterpreterContext *) const
    struct ScInterpreterContext * pContext
    0
sc/inc/interpretercontext.hxx:72
    unsigned int ScInterpreterContext::NFGetTimeFormat(double,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,_Bool) const
    _Bool bForceDuration
    1
sc/inc/interpretercontext.hxx:105
    class rtl::OUString ScInterpreterContext::NFGenerateFormat(unsigned int,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,_Bool,_Bool,unsigned short,unsigned short)
    _Bool IsRed
    0
sc/inc/interpretercontext.hxx:105
    class rtl::OUString ScInterpreterContext::NFGenerateFormat(unsigned int,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,_Bool,_Bool,unsigned short,unsigned short)
    unsigned short nLeadingCnt
    1
sc/inc/markarr.hxx:55
    void ScMarkArray::Reset(_Bool,unsigned long)
    unsigned long nNeeded
    1
sc/inc/miscuno.hxx:142
    short ScUnoHelpFunctions::GetShortProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,short)
    short nDefault
    0
sc/inc/miscuno.hxx:147
    type-parameter-?-? ScUnoHelpFunctions::GetEnumProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,type-parameter-?-?)
    type-parameter-?-? nDefault
    0
sc/inc/patattr.hxx:207
    void ScPatternAttr::fillColor(class model::ComplexColor &,enum ScAutoFontColorMode,const class SfxItemSet *,const class Color *,const class Color *) const
    enum ScAutoFontColorMode eAutoMode
    0
sc/inc/patattr.hxx:207
    void ScPatternAttr::fillColor(class model::ComplexColor &,enum ScAutoFontColorMode,const class SfxItemSet *,const class Color *,const class Color *) const
    const class SfxItemSet * pCondSet
    0
sc/inc/patattr.hxx:207
    void ScPatternAttr::fillColor(class model::ComplexColor &,enum ScAutoFontColorMode,const class SfxItemSet *,const class Color *,const class Color *) const
    const class Color * pBackConfigColor
    0
sc/inc/patattr.hxx:207
    void ScPatternAttr::fillColor(class model::ComplexColor &,enum ScAutoFontColorMode,const class SfxItemSet *,const class Color *,const class Color *) const
    const class Color * pTextConfigColor
    0
sc/inc/pivot.hxx:124
    void ScPivotField::ScPivotField(short)
    short nNewCol
    0
sc/inc/postit.hxx:64
    void ScPostIt::ScPostIt(class ScDocument &,const class ScAddress &,unsigned int)
    unsigned int nPostItId
    0
sc/inc/queryiter.hxx:372
    void ScQueryCellIteratorSortedCache::ScQueryCellIteratorSortedCache(class ScDocument &,struct ScInterpreterContext &,short,const struct ScQueryParam &,_Bool,_Bool)
    _Bool bMod
    0
sc/inc/queryiter.hxx:372
    void ScQueryCellIteratorSortedCache::ScQueryCellIteratorSortedCache(class ScDocument &,struct ScInterpreterContext &,short,const struct ScQueryParam &,_Bool,_Bool)
    _Bool bReverse
    0
sc/inc/queryiter.hxx:422
    void ScCountIfCellIteratorSortedCache::ScCountIfCellIteratorSortedCache(class ScDocument &,struct ScInterpreterContext &,short,const struct ScQueryParam &,_Bool,_Bool)
    _Bool bMod
    0
sc/inc/queryiter.hxx:422
    void ScCountIfCellIteratorSortedCache::ScCountIfCellIteratorSortedCache(class ScDocument &,struct ScInterpreterContext &,short,const struct ScQueryParam &,_Bool,_Bool)
    _Bool bReverse
    0
sc/inc/queryparam.hxx:60
    struct ScQueryEntry * ScQueryParamBase::FindEntryByField(int,_Bool)
    _Bool bNew
    1
sc/inc/rangeutl.hxx:58
    _Bool ScRangeUtil::IsAbsTabArea(const class rtl::OUString &,const class ScDocument *,class std::unique_ptr<class ScArea[]> *,unsigned short *,_Bool,const struct ScAddress::Details &)
    _Bool bAcceptCellRef
    1
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)
    enum formula::FormulaGrammar::AddressConvention eConv
    0
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)
    enum formula::FormulaGrammar::AddressConvention eConv
    0
sc/inc/rangeutl.hxx:185
    void ScRangeStringConverter::GetStringFromRangeList(class rtl::OUString &,const class ScRangeList *,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t)
    enum formula::FormulaGrammar::AddressConvention eConv
    0
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 formula::FormulaGrammar::AddressConvention eConv
    0
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)
    _Bool bAppendStr
    1
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)
    enum formula::FormulaGrammar::AddressConvention eConv
    0
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)
    _Bool bAppendStr
    0
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)
    enum formula::FormulaGrammar::AddressConvention eConv
    0
sc/inc/scabstdlg.hxx:298
    void AbstractScDPFunctionDlg::Response(int)
    int nResponse
    0
sc/inc/scabstdlg.hxx:308
    void AbstractScDPSubtotalDlg::Response(int)
    int nResponse
    0
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)
    long nMinimum
    0
sc/inc/scmatrix.hxx:153
    void ScMatrix::IterateResult::IterateResult<tRes>(type-parameter-?-?,unsigned long)
    unsigned long nCount
    0
sc/inc/scmatrix.hxx:340
    _Bool ScMatrix::IsEmptyResult(unsigned long,unsigned long) const
    unsigned long nC
    0
sc/inc/scmatrix.hxx:340
    _Bool ScMatrix::IsEmptyResult(unsigned long,unsigned long) const
    unsigned long nR
    0
sc/inc/scmatrix.hxx:379
    unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const
    unsigned long nCol1
    0
sc/inc/scmatrix.hxx:379
    unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const
    unsigned long nCol2
    0
sc/inc/scmatrix.hxx:380
    unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const
    unsigned long nCol1
    0
sc/inc/scmatrix.hxx:380
    unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const
    unsigned long nCol2
    0
sc/inc/scopetools.hxx:57
    void sc::UndoSwitch::UndoSwitch(class ScDocument &,_Bool)
    _Bool bUndo
    1
sc/inc/scopetools.hxx:67
    void sc::IdleSwitch::IdleSwitch(class ScDocument &,_Bool)
    _Bool bEnableIdle
    0
sc/inc/scopetools.hxx:78
    void sc::DelayFormulaGroupingSwitch::DelayFormulaGroupingSwitch(class ScDocument &,_Bool)
    _Bool delay
    1
sc/inc/simpleformulacalc.hxx:38
    void ScSimpleFormulaCalculator::ScSimpleFormulaCalculator(class ScDocument &,const class ScAddress &,const class rtl::OUString &,_Bool,enum formula::FormulaGrammar::Grammar)
    _Bool bMatrixFormula
    1
sc/inc/stringutil.hxx:158
    class rtl::OUString ScStringUtil::GetQuotedToken(const class rtl::OUString &,int,const class rtl::OUString &,char16_t,int &)
    int nToken
    0
sc/inc/table.hxx:859
    void ScTable::SetOptimalHeightOnly(class sc::RowHeightContext &,int,int,class ScProgress *,unsigned long)
    int nStartRow
    0
sc/inc/table.hxx:993
    _Bool ScTable::RowHiddenLeaf(int,int *,int *) const
    int * pFirstRow
    0
sc/inc/table.hxx:998
    void ScTable::CopyColHidden(const class ScTable &,short,short)
    short nStartCol
    0
sc/inc/table.hxx:999
    void ScTable::CopyRowHidden(const class ScTable &,int,int)
    int nStartRow
    0
sc/inc/table.hxx:1011
    _Bool ScTable::ColFiltered(short,short *,short *) const
    short * pFirstCol
    0
sc/inc/table.hxx:1013
    void ScTable::CopyColFiltered(const class ScTable &,short,short)
    short nStartCol
    0
sc/inc/table.hxx:1014
    void ScTable::CopyRowFiltered(const class ScTable &,int,int)
    int nStartRow
    0
sc/inc/token.hxx:267
    void ScRefListToken::ScRefListToken(_Bool)
    _Bool bArrayResult
    1
sc/inc/typedstrdata.hxx:37
    void ScTypedStrData::ScTypedStrData(const class rtl::OUString &,double,double,enum ScTypedStrData::StringType,_Bool,_Bool)
    _Bool bDate
    0
sc/inc/typedstrdata.hxx:37
    void ScTypedStrData::ScTypedStrData(const class rtl::OUString &,double,double,enum ScTypedStrData::StringType,_Bool,_Bool)
    _Bool bIsHiddenByFilter
    0
sc/inc/types.hxx:106
    void sc::MultiDataCellState::MultiDataCellState(enum sc::MultiDataCellState::StateType)
    enum sc::MultiDataCellState::StateType eState
    1
sc/qa/extras/new_cond_format.cxx:173
    void testShowValue(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool)
    _Bool bShowVal
    1
sc/qa/extras/scpdfexport.cxx:55
    void ScPDFExportTest::setFont(class ScFieldEditEngine &,int,int,const class rtl::OUString &)
    int nStart
    0
sc/qa/unit/copy_paste_test.cxx:275
    enum ScMF lcl_getMergeFlagOfCell(const class ScDocument &,short,int,short)
    short nTab
    0
sc/qa/unit/copy_paste_test.cxx:282
    class ScAddress lcl_getMergeSizeOfCell(const class ScDocument &,short,int,short)
    short nTab
    0
sc/qa/unit/helper/qahelper.hxx:128
    void ScUcalcTestBase::printFormula(class ScDocument *,short,int,short,const char *)
    short nTab
    0
sc/qa/unit/helper/qahelper.hxx:128
    void ScUcalcTestBase::printFormula(class ScDocument *,short,int,short,const char *)
    const char * pCaption
    0
sc/qa/unit/helper/qahelper.hxx:135
    void ScUcalcTestBase::clearSheet(class ScDocument *,short)
    short nTab
    0
sc/qa/unit/mark_test.cxx:133
    void Test::testScMarkArraySearch_check(const class ScMarkArray &,int,_Bool,unsigned long)
    _Bool expectStatus
    1
sc/qa/unit/subsequent_export_test.cxx:1139
    void setAttribute(class ScFieldEditEngine &,int,int,int,unsigned short,class Color)
    int nPara
    0
sc/qa/unit/subsequent_export_test.cxx:1193
    void setFont(class ScFieldEditEngine &,int,int,int,const class rtl::OUString &)
    int nPara
    0
sc/qa/unit/subsequent_export_test.cxx:1203
    void setEscapement(class ScFieldEditEngine &,int,int,int,short,unsigned char)
    int nPara
    0
sc/qa/unit/tiledrendering/tiledrenderingmodeltestbase.cxx:234
    class tools::Rectangle TextSelectionMessage::getBounds(unsigned long)
    unsigned long nIndex
    0
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)
    _Bool bAsLink
    0
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)
    _Bool bCut
    0
sc/qa/unit/ucalc_copypaste.cxx:55
    void TestCopyPaste::executeCopyPasteSpecial(const short,const short,_Bool,_Bool,_Bool,_Bool,_Bool,_Bool,class std::unique_ptr<class ScUndoCut> &,class std::unique_ptr<class ScUndoPaste> &,_Bool,enum ScClipParam::Direction,enum TestCopyPaste::CalcMode,enum InsertDeleteFlags)
    const short srcSheet
    0
sc/qa/unit/ucalc_copypaste.cxx:55
    void TestCopyPaste::executeCopyPasteSpecial(const short,const short,_Bool,_Bool,_Bool,_Bool,_Bool,_Bool,class std::unique_ptr<class ScUndoCut> &,class std::unique_ptr<class ScUndoPaste> &,_Bool,enum ScClipParam::Direction,enum TestCopyPaste::CalcMode,enum InsertDeleteFlags)
    const short destSheet
    1
sc/qa/unit/ucalc_copypaste.cxx:78
    void TestCopyPaste::executeReferencedCutRangesRow(const _Bool,const short,const short,const _Bool,class std::unique_ptr<class ScUndoCut> &,class std::unique_ptr<class ScUndoPaste> &)
    const _Bool bUndo
    1
sc/qa/unit/ucalc_copypaste.cxx:83
    void TestCopyPaste::checkReferencedCutRangesRow(const short,const short)
    const short nSrcTab
    0
sc/qa/unit/ucalc_copypaste.cxx:85
    void TestCopyPaste::executeReferencedCutRangesCol(const _Bool,const short,const short,const _Bool,class std::unique_ptr<class ScUndoCut> &,class std::unique_ptr<class ScUndoPaste> &)
    const _Bool bUndo
    1
sc/qa/unit/ucalc_copypaste.cxx:91
    void TestCopyPaste::checkReferencedCutRangesCol(const short,const short)
    const short nSrcTab
    0
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 ScPasteFunc nFunction
    0
sc/qa/unit/ucalc_sort.cxx:1974
    void (anonymous namespace)::TestQueryIterator::TestQueryIterator(class ScDocument &,struct ScInterpreterContext &,short,const struct ScQueryParam &,_Bool,_Bool)
    short nTable
    0
sc/qa/unit/ucalc_sort.cxx:1974
    void (anonymous namespace)::TestQueryIterator::TestQueryIterator(class ScDocument &,struct ScInterpreterContext &,short,const struct ScQueryParam &,_Bool,_Bool)
    _Bool bMod
    0
sc/qa/unit/ucalc_sort.cxx:1974
    void (anonymous namespace)::TestQueryIterator::TestQueryIterator(class ScDocument &,struct ScInterpreterContext &,short,const struct ScQueryParam &,_Bool,_Bool)
    _Bool bReverse
    0
sc/source/core/data/drwlayer.cxx:2535
    void DeleteFirstUserDataOfType(class SdrObject *,unsigned short)
    unsigned short nId
    1
sc/source/core/data/postit.cxx:371
    void (anonymous namespace)::ScNoteCaptionCreator::ScNoteCaptionCreator(class ScDocument &,const class ScAddress &,class rtl::Reference<class SdrCaptionObj> &,_Bool)
    _Bool bShown
    1
sc/source/core/inc/interpre.hxx:502
    short ScInterpreter::GetInt16WithDefault(short)
    short nDefault
    1
sc/source/core/inc/interpre.hxx:506
    _Bool ScInterpreter::GetBoolWithDefault(_Bool)
    _Bool bDefault
    0
sc/source/core/opencl/opbase.hxx:375
    void sc::opencl::SlidingFunctionBase::GenerateArgWithDefault(const char *,int,double,class std::vector<class std::shared_ptr<class sc::opencl::DynamicKernelArgument> > &,class sc::opencl::outputstream &,enum sc::opencl::SlidingFunctionBase::EmptyArgType)
    enum sc::opencl::SlidingFunctionBase::EmptyArgType empty
    0
sc/source/core/opencl/opbase.hxx:401
    void sc::opencl::SlidingFunctionBase::GenerateRangeArgElement(const char *,int,const char *,class std::vector<class std::shared_ptr<class sc::opencl::DynamicKernelArgument> > &,class sc::opencl::outputstream &,enum sc::opencl::SlidingFunctionBase::EmptyArgType)
    enum sc::opencl::SlidingFunctionBase::EmptyArgType empty
    0
sc/source/core/opencl/opbase.hxx:449
    class std::basic_string<char> sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowDeclRef(_Bool) const
    _Bool nested
    0
sc/source/core/tool/compiler.cxx:866
    void (anonymous namespace)::ConventionOOO_A1::ConventionOOO_A1(enum formula::FormulaGrammar::AddressConvention)
    enum formula::FormulaGrammar::AddressConvention eConv
    1
sc/source/filter/excel/xeformula.cxx:390
    void XclExpFmlaCompImpl::ConvertRefData(struct ScComplexRefData &,struct XclRange &,_Bool) const
    _Bool bNatLangRef
    0
sc/source/filter/excel/xeformula.cxx:408
    void XclExpFmlaCompImpl::Append(unsigned char,unsigned long)
    unsigned char nData
    0
sc/source/filter/excel/xeformula.cxx:410
    void XclExpFmlaCompImpl::Append(unsigned int)
    unsigned int nData
    0
sc/source/filter/excel/xeformula.cxx:450
    void XclExpFmlaCompImpl::AppendExt(unsigned char,unsigned long)
    unsigned char nData
    0
sc/source/filter/excel/xihelper.cxx:149
    class std::unique_ptr<class EditTextObject> lclCreateTextObject(const class XclImpRoot &,const class XclImpString &,enum XclFontItemType,unsigned short)
    enum XclFontItemType eType
    1
sc/source/filter/html/htmlpars.cxx:1827
    type-parameter-?-? getLimitedValue(const type-parameter-?-? &,const type-parameter-?-? &,const type-parameter-?-? &)
    const type-parameter-?-? & rMin
    1
sc/source/filter/inc/addressconverter.hxx:187
    class ScAddress oox::xls::AddressConverter::createValidCellAddress(const class rtl::OUString &,short,_Bool)
    _Bool bTrackOverflow
    0
sc/source/filter/inc/addressconverter.hxx:317
    _Bool oox::xls::AddressConverter::convertToCellRange(class ScRange &,class std::basic_string_view<char16_t>,short,_Bool,_Bool)
    _Bool bAllowOverflow
    1
sc/source/filter/inc/addressconverter.hxx:357
    _Bool oox::xls::AddressConverter::convertToCellRange(class ScRange &,const struct oox::xls::BinRange &,short,_Bool,_Bool)
    _Bool bAllowOverflow
    1
sc/source/filter/inc/addressconverter.hxx:373
    void oox::xls::AddressConverter::validateCellRangeList(class ScRangeList &,_Bool)
    _Bool bTrackOverflow
    0
sc/source/filter/inc/autofilterbuffer.hxx:51
    void oox::xls::ApiFilterSettings::appendField(_Bool,int,_Bool)
    _Bool bAnd
    1
sc/source/filter/inc/autofilterbuffer.hxx:52
    void oox::xls::ApiFilterSettings::appendField(_Bool,const class std::vector<struct std::pair<class rtl::OUString, _Bool> > &)
    _Bool bAnd
    1
sc/source/filter/inc/excrecds.hxx:179
    void XclExpSheetProtection::XclExpSheetProtection(_Bool,short)
    _Bool bValue
    1
sc/source/filter/inc/formel.hxx:101
    enum ConvErr ExcelConverterBase::Convert(class ScRangeListTabs &,class XclImpStream &,unsigned long,short,const enum FORMULA_TYPE)
    const enum FORMULA_TYPE eFT
    1
sc/source/filter/inc/formulabase.hxx:640
    class rtl::OUString oox::xls::FormulaProcessorBase::generateAddress2dString(const class ScAddress &,_Bool)
    _Bool bAbsolute
    0
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
    _Bool bTrimLeadingSpaces
    1
sc/source/filter/inc/ftools.hxx:199
    class ScStyleSheet & ScfTools::MakeCellStyleSheet(class ScStyleSheetPool &,const class rtl::OUString &,_Bool)
    _Bool bForceName
    1
sc/source/filter/inc/ftools.hxx:206
    class ScStyleSheet & ScfTools::MakePageStyleSheet(class ScStyleSheetPool &,const class rtl::OUString &,_Bool)
    _Bool bForceName
    0
sc/source/filter/inc/htmlpars.hxx:193
    void ScHTMLLayoutParser::MakeColNoRef(class o3tl::sorted_vector<unsigned long> *,unsigned short,unsigned short,unsigned short,unsigned short)
    unsigned short nWidth
    0
sc/source/filter/inc/htmlpars.hxx:193
    void ScHTMLLayoutParser::MakeColNoRef(class o3tl::sorted_vector<unsigned long> *,unsigned short,unsigned short,unsigned short,unsigned short)
    unsigned short nOffsetTol
    0
sc/source/filter/inc/htmlpars.hxx:193
    void ScHTMLLayoutParser::MakeColNoRef(class o3tl::sorted_vector<unsigned long> *,unsigned short,unsigned short,unsigned short,unsigned short)
    unsigned short nWidthTol
    0
sc/source/filter/inc/stylesbuffer.hxx:360
    void oox::xls::Protection::Protection(const class oox::xls::WorkbookHelper &,_Bool)
    _Bool bDxf
    0
sc/source/filter/inc/tool.h:37
    void SetFormat(struct LotusContext &,short,int,short,unsigned char,unsigned char)
    short nTab
    0
sc/source/filter/inc/workbookhelper.hxx:211
    class com::sun::star::uno::Reference<class com::sun::star::style::XStyle> oox::xls::WorkbookHelper::getStyleObject(const class rtl::OUString &,_Bool) const
    _Bool bPageStyle
    1
sc/source/filter/inc/workbookhelper.hxx:251
    class com::sun::star::uno::Reference<class com::sun::star::style::XStyle> oox::xls::WorkbookHelper::createStyleObject(class rtl::OUString &,_Bool) const
    _Bool bPageStyle
    1
sc/source/filter/inc/xechart.hxx:196
    void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
    enum XclFutureRecType eRecType
    1
sc/source/filter/inc/xechart.hxx:337
    void XclExpChFrameBase::SetDefaultFrameBase(const class XclExpChRoot &,enum XclChFrameType,_Bool)
    enum XclChFrameType eDefFrameType
    1
sc/source/filter/inc/xechart.hxx:365
    void XclExpChFrame::SetAutoFlags(_Bool,_Bool)
    _Bool bAutoPos
    0
sc/source/filter/inc/xechart.hxx:365
    void XclExpChFrame::SetAutoFlags(_Bool,_Bool)
    _Bool bAutoSize
    0
sc/source/filter/inc/xeextlst.hxx:200
    class XclExpExt * XclExtLst::GetItem(enum XclExpExtType)
    enum XclExpExtType eType
    0
sc/source/filter/inc/xehelper.hxx:109
    struct XclAddress XclExpAddressConverter::CreateValidAddress(const class ScAddress &,_Bool)
    _Bool bWarn
    0
sc/source/filter/inc/xehelper.hxx:149
    void XclExpAddressConverter::ValidateRangeList(class ScRangeList &,_Bool)
    _Bool bWarn
    0
sc/source/filter/inc/xehelper.hxx:281
    class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateCellString(const class XclExpRoot &,const class rtl::OUString &,const class ScPatternAttr *,enum XclStrFlags,unsigned short)
    enum XclStrFlags nFlags
    0
sc/source/filter/inc/xehelper.hxx:297
    class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateCellString(const class XclExpRoot &,const class EditTextObject &,const class ScPatternAttr *,class XclExpHyperlinkHelper &,enum XclStrFlags,unsigned short)
    enum XclStrFlags nFlags
    0
sc/source/filter/inc/xehelper.hxx:311
    class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,const class SdrTextObj &,enum XclStrFlags)
    enum XclStrFlags nFlags
    0
sc/source/filter/inc/xehelper.hxx:320
    class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,const class EditTextObject &,enum XclStrFlags)
    enum XclStrFlags nFlags
    0
sc/source/filter/inc/xepivot.hxx:270
    unsigned short XclExpPTField::GetItemIndex(class std::basic_string_view<char16_t>,unsigned short) const
    unsigned short nDefaultIdx
    0
sc/source/filter/inc/xestream.hxx:300
    void XclExpXmlStream::WriteAttributes(int,type-parameter-?-? &&,type-parameter-?-? &&...)
     ###27
    0
sc/source/filter/inc/xestring.hxx:78
    void XclExpString::Assign(char16_t)
    char16_t cChar
    0
sc/source/filter/inc/xestring.hxx:107
    void XclExpString::AppendTrailingFormat(unsigned short)
    unsigned short nFontIdx
    0
sc/source/filter/inc/xestring.hxx:150
    unsigned short XclExpString::GetChar(unsigned short) const
    unsigned short nCharIdx
    0
sc/source/filter/inc/xestyle.hxx:224
    unsigned short XclExpFontBuffer::Insert(const class SvxFont &,const class model::ComplexColor &,enum XclExpColorType)
    enum XclExpColorType eColorType
    0
sc/source/filter/inc/xestyle.hxx:229
    unsigned short XclExpFontBuffer::Insert(const class SfxItemSet &,short,enum XclExpColorType,_Bool)
    enum XclExpColorType eColorType
    0
sc/source/filter/inc/xestyle.hxx:389
    void XclExpCellArea::XclExpCellArea(class Color,class Color)
    class Color aBackColor
    0
sc/source/filter/inc/xetable.hxx:333
    void XclExpSingleCellBase::XclExpSingleCellBase(unsigned short,unsigned long,const struct XclAddress &,unsigned int)
    unsigned long nContSize
    0
sc/source/filter/inc/xetable.hxx:336
    void XclExpSingleCellBase::XclExpSingleCellBase(const class XclExpRoot &,unsigned short,unsigned long,const struct XclAddress &,const class ScPatternAttr *,short,unsigned int)
    short nScript
    1
sc/source/filter/inc/xiescher.hxx:481
    void XclImpControlHelper::ReadSourceRangeFormula(class XclImpStream &,_Bool)
    _Bool bWithBoundSize
    1
sc/source/filter/inc/xihelper.hxx:69
    class ScAddress XclImpAddressConverter::CreateValidAddress(const struct XclAddress &,short,_Bool)
    _Bool bWarn
    0
sc/source/filter/inc/xipage.hxx:58
    void XclImpPageSettings::SetPaperSize(unsigned short,_Bool)
    unsigned short nXclPaperSize
    0
sc/source/filter/inc/xipage.hxx:58
    void XclImpPageSettings::SetPaperSize(unsigned short,_Bool)
    _Bool bPortrait
    0
sc/source/filter/inc/xladdress.hxx:63
    void XclRange::XclRange(enum ScAddress::Uninitialized)
    enum ScAddress::Uninitialized e
    0
sc/source/filter/inc/xlescher.hxx:293
    class tools::Rectangle XclObjAnchor::GetRect(const class XclRoot &,short,enum MapUnit) const
    enum MapUnit eMapUnit
    0
sc/source/filter/inc/xlformula.hxx:380
    void XclTokenArray::XclTokenArray(_Bool)
    _Bool bVolatile
    0
sc/source/filter/inc/xlformula.hxx:442
    void XclTokenArrayIterator::XclTokenArrayIterator(const class ScTokenArray &,_Bool)
    _Bool bSkipSpaces
    1
sc/source/filter/inc/xlformula.hxx:444
    void XclTokenArrayIterator::XclTokenArrayIterator(const class XclTokenArrayIterator &,_Bool)
    _Bool bSkipSpaces
    1
sc/source/filter/inc/xlstyle.hxx:550
    void XclCellArea::XclCellArea(unsigned char)
    unsigned char nPattern
    1
sc/source/filter/inc/xltools.hxx:64
    void XclGuid::XclGuid(unsigned int,unsigned short,unsigned short,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char)
    unsigned char nData43
    0
sc/source/filter/inc/xltools.hxx:64
    void XclGuid::XclGuid(unsigned int,unsigned short,unsigned short,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char,unsigned char)
    unsigned char nData45
    0
sc/source/filter/oox/formulaparser.cxx:464
    struct com::sun::star::sheet::FormulaToken & oox::xls::FormulaParserImpl::getOperandToken(unsigned long,unsigned long)
    unsigned long nOpIndex
    0
sc/source/filter/oox/formulaparser.cxx:464
    struct com::sun::star::sheet::FormulaToken & oox::xls::FormulaParserImpl::getOperandToken(unsigned long,unsigned long)
    unsigned long nTokenIndex
    0
sc/source/filter/xml/XMLChangeTrackingImportHelper.hxx:75
    void ScMyGenerated::ScMyGenerated(class ScBigRange,unsigned int,class std::unique_ptr<struct ScMyCellInfo>)
    unsigned int id
    0
sc/source/filter/xml/XMLExportSharedData.hxx:68
    void ScMySharedData::SetDrawPageHasForms(const int,_Bool)
    _Bool bHasForms
    1
sc/source/ui/dbgui/csvgrid.cxx:60
    void (anonymous namespace)::Func_SetType::Func_SetType(int)
    int nType
    0
sc/source/ui/dbgui/csvgrid.cxx:68
    void (anonymous namespace)::Func_Select::Func_Select(_Bool)
    _Bool bSelect
    0
sc/source/ui/inc/AccessibleDocument.hxx:246
    void ScAccessibleDocument::RemoveChild(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,_Bool)
    _Bool bFireEvent
    1
sc/source/ui/inc/AccessibleEditObject.hxx:55
    void ScAccessibleEditObject::ScAccessibleEditObject(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class EditView *,class vcl::Window *,const class rtl::OUString &,const class rtl::OUString &,enum ScAccessibleEditObject::EditObjectType)
    enum ScAccessibleEditObject::EditObjectType eObjectType
    0
sc/source/ui/inc/acredlin.hxx:119
    class std::unique_ptr<class weld::TreeIter> ScAcceptChgDlg::AppendFilteredAction(const class ScChangeAction *,enum ScChangeActionState,_Bool,const class weld::TreeIter *,_Bool,_Bool)
    _Bool bDelMaster
    0
sc/source/ui/inc/acredlin.hxx:119
    class std::unique_ptr<class weld::TreeIter> ScAcceptChgDlg::AppendFilteredAction(const class ScChangeAction *,enum ScChangeActionState,_Bool,const class weld::TreeIter *,_Bool,_Bool)
    _Bool bDisabled
    0
sc/source/ui/inc/anyrefdg.hxx:71
    void ScFormulaReferenceHelper::EnableSpreadsheets(_Bool)
    _Bool bFlag
    1
sc/source/ui/inc/anyrefdg.hxx:144
    void ScRefHdlrControllerImpl::ScRefHdlrControllerImpl<TBase, bBindRef>(class weld::Window *,const class rtl::OUString &,const class rtl::OUString &,const class SfxItemSet *,class SfxBindings *)
    class SfxBindings * pB
    0
sc/source/ui/inc/cliputil.hxx:24
    void PasteFromClipboard(class ScViewData &,class ScTabViewShell *,_Bool)
    _Bool bShowDialog
    1
sc/source/ui/inc/datatransformation.hxx:151
    void sc::NumberTransformation::NumberTransformation(class std::set<short> &&,const enum sc::NUMBER_TRANSFORM_TYPE,int)
    const enum sc::NUMBER_TRANSFORM_TYPE rType
    0
sc/source/ui/inc/dbdocfun.hxx:79
    _Bool ScDBDocFunc::RepeatDB(const class rtl::OUString &,_Bool,_Bool,short)
    _Bool bApi
    1
sc/source/ui/inc/docfunc.hxx:110
    void ScDocFunc::SetValueCells(const class ScAddress &,const class std::vector<double> &,_Bool)
    _Bool bInteraction
    1
sc/source/ui/inc/docfunc.hxx:121
    _Bool ScDocFunc::SetFormulaCells(const class ScAddress &,class std::vector<class ScFormulaCell *> &,_Bool)
    _Bool bInteraction
    1
sc/source/ui/inc/docfunc.hxx:122
    void ScDocFunc::PutData(const class ScAddress &,class ScEditEngineDefaulter &,_Bool)
    _Bool bApi
    1
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)
    _Bool bApi
    1
sc/source/ui/inc/docfunc.hxx:129
    void ScDocFunc::SetNoteText(const class ScAddress &,const class rtl::OUString &,_Bool)
    _Bool bApi
    0
sc/source/ui/inc/docfunc.hxx:154
    _Bool ScDocFunc::SetTabBgColor(class std::vector<struct ScUndoTabColorInfo> &,_Bool)
    _Bool bApi
    0
sc/source/ui/inc/docfunc.hxx:156
    void ScDocFunc::SetTableVisible(short,_Bool,_Bool)
    _Bool bApi
    1
sc/source/ui/inc/docfunc.hxx:189
    _Bool ScDocFunc::FillSimple(const class ScRange &,const class ScMarkData *,enum FillDir,_Bool)
    _Bool bApi
    0
sc/source/ui/inc/docfunc.hxx:198
    _Bool ScDocFunc::FillAuto(class ScRange &,const class ScMarkData *,enum FillDir,enum FillCmd,enum FillDateCmd,unsigned long,double,double,_Bool,_Bool)
    _Bool bRecord
    1
sc/source/ui/inc/docsh.hxx:273
    void ScDocShell::UpdateAllRowHeights(const _Bool)
    const _Bool bOnlyUsedRows
    1
sc/source/ui/inc/drawutil.hxx:31
    void ScDrawUtil::CalcScale(const class ScDocument &,short,short,int,short,int,const class OutputDevice *,const class Fraction &,const class Fraction &,double,double,class Fraction &,class Fraction &)
    short nStartCol
    0
sc/source/ui/inc/drawutil.hxx:31
    void ScDrawUtil::CalcScale(const class ScDocument &,short,short,int,short,int,const class OutputDevice *,const class Fraction &,const class Fraction &,double,double,class Fraction &,class Fraction &)
    int nStartRow
    0
sc/source/ui/inc/pvfundlg.hxx:152
    int ScDPSubtotalOptDlg::FindListBoxEntry(const class weld::ComboBox &,class std::basic_string_view<char16_t>,int) const
    int nStartPos
    1
sc/source/ui/inc/RegressionDialog.hxx:55
    class rtl::OUString ScRegressionDialog::GetYVariableNameFormula(_Bool)
    _Bool bWithLog
    0
sc/source/ui/inc/spellparam.hxx:36
    void ScConversionParam::ScConversionParam(enum ScConversionType)
    enum ScConversionType eConvType
    0
sc/source/ui/inc/spellparam.hxx:39
    void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool)
    enum ScConversionType eConvType
    1
sc/source/ui/inc/spellparam.hxx:39
    void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool)
    int nOptions
    0
sc/source/ui/inc/spellparam.hxx:39
    void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool)
    _Bool bIsInteractive
    1
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)
    _Bool bIsInteractive
    0
sc/source/ui/inc/TableFillingAndNavigationTools.hxx:69
    void AddressWalker::push(short,int,short)
    short aRelativeTab
    0
sc/source/ui/inc/tabview.hxx:400
    void ScTabView::ClickCursor(short,int,_Bool)
    _Bool bControl
    0
sc/source/ui/inc/tabview.hxx:441
    void ScTabView::MoveCursorAbs(short,int,enum ScFollowMode,_Bool,_Bool,_Bool,_Bool)
    _Bool bControl
    0
sc/source/ui/inc/tabview.hxx:453
    void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
    short nMovX
    0
sc/source/ui/inc/tabview.hxx:453
    void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
    enum ScFollowMode eMode
    1
sc/source/ui/inc/tabview.hxx:453
    void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
    _Bool bShift
    0
sc/source/ui/inc/undoblk.hxx:322
    void ScUndoSelectionAttr::ScUndoSelectionAttr(class ScDocShell *,const class ScMarkData &,short,int,short,short,int,short,class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> >,_Bool,const class ScPatternAttr *,const class SvxBoxItem *,const class SvxBoxInfoItem *,const class ScRange *)
    const class SvxBoxItem * pNewOuter
    0
sc/source/ui/inc/undoblk.hxx:322
    void ScUndoSelectionAttr::ScUndoSelectionAttr(class ScDocShell *,const class ScMarkData &,short,int,short,short,int,short,class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> >,_Bool,const class ScPatternAttr *,const class SvxBoxItem *,const class SvxBoxInfoItem *,const class ScRange *)
    const class SvxBoxInfoItem * pNewInner
    0
sc/source/ui/inc/undoblk.hxx:322
    void ScUndoSelectionAttr::ScUndoSelectionAttr(class ScDocShell *,const class ScMarkData &,short,int,short,short,int,short,class std::unique_ptr<class ScDocument, struct o3tl::default_delete<class ScDocument> >,_Bool,const class ScPatternAttr *,const class SvxBoxItem *,const class SvxBoxInfoItem *,const class ScRange *)
    const class ScRange * pRangeCover
    0
sc/source/ui/inc/undotab.hxx:119
    void ScUndoRenameTab::ScUndoRenameTab(class ScDocShell *,short,const class rtl::OUString &,const class rtl::OUString &)
    short nT
    0
sc/source/ui/inc/undotab.hxx:199
    void ScUndoTabColor::ScUndoTabColor(class ScDocShell *,short,const class Color &,const class Color &)
    short nT
    0
sc/source/ui/inc/viewdata.hxx:146
    void ScPositionHelper::invalidateByPosition(long)
    long nPos
    0
sc/source/ui/inc/viewdata.hxx:626
    class Point ScViewData::GetScrPos(short,int,enum ScHSplitPos) const
    int nWhereY
    0
sc/source/ui/inc/viewdata.hxx:627
    class Point ScViewData::GetScrPos(short,int,enum ScVSplitPos) const
    short nWhereX
    0
sc/source/ui/inc/viewdata.hxx:703
    void ScViewData::AddPixelsWhileBackward(long &,long,int &,int,double,const class ScDocument *,short)
    int nStartRow
    0
sc/source/ui/inc/viewfunc.hxx:175
    void ScViewFunc::ApplyAttributes(const class SfxItemSet &,const class SfxItemSet &,_Bool)
    _Bool bAdjustBlockHeight
    1
sc/source/ui/inc/viewfunc.hxx:218
    _Bool ScViewFunc::AdjustRowHeight(int,int,_Bool)
    _Bool bApi
    1
sc/source/ui/inc/viewutil.hxx:68
    void ScViewUtil::SetFullScreen(const class SfxViewShell &,_Bool)
    _Bool bSet
    0
sc/source/ui/pagedlg/tptable.cxx:41
    _Bool lcl_PutScaleItem(class TypedWhichId<class SfxUInt16Item>,class SfxItemSet &,const class SfxItemSet &,const class weld::ComboBox &,unsigned short,const class weld::MetricSpinButton &,unsigned short)
    unsigned short nLBEntry
    0
sc/source/ui/pagedlg/tptable.cxx:49
    _Bool lcl_PutScaleItem2(class TypedWhichId<class ScPageScaleToItem>,class SfxItemSet &,const class SfxItemSet &,const class weld::ComboBox &,unsigned short,const class weld::SpinButton &,unsigned short,const class weld::SpinButton &,unsigned short)
    unsigned short nLBEntry
    1
sc/source/ui/vba/vbacondition.hxx:43
    int ScVbaCondition::Operator(_Bool)
    _Bool _bIncludeFormulaValue
    1
sc/source/ui/vba/vbaeventshelper.hxx:53
    _Bool ScVbaEventsHelper::isSelectionChanged(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int)
    int nIndex
    0
sc/source/ui/vba/vbaeventshelper.hxx:59
    class com::sun::star::uno::Any ScVbaEventsHelper::createWorksheet(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int) const
    int nIndex
    0
sc/source/ui/vba/vbaeventshelper.hxx:64
    class com::sun::star::uno::Any ScVbaEventsHelper::createRange(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int) const
    int nIndex
    0
sc/source/ui/vba/vbaeventshelper.hxx:69
    class com::sun::star::uno::Any ScVbaEventsHelper::createHyperlink(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int) const
    int nIndex
    0
sc/source/ui/vba/vbaeventshelper.hxx:74
    class com::sun::star::uno::Any ScVbaEventsHelper::createWindow(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int) const
    int nIndex
    0
sc/source/ui/vba/vbarange.hxx:112
    class com::sun::star::uno::Reference<class ooo::vba::excel::XRange> ScVbaRange::getArea(int)
    int nIndex
    0
sc/source/ui/view/olinewin.cxx:729
    _Bool lcl_RotateValue(unsigned long &,unsigned long,unsigned long,_Bool)
    unsigned long nMin
    0
sc/source/ui/view/prevloc.cxx:267
    struct ScPreviewLocationEntry * lcl_GetEntryByAddress(const class std::list<class std::unique_ptr<struct ScPreviewLocationEntry> > &,const class ScAddress &,const enum (anonymous namespace)::ScPreviewLocationType)
    const enum (anonymous namespace)::ScPreviewLocationType eType
    0
sc/source/ui/view/tabview.cxx:2715
    void (anonymous namespace)::ScRangeProvider::ScRangeProvider(const class tools::Rectangle &,_Bool,class ScViewData &)
    _Bool bInPixels
    0
scaddins/source/analysis/analysishelper.hxx:67
    int GetDiffDate360(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,int,int,_Bool)
    _Bool bUSAMethod
    1
scaddins/source/analysis/analysishelper.hxx:81
    int GetDaysInYear(int,int,int)
    int nNullDate
    0
scaddins/source/analysis/analysishelper.hxx:81
    int GetDaysInYear(int,int,int)
    int nDate
    0
scaddins/source/analysis/analysishelper.hxx:260
    void sca::analysis::SortedIndividualInt32List::InsertHolidayList(const class sca::analysis::ScaAnyConverter &,const class com::sun::star::uno::Any &,int,_Bool)
    _Bool bInsertOnWeekend
    0
scaddins/source/analysis/analysishelper.hxx:881
    int sca::analysis::ScaAnyConverter::getInt32(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Any &,int)
    int nDefault
    0
sd/inc/CustomAnimationEffect.hxx:130
    class com::sun::star::uno::Any sd::CustomAnimationEffect::getProperty(int,class std::basic_string_view<char16_t>,enum sd::EValue)
    enum sd::EValue eValue
    0
sd/inc/CustomAnimationEffect.hxx:131
    _Bool sd::CustomAnimationEffect::setProperty(int,class std::basic_string_view<char16_t>,enum sd::EValue,const class com::sun::star::uno::Any &)
    enum sd::EValue eValue
    0
sd/inc/CustomAnimationEffect.hxx:133
    class com::sun::star::uno::Any sd::CustomAnimationEffect::getTransformationProperty(int,enum sd::EValue)
    enum sd::EValue eValue
    1
sd/inc/CustomAnimationEffect.hxx:134
    _Bool sd::CustomAnimationEffect::setTransformationProperty(int,enum sd::EValue,const class com::sun::star::uno::Any &)
    enum sd::EValue eValue
    1
sd/inc/shapelist.hxx:57
    void sd::ShapeList::seekShape(unsigned int)
    unsigned int nIndex
    0
sd/qa/unit/sdmodeltestbase.hxx:49
    void SdModelTestBase::createSdImpressDoc(const char *,const char *)
    const char * pPassword
    0
sd/qa/unit/sdmodeltestbase.hxx:63
    void SdModelTestBase::createSdDrawDoc(const char *,const char *)
    const char * pPassword
    0
sd/qa/unit/sdmodeltestbase.hxx:155
    class com::sun::star::uno::Reference<class com::sun::star::text::XTextField> SdModelTestBase::getTextFieldFromPage(int,int,int,int)
    int nRun
    0
sd/qa/unit/sdmodeltestbase.hxx:155
    class com::sun::star::uno::Reference<class com::sun::star::text::XTextField> SdModelTestBase::getTextFieldFromPage(int,int,int,int)
    int nPara
    0
sd/qa/unit/tiledrendering/LOKitSearchTest.cxx:756
    class rtl::OUString getShapeText(class SdXImpressDocument *,unsigned int,unsigned int)
    unsigned int nShape
    0
sd/source/console/PresenterTextView.hxx:231
    void sdext::presenter::PresenterTextView::SetOffset(const double,const double)
    const double nLeft
    0
sd/source/filter/eppt/epptbase.hxx:394
    unsigned int PPTWriterBase::GetMasterIndex(enum PageType)
    enum PageType ePageType
    0
sd/source/filter/eppt/epptooxml.hxx:186
    void oox::core::PowerPointExport::AuthorComments::AuthorComments(int,int,class rtl::OUString)
    int nLastIndex_
    0
sd/source/filter/eppt/pptexanimations.hxx:96
    void ppt::AnimationExporter::exportNode(class SvStream &,const class com::sun::star::uno::Reference<class com::sun::star::animations::XAnimationNode> &,const unsigned short,const unsigned short,const int,const _Bool,const short)
    const unsigned short nInstance
    1
sd/source/filter/eppt/text.hxx:106
    void FieldEntry::FieldEntry(unsigned int,unsigned int,unsigned int)
    unsigned int nStart
    0
sd/source/filter/html/htmlex.cxx:568
    class rtl::OUString CreateTextForPage(class SdrOutliner *,const class SdPage *,_Bool)
    _Bool bHeadLine
    1
sd/source/filter/ppt/pptinanimations.hxx:99
    void ppt::AnimationImporter::dump_atom_header(const class ppt::Atom *,_Bool,_Bool)
    _Bool bAppend
    0
sd/source/filter/ppt/pptinanimations.hxx:100
    void ppt::AnimationImporter::dump_atom(const class ppt::Atom *,_Bool)
    _Bool bNewLine
    1
sd/source/ui/inc/annotationmanager.hxx:45
    void sd::AnnotationManager::SelectAnnotation(const class rtl::Reference<class sdr::annotation::Annotation> &,_Bool)
    _Bool bEdit
    1
sd/source/ui/inc/DrawDocShell.hxx:67
    void sd::DrawDocShell::DrawDocShell(enum SfxModelFlags,_Bool,enum DocumentType)
    _Bool bSdDataObj
    0
sd/source/ui/inc/DrawDocShell.hxx:72
    void sd::DrawDocShell::DrawDocShell(class SdDrawDocument *,enum SfxObjectCreateMode,_Bool,enum DocumentType)
    enum SfxObjectCreateMode eMode
    0
sd/source/ui/inc/DrawDocShell.hxx:72
    void sd::DrawDocShell::DrawDocShell(class SdDrawDocument *,enum SfxObjectCreateMode,_Bool,enum DocumentType)
    _Bool bSdDataObj
    1
sd/source/ui/inc/DrawViewShell.hxx:95
    void sd::DrawViewShell::DrawViewShell(class sd::ViewShellBase &,class vcl::Window *,enum PageKind,class sd::FrameView *)
    enum PageKind ePageKind
    0
sd/source/ui/inc/navigatr.hxx:114
    void SdNavigatorWin::SdNavigatorWin(class weld::Widget *,class SfxBindings *,class SfxNavigator *)
    class SfxNavigator * pNavigatorDlg
    0
sd/source/ui/inc/RemoteServer.hxx:40
    void sd::ClientInfo::ClientInfo(class rtl::OUString,const _Bool)
    const _Bool bIsAlreadyAuthorised
    0
sd/source/ui/inc/slideshow.hxx:157
    void sd::SlideShow::pause(_Bool)
    _Bool bPause
    0
sd/source/ui/inc/ToolBarManager.hxx:226
    void sd::ToolBarManager::SetToolBarShell(enum sd::ToolBarManager::ToolBarGroup,enum ToolbarId)
    enum sd::ToolBarManager::ToolBarGroup eGroup
    1
sd/source/ui/inc/unomodel.hxx:143
    void SdXImpressDocument::SdXImpressDocument(class SdDrawDocument *,_Bool)
    _Bool bClipBoard
    1
sd/source/ui/inc/View.hxx:181
    _Bool sd::View::IsPresObjSelected(_Bool,_Bool,_Bool,_Bool) const
    _Bool bOnMasterPage
    1
sd/source/ui/slidesorter/cache/SlsBitmapCache.cxx:44
    void sd::slidesorter::cache::BitmapCache::CacheEntry::CacheEntry(int,_Bool)
    _Bool bIsPrecious
    1
sd/source/ui/slidesorter/inc/controller/SlsPageSelector.hxx:100
    _Bool sd::slidesorter::controller::PageSelector::IsPageExcluded(int)
    int nPageIndex
    0
sdext/source/minimizer/configurationaccess.hxx:90
    short ConfigurationAccess::GetConfigProperty(const enum PPPOptimizerTokenEnum,const short) const
    const short nDefault
    0
sdext/source/pdfimport/wrapper/wrapper.cxx:1022
    oslFileError pdfi::(anonymous namespace)::Buffering::read(char *,short,unsigned long *)
    short count
    1
sfx2/source/appl/appcfg.cxx:120
    _Bool toSet_withDefault(class SfxItemSet &,TypedWhichId<type-parameter-?-?>,type-parameter-?-? &&)
    type-parameter-?-? && defVal
    0
sfx2/source/inc/workwin.hxx:276
    void SfxWorkWindow::SetChildWindowVisible_Impl(unsigned int,_Bool,enum SfxVisibilityFlags)
    _Bool 
    1
slideshow/source/engine/opengl/Operation.hxx:226
    class std::shared_ptr<class SEllipseTranslate> makeSEllipseTranslate(double,double,double,double,_Bool,double,double)
    _Bool bInter
    1
slideshow/source/engine/opengl/Operation.hxx:226
    class std::shared_ptr<class SEllipseTranslate> makeSEllipseTranslate(double,double,double,double,_Bool,double,double)
    double T0
    0
slideshow/source/engine/opengl/Operation.hxx:226
    class std::shared_ptr<class SEllipseTranslate> makeSEllipseTranslate(double,double,double,double,_Bool,double,double)
    double T1
    1
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)
    _Bool bScale
    1
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)
    _Bool bInter
    1
slideshow/source/engine/slide/layer.hxx:220
    void slideshow::internal::Layer::Layer(enum slideshow::internal::Layer::Dummy)
    enum slideshow::internal::Layer::Dummy eFlag
    0
slideshow/source/engine/transitions/spiralwipe.hxx:33
    void slideshow::internal::SpiralWipe::SpiralWipe(int,_Bool)
    _Bool flipOnYAxis
    0
slideshow/source/inc/animationfactory.hxx:108
    class std::shared_ptr<class slideshow::internal::PairAnimation> createPairPropertyAnimation(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeManager> &,const class basegfx::B2DVector &,short,int)
    int nFlags
    0
slideshow/source/inc/animationfactory.hxx:128
    class std::shared_ptr<class slideshow::internal::NumberAnimation> createPathMotionAnimation(const class rtl::OUString &,short,const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeManager> &,const class basegfx::B2DVector &,const class std::shared_ptr<class box2d::utils::box2DWorld> &,int)
    int nFlags
    0
slideshow/source/inc/animationfactory.hxx:136
    class std::shared_ptr<class slideshow::internal::NumberAnimation> createPhysicsAnimation(const class std::shared_ptr<class box2d::utils::box2DWorld> &,const double,const class std::shared_ptr<class slideshow::internal::ShapeManager> &,const class basegfx::B2DVector &,const class basegfx::B2DVector &,const double,const double,int)
    int nFlags
    0
slideshow/source/inc/box2dtools.hxx:228
    void box2d::utils::box2DWorld::queueAngularVelocityUpdate(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,const double,const int)
    const int nDelayForSteps
    1
starmath/inc/cfgitem.hxx:88
    class rtl::OUString SmFontFormatList::GetFontFormatId(const struct SmFontFormat &,_Bool)
    _Bool bAdd
    1
starmath/inc/mathml/mathmlimport.hxx:57
    void SmXMLImportWrapper::useHTMLMLEntities(_Bool)
    _Bool bUseHTMLMLEntities
    1
starmath/inc/mathml/starmathdatabase.hxx:218
    struct SmToken Identify_SmXMLOperatorContext_Impl(class std::basic_string_view<char16_t>,_Bool,int)
    int nIndex
    0
starmath/inc/mathml/starmathdatabase.hxx:231
    struct SmToken Identify_PrefixPostfix_SmXMLOperatorContext_Impl(class std::basic_string_view<char16_t>,int)
    int nIndex
    0
starmath/inc/mathml/starmathdatabase.hxx:244
    struct SmToken Identify_Prefix_SmXMLOperatorContext_Impl(class std::basic_string_view<char16_t>,int)
    int nIndex
    0
starmath/inc/mathml/starmathdatabase.hxx:256
    struct SmToken Identify_Postfix_SmXMLOperatorContext_Impl(class std::basic_string_view<char16_t>,int)
    int nIndex
    0
starmath/inc/rect.hxx:174
    class SmRect & SmRect::ExtendBy(const class SmRect &,enum RectCopyMBL,_Bool)
    enum RectCopyMBL eCopyMode
    0
starmath/inc/rect.hxx:174
    class SmRect & SmRect::ExtendBy(const class SmRect &,enum RectCopyMBL,_Bool)
    _Bool bKeepVerAlignParams
    1
starmath/source/mathml/mathmlexport.cxx:79
    unsigned int ConvertMathToMathML(class std::basic_string_view<char16_t>,int)
    int nIndex
    0
store/source/object.hxx:50
    type-parameter-?-? * query(class store::OStoreObject *,type-parameter-?-? *)
    type-parameter-?-? * 
    0
svl/source/crypto/cryptosign.cxx:377
    enum _SECStatus my_SEC_StringToOID(struct SECItemStr *,const char *,unsigned int)
    unsigned int len
    0
svl/source/crypto/cryptosign.cxx:470
    struct NSSCMSAttributeStr * my_NSS_CMSAttributeArray_FindAttrByOidTag(struct NSSCMSAttributeStr **,SECOidTag,int)
    int only
    0
svl/source/crypto/cryptosign.cxx:1661
    struct NSSCMSAttributeStr * CMSAttributeArray_FindAttrByOidData(struct NSSCMSAttributeStr **,const struct SECOidDataStr *,int)
    int only
    1
svl/source/crypto/cryptosign.cxx:1700
    enum _SECStatus StringToOID(struct SECItemStr *,const char *,unsigned int)
    unsigned int len
    0
svl/source/numbers/zforfind.hxx:243
    _Bool ImpSvNumberInputScan::StringPtrContains(const class rtl::OUString &,const char16_t *,int)
    int nPos
    0
svl/source/numbers/zforfind.hxx:397
    _Bool ImpSvNumberInputScan::IsDatePatternNumberOfType(unsigned short,char16_t)
    unsigned short nNumber
    0
svl/source/passwordcontainer/passwordcontainer.hxx:170
    void NamePasswordRecord::RemovePasswords(signed char)
    signed char nStatus
    1
svtools/source/control/valueimp.hxx:204
    void ValueItemAcc::FireAccessibleEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
    short nEventId
    1
svx/inc/sdginitm.hxx:33
    void SdrGrafInvertItem::SdrGrafInvertItem(_Bool)
    _Bool bInvert
    0
svx/inc/sxmtaitm.hxx:31
    void SdrMeasureTextAutoAngleItem::SdrMeasureTextAutoAngleItem(_Bool)
    _Bool bOn
    1
svx/inc/verttexttbxctrl.hxx:30
    void SvxVertCTLTextTbxCtrl_Base::ImplInheritanceHelper(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,nullptr_t &&,class rtl::OUString &&)
    nullptr_t && 
    0
svx/inc/xftshtit.hxx:34
    void XFormTextShadowTranspItem::XFormTextShadowTranspItem(unsigned short)
    unsigned short nShdwTransparence
    0
svx/qa/unit/gluepointTest.cxx:37
    class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> (anonymous namespace)::GluePointTest::getShape(unsigned char)
    unsigned char nShapeIndex
    0
svx/source/customshapes/EnhancedCustomShape3d.cxx:139
    enum com::sun::star::drawing::ShadeMode GetShadeMode(const class SdrCustomShapeGeometryItem &,const enum com::sun::star::drawing::ShadeMode)
    const enum com::sun::star::drawing::ShadeMode eDefault
    0
svx/source/customshapes/EnhancedCustomShape3d.cxx:191
    short GetMetalType(const class SdrCustomShapeGeometryItem &,const short)
    const short eDefault
    0
svx/source/dialog/srchdlg.cxx:753
    void (anonymous namespace)::ToggleSaveToModule::ToggleSaveToModule(class SvxSearchDialog &,_Bool)
    _Bool bValue
    0
svx/source/inc/celltypes.hxx:48
    void sdr::table::RangeIterator::RangeIterator<T>(const type-parameter-?-? &,const type-parameter-?-? &,_Bool)
    const type-parameter-?-? & rStart
    0
svx/source/inc/fmexpl.hxx:493
    signed char svxform::NavigatorTree::implExecuteDataTransfer(const class svxform::OControlTransferData &,signed char,const class Point &,_Bool)
    _Bool _bDnD
    1
svx/source/inc/fmshimp.hxx:257
    void FmXFormShell::didPrepareClose_Lock(_Bool)
    _Bool bDid
    1
svx/source/inc/fmvwimp.hxx:264
    _Bool FmXFormView::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,class std::basic_string_view<char16_t>,class rtl::Reference<class SdrUnoObj> &,class rtl::Reference<class SdrUnoObj> &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XDataSource> &,const class rtl::OUString &,const class rtl::OUString &,const int)
    int _nXOffsetMM
    0
svx/source/inc/galbrws1.hxx:184
    void GalleryBrowser1::SelectTheme(unsigned short)
    unsigned short nThemePos
    0
svx/source/svdraw/svdoole2.cxx:661
    void SdrOle2ObjImpl::SdrOle2ObjImpl(_Bool,const class svt::EmbeddedObjectRef &)
    _Bool bFrame
    0
svx/source/tbxctrls/tbcontrl.cxx:164
    void (anonymous namespace)::SvxStyleBox_Base::insert_separator(int,const class rtl::OUString &)
    int pos
    1
sw/inc/AnnotationWin.hxx:129
    void sw::annotation::SwAnnotationWin::LockView(_Bool)
    _Bool bLock
    0
sw/inc/authfld.hxx:183
    class rtl::OUString SwAuthorityField::ExpandCitation(enum ToxAuthorityField,const class SwRootFrame *) const
    const class SwRootFrame * pLayout
    0
sw/inc/calc.hxx:118
    void SwSbxValue::SwSbxValue(long)
    long n
    0
sw/inc/crsrsh.hxx:603
    _Bool SwCursorShell::GotoMark(const class sw::mark::MarkBase *const,_Bool)
    _Bool bAtStart
    1
sw/inc/crsrsh.hxx:884
    void SwCursorShell::FireSectionChangeEvent(unsigned short,unsigned short)
    unsigned short nNewSection
    1
sw/inc/crsrsh.hxx:885
    void SwCursorShell::FireColumnChangeEvent(unsigned short,unsigned short)
    unsigned short nNewColumn
    1
sw/inc/dbfld.hxx:83
    void SwDBField::ChgValue(double,_Bool)
    _Bool bVal
    1
sw/inc/doc.hxx:1015
    void SwDoc::CorrAbs(const class SwNode &,const struct SwPosition &,const int,_Bool)
    _Bool bMoveCursor
    1
sw/inc/doc.hxx:1029
    void SwDoc::CorrAbs(const class SwPaM &,const struct SwPosition &,_Bool)
    _Bool bMoveCursor
    1
sw/inc/doc.hxx:1035
    void SwDoc::CorrRel(const class SwNode &,const struct SwPosition &,const int,_Bool)
    const int nOffset
    0
sw/inc/doc.hxx:1083
    void SwDoc::SetCounted(const class SwPaM &,_Bool,const class SwRootFrame *)
    _Bool bCounted
    1
sw/inc/doc.hxx:1152
    const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool,const class SvxTextLeftMarginItem **,const class SvxFirstLineIndentItem **)
    const _Bool bForward
    0
sw/inc/doc.hxx:1152
    const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool,const class SvxTextLeftMarginItem **,const class SvxFirstLineIndentItem **)
    const _Bool bOutline
    0
sw/inc/doc.hxx:1498
    const class SvNumberFormatter * SwDoc::GetNumberFormatter(_Bool) const
    _Bool bCreate
    1
sw/inc/doc.hxx:1729
    void SwDoc::dumpAsXml(struct _xmlTextWriter *) const
    struct _xmlTextWriter * 
    0
sw/inc/docary.hxx:309
    _Bool SwExtraRedlineTable::DeleteTableRowRedline(class SwDoc *,const class SwTableLine &,_Bool,enum RedlineType)
    _Bool bSaveInUndo
    1
sw/inc/docary.hxx:310
    _Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,enum RedlineType)
    _Bool bSaveInUndo
    1
sw/inc/docufld.hxx:287
    void SwHiddenTextFieldType::SwHiddenTextFieldType(_Bool)
    _Bool bSetHidden
    1
sw/inc/docufld.hxx:313
    void SwHiddenTextField::SwHiddenTextField(class SwHiddenTextFieldType *,_Bool,class rtl::OUString,const class rtl::OUString &,_Bool,enum SwFieldTypesEnum)
    _Bool bConditional
    1
sw/inc/docufld.hxx:313
    void SwHiddenTextField::SwHiddenTextField(class SwHiddenTextFieldType *,_Bool,class rtl::OUString,const class rtl::OUString &,_Bool,enum SwFieldTypesEnum)
    _Bool bHidden
    0
sw/inc/editsh.hxx:290
    class SwFrameFormat & SwEditShell::GetTableFrameFormat(unsigned long,_Bool) const
    _Bool bUsed
    0
sw/inc/EnhancedPDFExportHelper.hxx:182
    void SwTaggedPDFHelper::SwTaggedPDFHelper(const struct Num_Info *,const struct Frame_Info *,const struct Por_Info *,const class OutputDevice &)
    const struct Num_Info * pNumInfo
    0
sw/inc/fesh.hxx:426
    class std::vector<const class SwFrameFormat *> SwFEShell::GetFlyFrameFormats(enum FlyCntType,_Bool)
    _Bool bIgnoreTextBoxes
    1
sw/inc/IDocumentMarkAccess.hxx:320
    class sw::mark::Bookmark * IDocumentMarkAccess::makeAnnotationBookmark(const class SwPaM &,const class rtl::OUString &,enum sw::mark::InsertMode,const struct SwPosition *)
    enum sw::mark::InsertMode eMode
    0
sw/inc/IDocumentMarkAccess.hxx:320
    class sw::mark::Bookmark * IDocumentMarkAccess::makeAnnotationBookmark(const class SwPaM &,const class rtl::OUString &,enum sw::mark::InsertMode,const struct SwPosition *)
    const struct SwPosition * pSepPos
    0
sw/inc/IDocumentRedlineAccess.hxx:202
    _Bool IDocumentRedlineAccess::RejectRedline(unsigned long,_Bool,_Bool)
    _Bool bCallDelete
    1
sw/inc/IDocumentUndoRedo.hxx:208
    unsigned long IDocumentUndoRedo::GetUndoActionCount(const _Bool) const
    const _Bool bCurrentLevel
    1
sw/inc/istyleaccess.hxx:43
    class std::shared_ptr<class SfxItemSet> IStyleAccess::getAutomaticStyle(const class SfxItemSet &,enum IStyleAccess::SwAutoStyleFamily,const class rtl::OUString *)
    enum IStyleAccess::SwAutoStyleFamily eFamily
    0
sw/inc/istyleaccess.hxx:43
    class std::shared_ptr<class SfxItemSet> IStyleAccess::getAutomaticStyle(const class SfxItemSet &,enum IStyleAccess::SwAutoStyleFamily,const class rtl::OUString *)
    const class rtl::OUString * pParentName
    0
sw/inc/ndarr.hxx:205
    class SwContentNode * SwNodes::GoPrevious(class SwNodeIndex *,_Bool)
    _Bool canCrossBoundary
    0
sw/inc/ndole.hxx:103
    void SwOLENode::SwOLENode(class SwNode &,const class svt::EmbeddedObjectRef &,class SwGrfFormatColl *,const class SwAttrSet *)
    const class SwAttrSet * pAutoAttr
    0
sw/inc/ndtxt.hxx:299
    void SwTextNode::EraseText(const struct SwPosition &,const int,const enum SwInsertFlags)
    const enum SwInsertFlags nMode
    0
sw/inc/ndtxt.hxx:373
    void SwTextNode::CopyText(class SwTextNode *const,const class SwContentIndex &,const int,const _Bool)
    const _Bool bForceCopyOfAllAttrs
    1
sw/inc/ndtxt.hxx:382
    void SwTextNode::CopyText(class SwTextNode *const,const class SwContentIndex &,const struct SwPosition &,int,const _Bool)
    const _Bool bForceCopyOfAllAttrs
    0
sw/inc/ndtxt.hxx:499
    class std::vector<long> SwTextNode::GetNumberVector(const class SwRootFrame *,enum SwListRedlineType) const
    enum SwListRedlineType eRedline
    0
sw/inc/ndtxt.hxx:784
    int SwTextNode::GetDropLen(int) const
    int nWishLen
    0
sw/inc/node.hxx:443
    _Bool SwContentNode::GoNext(struct SwPosition &,enum SwCursorSkipMode) const
    enum SwCursorSkipMode nMode
    0
sw/inc/pam.hxx:199
    void SwPaM::SwPaM(const class SwNodeIndex &,const class SwNodeIndex &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,class SwPaM *)
    class SwPaM * pRing
    0
sw/inc/pam.hxx:203
    void SwPaM::SwPaM(const class SwNodeIndex &,int,const class SwNodeIndex &,int,class SwPaM *)
    int nMkContent
    0
sw/inc/pam.hxx:203
    void SwPaM::SwPaM(const class SwNodeIndex &,int,const class SwNodeIndex &,int,class SwPaM *)
    class SwPaM * pRing
    0
sw/inc/pam.hxx:207
    void SwPaM::SwPaM(const class SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,int,const class SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,int,class SwPaM *)
    int nMkContent
    0
sw/inc/pam.hxx:207
    void SwPaM::SwPaM(const class SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,int,const class SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,int,class SwPaM *)
    class SwPaM * pRing
    0
sw/inc/pam.hxx:209
    void SwPaM::SwPaM(const class SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,int,class SwPaM *)
    class SwPaM * pRing
    0
sw/inc/pam.hxx:211
    void SwPaM::SwPaM(const class SwNodeIndex &,int,class SwPaM *)
    class SwPaM * pRing
    0
sw/inc/pam.hxx:212
    void SwPaM::SwPaM(class SwNodes &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,class SwPaM *)
    class SwPaM * pRing
    0
sw/inc/redline.hxx:222
    unsigned int SwRangeRedline::GetMovedID(unsigned short) const
    unsigned short nPos
    0
sw/inc/reffld.hxx:166
    const class SwTextNode * SwGetRefField::GetReferencedTextNode(class SwTextNode *,class SwFrame *) const
    class SwTextNode * pTextNode
    0
sw/inc/reffld.hxx:166
    const class SwTextNode * SwGetRefField::GetReferencedTextNode(class SwTextNode *,class SwFrame *) const
    class SwFrame * pFrame
    0
sw/inc/shellio.hxx:529
    void SwWriter::SwWriter(class SvStream &,class SwCursorShell &,_Bool)
    _Bool bWriteAll
    0
sw/inc/shellio.hxx:531
    void SwWriter::SwWriter(class SvStream &,class SwPaM &,_Bool)
    _Bool bWriteAll
    0
sw/inc/swabstdlg.hxx:321
    void AbstractSwSelGlossaryDlg::SelectEntryPos(int)
    int nIdx
    0
sw/inc/swcrsr.hxx:127
    int SwCursor::FindFormat(const class SwTextFormatColl &,enum SwDocPositions,enum SwDocPositions,_Bool &,enum FindRanges,const class SwTextFormatColl *,const class SwRootFrame *const)
    const class SwRootFrame *const pLayout
    0
sw/inc/swmodule.hxx:161
    void SwModule::ApplyRulerMetric(enum FieldUnit,_Bool,_Bool)
    _Bool bWeb
    0
sw/inc/SwStyleNameMapper.hxx:83
    void SwStyleNameMapper::fillNameFromId(unsigned short,class rtl::OUString &,_Bool)
    _Bool bProgName
    0
sw/inc/swurl.hxx:38
    _Bool LoadURL(class SwViewShell *,const class rtl::OUString &,enum LoadUrlFlags,const class rtl::OUString &)
    enum LoadUrlFlags nFilter
    0
sw/inc/textboxhelper.hxx:245
    void SwTextBoxNode::DelTextBox(const class SdrObject *,_Bool)
    _Bool bDelFromDoc
    1
sw/inc/textboxhelper.hxx:250
    void SwTextBoxNode::DelTextBox(const class SwFrameFormat *,_Bool)
    _Bool bDelFromDoc
    0
sw/inc/undobj.hxx:327
    void SwUndoInsLayFormat::SwUndoInsLayFormat(class SwFrameFormat *,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,int)
    int nCntIdx
    0
sw/inc/undobj.hxx:350
    void SwUndoDelLayFormat::ChgShowSel(_Bool)
    _Bool bNew
    0
sw/qa/extras/ooxmlimport/ooxmlimport.cxx:772
    void lcl_countTextFrames(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,int)
    int nExpected
    1
sw/qa/inc/swmodeltestbase.hxx:92
    void SwModelTestBase::executeLoadVerifyReloadVerify(const char *,const char *)
    const char * pPassword
    0
sw/qa/inc/swmodeltestbase.hxx:203
    void SwModelTestBase::loadAndSave(const char *,const char *)
    const char * pPassword
    0
sw/source/core/access/accmap.cxx:429
    void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,class SwAccessibleContext *,class sw::access::SwAccessibleChild,const enum AccessibleStates)
    enum SwAccessibleEvent_Impl::EventType eT
    0
sw/source/core/crsr/swcrsr.cxx:75
    void (anonymous namespace)::PercentHdl::PercentHdl(unsigned long,unsigned long,class SwDocShell *)
    unsigned long nStt
    0
sw/source/core/doc/doccomp.cxx:157
    void (anonymous namespace)::CompareMainText::CompareMainText(class SwDoc &,_Bool)
    _Bool bRecordDiff
    0
sw/source/core/doc/DocumentRedlineManager.cxx:1000
    _Bool lcl_AcceptInnerInsertRedline(class SwRedlineTable &,unsigned long &,int)
    int nDepth
    1
sw/source/core/fields/textapi.cxx:94
    void (anonymous namespace)::SwTextAPIForwarder::SvxOutlinerForwarder(class Outliner &,_Bool)
    _Bool 
    0
sw/source/core/inc/drawfont.hxx:117
    void SwDrawTextInfo::SwDrawTextInfo(const class SwViewShell *,class OutputDevice &,const class rtl::OUString &,const int,const int,unsigned short,_Bool)
    unsigned short nWidth
    0
sw/source/core/inc/drawfont.hxx:117
    void SwDrawTextInfo::SwDrawTextInfo(const class SwViewShell *,class OutputDevice &,const class rtl::OUString &,const int,const int,unsigned short,_Bool)
    _Bool bBullet
    0
sw/source/core/inc/frame.hxx:488
    long SwFrame::GrowFrame(long,_Bool,_Bool)
    _Bool bTst
    0
sw/source/core/inc/frame.hxx:488
    long SwFrame::GrowFrame(long,_Bool,_Bool)
    _Bool bInfo
    0
sw/source/core/inc/frame.hxx:543
    long SwFrame::Grow(long,_Bool,_Bool)
    _Bool bInfo
    0
sw/source/core/inc/ftnfrm.hxx:56
    class SwFootnoteFrame * SwFootnoteContFrame::AppendChained(class SwFrame *,_Bool)
    _Bool bDefaultFormat
    1
sw/source/core/inc/ftnfrm.hxx:57
    class SwFootnoteFrame * SwFootnoteContFrame::PrependChained(class SwFrame *,_Bool)
    _Bool bDefaultFormat
    0
sw/source/core/inc/rolbck.hxx:402
    void SwHistory::CopyAttr(const class SwpHints *,const struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const int,const int,const _Bool)
    const int nStart
    0
sw/source/core/inc/scriptinfo.hxx:400
    enum SwFontScript SwScriptInfo::WhichFont(int,const class rtl::OUString &)
    int nIdx
    0
sw/source/core/inc/swfont.hxx:300
    const class rtl::OUString & SwFont::GetName(const enum SwFontScript) const
    const enum SwFontScript nWhich
    0
sw/source/core/inc/txmsrt.hxx:116
    class rtl::OUString SwTOXInternational::ToUpper(const class rtl::OUString &,int) const
    int nPos
    0
sw/source/core/inc/UndoDelete.hxx:71
    void SwUndoDelete::SwUndoDelete(class SwPaM &,enum SwDeleteFlags,_Bool,_Bool)
    enum SwDeleteFlags flags
    0
sw/source/core/inc/UndoDelete.hxx:71
    void SwUndoDelete::SwUndoDelete(class SwPaM &,enum SwDeleteFlags,_Bool,_Bool)
    _Bool bCalledByTableCpy
    0
sw/source/core/inc/UndoTable.hxx:263
    void SwUndoTableNumFormat::SwUndoTableNumFormat(const class SwTableBox &,const class SfxItemSet *)
    const class SfxItemSet * pNewSet
    0
sw/source/core/inc/wrong.hxx:346
    void SwWrongList::InsertSubList(int,int,unsigned short,class SwWrongList *)
    int nNewLen
    1
sw/source/core/text/inftxt.hxx:754
    void SwFontSave::SwFontSave(const class SwTextSizeInfo &,class SwFont *,class SwAttrIter *)
    class SwAttrIter * pItr
    0
sw/source/core/text/porfld.cxx:402
    _Bool (lambda at /home/noel/libo-plugin/sw/source/core/text/porfld.cxx:402:27)::operator()(const char16_t,const _Bool) const
     ###2
    1
sw/source/core/txtnode/fntcache.cxx:788
    void GetTextArray(const class OutputDevice &,const class SwDrawTextInfo &,class std::vector<double> &,_Bool)
    _Bool bCaret
    0
sw/source/core/txtnode/txtedt.cxx:214
    _Bool lcl_MaskRedlinesAndHiddenText(const class SwTextNode &,class rtl::OUStringBuffer &,int,int,const char16_t)
    int nStt
    0
sw/source/core/undo/untbl.cxx:2198
    void (anonymous namespace)::RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags)
    enum RedlineFlags eNewRedlineFlags
    0
sw/source/filter/html/htmltab.cxx:486
    unsigned short HTMLTable::GetBottomCellSpace(unsigned short,unsigned short) const
    unsigned short nRowSpan
    1
sw/source/filter/html/htmltab.cxx:502
    class SwTableLine * HTMLTable::MakeTableLine(class SwTableBox *,unsigned short,unsigned short,unsigned short,unsigned short)
    unsigned short nLeftCol
    0
sw/source/filter/html/swhtml.hxx:845
    void SwHTMLParser::BuildTableCell(class HTMLTable *,_Bool,_Bool)
    _Bool bReadOptions
    1
sw/source/filter/html/wrthtml.hxx:504
    void SwHTMLWriter::OutBackground(const class SfxItemSet &,_Bool)
    _Bool bGraphic
    0
sw/source/filter/inc/fltshell.hxx:303
    void ImportProgress::ImportProgress(class SwDocShell *,long,long)
    long nStartVal
    0
sw/source/filter/inc/wrtswtbl.hxx:282
    unsigned short SwWriteTable::GetRelWidth(unsigned short,unsigned short) const
    unsigned short nColSpan
    1
sw/source/filter/ww8/docxattributeoutput.hxx:813
    void DocxAttributeOutput::CmdEndField_Impl(const class SwTextNode *,int,_Bool)
    _Bool bWriteRun
    1
sw/source/filter/ww8/needed_cast.hxx:27
    type-parameter-?-? checking_cast(type-parameter-?-?,type-parameter-?-?)
    type-parameter-?-? 
    0
sw/source/filter/ww8/writerwordglue.cxx:344
    void myImplHelpers::(anonymous namespace)::IfBeforeStart::IfBeforeStart(int)
    int nStart
    0
sw/source/filter/ww8/wrtww8.hxx:185
    void WW8_SepInfo::WW8_SepInfo(const class SwPageDesc *,const class SwSectionFormat *,unsigned long,class std::optional<unsigned short>,const class SwNode *,_Bool)
    _Bool bIsFirstPara
    0
sw/source/filter/ww8/wrtww8.hxx:654
    void MSWordExportBase::OutputItemSet(const class SfxItemSet &,_Bool,_Bool,unsigned short,_Bool)
    unsigned short nScript
    1
sw/source/filter/ww8/wrtww8.hxx:910
    void MSWordExportBase::NearestAnnotationMark(int &,const int,_Bool)
    _Bool bNextPositionOnly
    0
sw/source/filter/ww8/wrtww8.hxx:1405
    void WW8_WrMagicTable::Append(int,unsigned long)
    int nCp
    0
sw/source/filter/ww8/wrtww8.hxx:1405
    void WW8_WrMagicTable::Append(int,unsigned long)
    unsigned long nData
    0
sw/source/filter/ww8/ww8par.cxx:454
    class rtl::OUString (anonymous namespace)::Sttb::getStringAtIndex(unsigned int)
    unsigned int 
    1
sw/source/filter/ww8/ww8par.hxx:1726
    _Bool SwWW8ImplReader::SetUpperSpacing(class SwPaM &,int)
    int nSpace
    0
sw/source/filter/ww8/ww8scan.hxx:170
    class rtl::OUString read_uInt8_BeltAndBracesString(class SvStream &,unsigned short)
    unsigned short eEnc
    1
sw/source/filter/ww8/ww8scan.hxx:469
    void WW8PLCFx_PCD::WW8PLCFx_PCD(const class WW8Fib &,class WW8PLCFpcd *,int,_Bool)
    int nStartCp
    0
sw/source/filter/ww8/ww8scan.hxx:676
    void WW8PLCFx_SEPX::WW8PLCFx_SEPX(class SvStream *,class SvStream *,const class WW8Fib &,int)
    int nStartCp
    0
sw/source/filter/ww8/ww8scan.hxx:704
    void WW8PLCFx_SubDoc::WW8PLCFx_SubDoc(class SvStream *,const class WW8Fib &,int,long,long,long,long,long)
    int nStartCp
    0
sw/source/filter/ww8/WW8TableInfo.hxx:302
    class ww8::WW8TableNodeInfo * ww8::WW8TableInfo::processTableLine(const class SwTable *,const class SwTableLine *,unsigned int,unsigned int,class ww8::WW8TableNodeInfo *,class std::map<unsigned int, class ww8::WW8TableNodeInfoInner *, struct std::greater<unsigned int> > &)
    unsigned int nDepth
    1
sw/source/filter/xml/xmlfmt.cxx:381
    void (anonymous namespace)::SwXMLCellStyleContext::XMLPropStyleContext(class SvXMLImport &,class SvXMLStylesContext &,enum XmlStyleFamily,_Bool)
    _Bool 
    0
sw/source/ui/inc/condedit.hxx:114
    void ConditionEdit::ShowBrackets(_Bool)
    _Bool bShow
    0
sw/source/ui/misc/impfnote.hxx:62
    void SwEndNoteOptionPage::SwEndNoteOptionPage(class weld::Container *,class weld::DialogController *,_Bool,const class SfxItemSet &)
    _Bool bEndNote
    0
sw/source/ui/vba/vbarangehelper.hxx:32
    void SwVbaRangeHelper::insertString(const class com::sun::star::uno::Reference<class com::sun::star::text::XTextRange> &,const class com::sun::star::uno::Reference<class com::sun::star::text::XText> &,class std::basic_string_view<char16_t>,_Bool)
    _Bool _bAbsorb
    1
sw/source/uibase/inc/conttree.hxx:196
    class std::unique_ptr<class weld::TreeIter> SwContentTree::GetEntryAtAbsPos(unsigned long) const
    unsigned long nAbsPos
    0
sw/source/uibase/inc/dbtree.hxx:62
    class std::unique_ptr<class weld::TreeIter> SwDBTreeList::make_iterator(const class weld::TreeIter *) const
    const class weld::TreeIter * pOrig
    0
sw/source/uibase/inc/frmmgr.hxx:99
    void SwFlyFrameAttrMgr::SetLRSpace(long,long)
    long nLeft
    0
sw/source/uibase/inc/frmmgr.hxx:99
    void SwFlyFrameAttrMgr::SetLRSpace(long,long)
    long nRight
    0
sw/source/uibase/inc/frmmgr.hxx:101
    void SwFlyFrameAttrMgr::SetULSpace(long,long)
    long nTop
    0
sw/source/uibase/inc/frmmgr.hxx:101
    void SwFlyFrameAttrMgr::SetULSpace(long,long)
    long nBottom
    0
sw/source/uibase/inc/mmconfigitem.hxx:137
    void SwMailMergeConfigItem::SetIndividualGreeting(_Bool,_Bool)
    _Bool bInEMail
    0
sw/source/uibase/inc/numfmtlb.hxx:133
    void SwNumFormatTreeView::select(int)
    int nPos
    0
sw/source/uibase/inc/prcntfld.hxx:68
    long SwPercentField::get_min(enum FieldUnit) const
    enum FieldUnit eOutUnit
    0
sw/source/uibase/inc/swmodalredlineacceptdlg.hxx:36
    void SwModalRedlineAcceptDlg::AcceptAll(_Bool)
    _Bool bAccept
    0
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 &)
    _Bool bDraw
    0
sw/source/uibase/inc/usrpref.hxx:272
    void SwMasterUsrPref::SetDefaultZoom(_Bool,_Bool)
    _Bool bNoModify
    0
sw/source/uibase/inc/usrpref.hxx:319
    void SwMasterUsrPref::SetEncloseWithCharactersOn(_Bool,_Bool)
    _Bool noModify
    0
sw/source/uibase/inc/wrtsh.hxx:127
    void SwWrtShell::EndDrag(const class Point *,_Bool)
    _Bool bProp
    0
sw/source/uibase/inc/wrtsh.hxx:128
    long SwWrtShell::KillSelection(const class Point *,_Bool,enum ScrollSizeMode)
    const class Point * pPt
    0
sw/source/uibase/inc/wrtsh.hxx:128
    long SwWrtShell::KillSelection(const class Point *,_Bool,enum ScrollSizeMode)
    _Bool bProp
    0
sw/source/uibase/inc/wrtsh.hxx:128
    long SwWrtShell::KillSelection(const class Point *,_Bool,enum ScrollSizeMode)
    enum ScrollSizeMode eScrollSizeMode
    0
sw/source/uibase/inc/wrtsh.hxx:432
    _Bool SwWrtShell::GotoMark(const class sw::mark::MarkBase *const,_Bool)
    _Bool bSelect
    0
sw/source/uibase/inc/wrtsh.hxx:503
    _Bool SwWrtShell::GotoRefMark(const class rtl::OUString &,unsigned short,unsigned short,unsigned short)
    unsigned short nFlags
    0
sw/source/uibase/inc/wrtsh.hxx:508
    const class SwRangeRedline * SwWrtShell::GotoRedline(unsigned long,_Bool)
    _Bool bSelect
    1
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 min
    1
sw/source/writerfilter/dmapper/DomainMapper.hxx:126
    void writerfilter::dmapper::DomainMapper::hasControls(const _Bool)
    const _Bool bSet
    1
sw/source/writerfilter/dmapper/DomainMapper_Impl.hxx:344
    _Bool writerfilter::dmapper::FieldContext::GetCommandIsEmpty(_Bool) const
    _Bool bType
    0
sw/source/writerfilter/inc/dmapper/resourcemodel.hxx:255
    void writerfilter::Stream::text(const unsigned char *,unsigned long)
    unsigned long len
    1
sw/source/writerfilter/inc/ooxml/OOXMLDocument.hxx:135
    void writerfilter::ooxml::OOXMLDocument::resolveFootnote(class writerfilter::Stream &,unsigned int,const int)
    unsigned int aNoteType
    0
sw/source/writerfilter/inc/ooxml/OOXMLDocument.hxx:148
    void writerfilter::ooxml::OOXMLDocument::resolveEndnote(class writerfilter::Stream &,unsigned int,const int)
    unsigned int aNoteType
    0
sw/source/writerfilter/ooxml/OOXMLPropertySet.hxx:46
    class writerfilter::ooxml::OOXMLValue writerfilter::ooxml::OOXMLValue::createHex(unsigned int)
    unsigned int 
    0
sw/source/writerfilter/ooxml/OOXMLStreamImpl.hxx:62
    void writerfilter::ooxml::OOXMLStreamImpl::OOXMLStreamImpl(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream>,enum writerfilter::ooxml::OOXMLStream::StreamType_t,_Bool)
    enum writerfilter::ooxml::OOXMLStream::StreamType_t nType
    1
test/source/sheet/xdatapilottable2.cxx:237
    struct com::sun::star::table::CellAddress getLastUsedCellAddress(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XSpreadsheet> &,int,int)
    int nCol
    0
test/source/sheet/xdatapilottable2.cxx:237
    struct com::sun::star::table::CellAddress getLastUsedCellAddress(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XSpreadsheet> &,int,int)
    int nRow
    0
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)
    short a
    0
ucb/source/ucp/tdoc/tdoc_provider.hxx:106
    class com::sun::star::uno::Reference<class com::sun::star::io::XOutputStream> tdoc_ucp::ContentProvider::queryOutputStream(const class rtl::OUString &,const class rtl::OUString &,_Bool) const
    _Bool bTruncate
    1
ucb/source/ucp/tdoc/tdoc_provider.hxx:113
    class com::sun::star::uno::Reference<class com::sun::star::io::XStream> tdoc_ucp::ContentProvider::queryStream(const class rtl::OUString &,const class rtl::OUString &,_Bool) const
    _Bool bTruncate
    0
ucb/source/ucp/webdav-curl/CurlSession.cxx:219
    void (anonymous namespace)::CurlOption::CurlOption(const CURLoption,const long,const char *const,const enum (anonymous namespace)::CurlOption::Type)
    const char *const i_pExceptionString
    0
ucb/source/ucp/webdav-curl/DAVResourceAccess.hxx:97
    void http_dav_ucp::DAVResourceAccess::PROPFIND(const enum http_dav_ucp::Depth,class std::vector<struct http_dav_ucp::DAVResourceInfo> &,const class com::sun::star::uno::Reference<class com::sun::star::ucb::XCommandEnvironment> &)
    const enum http_dav_ucp::Depth nDepth
    0
ucb/source/ucp/webdav-curl/DAVTypes.hxx:171
    void http_dav_ucp::DAVOptionsCache::setHeadAllowed(const class rtl::OUString &,_Bool)
    _Bool HeadAllowed
    0
vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:36
    class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateMenuItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,_Bool)
    _Bool isVisible
    1
vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:36
    class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateMenuItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,_Bool)
    _Bool isEnabled
    1
vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:43
    class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int)
    _Bool isVisible
    1
vbahelper/source/vbahelper/vbacommandbarcontrols.hxx:43
    class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> ScVbaCommandBarControls::CreateToolbarItemData(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,unsigned short,const class com::sun::star::uno::Any &,_Bool,int)
    int nStyle
    0
vcl/backendtest/outputdevice/common.cxx:59
    void checkValue(class BitmapScopedWriteAccess &,const class Point &,class Color,int &,int &,_Bool,int)
    _Bool bQuirkMode
    0
vcl/backendtest/outputdevice/common.cxx:59
    void checkValue(class BitmapScopedWriteAccess &,const class Point &,class Color,int &,int &,_Bool,int)
    int nColorDeltaThresh
    0
vcl/backendtest/outputdevice/common.cxx:283
    enum vcl::test::TestResult checkDiamondLine(class Bitmap &,int,class Color)
    int aLayerNumber
    1
vcl/backendtest/VisualBackendTest.cxx:51
    void drawBitmapScaledAndCentered(const class tools::Rectangle &,class Bitmap,class OutputDevice &,enum BmpScaleFlag)
    enum BmpScaleFlag aFlag
    1
vcl/inc/accessibility/textwindowaccessibility.hxx:312
    struct com::sun::star::awt::Rectangle Document::retrieveParagraphBounds(const class Paragraph *,_Bool)
    _Bool bAbsolute
    0
vcl/inc/driverblocklist.hxx:28
    _Bool IsDeviceBlocked(const class rtl::OUString &,enum DriverBlocklist::VersionType,class std::basic_string_view<char16_t>,class std::basic_string_view<char16_t>,const class rtl::OUString &)
    enum DriverBlocklist::VersionType versionType
    1
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)
    const class std::vector<double> * i_pStroke
    0
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 com::sun::star::drawing::LineCap i_eLineCap
    1
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)
    _Bool bPixelSnapHairline
    0
vcl/inc/font/PhysicalFontFace.hxx:188
    class rtl::OUString vcl::font::PhysicalFontFace::GetName(vcl::font::NameID) const
    vcl::font::NameID aNameID
    1
vcl/inc/graphic/MemoryManaged.hxx:95
    void vcl::graphic::MemoryManaged::swappedOut(long)
    long nNewSize
    0
vcl/inc/headless/BitmapHelper.hxx:35
    void BitmapHelper::BitmapHelper(const class SalBitmap &,const _Bool)
    const _Bool bForceARGB32
    1
vcl/inc/impgraph.hxx:169
    void ImpGraphic::ImpGraphic(_Bool)
    _Bool bDefault
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:286
    void JSWidget::JSWidget<BaseInstanceClass, VclClass>(class JSDialogSender *,type-parameter-?-? *,class SalInstanceBuilder *,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class std::function<class std::unique_ptr<class UIObject> (class vcl::Window *)>,void *,_Bool)
    _Bool bTakeOwnership
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:413
    void JSDialog::JSDialog(class JSDialogSender *,class Dialog *,class SalInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:430
    void JSAssistant::JSAssistant(class JSDialogSender *,class vcl::RoadmapWizard *,class SalInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:485
    void JSButton::JSButton(class JSDialogSender *,class Button *,class SalInstanceBuilder *,_Bool)
    class SalInstanceBuilder * pBuilder
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:485
    void JSButton::JSButton(class JSDialogSender *,class Button *,class SalInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:599
    void JSMessageDialog::JSMessageDialog(class JSDialogSender *,class MessageDialog *,class SalInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:601
    void JSMessageDialog::JSMessageDialog(class MessageDialog *,class SalInstanceBuilder *,_Bool)
    class SalInstanceBuilder * pBuilder
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:601
    void JSMessageDialog::JSMessageDialog(class MessageDialog *,class SalInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    1
vcl/inc/jsdialog/jsdialogbuilder.hxx:777
    void JSMenu::JSMenu(class JSDialogSender *,class PopupMenu *,class SalInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    0
vcl/inc/jsdialog/jsdialogbuilder.hxx:789
    void JSPopover::JSPopover(class JSDialogSender *,class DockingWindow *,class SalInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    0
vcl/inc/listbox.hxx:145
    class rtl::OUString ImplEntryList::GetSelectedEntry(int) const
    int nIndex
    0
vcl/inc/qt5/QtGraphics_Controls.hxx:95
    class QSize QtGraphics_Controls::downscale(const class QSize &,enum QtGraphics_Controls::Round)
    enum QtGraphics_Controls::Round eRound
    1
vcl/inc/qt5/QtGraphics_Controls.hxx:96
    class QSize QtGraphics_Controls::upscale(const class QSize &,enum QtGraphics_Controls::Round)
    enum QtGraphics_Controls::Round eRound
    1
vcl/inc/qt5/QtInstanceTreeView.hxx:196
    class QModelIndex QtInstanceTreeView::modelIndex(const class weld::TreeIter &,int) const
    int nCol
    0
vcl/inc/qt5/QtVirtualDevice.hxx:41
    void QtVirtualDevice::QtVirtualDevice(double)
    double fScale
    1
vcl/inc/salgdi.hxx:144
    void SalGraphics::GetFontMetric(class tools::SvRef<class FontMetricData> &,int)
    int nFallbackLevel
    0
vcl/inc/salgdi.hxx:486
    void SalGraphics::copyArea(long,long,long,long,long,long,_Bool)
    _Bool bWindowInvalidate
    1
vcl/inc/salinst.hxx:148
    unsigned int SalInstance::ReleaseYieldMutex(_Bool)
    _Bool all
    1
vcl/inc/scrptrun.h:71
    void vcl::ScriptRun::reset(const char16_t *,int,int)
    int start
    0
vcl/inc/sft.hxx:482
    enum vcl::SFErrCodes OpenTTFontBuffer(const void *,unsigned int,unsigned int,class vcl::TrueTypeFont **,const class tools::SvRef<class FontCharMap>)
    unsigned int facenum
    0
vcl/inc/skia/utils.hxx:62
    class sk_sp<class SkSurface> createSkSurface(const class Size &,enum SkColorType,enum SkAlphaType)
    enum SkColorType type
    1
vcl/inc/skia/utils.hxx:215
    struct SkSamplingOptions makeSamplingOptions(enum BmpScaleFlag,const class Size &,class Size,int)
    int scalingFactor
    1
vcl/inc/svimpbox.hxx:253
    void SvImpLBox::SelectEntry(class SvTreeListEntry *,_Bool)
    _Bool bSelect
    0
vcl/inc/test/outputdevice.hxx:101
    enum vcl::test::TestResult vcl::test::OutputDeviceTestCommon::checkOpenPolygon(class Bitmap &,_Bool)
    _Bool aEnableAA
    0
vcl/inc/test/outputdevice.hxx:115
    class Bitmap vcl::test::OutputDeviceTestBitmap::setupComplexDrawTransformedBitmap(enum vcl::PixelFormat,_Bool)
    _Bool isBitmapGreyScale
    0
vcl/inc/unx/gendisp.hxx:44
    _Bool SalGenericDisplay::DispatchInternalEvent(_Bool)
    _Bool bHandleAllCurrentEvent
    0
vcl/inc/unx/gtk/gloactiongroup.h:50
    void g_lo_action_group_insert(struct GLOActionGroup *,const char *,int,int)
    int submenu
    0
vcl/inc/unx/gtk/gloactiongroup.h:55
    void g_lo_action_group_insert_stateful(struct GLOActionGroup *,const char *,int,int,const struct _GVariantType *,const struct _GVariantType *,struct _GVariant *,struct _GVariant *)
    struct _GVariant * state_hint
    0
vcl/inc/unx/gtk/glomenu.h:48
    void g_lo_menu_new_section(struct GLOMenu *,int,const char *)
    const char * label
    0
vcl/inc/unx/gtk/glomenu.h:102
    void g_lo_menu_set_command_to_item_in_section(struct GLOMenu *,int,int,const char *,_Bool)
    _Bool fire_event
    0
vcl/inc/unx/gtk/gtkdata.hxx:164
    _Bool surface_get_device_position(struct _GdkWindow *,struct _GdkDevice *,double &,double &,GdkModifierType *)
    GdkModifierType * pMask
    0
vcl/inc/unx/gtk/hudawareness.h:19
    unsigned int hud_awareness_register(struct _GDBusConnection *,const char *,void (*)(int, void *),void *,void (*)(void *),struct _GError **)
    void (*)(void *) notify
    0
vcl/inc/unx/gtk/hudawareness.h:19
    unsigned int hud_awareness_register(struct _GDBusConnection *,const char *,void (*)(int, void *),void *,void (*)(void *),struct _GError **)
    struct _GError ** error
    0
vcl/inc/unx/wmadaptor.hxx:179
    const class AbsoluteScreenPixelRectangle & vcl_sal::WMAdaptor::getWorkArea(int) const
    int n
    0
vcl/inc/window.h:433
    _Bool ImplLOKHandleMouseEvent(const class VclPtr<class vcl::Window> &,enum NotifyEventType,_Bool,long,long,unsigned long,unsigned short,enum MouseEventModifiers,unsigned short)
    _Bool bMouseLeave
    0
vcl/inc/wizdlg.hxx:123
    void vcl::RoadmapWizard::Finish(long)
    long nResult
    1
vcl/qa/cppunit/BitmapTest.cxx:71
    void assertColorsAreSimilar(int,const class std::basic_string<char> &,const class BitmapColor &,const class BitmapColor &)
    int maxDifference
    1
vcl/qa/cppunit/GraphicMemoryTest.cxx:61
    class Graphic makeUnloadedGraphic(class std::basic_string_view<char16_t>,class Size,_Bool)
    _Bool bAlpha
    0
vcl/qa/cppunit/PDFDocumentTest.cxx:179
    class vcl::filter::PDFObjectElement * addObjectElement(class std::vector<class std::unique_ptr<class vcl::filter::PDFElement> > &,class vcl::filter::PDFDocument &,int,int)
    int nObjectNumber
    1
vcl/qa/cppunit/PDFDocumentTest.cxx:179
    class vcl::filter::PDFObjectElement * addObjectElement(class std::vector<class std::unique_ptr<class vcl::filter::PDFElement> > &,class vcl::filter::PDFDocument &,int,int)
    int nGenerationNumber
    0
vcl/source/accessibility/vclxaccessibletoolbox.cxx:87
    void (anonymous namespace)::OToolBoxWindowItem::OToolBoxWindowItem(int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &)
    int _nIndexInParent
    0
vcl/source/bitmap/BitmapBasicMorphologyFilter.cxx:225
    void runFilter(class Bitmap &,const int,const _Bool,_Bool,unsigned char)
    const _Bool bParallel
    1
vcl/source/bitmap/BitmapFilterStackBlur.cxx:147
    void (anonymous namespace)::SumFunction24::set(int *&,int)
    int nConstant
    0
vcl/source/bitmap/BitmapFilterStackBlur.cxx:202
    void (anonymous namespace)::SumFunction8::set(int *&,int)
    int nConstant
    0
vcl/source/bitmap/BitmapFilterStackBlur.cxx:459
    void runStackBlur(class Bitmap &,const int,const int,const int,void (*)(const struct (anonymous namespace)::BlurSharedData &, int, int),void (*)(const struct (anonymous namespace)::BlurSharedData &, int, int),const _Bool)
    const _Bool bParallel
    1
vcl/source/bitmap/bmpfast.cxx:34
    void (anonymous namespace)::BasePixelPtr::BasePixelPtr(unsigned char *)
    unsigned char * p
    0
vcl/source/control/imivctl.hxx:267
    const class Size & SvxIconChoiceCtrl_Impl::GetItemSize(enum IcnViewFieldType) const
    enum IcnViewFieldType 
    1
vcl/source/control/imivctl.hxx:314
    class SvxIconChoiceCtrlEntry * IcnCursor_Impl::SearchCol(unsigned short,unsigned short,unsigned short,_Bool,_Bool)
    _Bool bDown
    1
vcl/source/control/imivctl.hxx:314
    class SvxIconChoiceCtrlEntry * IcnCursor_Impl::SearchCol(unsigned short,unsigned short,unsigned short,_Bool,_Bool)
    _Bool bSimple
    0
vcl/source/control/imivctl.hxx:322
    class SvxIconChoiceCtrlEntry * IcnCursor_Impl::SearchRow(unsigned short,unsigned short,unsigned short,_Bool,_Bool)
    _Bool bSimple
    1
vcl/source/filter/eps/eps.cxx:94
    enum (anonymous namespace)::NMode operator|(enum (anonymous namespace)::NMode,enum (anonymous namespace)::NMode)
    enum (anonymous namespace)::NMode a
    1
vcl/source/filter/eps/eps.cxx:214
    void (anonymous namespace)::PSWriter::ImplWriteLineColor(enum (anonymous namespace)::NMode)
    enum (anonymous namespace)::NMode nMode
    1
vcl/source/filter/eps/eps.cxx:215
    void (anonymous namespace)::PSWriter::ImplWriteFillColor(enum (anonymous namespace)::NMode)
    enum (anonymous namespace)::NMode nMode
    1
vcl/source/filter/FilterConfigCache.hxx:86
    class rtl::OUString FilterConfigCache::GetExportWildcard(unsigned short,int)
    int nEntry
    0
vcl/source/filter/jpeg/Exif.cxx:167
    void write32(unsigned int,unsigned char (&)[4],_Bool)
    unsigned int value
    1
vcl/source/filter/wmf/wmfwr.hxx:161
    void WMFWriter::WMFRecord_SetBkMode(_Bool)
    _Bool bTransparent
    1
vcl/source/fontsubset/sft.cxx:177
    int GetTTGlyphOutline(class vcl::AbstractTrueTypeFont *,unsigned int,class std::vector<vcl::ControlPoint> &,struct vcl::(anonymous namespace)::TTGlyphMetrics *,class std::vector<unsigned int> *)
    struct vcl::(anonymous namespace)::TTGlyphMetrics * 
    0
vcl/source/gdi/FileDefinitionWidgetDraw.cxx:103
    _Bool getSettingValueBool(class std::basic_string_view<char>,_Bool)
    _Bool bDefault
    1
vcl/source/window/menufloatingwindow.hxx:105
    void MenuFloatingWindow::EnableScrollMenu(_Bool)
    _Bool b
    1
vcl/source/window/menuitemlist.hxx:112
    struct MenuItemData * MenuItemList::Insert(unsigned short,enum MenuItemType,enum MenuItemBits,const class rtl::OUString &,class Menu *,unsigned long,const class rtl::OUString &)
    enum MenuItemType eType
    1
vcl/source/window/window2.cxx:615
    double lcl_HandleScrollHelper(class Scrollable *,double,_Bool)
    _Bool isMultiplyByLineSize
    1
vcl/unx/generic/app/randrwrapper.cxx:55
    void (anonymous namespace)::RandRWrapper::XRRSelectInput(struct _XDisplay *,unsigned long,int)
    int i_nMask
    1
vcl/unx/gtk3/gtkinst.cxx:7394
    void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool)
    class (anonymous namespace)::GtkInstanceBuilder * pBuilder
    0
vcl/unx/gtk3/gtkinst.cxx:7394
    void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool)
    _Bool bTakeOwnership
    1
vcl/unx/gtk3/gtkinst.cxx:22206
    int (anonymous namespace)::GtkInstanceComboBox::find_text_including_mru(class std::basic_string_view<char16_t>,_Bool) const
    _Bool bSearchMRU
    0
vcl/workben/minweld.cxx:31
    void (anonymous namespace)::TipOfTheDayDialog::TipOfTheDayDialog(class weld::Window *)
    class weld::Window * pParent
    0
xmlhelp/source/cxxhelp/provider/databases.hxx:372
    void chelp::DataBaseIterator::DataBaseIterator(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,class chelp::Databases &,const class rtl::OUString &,const class rtl::OUString &,_Bool)
    _Bool bHelpText
    1
xmlhelp/source/cxxhelp/provider/databases.hxx:377
    void chelp::DataBaseIterator::DataBaseIterator(class chelp::Databases &,const class rtl::OUString &,const class rtl::OUString &,_Bool)
    _Bool bHelpText
    0
xmloff/inc/txtflde.hxx:175
    void XMLTextFieldExport::ExportFieldAutoStyle(const class com::sun::star::uno::Reference<class com::sun::star::text::XTextField> &,const _Bool,const _Bool)
    const _Bool bRecursive
    1
xmloff/inc/txtflde.hxx:260
    void XMLTextFieldExport::ProcessIntegerDef(enum xmloff::token::XMLTokenEnum,int,int)
    int nDefault
    0
xmloff/inc/txtflde.hxx:331
    void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,double,_Bool,_Bool,_Bool,unsigned short)
    _Bool bOmitDurationIfZero
    1
xmloff/inc/txtflde.hxx:340
    void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,int,_Bool,_Bool)
    _Bool bIsDuration
    1
xmloff/qa/unit/draw.cxx:49
    class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> XmloffDrawTest::getShapeTextPortion(unsigned int,const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &)
    unsigned int nIndex
    0
xmloff/source/chart/SchXMLTools.hxx:91
    void CreateCategories(const class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XDataProvider> &,const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,const class rtl::OUString &,int,int,class std::multimap<struct std::pair<int, enum SchXMLLabeledSequencePart>, class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XLabeledDataSequence> > *)
    int nCooSysIndex
    0
xmloff/source/chart/SchXMLTools.hxx:125
    _Bool getXMLRangePropertyFromDataSequence(const class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XDataSequence> &,class rtl::OUString &,_Bool)
    _Bool bClearProp
    1
xmloff/source/chart/transporttypes.hxx:202
    void DataRowPointStyle::DataRowPointStyle(enum DataRowPointStyle::StyleType,class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries>,int,int,class rtl::OUString,int)
    int nPointRepeat
    1
xmloff/source/chart/transporttypes.hxx:218
    void DataRowPointStyle::DataRowPointStyle(enum DataRowPointStyle::StyleType,class rtl::OUString,int)
    int nAttachedAxis
    0
xmloff/source/text/txtflde.cxx:288
    _Bool GetOptionalBoolProperty(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::beans::XPropertySetInfo> &,_Bool)
    _Bool bDefault
    0
xmloff/source/text/XMLIndexTemplateContext.hxx:87
    void XMLIndexTemplateContext::XMLIndexTemplateContext(class SvXMLImport &,class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const SvXMLEnumMapEntry<type-parameter-?-?> *,enum xmloff::token::XMLTokenEnum,class std::span<const class rtl::OUString>,const _Bool *,_Bool)
    _Bool bTOC_
    0
xmloff/source/text/XMLSectionExport.hxx:104
    _Bool XMLSectionExport::IsMuteSection(const class com::sun::star::uno::Reference<class com::sun::star::text::XTextContent> &,_Bool) const
    _Bool bDefault
    0
xmloff/source/transform/TransformerBase.hxx:175
    const class XMLTransformerContext * XMLTransformerBase::GetAncestorContext(unsigned int) const
    unsigned int i
    1
xmlscript/source/xmldlg_imexp/exp_share.hxx:224
    void xmlscript::ElementDescriptor::read(const class rtl::OUString &,const class rtl::OUString &,_Bool)
    _Bool forceAttribute
    0
xmlsecurity/inc/certificateviewer.hxx:58
    void CertificateViewer::CertificateViewer(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::xml::crypto::XSecurityEnvironment> &,const class com::sun::star::uno::Reference<class com::sun::star::security::XCertificate> &,_Bool,class CertificateChooser *)
    _Bool bCheckForPrivateKey
    0
xmlsecurity/inc/certificateviewer.hxx:58
    void CertificateViewer::CertificateViewer(class weld::Window *,const class com::sun::star::uno::Reference<class com::sun::star::xml::crypto::XSecurityEnvironment> &,const class com::sun::star::uno::Reference<class com::sun::star::security::XCertificate> &,_Bool,class CertificateChooser *)
    class CertificateChooser * pParentChooser
    0
xmlsecurity/source/component/documentdigitalsignatures.cxx:92
    void (anonymous namespace)::DocumentDigitalSignatures::ImplViewSignatures(const class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,enum DocumentSignatureMode,_Bool)
    _Bool bReadOnly
    1
 
     |