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
|
accessibility/inc/standard/vclxaccessiblemenuitem.hxx:58
void VCLXAccessibleMenuItem::VCLXAccessibleMenuItem(class Menu *,unsigned short,class Menu *)
class Menu * pMenu
0
accessibility/source/standard/vclxaccessibletoolbox.cxx:101
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
basctl/source/basicide/moduldlg.hxx:103
void basctl::LibDialog::EnableReference(_Bool)
_Bool b
0
basctl/source/inc/scriptdocument.hxx:89
void basctl::ScriptDocument::ScriptDocument(enum basctl::ScriptDocument::SpecialDocument)
enum basctl::ScriptDocument::SpecialDocument _eType
0
basegfx/source/polygon/b2dpolygon.cxx:62
void (anonymous namespace)::CoordinateDataArray2D::CoordinateDataArray2D(unsigned int)
unsigned int nCount
0
basegfx/source/polygon/b3dpolygon.cxx:77
void (anonymous namespace)::CoordinateDataArray3D::CoordinateDataArray3D(unsigned int)
unsigned int nCount
0
basic/source/inc/runtime.hxx:323
void SbiRuntime::StepRESUME(unsigned int)
unsigned int
1
basic/source/inc/runtime.hxx:354
_Bool SbiRuntime::IsMissing(class SbxVariable *,unsigned short)
unsigned short
1
basic/source/runtime/iosys.cxx:62
void (anonymous namespace)::SbiInputDialog::SbiInputDialog(class weld::Window *,const class rtl::OUString &)
class weld::Window *
0
canvas/inc/parametricpolypolygon.hxx:138
void canvas::ParametricPolyPolygon::ParametricPolyPolygon(const 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:108
void canvas::SpriteRedrawManager::SpriteInfo::SpriteInfo(const 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:520
void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
type-parameter-?-? bound
1
canvas/inc/verifyinput.hxx:520
void verifyRange(type-parameter-?-?,type-parameter-?-?,_Bool)
_Bool bLowerBound
1
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:45
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:45
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:98
void Chart2DumpTest::Chart2DumpTest(_Bool)
_Bool bDumpMode
0
chart2/qa/extras/chart2export.cxx:408
void checkCommonTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,double,double,_Bool,double,_Bool,_Bool)
_Bool aExpectedShowEquation
1
chart2/qa/extras/charttest.hxx:239
class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> getPivotChartDocFromSheet(int,const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &)
int nSheet
1
chart2/qa/extras/charttest.hxx:245
class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> getPivotChartDocFromSheet(const class com::sun::star::uno::Reference<class com::sun::star::table::XTablePivotCharts> &,int)
int nIndex
0
chart2/qa/extras/charttest.hxx:279
class com::sun::star::uno::Reference<class com::sun::star::chart2::XAxis> 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:299
int getNumberOfDataSeries(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int)
int nChartType
0
chart2/qa/extras/charttest.hxx:299
int getNumberOfDataSeries(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int)
int nCooSys
0
chart2/qa/extras/charttest.hxx:309
class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> 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:324
class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XDataSequence> getLabelDataSequenceFromDoc(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,int,int)
int nChartType
0
chart2/qa/extras/charttest.hxx:346
class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XDataSequence> getDataSequenceFromDocByRole(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,const class rtl::OUString &,int,int)
int nChartType
0
chart2/qa/extras/PivotChartTest.cxx:134
void lclModifyColumnGrandTotal(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotDescriptor> &,_Bool)
_Bool bTotal
1
chart2/qa/extras/PivotChartTest.cxx:140
void lclModifyRowGrandTotal(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotDescriptor> &,_Bool)
_Bool bTotal
1
chart2/qa/extras/PivotChartTest.cxx:177
class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotTable> lclGetPivotTableByName(int,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &)
int nIndex
1
chart2/qa/extras/PivotChartTest.cxx:219
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:170
struct (anonymous namespace)::lcl_DataSeriesContainerAppend & (anonymous namespace)::lcl_DataSeriesContainerAppend::operator++(int)
int
0
chart2/source/controller/dialogs/DialogModel.cxx:229
struct (anonymous namespace)::lcl_RolesWithRangeAppend & (anonymous namespace)::lcl_RolesWithRangeAppend::operator++(int)
int
0
chart2/source/controller/inc/ChartController.hxx:368
class chart::ChartController::TheModelRef & chart::ChartController::TheModelRef::operator=(class chart::ChartController::TheModel *)
###1
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:194
class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartType> chart::AxisHelper::getChartTypeByIndex(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XCoordinateSystem> &,int)
int nIndex
0
chart2/source/inc/ChartTypeDialogController.hxx:101
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/model/template/ColumnLineChartTypeTemplate.hxx:38
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/tools/InternalDataProvider.cxx:244
void chart::(anonymous namespace)::lcl_setAnyAtLevelFromStringSequence::lcl_setAnyAtLevelFromStringSequence(int)
int nLevel
0
chart2/source/view/axes/VAxisProperties.hxx:150
struct chart::TickmarkProperties chart::AxisProperties::makeTickmarkPropertiesForComplexCategories(int,int) const
int nTickStartDistanceToAxis
0
chart2/source/view/axes/VCartesianAxis.hxx:32
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:29
void chart::CategoryPositionHelper::CategoryPositionHelper(double,double)
double fSeriesCount
1
chart2/source/view/inc/PlottingPositionHelper.hxx:112
void chart::PlottingPositionHelper::AllowShiftXAxisPos(_Bool)
_Bool bAllowShift
1
chart2/source/view/inc/PlottingPositionHelper.hxx:113
void chart::PlottingPositionHelper::AllowShiftZAxisPos(_Bool)
_Bool bAllowShift
1
chart2/source/view/inc/Stripe.hxx:53
void chart::Stripe::InvertNormal(_Bool)
_Bool bInvertNormal
1
chart2/source/view/main/ShapeFactory.cxx:703
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:51
void chart::VButton::showArrow(_Bool)
_Bool bShowArrow
0
codemaker/source/javamaker/classfile.hxx:120
void codemaker::javamaker::ClassFile::Code::storeLocalReference(unsigned short)
unsigned short index
1
comphelper/source/misc/backupfilehelper.cxx:57
unsigned int createCrc32(const class std::shared_ptr<class osl::File> &,unsigned int)
unsigned int nOffset
0
connectivity/inc/sdbcx/VIndex.hxx:64
void connectivity::sdbcx::OIndex::OIndex(_Bool)
_Bool _bCase
1
connectivity/inc/sdbcx/VIndex.hxx:65
void connectivity::sdbcx::OIndex::OIndex(const class rtl::OUString &,const class rtl::OUString &,_Bool,_Bool,_Bool,_Bool)
_Bool _bCase
1
connectivity/inc/sdbcx/VKey.hxx:79
void connectivity::sdbcx::OKey::OKey(_Bool)
_Bool _bCase
1
connectivity/inc/sdbcx/VKey.hxx:80
void connectivity::sdbcx::OKey::OKey(const class rtl::OUString &,const class std::shared_ptr<struct connectivity::sdbcx::KeyProperties> &,_Bool)
_Bool _bCase
1
connectivity/inc/sdbcx/VUser.hxx:63
void connectivity::sdbcx::OUser::OUser(_Bool)
_Bool _bCase
1
connectivity/inc/sdbcx/VUser.hxx:64
void connectivity::sdbcx::OUser::OUser(const class rtl::OUString &,_Bool)
_Bool _bCase
1
connectivity/source/drivers/postgresql/pq_connection.cxx:361
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:89
_Bool pq_sdbc_driver::ResultSetMetaData::getBoolColumnProperty(const class rtl::OUString &,int,_Bool)
_Bool def
0
connectivity/source/inc/dbase/DIndex.hxx:115
_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(const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,int)
int _aScale
0
connectivity/source/inc/odbc/OTools.hxx:182
void connectivity::odbc::OTools::getBindTypes(_Bool,_Bool,short,short &,short &)
_Bool _bUseWChar
0
connectivity/source/inc/odbc/OTools.hxx:219
void connectivity::odbc::OTools::bindValue(const class connectivity::odbc::OConnection *,void *,int,short,short,const void *,void *,long *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,unsigned short,_Bool)
short _nMaxLen
0
cppcanvas/source/mtfrenderer/mtftools.cxx:285
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:43
void TAccInfo::TAccInfo(int,int,const class vcl::KeyCode &)
int nListPos
0
cui/source/inc/cfg.hxx:341
void SvxMenuEntriesListBox::set_toggle(int,enum TriState,int)
int col
0
cui/source/inc/cfg.hxx:459
void SvxConfigPage::InsertEntryIntoUI(class SvxConfigEntry *,class weld::TreeView &,class weld::TreeIter &,int)
int nStartCol
0
cui/source/inc/cfg.hxx:463
void SvxConfigPage::InsertEntryIntoNotebookbarTabUI(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,class weld::TreeView &,class weld::TreeIter &,int)
int nStartCol
1
cui/source/inc/cfgutil.hxx:128
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:142
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > CuiConfigFunctionListBox::make_iterator(const class weld::TreeIter *) const
const class weld::TreeIter * pOrig
0
cui/source/inc/cuitabarea.hxx:726
void SvxColorTabPage::SetPropertyList(enum XPropertyListType,const class rtl::Reference<class XPropertyList> &)
enum XPropertyListType t
0
cui/source/inc/hangulhanjadlg.hxx:55
void svx::SuggestionDisplay::SelectEntryPos(unsigned short)
unsigned short nPos
0
cui/source/inc/hangulhanjadlg.hxx:59
class rtl::OUString svx::SuggestionDisplay::GetEntry(unsigned short) const
unsigned short nPos
0
cui/source/inc/scriptdlg.hxx:123
void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool)
const class weld::TreeIter * pParent
0
cui/source/inc/scriptdlg.hxx:123
void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool)
_Bool bChildrenOnDemand
1
cui/source/inc/scriptdlg.hxx:123
void SvxScriptOrgDialog::insertEntry(const class rtl::OUString &,const class rtl::OUString &,const class weld::TreeIter *,_Bool,class std::unique_ptr<class SFEntry, struct std::default_delete<class SFEntry> > &&,const class rtl::OUString &,_Bool)
_Bool bSelect
0
cui/source/options/optjsearch.hxx:65
void SvxJSearchOptionsPage::EnableSaveOptions(_Bool)
_Bool bVal
0
dbaccess/source/core/dataaccess/databasedocument.hxx:675
void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::DefaultMethod_)
enum dbaccess::DocumentGuard::DefaultMethod_
0
dbaccess/source/core/dataaccess/databasedocument.hxx:693
void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::InitMethod_)
enum dbaccess::DocumentGuard::InitMethod_
0
dbaccess/source/core/dataaccess/databasedocument.hxx:712
void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::MethodUsedDuringInit_)
enum dbaccess::DocumentGuard::MethodUsedDuringInit_
0
dbaccess/source/core/dataaccess/databasedocument.hxx:727
void dbaccess::DocumentGuard::DocumentGuard(const class dbaccess::ODatabaseDocument &,enum dbaccess::DocumentGuard::MethodWithoutInit_)
enum dbaccess::DocumentGuard::MethodWithoutInit_
0
dbaccess/source/core/inc/column.hxx:168
void dbaccess::OColumns::OColumns(class cppu::OWeakObject &,class osl::Mutex &,_Bool,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &,class dbaccess::IColumnFactory *,class connectivity::sdbcx::IRefreshableColumns *,_Bool,_Bool,_Bool)
_Bool _bDropColumn
0
dbaccess/source/core/inc/column.hxx:179
void dbaccess::OColumns::OColumns(class cppu::OWeakObject &,class osl::Mutex &,const class com::sun::star::uno::Reference<class com::sun::star::container::XNameAccess> &,_Bool,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &,class dbaccess::IColumnFactory *,class connectivity::sdbcx::IRefreshableColumns *,_Bool,_Bool,_Bool)
_Bool _bUseHardRef
1
dbaccess/source/ui/app/AppSwapWindow.hxx:58
class SvxIconChoiceCtrlEntry * dbaui::OApplicationSwapWindow::GetEntry(unsigned long) const
unsigned long nPos
0
dbaccess/source/ui/control/tabletree.cxx:287
class std::__debug::vector<class rtl::OUString, class std::allocator<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:46
class dbaui::OCharsetDisplay::ExtendedCharsetIterator dbaui::OCharsetDisplay::findEncoding(const unsigned short) const
const unsigned short _eEncoding
0
dbaccess/source/ui/inc/FieldDescControl.hxx:132
void dbaui::OFieldDescControl::InitializeControl(class dbaui::OPropListBoxCtrl *,const class rtl::OString &,_Bool)
_Bool _bAddChangeHandler
1
dbaccess/source/ui/inc/imageprovider.hxx:80
class rtl::OUString dbaui::ImageProvider::getImageId(const class rtl::OUString &,const int)
const int _nDatabaseObjectType
0
dbaccess/source/ui/inc/imageprovider.hxx:86
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/imageprovider.hxx:131
class rtl::OUString dbaui::ImageProvider::getFolderImageId(int)
int _nDatabaseObjectType
0
dbaccess/source/ui/inc/IUpdateHelper.hxx:33
void dbaui::IUpdateHelper::updateInt(int,int)
int _nPos
1
dbaccess/source/ui/inc/tabletree.hxx:199
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > dbaui::TableTreeListBox::GetEntryPosByName(const class rtl::OUString &,const class weld::TreeIter *,const class dbaui::IEntryFilter *) const
const class dbaui::IEntryFilter * _pFilter
0
dbaccess/source/ui/inc/WCopyTable.hxx:311
void dbaui::OCopyTableWizard::OCopyTableWizard(class weld::Window *,const class rtl::OUString &,short,const class std::__debug::map<class rtl::OUString, class dbaui::OFieldDescription *, struct comphelper::UStringMixLess, class std::allocator<struct std::pair<const class rtl::OUString, class dbaui::OFieldDescription *> > > &,const class std::__debug::vector<class __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<struct std::pair<const class rtl::OUString, class dbaui::OFieldDescription *> >, class std::__debug::map<class rtl::OUString, class dbaui::OFieldDescription *, struct comphelper::UStringMixLess, class std::allocator<struct std::pair<const class rtl::OUString, class dbaui::OFieldDescription *> > >, struct std::bidirectional_iterator_tag>, class std::allocator<class __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<struct std::pair<const class rtl::OUString, class dbaui::OFieldDescription *> >, class std::__debug::map<class rtl::OUString, class dbaui::OFieldDescription *, struct comphelper::UStringMixLess, class std::allocator<struct std::pair<const class rtl::OUString, class dbaui::OFieldDescription *> > >, struct std::bidirectional_iterator_tag> > > &,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, struct std::default_delete<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:124
void dbaui::OWizTypeSelect::EnableAuto(_Bool)
_Bool bEnable
0
desktop/source/deployment/gui/dp_gui_updatedialog.hxx:103
void dp_gui::UpdateDialog::addAdditional(struct dp_gui::UpdateDialog::Index *,_Bool)
_Bool bEnableCheckBox
0
desktop/source/lib/init.cxx:6105
struct _LibreOfficeKit * libreofficekit_hook_2(const char *,const char *)
const char * user_profile_url
0
editeng/source/editeng/editstt2.hxx:28
void InternalEditStatus::TurnOnFlags(enum EEControlBits)
enum EEControlBits nFlags
1
editeng/source/editeng/editstt2.hxx:31
void InternalEditStatus::TurnOffFlags(enum EEControlBits)
enum EEControlBits nFlags
1
editeng/source/editeng/impedit.hxx:844
unsigned short ImpEditEngine::GetLineHeight(int,int)
int nLine
0
extensions/source/propctrlr/browserline.cxx:241
void implEnable(class weld::Widget *,_Bool)
_Bool bEnable
0
extensions/source/propctrlr/browserline.hxx:96
void pcr::OBrowserLine::Show(_Bool)
_Bool bFlag
0
extensions/source/propctrlr/newdatatype.hxx:40
void pcr::NewDataTypeDialog::NewDataTypeDialog(class weld::Window *,const class rtl::OUString &,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
class weld::Window * _pParent
0
extensions/source/propctrlr/propertyhandler.hxx:186
void pcr::PropertyHandler::addDoublePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
extensions/source/propctrlr/propertyhandler.hxx:194
void pcr::PropertyHandler::addDatePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
extensions/source/propctrlr/propertyhandler.hxx:202
void pcr::PropertyHandler::addTimePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
extensions/source/propctrlr/propertyhandler.hxx:210
void pcr::PropertyHandler::addDateTimePropertyDescription(class std::__debug::vector<struct com::sun::star::beans::Property, class std::allocator<struct com::sun::star::beans::Property> > &,const class rtl::OUString &,short) const
short _nAttribs
1
extensions/source/propctrlr/usercontrol.hxx:42
void pcr::OFormatSampleControl::OFormatSampleControl(class std::unique_ptr<class weld::Container, struct std::default_delete<class weld::Container> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool)
_Bool bReadOnly
0
extensions/source/propctrlr/usercontrol.hxx:91
void pcr::OFormattedNumericControl::OFormattedNumericControl(class std::unique_ptr<class weld::FormattedSpinButton, struct std::default_delete<class weld::FormattedSpinButton> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool)
_Bool bReadOnly
0
extensions/source/propctrlr/usercontrol.hxx:121
void pcr::OFileUrlControl::OFileUrlControl(class std::unique_ptr<class SvtURLBox, struct std::default_delete<class SvtURLBox> >,class std::unique_ptr<class weld::Builder, struct std::default_delete<class weld::Builder> >,_Bool)
_Bool bReadOnly
0
extensions/source/scanner/grid.cxx:130
void GridWindow::Init(double *,double *,int,_Bool,const class BitmapEx &)
_Bool bCutValues
1
extensions/source/scanner/grid.hxx:47
void GridDialog::setBoundings(double,double,double,double)
double fMinX
0
filter/qa/cppunit/filters-dxf-test.cxx:19
_Bool idxGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-eps-test.cxx:19
_Bool ipsGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-met-test.cxx:19
_Bool imeGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-pcd-test.cxx:19
_Bool icdGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-pcx-test.cxx:19
_Bool ipxGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-pict-test.cxx:24
_Bool iptGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-ppm-test.cxx:19
_Bool ipbGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-psd-test.cxx:19
_Bool ipdGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-ras-test.cxx:19
_Bool iraGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-tga-test.cxx:19
_Bool itgGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/qa/cppunit/filters-tiff-test.cxx:19
_Bool itiGraphicImport(class SvStream &,class Graphic &,class FilterConfigItem *)
class FilterConfigItem *
0
filter/source/graphicfilter/eps/eps.cxx:91
enum (anonymous namespace)::NMode operator|(enum (anonymous namespace)::NMode,enum (anonymous namespace)::NMode)
enum (anonymous namespace)::NMode a
1
filter/source/graphicfilter/eps/eps.cxx:212
void (anonymous namespace)::PSWriter::ImplWriteLineColor(enum (anonymous namespace)::NMode)
enum (anonymous namespace)::NMode nMode
1
filter/source/graphicfilter/eps/eps.cxx:213
void (anonymous namespace)::PSWriter::ImplWriteFillColor(enum (anonymous namespace)::NMode)
enum (anonymous namespace)::NMode nMode
1
filter/source/graphicfilter/icgm/cgm.hxx:89
unsigned char CGM::ImplGetByte(unsigned int,unsigned int)
unsigned int nPrecision
1
filter/source/svg/svgfilter.hxx:239
_Bool SVGFilter::implExportMasterPages(const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > > &,int,int)
int nFirstPage
0
filter/source/svg/svgfilter.hxx:241
void SVGFilter::implExportDrawPages(const class std::__debug::vector<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage>, class std::allocator<class com::sun::star::uno::Reference<class com::sun::star::drawing::XDrawPage> > > &,int,int)
int nFirstPage
0
filter/source/svg/svgwriter.hxx:253
void SVGTextWriter::startTextPosition(_Bool,_Bool)
_Bool bExportY
1
forms/source/component/DatabaseForm.hxx:231
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:146
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:51
void frm::IFeatureDispatcher::dispatchWithArgument(short,const char *,const class com::sun::star::uno::Any &) const
short _nFeatureId
1
formula/source/ui/dlg/structpg.hxx:59
_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:40
void AutocompleteEdit::select_region(int,int)
int nStartPos
0
fpicker/source/office/fileview.hxx:163
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:58
void fs::path::path(const class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,enum fs::convert)
enum fs::convert
0
hwpfilter/source/hfont.h:63
const char * HWPFont::GetFontName(int,int)
int lang
0
hwpfilter/source/hwpfile.h:146
void HWPFile::Read4b(void *,unsigned long)
unsigned long nmemb
1
i18npool/source/localedata/LocaleNode.hxx:73
const class rtl::OUString & Attr::getValueByIndex(int) const
int idx
0
idlc/inc/errorhandler.hxx:86
void ErrorHandler::warning0(enum WarningCode,const char *)
enum WarningCode e
0
idlc/source/errorhandler.cxx:399
void errorHeader(enum ErrorCode,unsigned int)
enum ErrorCode eCode
0
include/avmedia/mediaplayer.hxx:51
void avmedia::MediaFloater::setURL(const class rtl::OUString &,const class rtl::OUString &,_Bool)
_Bool bPlayImmediately
1
include/basegfx/DrawCommands.hxx:58
void gfx::GradientInfo::GradientInfo(enum gfx::GradientType)
enum gfx::GradientType eType
0
include/basegfx/polygon/b2dpolygon.hxx:83
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:76
void basegfx::B2DPolyPolygon::insert(unsigned int,const class basegfx::B2DPolygon &,unsigned int)
unsigned int nIndex
0
include/basegfx/polygon/b2dpolypolygon.hxx:76
void basegfx::B2DPolyPolygon::insert(unsigned int,const class basegfx::B2DPolygon &,unsigned int)
unsigned int nCount
1
include/basegfx/polygon/b2dpolypolygon.hxx:77
void basegfx::B2DPolyPolygon::append(const class basegfx::B2DPolygon &,unsigned int)
unsigned int nCount
1
include/basegfx/polygon/b2dpolypolygon.hxx:102
void basegfx::B2DPolyPolygon::remove(unsigned int,unsigned int)
unsigned int nCount
1
include/basegfx/polygon/b2dpolypolygon.hxx:137
shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const
###5
0
include/basegfx/polygon/b2dpolypolygon.hxx:137
shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const
###4
0
include/basegfx/polygon/b2dpolypolygon.hxx:137
shared_ptr<type-parameter-?-?> basegfx::B2DPolyPolygon::addOrReplaceSystemDependentData(class basegfx::SystemDependentDataManager &,type-parameter-?-? &&...) const
###3
0
include/basegfx/polygon/b3dpolygon.hxx:71
void basegfx::B3DPolygon::append(const class basegfx::B3DPoint &,unsigned int)
unsigned int nCount
1
include/basegfx/polygon/b3dpolygon.hxx:95
void basegfx::B3DPolygon::append(const class basegfx::B3DPolygon &,unsigned int,unsigned int)
unsigned int nIndex
0
include/basegfx/polygon/b3dpolygon.hxx:95
void basegfx::B3DPolygon::append(const class basegfx::B3DPolygon &,unsigned int,unsigned int)
unsigned int nCount
0
include/basegfx/polygon/b3dpolygon.hxx:98
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:82
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:37
void BasicDLL::EnableBreak(_Bool)
_Bool bEnable
1
include/basic/sbstar.hxx:146
class SbxVariable * StarBASIC::VBAFind(const class rtl::OUString &,enum SbxClassType)
enum SbxClassType t
1
include/basic/sbxobj.hxx:61
class SbxVariable * SbxObject::FindQualified(const class rtl::OUString &,enum SbxClassType)
enum SbxClassType
1
include/basic/sbxobj.hxx:72
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/lok.hxx:56
void setLocalRendering(_Bool)
_Bool bLocalRendering
1
include/comphelper/lok.hxx:81
void setRangeHeaders(_Bool)
_Bool bTiledAnnotations
1
include/comphelper/lok.hxx:91
void setCompatFlag(enum comphelper::LibreOfficeKit::Compat)
enum comphelper::LibreOfficeKit::Compat flag
1
include/comphelper/lok.hxx:93
_Bool isCompatFlagSet(enum comphelper::LibreOfficeKit::Compat)
enum comphelper::LibreOfficeKit::Compat flag
1
include/comphelper/parallelsort.hxx:286
void s3sort(const type-parameter-?-?,const type-parameter-?-?,type-parameter-?-?,_Bool)
_Bool bThreaded
1
include/comphelper/profilezone.hxx:63
void comphelper::ProfileZone::ProfileZone(const char *,_Bool)
_Bool bConsole
0
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/storagehelper.hxx:186
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> &,const class rtl::OUString &,unsigned int,const class comphelper::LifecycleProxy &)
unsigned int nOpenMode
1
include/comphelper/unique_disposing_ptr.hxx:164
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:169
void comphelper::unique_disposing_solar_mutex_reset_ptr::reset(type-parameter-?-? *)
type-parameter-?-? * p
0
include/connectivity/dbexception.hxx:318
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:327
_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:619
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 *,const class rtl::OUString &)
class dbtools::ISQLStatementHelper * _pHelper
0
include/connectivity/FValue.hxx:469
void connectivity::TSetBound::TSetBound(_Bool)
_Bool _bBound
0
include/connectivity/sqlscan.hxx:50
void connectivity::OSQLScanner::prepareScan(const class rtl::OUString &,const class connectivity::IParseContext *,_Bool)
_Bool bInternational
1
include/cppcanvas/color.hxx:61
int makeColorARGB(unsigned char,unsigned char,unsigned char,unsigned char)
unsigned char nAlpha
0
include/cui/cuicharmap.hxx:147
void SvxCharacterMap::SvxCharacterMap(class weld::Widget *,const class SfxItemSet *,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &)
const class SfxItemSet * pSet
0
include/drawinglayer/processor2d/hittestprocessor2d.hxx:80
void drawinglayer::processor2d::HitTestProcessor2D::collectHitStack(_Bool)
_Bool bCollect
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:168
class Color editeng::SvxBorderLine::GetColorOut(_Bool) const
_Bool bLeftOrTop
1
include/editeng/borderline.hxx:169
class Color editeng::SvxBorderLine::GetColorIn(_Bool) const
_Bool bLeftOrTop
1
include/editeng/boxitem.hxx:114
_Bool SvxBoxItem::HasBorder(_Bool) const
_Bool bTreatPaddingAsBorder
1
include/editeng/colritem.hxx:69
void SvxBackgroundColorItem::SvxBackgroundColorItem(const unsigned short)
const unsigned short nId
0
include/editeng/editeng.hxx:548
void EditEngine::dumpAsXmlEditDoc(struct _xmlTextWriter *) const
struct _xmlTextWriter * pWriter
0
include/editeng/editeng.hxx:573
class EditPaM EditEngine::CursorLeft(const class EditPaM &,unsigned short)
unsigned short nCharacterIteratorMode
0
include/editeng/editobj.hxx:120
const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
int nType
1
include/editeng/editobj.hxx:120
const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
int nPara
0
include/editeng/editobj.hxx:120
const class SvxFieldData * EditTextObject::GetFieldData(int,unsigned long,int) const
unsigned long nPos
0
include/editeng/edtdlg.hxx:79
enum editeng::HangulHanjaConversion::ConversionDirection AbstractHangulHanjaConversionDialog::GetDirection(enum editeng::HangulHanjaConversion::ConversionDirection) const
enum editeng::HangulHanjaConversion::ConversionDirection _eDefaultDirection
0
include/editeng/outliner.hxx:240
void OutlinerView::SelectRange(int,int)
int nFirst
0
include/editeng/outliner.hxx:622
_Bool Outliner::ImpCanDeleteSelectedPages(class OutlinerView *,int,int)
int nPages
1
include/editeng/pmdlitem.hxx:40
void SvxPageModelItem::SvxPageModelItem(unsigned short)
unsigned short nWh
0
include/editeng/splwrap.hxx:73
void SvxSpellWrapper::SvxSpellWrapper(class weld::Window *,const _Bool,const _Bool)
const _Bool bIsAllRight
0
include/editeng/txtrange.hxx:61
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:61
void TextRanger::TextRanger(const class basegfx::B2DPolyPolygon &,const class basegfx::B2DPolyPolygon *,unsigned short,unsigned short,unsigned short,_Bool,_Bool,_Bool)
_Bool bVert
0
include/filter/msfilter/escherex.hxx:493
void EscherExAtom::EscherExAtom(class SvStream &,const unsigned short,const unsigned short,const unsigned char)
const unsigned char nVersion
0
include/filter/msfilter/escherex.hxx:585
void EscherGraphicProvider::WriteBlibStoreEntry(class SvStream &,unsigned int,unsigned int)
unsigned int nBlipId
1
include/filter/msfilter/escherex.hxx:795
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:1140
void EscherEx::EndAtom(unsigned short,int,int)
int nRecVersion
0
include/filter/msfilter/msdffimp.hxx:710
void SvxMSDffManager::ExchangeInShapeOrder(const class SdrObject *,unsigned long,class SdrObject *) const
unsigned long nTxBx
0
include/filter/msfilter/msdffimp.hxx:763
void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
unsigned int nId
0
include/filter/msfilter/msdffimp.hxx:763
void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
unsigned short nSeqId
0
include/filter/msfilter/msdffimp.hxx:763
void SvxMSDffShapeInfo::SvxMSDffShapeInfo(unsigned long,unsigned int,unsigned short,unsigned short)
unsigned short nBoxId
0
include/formula/FormulaCompiler.hxx:325
void formula::FormulaCompiler::PushTokenArray(class formula::FormulaTokenArray *,_Bool)
_Bool
1
include/formula/token.hxx:234
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/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> &,_Bool,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/strong_int.hxx:86
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:110
strong_int<UNDERLYING_TYPE, PHANTOM_TYPE> o3tl::strong_int::operator++(int)
###1
0
include/oox/drawingml/shape.hxx:105
void oox::drawingml::Shape::Shape(const char *,_Bool)
_Bool bDefaultHeight
1
include/oox/export/vmlexport.hxx:140
const class rtl::OString & oox::vml::VMLExport::AddInlineSdrObject(const class SdrObject &,const _Bool)
const _Bool bOOxmlExport
1
include/oox/helper/attributelist.hxx:159
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:210
void oox::formulaimport::XmlStream::skipElementInternal(int,_Bool)
_Bool silent
0
include/oox/ole/olestorage.hxx:47
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:60
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:190
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:90
void VBACompressionChunk::SetFlagBit(unsigned long,_Bool,unsigned char &)
_Bool bVal
1
include/oox/vml/vmldrawing.hxx:70
void oox::vml::OleObjectInfo::OleObjectInfo(_Bool)
_Bool bDmlShape
0
include/oox/vml/vmldrawing.hxx:97
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:123
int decodeMeasureToHmm(const class oox::GraphicHelper &,const class rtl::OUString &,int,_Bool,_Bool)
int nRefValue
0
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:42
int ZipUtils::Deflater::doDeflateBytes(class com::sun::star::uno::Sequence<signed char> &,int,int)
int nNewOffset
0
include/sfx2/dispatch.hxx:151
enum ToolbarId SfxDispatcher::GetObjectBarId(unsigned short) const
unsigned short nPos
1
include/sfx2/docfile.hxx:163
void SfxMedium::DisableFileSync(_Bool)
_Bool bDisableFileSync
1
include/sfx2/event.hxx:239
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:109
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:86
void SfxLokHelper::notifyDocumentSizeChangedAllViews(class vcl::ITiledRenderable *,_Bool)
_Bool bInvalidateAll
1
include/sfx2/notebookbar/SfxNotebookBar.hxx:55
void sfx2::SfxNotebookBar::ShowMenubar(const class SfxViewFrame *,_Bool)
_Bool bShow
1
include/sfx2/objsh.hxx:670
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:44
void SvxOpenGraphicDialog::SetPath(const class rtl::OUString &,_Bool)
_Bool bLinkState
1
include/sfx2/opengrf.hxx:49
void SvxOpenGraphicDialog::EnableLink(_Bool)
_Bool
0
include/sfx2/passwd.hxx:125
void SfxPasswordDialog::ShowMinLengthText(_Bool)
_Bool bShow
0
include/sfx2/request.hxx:62
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:65
void SfxRequest::SfxRequest(unsigned short,enum SfxCallMode,const class SfxAllItemSet &,const class SfxAllItemSet &)
enum SfxCallMode nCallMode
1
include/sfx2/request.hxx:100
void SfxRequest::AllowRecording(_Bool)
_Bool
1
include/sfx2/sfxdlg.hxx:133
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/sidebar/FocusManager.hxx:116
_Bool sfx2::sidebar::FocusManager::IsPanelTitleVisible(const int) const
const int nPanelIndex
0
include/sfx2/sidebar/SidebarToolBox.hxx:55
void sfx2::sidebar::SidebarToolBox::SetController(const unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XToolbarController> &)
const unsigned short nItemId
1
include/sfx2/thumbnailview.hxx:225
void ThumbnailView::ShowTooltips(_Bool)
_Bool bShowTooltips
1
include/sfx2/thumbnailview.hxx:360
void SfxThumbnailView::ShowTooltips(_Bool)
_Bool bShowTooltips
1
include/sot/stg.hxx:158
void Storage::Storage(const class rtl::OUString &,enum StreamMode,_Bool)
_Bool bDirect
1
include/sot/stg.hxx:250
void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bIsRoot
1
include/sot/stg.hxx:250
void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
enum StreamMode nMode
1
include/sot/stg.hxx:250
void UCBStorage::UCBStorage(const class ucbhelper::Content &,const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bDirect
0
include/sot/stg.hxx:256
void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bIsRoot
1
include/sot/stg.hxx:256
void UCBStorage::UCBStorage(const class rtl::OUString &,enum StreamMode,_Bool,_Bool)
_Bool bDirect
1
include/sot/stg.hxx:261
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:271
void UCBStorage::UCBStorage(class SvStream &,_Bool)
_Bool bDirect
0
include/store/store.hxx:104
storeError store::OStoreStream::writeAt(unsigned int,const void *,unsigned int,unsigned int &)
unsigned int nOffset
0
include/svl/adrparse.hxx:42
const class rtl::OUString & SvAddressParser::GetEmailAddress(int) const
int nIndex
0
include/svl/gridprinter.hxx:29
void svl::GridPrinter::GridPrinter(unsigned long,unsigned long,_Bool)
_Bool bPrint
0
include/svl/itempool.hxx:151
const type-parameter-?-? & SfxItemPool::Put(unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> >,unsigned short)
unsigned short nWhich
0
include/svl/itemset.hxx:172
const type-parameter-?-? * SfxItemSet::GetItem(const class SfxItemSet *,TypedWhichId<type-parameter-?-?>,_Bool)
_Bool bSearchInParent
0
include/svl/svdde.hxx:132
void DdeLink::DdeLink(class DdeConnection &,const class rtl::OUString &,long)
long
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:148
class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::EncodeMechanism eEncodeMechanism
1
include/svl/zforlist.hxx:892
const class NfKeywordTable & SvNumberFormatter::GetKeywords(unsigned int)
unsigned int nKey
0
include/svl/zformat.hxx:405
int SvNumberformat::GetQuoteEnd(const class rtl::OUString &,int,char16_t,char16_t)
char16_t cEscIn
0
include/svl/zformat.hxx:415
int SvNumberformat::InsertBlanks(class rtl::OUString &,int,char16_t)
int nPos
0
include/svl/zformat.hxx:481
_Bool SvNumberformat::IsIso8601(unsigned short) const
unsigned short nNumFor
0
include/svtools/editsyntaxhighlighter.hxx:41
void MultiLineEditSyntaxHighlight::MultiLineEditSyntaxHighlight(class vcl::Window *,long,enum HighlighterLanguage)
enum HighlighterLanguage aLanguage
1
include/svtools/HtmlWriter.hxx:38
void HtmlWriter::prettyPrint(_Bool)
_Bool b
0
include/svtools/inettbc.hxx:81
void SvtURLBox::select_entry_region(int,int)
int nStartPos
0
include/svtools/ruler.hxx:733
void Ruler::SetWinPos(long,long)
long nWidth
0
include/svtools/stringtransfer.hxx:66
void svt::OStringTransfer::StartStringDrag(const class rtl::OUString &,class vcl::Window *,signed char)
signed char _nDragSourceActions
1
include/svtools/valueset.hxx:318
void ValueSet::EnableFullItemMode(_Bool)
_Bool bFullMode
0
include/svtools/valueset.hxx:356
void ValueSet::SetItemColor(unsigned short,const class Color &)
unsigned short nItemId
1
include/svx/algitem.hxx:35
void SvxOrientationItem::SvxOrientationItem(const enum SvxCellOrientation,const unsigned short)
const unsigned short nId
0
include/svx/algitem.hxx:39
void SvxOrientationItem::SvxOrientationItem(int,_Bool,const unsigned short)
const unsigned short nId
0
include/svx/ctredlin.hxx:210
void SvxTPFilter::SelectedAuthorPos(int)
int nPos
0
include/svx/ctredlin.hxx:233
void SvxTPFilter::CheckAction(_Bool)
_Bool bFlag
0
include/svx/dlgctrl.hxx:137
void SvxRectCtl::DoCompletelyDisable(_Bool)
_Bool bNew
1
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:88
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> &,unsigned short,enum SdrInventor,unsigned short,class SdrModel &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &)
int _nYOffsetMM
0
include/svx/framelink.hxx:148
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
enum SvxBorderLineStyle nType
0
include/svx/framelink.hxx:148
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
double nS
0
include/svx/framelink.hxx:148
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
double nD
0
include/svx/frmsel.hxx:144
void svx::FrameSelector::SelectAllBorders(_Bool)
_Bool bSelect
0
include/svx/gridctrl.hxx:393
void DbGridControl::RemoveRows(_Bool)
_Bool bNewCursor
0
include/svx/IAccessibleParent.hxx:80
_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:130
unsigned short svx::sidebar::NBOTypeMgrBase::GetNBOIndexForNumRule(class SvxNumRule &,unsigned short,unsigned short)
unsigned short nFromIndex
0
include/svx/nbdtmg.hxx:131
void svx::sidebar::NBOTypeMgrBase::RelplaceNumRule(class SvxNumRule &,unsigned short,unsigned short)
unsigned short mLevel
1
include/svx/nbdtmg.hxx:133
class rtl::OUString svx::sidebar::NBOTypeMgrBase::GetDescription(unsigned short,_Bool)
_Bool isDefault
1
include/svx/postattr.hxx:33
void SvxPostItAuthorItem::SvxPostItAuthorItem(unsigned short)
unsigned short nWhich
0
include/svx/postattr.hxx:53
void SvxPostItDateItem::SvxPostItDateItem(unsigned short)
unsigned short nWhich
0
include/svx/postattr.hxx:72
void SvxPostItTextItem::SvxPostItTextItem(unsigned short)
unsigned short nWhich
0
include/svx/postattr.hxx:93
void SvxPostItIdItem::SvxPostItIdItem(unsigned short)
unsigned short nWhich
0
include/svx/relfld.hxx:43
void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short)
unsigned short nMin
0
include/svx/relfld.hxx:51
int SvxRelativeField::get_min(enum FieldUnit) const
enum FieldUnit eValueUnit
0
include/svx/relfld.hxx:67
void SvxRelativeField::SetFieldUnit(enum FieldUnit,_Bool)
_Bool bAll
0
include/svx/rulritem.hxx:123
void SvxColumnDescription::SvxColumnDescription(long,long,_Bool)
_Bool bVis
1
include/svx/sdr/overlay/overlayobject.hxx:126
void sdr::overlay::OverlayObject::allowAntiAliase(_Bool)
_Bool bNew
0
include/svx/sdr/primitive2d/sdrframeborderprimitive2d.hxx:107
void drawinglayer::primitive2d::SdrFrameBorderPrimitive2D::SdrFrameBorderPrimitive2D(class std::shared_ptr<class std::__debug::vector<class drawinglayer::primitive2d::SdrFrameBorderData, class std::allocator<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/svdundo.hxx:101
class SdrUndoAction * SdrUndoGroup::GetAction(int) const
int nNum
0
include/svx/svdview.hxx:178
void SdrView::EnableExtendedKeyInputDispatcher(_Bool)
_Bool bOn
0
include/svx/svx3ditems.hxx:66
void Svx3DReducedLineGeometryItem::Svx3DReducedLineGeometryItem(_Bool)
_Bool bVal
0
include/svx/svxdlg.hxx:92
void AbstractSvxZoomDialog::HideButton(enum ZoomButtonId)
enum ZoomButtonId nBtnId
1
include/svx/SvxPresetListBox.hxx:57
void SvxPresetListBox::FillPresetListBox(class XGradientList &,unsigned int)
unsigned int nStartIndex
1
include/svx/SvxPresetListBox.hxx:58
void SvxPresetListBox::FillPresetListBox(class XHatchList &,unsigned int)
unsigned int nStartIndex
1
include/svx/SvxPresetListBox.hxx:59
void SvxPresetListBox::FillPresetListBox(class XBitmapList &,unsigned int)
unsigned int nStartIndex
1
include/svx/SvxPresetListBox.hxx:60
void SvxPresetListBox::FillPresetListBox(class XPatternList &,unsigned int)
unsigned int nStartIndex
1
include/svx/sxenditm.hxx:60
void SdrEdgeNode1GlueDistItem::SdrEdgeNode1GlueDistItem(long)
long nVal
0
include/svx/sxenditm.hxx:66
void SdrEdgeNode2GlueDistItem::SdrEdgeNode2GlueDistItem(long)
long nVal
0
include/svx/sxmtfitm.hxx:32
void SdrMeasureTextIsFixedAngleItem::SdrMeasureTextIsFixedAngleItem(_Bool)
_Bool bOn
0
include/svx/sxmtfitm.hxx:45
void SdrMeasureTextFixedAngleItem::SdrMeasureTextFixedAngleItem(long)
long nVal
0
include/svx/sxmtritm.hxx:42
void SdrMeasureTextUpsideDownItem::SdrMeasureTextUpsideDownItem(_Bool)
_Bool bOn
0
include/svx/unopool.hxx:44
void SvxUnoDrawPool::SvxUnoDrawPool(class SdrModel *,int)
int nServiceId
1
include/svx/unoshtxt.hxx:54
void SvxTextEditSource::SvxTextEditSource(class SdrObject &,class SdrText *,class SdrView &,const class OutputDevice &)
class SdrText * pText
0
include/svx/verttexttbxctrl.hxx:33
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
include/svx/xflbmsli.hxx:29
void XFillBmpSizeLogItem::XFillBmpSizeLogItem(_Bool)
_Bool bLog
1
include/svx/xflftrit.hxx:40
void XFillFloatTransparenceItem::XFillFloatTransparenceItem(const class rtl::OUString &,const class XGradient &,_Bool)
_Bool bEnable
1
include/svx/xtable.hxx:217
class rtl::Reference<class XPropertyList> XPropertyList::CreatePropertyListFromURL(enum XPropertyListType,const class rtl::OUString &)
enum XPropertyListType t
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:36
_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:39
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::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::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 aNewWTM
0
include/tools/date.hxx:71
void Date::Date(enum Date::DateInitEmpty)
enum Date::DateInitEmpty
0
include/tools/date.hxx:72
void Date::Date(enum Date::DateInitSystem)
enum Date::DateInitSystem
0
include/tools/datetime.hxx:42
void DateTime::DateTime(enum DateTime::DateTimeInitEmpty)
enum DateTime::DateTimeInitEmpty
0
include/tools/datetime.hxx:43
void DateTime::DateTime(enum DateTime::DateTimeInitSystem)
enum DateTime::DateTimeInitSystem
0
include/tools/fract.hxx:45
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/stream.hxx:663
void SvMemoryStream::ObjectOwnsMemory(_Bool)
_Bool bOwn
1
include/tools/time.hxx:67
void tools::Time::Time(enum tools::Time::TimeInitEmpty)
enum tools::Time::TimeInitEmpty
0
include/tools/time.hxx:69
void tools::Time::Time(enum tools::Time::TimeInitSystem)
enum tools::Time::TimeInitSystem
0
include/tools/urlobj.hxx:344
class rtl::OUString INetURLObject::GetAbsURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::DecodeMechanism eDecodeMechanism
1
include/tools/urlobj.hxx:344
class rtl::OUString INetURLObject::GetAbsURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::EncodeMechanism eEncodeMechanism
1
include/tools/urlobj.hxx:351
class rtl::OUString INetURLObject::GetRelURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
enum INetURLObject::EncodeMechanism eEncodeMechanism
1
include/tools/urlobj.hxx:826
class rtl::OUString INetURLObject::encode(const class rtl::OUString &,enum INetURLObject::Part,enum INetURLObject::EncodeMechanism,unsigned short)
enum INetURLObject::EncodeMechanism eMechanism
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:130
class rtl::OUString CharClass::titlecase(const class rtl::OUString &,int,int) const
int nPos
0
include/unotools/charclass.hxx:173
_Bool CharClass::isAlphaNumeric(const class rtl::OUString &,int) const
int nPos
0
include/unotools/cmdoptions.hxx:78
_Bool SvtCommandOptions::HasEntries(enum SvtCommandOptions::CmdOption) const
enum SvtCommandOptions::CmdOption eOption
0
include/unotools/cmdoptions.hxx:88
_Bool SvtCommandOptions::Lookup(enum SvtCommandOptions::CmdOption,const class rtl::OUString &) const
enum SvtCommandOptions::CmdOption eOption
0
include/unotools/confignode.hxx:254
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:51
void ConvertChar::RecodeString(class rtl::OUString &,int,int) const
int nIndex
0
include/unotools/historyoptions.hxx:93
void SvtHistoryOptions::DeleteItem(enum EHistoryType,const class rtl::OUString &)
enum EHistoryType eHistory
0
include/unotools/localedatawrapper.hxx:275
double LocaleDataWrapper::stringToDouble(const class rtl::OUString &,_Bool,enum rtl_math_ConversionStatus *,int *) const
_Bool bUseGroupSep
1
include/unotools/localedatawrapper.hxx:305
double LocaleDataWrapper::stringToDouble(const char16_t *,const char16_t *,_Bool,enum rtl_math_ConversionStatus *,const char16_t **) const
_Bool bUseGroupSep
1
include/unotools/mediadescriptor.hxx:258
class com::sun::star::uno::Sequence<struct com::sun::star::beans::NamedValue> utl::MediaDescriptor::requestAndVerifyDocPassword(class comphelper::IDocPasswordVerifier &,enum comphelper::DocPasswordRequestType,const class std::__debug::vector<class rtl::OUString, class std::allocator<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:162
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:179
_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:183
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:184
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/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/transliterationwrapper.hxx:98
_Bool utl::TransliterationWrapper::equals(const class rtl::OUString &,int,int,int &,const class rtl::OUString &,int,int,int &) const
int nPos1
0
include/vbahelper/vbaeventshelperbase.hxx:90
void VbaEventsHelperBase::checkArgumentType(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int)
int nIndex
0
include/vbahelper/vbahelper.hxx:120
class rtl::OUString extractStringFromAny(const class com::sun::star::uno::Any &,const class rtl::OUString &,_Bool)
_Bool bUppercaseBool
1
include/vcl/accessibletableprovider.hxx:114
_Bool vcl::IAccessibleTableProvider::GetGlyphBoundRects(const class Point &,const class rtl::OUString &,int,int,class std::__debug::vector<class tools::Rectangle, class std::allocator<class tools::Rectangle> > &)
int nIndex
0
include/vcl/alpha.hxx:58
void AlphaMask::Replace(unsigned char,unsigned char)
unsigned char cSearchTransparency
0
include/vcl/BitmapBasicMorphologyFilter.hxx:46
void BitmapErodeFilter::BitmapErodeFilter(int)
int nRadius
1
include/vcl/dibtools.hxx:40
_Bool ReadDIB(class Bitmap &,class SvStream &,_Bool,_Bool)
_Bool bMSOFormat
0
include/vcl/dibtools.hxx:46
_Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool)
_Bool bMSOFormat
0
include/vcl/dibtools.hxx:46
_Bool ReadDIBBitmapEx(class BitmapEx &,class SvStream &,_Bool,_Bool)
_Bool bFileHeader
1
include/vcl/edit.hxx:101
void Edit::ImplClearBackground(class OutputDevice &,const class tools::Rectangle &,long,long)
long nXStart
0
include/vcl/embeddedfontshelper.hxx:39
class rtl::OUString EmbeddedFontsHelper::fontFileUrl(const class rtl::OUString &,enum FontFamily,enum FontItalic,enum FontWeight,enum FontPitch,enum EmbeddedFontsHelper::FontRights)
enum EmbeddedFontsHelper::FontRights rights
0
include/vcl/errcode.hxx:66
void ErrCode::ErrCode(enum WarningFlag,enum ErrCodeArea,enum ErrCodeClass,unsigned short)
enum WarningFlag
0
include/vcl/field.hxx:82
void FormatterBase::EnableEmptyFieldValue(_Bool)
_Bool bEnable
1
include/vcl/fieldvalues.hxx:33
_Bool TextToValue(const class rtl::OUString &,double &,long,unsigned short,const class LocaleDataWrapper &,enum FieldUnit)
long nBaseValue
0
include/vcl/fieldvalues.hxx:53
double ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
unsigned short nDecDigits
0
include/vcl/fieldvalues.hxx:53
double ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
long nBaseValue
0
include/vcl/fmtfield.hxx:126
void FormattedField::EnableEmptyField(_Bool)
_Bool bEnable
1
include/vcl/graphicfilter.hxx:297
class ErrCode GraphicFilter::ImportGraphic(class Graphic &,const class rtl::OUString &,class SvStream &,unsigned short,unsigned short *,enum GraphicFilterImportFlags,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *,const struct WmfExternal *)
const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> * pFilterData
0
include/vcl/image.hxx:48
void Image::Image(enum StockImage,const class rtl::OUString &,class Size)
enum StockImage
0
include/vcl/mtfxmldump.hxx:34
void MetafileXmlDump::filterActionType(const enum MetaActionType,_Bool)
_Bool bShouldFilter
0
include/vcl/outdev.hxx:529
_Bool OutputDevice::SupportsOperation(enum OutDevSupportType) const
enum OutDevSupportType
0
include/vcl/outdev.hxx:1078
_Bool OutputDevice::GetTextOutline(class tools::PolyPolygon &,const class rtl::OUString &,int,unsigned long,const long *) const
const long * pDXArray
0
include/vcl/outdev.hxx:1078
_Bool OutputDevice::GetTextOutline(class tools::PolyPolygon &,const class rtl::OUString &,int,unsigned long,const long *) const
unsigned long nLayoutWidth
0
include/vcl/outdev.hxx:1199
void OutputDevice::ImplDrawWaveTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool)
long nY
0
include/vcl/outdev.hxx:1200
void OutputDevice::ImplDrawStraightTextLine(long,long,long,long,long,enum FontLineStyle,class Color,_Bool)
long nY
0
include/vcl/outdev.hxx:1201
void OutputDevice::ImplDrawStrikeoutLine(long,long,long,long,long,enum FontStrikeout,class Color)
long nY
0
include/vcl/outdev.hxx:1202
void OutputDevice::ImplDrawStrikeoutChar(long,long,long,long,long,enum FontStrikeout,class Color)
long nY
0
include/vcl/outdev.hxx:1224
void OutputDevice::RefreshFontData(const _Bool)
const _Bool bNewFontLists
1
include/vcl/outdev.hxx:1352
_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::__debug::vector<class Bitmap, class std::allocator<class Bitmap> > &,unsigned long,int,double)
int nPages
1
include/vcl/settings.hxx:702
void AllSettings::SetLanguageTag(const class rtl::OUString &,_Bool)
_Bool bCanonicalize
1
include/vcl/splitwin.hxx:136
void SplitWindow::InsertItem(unsigned short,long,unsigned short,unsigned short,enum SplitWindowItemFlags)
unsigned short nIntoSetId
0
include/vcl/splitwin.hxx:157
long SplitWindow::GetItemSize(unsigned short,enum SplitWindowItemFlags) const
enum SplitWindowItemFlags nBits
1
include/vcl/status.hxx:36
void DrawProgress(class vcl::Window *,class OutputDevice &,const class Point &,long,long,long,unsigned short,unsigned short,unsigned short,const class tools::Rectangle &)
unsigned short nPercent1
0
include/vcl/syschild.hxx:51
void SystemChildWindow::EnableEraseBackground(_Bool)
_Bool bEnable
0
include/vcl/TaskStopwatch.hxx:76
void TaskStopwatch::TaskStopwatch(_Bool)
_Bool bConciderLastIterTime
1
include/vcl/texteng.hxx:262
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:312
void ToolBox::InsertWindow(unsigned short,class vcl::Window *,enum ToolBoxItemBits,unsigned long)
enum ToolBoxItemBits nBits
0
include/vcl/toolbox.hxx:361
void ToolBox::SetItemWindowNonInteractive(unsigned short,_Bool)
_Bool bNonInteractive
1
include/vcl/toolbox.hxx:419
class Size ToolBox::CalcWindowSizePixel(unsigned long,enum WindowAlign)
unsigned long nCalcLines
1
include/vcl/toolbox.hxx:443
void ToolBox::EnableCustomize(_Bool)
_Bool bEnable
1
include/vcl/toolkit/combobox.hxx:104
void ComboBox::EnableUserDraw(_Bool)
_Bool bUserDraw
1
include/vcl/treelistbox.hxx:656
void SvTreeListBox::MakeVisible(class SvTreeListEntry *,_Bool)
_Bool bMoveToTop
1
include/vcl/treelistbox.hxx:682
unsigned long SvTreeListBox::SelectChildren(class SvTreeListEntry *,_Bool)
_Bool bSelect
0
include/vcl/treelistbox.hxx:692
void SvTreeListBox::SetHighlightRange(unsigned short,unsigned short)
unsigned short nFirstTab
0
include/vcl/vcllayout.hxx:91
_Bool SalLayout::GetNextGlyph(const class GlyphItem **,class Point &,int &,const class PhysicalFontFace **,int *const) const
int *const pFallbackLevel
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:81
void VclPtr::VclPtr<T>(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:341
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:388
void ScopedVclPtr::ScopedVclPtr<reference_type>(type-parameter-?-? *,enum __sal_NoAcquire)
enum __sal_NoAcquire
0
include/vcl/vectorgraphicdata.hxx:90
void VectorGraphicData::VectorGraphicData(const class rtl::OUString &,enum VectorGraphicDataType)
enum VectorGraphicDataType eVectorDataType
0
include/vcl/weld.hxx:321
void weld::ScrolledWindow::hadjustment_configure(int,int,int,int,int,int)
int step_increment
1
include/vcl/weld.hxx:340
void weld::ScrolledWindow::vadjustment_configure(int,int,int,int,int,int)
int lower
0
include/vcl/weld.hxx:352
void weld::ScrolledWindow::vadjustment_set_lower(int)
int upper
0
include/vcl/weld.hxx:938
_Bool weld::TreeView::get_text_emphasis(int,int) const
int col
0
include/vcl/weld.hxx:939
void weld::TreeView::set_text_align(int,double,int)
int col
0
include/vcl/weld.hxx:1157
void weld::TreeView::set_column_custom_renderer(int,_Bool)
int nColumn
0
include/vcl/weld.hxx:1217
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > weld::IconView::make_iterator(const class weld::TreeIter *) const
const class weld::TreeIter * pOrig
0
include/vcl/weld.hxx:2193
class std::unique_ptr<class weld::MessageDialog, struct std::default_delete<class weld::MessageDialog> > weld::Builder::weld_message_dialog(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
include/vcl/weld.hxx:2196
class std::unique_ptr<class weld::Dialog, struct std::default_delete<class weld::Dialog> > weld::Builder::weld_dialog(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
include/vcl/weld.hxx:2197
class std::unique_ptr<class weld::Assistant, struct std::default_delete<class weld::Assistant> > weld::Builder::weld_assistant(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
include/vcl/weld.hxx:2200
class std::unique_ptr<class weld::Widget, struct std::default_delete<class weld::Widget> > weld::Builder::weld_widget(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2201
class std::unique_ptr<class weld::Container, struct std::default_delete<class weld::Container> > weld::Builder::weld_container(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2204
class std::unique_ptr<class weld::Box, struct std::default_delete<class weld::Box> > weld::Builder::weld_box(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2205
class std::unique_ptr<class weld::Paned, struct std::default_delete<class weld::Paned> > weld::Builder::weld_paned(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2206
class std::unique_ptr<class weld::Button, struct std::default_delete<class weld::Button> > weld::Builder::weld_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2207
class std::unique_ptr<class weld::MenuButton, struct std::default_delete<class weld::MenuButton> > weld::Builder::weld_menu_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2211
class std::unique_ptr<class weld::ScrolledWindow, struct std::default_delete<class weld::ScrolledWindow> > weld::Builder::weld_scrolled_window(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2214
class std::unique_ptr<class weld::Notebook, struct std::default_delete<class weld::Notebook> > weld::Builder::weld_notebook(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2219
class std::unique_ptr<class weld::RadioButton, struct std::default_delete<class weld::RadioButton> > weld::Builder::weld_radio_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2222
class std::unique_ptr<class weld::CheckButton, struct std::default_delete<class weld::CheckButton> > weld::Builder::weld_check_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2225
class std::unique_ptr<class weld::LinkButton, struct std::default_delete<class weld::LinkButton> > weld::Builder::weld_link_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2232
class std::unique_ptr<class weld::MetricSpinButton, struct std::default_delete<class weld::MetricSpinButton> > weld::Builder::weld_metric_spin_button(const class rtl::OString &,enum FieldUnit,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2234
class std::unique_ptr<class weld::FormattedSpinButton, struct std::default_delete<class weld::FormattedSpinButton> > weld::Builder::weld_formatted_spin_button(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2236
class std::unique_ptr<class weld::TimeSpinButton, struct std::default_delete<class weld::TimeSpinButton> > weld::Builder::weld_time_spin_button(const class rtl::OString &,enum TimeFieldFormat,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2238
class std::unique_ptr<class weld::ComboBox, struct std::default_delete<class weld::ComboBox> > weld::Builder::weld_combo_box(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2242
class std::unique_ptr<class weld::IconView, struct std::default_delete<class weld::IconView> > weld::Builder::weld_icon_view(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2244
class std::unique_ptr<class weld::Label, struct std::default_delete<class weld::Label> > weld::Builder::weld_label(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2245
class std::unique_ptr<class weld::TextView, struct std::default_delete<class weld::TextView> > weld::Builder::weld_text_view(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2247
class std::unique_ptr<class weld::Expander, struct std::default_delete<class weld::Expander> > weld::Builder::weld_expander(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2250
class std::unique_ptr<class weld::Scale, struct std::default_delete<class weld::Scale> > weld::Builder::weld_scale(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2251
class std::unique_ptr<class weld::ProgressBar, struct std::default_delete<class weld::ProgressBar> > weld::Builder::weld_progress_bar(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2254
class std::unique_ptr<class weld::Spinner, struct std::default_delete<class weld::Spinner> > weld::Builder::weld_spinner(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2256
class std::unique_ptr<class weld::Image, struct std::default_delete<class weld::Image> > weld::Builder::weld_image(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2257
class std::unique_ptr<class weld::Calendar, struct std::default_delete<class weld::Calendar> > weld::Builder::weld_calendar(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2260
class std::unique_ptr<class weld::DrawingArea, struct std::default_delete<class weld::DrawingArea> > weld::Builder::weld_drawing_area(const class rtl::OString &,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class std::function<class std::unique_ptr<class UIObject, struct std::default_delete<class UIObject> > (class vcl::Window *)>,void *,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2265
class std::unique_ptr<class weld::EntryTreeView, struct std::default_delete<class weld::EntryTreeView> > weld::Builder::weld_entry_tree_view(const class rtl::OString &,const class rtl::OString &,const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/weld.hxx:2268
class std::unique_ptr<class weld::Menu, struct std::default_delete<class weld::Menu> > weld::Builder::weld_menu(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
1
include/vcl/weld.hxx:2269
class std::unique_ptr<class weld::Toolbar, struct std::default_delete<class weld::Toolbar> > weld::Builder::weld_toolbar(const class rtl::OString &,_Bool)
_Bool bTakeOwnership
0
include/vcl/window.hxx:607
void vcl::Window::ImplSetMouseTransparent(_Bool)
_Bool bTransparent
1
include/xmloff/numehelp.hxx:92
void XMLNumberFormatAttributesExportHelper::SetNumberFormatAttributes(class SvXMLExport &,const class rtl::OUString &,const class rtl::OUString &,_Bool,_Bool)
_Bool bExportTypeAttribute
1
include/xmloff/ProgressBarHelper.hxx:47
void ProgressBarHelper::ProgressBarHelper(const class com::sun::star::uno::Reference<class com::sun::star::task::XStatusIndicator> &,const _Bool)
const _Bool bStrict
1
include/xmloff/SchXMLImportHelper.hxx:129
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/styleexp.hxx:103
void XMLStyleExport::exportStyleFamily(const char *,const class rtl::OUString &,const class rtl::Reference<class SvXMLExportPropertyMapper> &,_Bool,enum XmlStyleFamily,const class rtl::OUString *)
const class rtl::OUString * pPrefix
0
include/xmloff/txtparae.hxx:222
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/XMLCharContext.hxx:45
void XMLCharContext::XMLCharContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,short)
short nControl
1
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:83
void SvxXMLListStyleContext::SetDefaultStyle(const class com::sun::star::uno::Reference<class com::sun::star::container::XIndexReplace> &,short,_Bool)
_Bool bOrdered
0
include/xmloff/xmlstyle.hxx:95
void SvXMLStyleContext::SvXMLStyleContext(class SvXMLImport &,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &,enum XmlStyleFamily,_Bool)
_Bool bDefaultStyle
0
l10ntools/inc/common.hxx:49
void writePoEntry(const class rtl::OString &,class PoOfstream &,const class rtl::OString &,const class rtl::OString &,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:110
void PoOfstream::PoOfstream(const class rtl::OString &,enum PoOfstream::OpenMode)
enum PoOfstream::OpenMode aMode
1
libreofficekit/qa/gtktiledviewer/gtv-main-toolbar.hxx:52
void gtv_main_toolbar_doc_loaded(struct GtvMainToolbar *,LibreOfficeKitDocumentType,_Bool)
_Bool bEditMode
1
libreofficekit/qa/tilebench/tilebench.cxx:68
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:68
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:144
void testTile(class lok::Document *,int,int,_Bool)
_Bool dump
1
lotuswordpro/inc/xfilter/xfborders.hxx:90
void XFBorder::SetDoubleLine(_Bool,_Bool)
_Bool bSameWidth
0
lotuswordpro/inc/xfilter/xfborders.hxx:90
void XFBorder::SetDoubleLine(_Bool,_Bool)
_Bool dual
1
lotuswordpro/inc/xfilter/xfcellstyle.hxx:108
void XFCellStyle::SetAlignType(enum enumXFAlignType,enum enumXFAlignType)
enum enumXFAlignType hori
0
lotuswordpro/inc/xfilter/xfdrawstyle.hxx:117
void XFDrawStyle::SetFontWorkStyle(enum enumXFFWStyle,enum enumXFFWAdjust)
enum enumXFFWAdjust eAdjust
0
lotuswordpro/inc/xfilter/xfframestyle.hxx:127
void XFFrameStyle::SetProtect(_Bool,_Bool,_Bool)
_Bool pos
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 content
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:173
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:203
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:112
void LwpCurrencyInfo::LwpCurrencyInfo(const class rtl::OUString &,_Bool,_Bool)
_Bool bShowSpace_
1
o3tl/qa/cow_wrapper_clients.hxx:41
void o3tltests::cow_wrapper_client1::cow_wrapper_client1(int)
int nVal
1
oox/inc/drawingml/chart/objectformatter.hxx:148
_Bool oox::drawingml::chart::ObjectFormatter::getTextRotation(const class oox::drawingml::chart::ModelRef<class oox::drawingml::TextBody> &,int)
int nDefaultRotation
0
oox/inc/drawingml/chart/typegroupconverter.hxx:155
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:28
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/source/drawingml/lineproperties.cxx:44
void lclSetDashData(struct com::sun::star::drawing::LineDash &,short,int,short,int,int)
short nDots
1
oox/source/export/chartexport.cxx:255
int lcl_getCategoryAxisType(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XDiagram> &,int,int)
int nDimensionIndex
0
oox/source/export/ColorPropertySet.hxx:42
void oox::drawingml::ColorPropertySet::ColorPropertySet(class Color,_Bool)
_Bool bFillColor
1
oox/source/ppt/pptshape.cxx:484
_Bool Placeholders::hasByPrio(unsigned long) const
unsigned long aIndex
0
oox/source/ppt/timenodelistcontext.cxx:103
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
int t
0
oox/source/ppt/timenodelistcontext.cxx:103
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
short cs
0
oox/source/ppt/timenodelistcontext.cxx:103
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
int o
0
oox/source/ppt/timenodelistcontext.cxx:103
void oox::ppt::(anonymous namespace)::AnimColor::AnimColor(short,int,int,int)
int th
0
oox/source/vml/vmlformatting.cxx:542
long lclGetEmu(const class oox::GraphicHelper &,const class oox::OptValue<class rtl::OUString> &,long)
long nDefValue
1
oox/source/vml/vmlshapecontext.cxx:129
_Bool lclDecodeVmlxBool(const class rtl::OUString &,_Bool)
_Bool bDefaultForEmpty
1
opencl/source/opencl_device.cxx:115
double random(double,double)
double min
0
opencl/source/openclwrapper.cxx:528
_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,const class rtl::OUString &)
int level
1
reportdesign/inc/RptModel.hxx:57
void rptui::OReportModel::OReportModel(class reportdesign::OReportDefinition *)
class reportdesign::OReportDefinition * _pReportDefinition
0
reportdesign/source/core/inc/Tools.hxx:48
void throwIllegallArgumentException(const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
short ArgumentPosition_
1
reportdesign/source/filter/xml/xmlFixedContent.cxx:52
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:95
void rptui::GeometryHandler::implCreateListLikeControl(const class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlFactory> &,struct com::sun::star::inspection::LineDescriptor &,const char **,_Bool,_Bool)
_Bool _bReadOnlyControl
0
reportdesign/source/ui/inc/GeometryHandler.hxx:95
void rptui::GeometryHandler::implCreateListLikeControl(const class com::sun::star::uno::Reference<class com::sun::star::inspection::XPropertyControlFactory> &,struct com::sun::star::inspection::LineDescriptor &,const char **,_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 std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> *,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:111
void (anonymous namespace)::FileHandle_Impl::FileHandle_Impl(int,enum (anonymous namespace)::FileHandle_Impl::Kind,const char *)
enum (anonymous namespace)::FileHandle_Impl::Kind kind
1
sal/qa/osl/file/osl_File.cxx:426
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:738
void thread_sleep(unsigned int)
unsigned int _nSec
1
sal/qa/osl/process/osl_Thread.cxx:160
void (anonymous namespace)::ThreadSafeValue::ThreadSafeValue<T>(type-parameter-?-?)
type-parameter-?-? n
0
sal/qa/rtl/random/rtl_random.cxx:172
void rtl_random::(anonymous namespace)::Statistics::addValue(unsigned char,int)
int _nValue
1
sc/inc/address.hxx:334
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:507
void ScRange::ScRange(enum ScAddress::Uninitialized)
enum ScAddress::Uninitialized eUninitialized
0
sc/inc/address.hxx:510
void ScRange::ScRange(enum ScAddress::InitializeInvalid)
enum ScAddress::InitializeInvalid eInvalid
0
sc/inc/attarray.hxx:143
const class ScPatternAttr * ScAttrArray::SetPattern(int,class std::unique_ptr<class ScPatternAttr, struct std::default_delete<class ScPatternAttr> >,_Bool)
_Bool bPutToPool
1
sc/inc/attarray.hxx:145
void ScAttrArray::SetPatternArea(int,int,class std::unique_ptr<class ScPatternAttr, struct std::default_delete<class ScPatternAttr> >,_Bool,class ScEditDataArray *)
class ScEditDataArray * pDataArray
0
sc/inc/attarray.hxx:145
void ScAttrArray::SetPatternArea(int,int,class std::unique_ptr<class ScPatternAttr, struct std::default_delete<class ScPatternAttr> >,_Bool,class ScEditDataArray *)
_Bool bPutToPool
1
sc/inc/cellform.hxx:41
class rtl::OUString ScCellFormat::GetString(class ScDocument &,const class ScAddress &,unsigned int,class Color **,class SvNumberFormatter &,_Bool,_Bool)
_Bool bFormula
0
sc/inc/cellform.hxx:41
class rtl::OUString ScCellFormat::GetString(class ScDocument &,const class ScAddress &,unsigned int,class Color **,class SvNumberFormatter &,_Bool,_Bool)
_Bool bNullVals
1
sc/inc/ChartTools.hxx:48
class SdrOle2Obj * getChartByIndex(class ScDocShell *,short,long,enum sc::tools::ChartSourceType)
enum sc::tools::ChartSourceType eChartSourceType
1
sc/inc/chgtrack.hxx:711
void ScChangeActionContent::PutOldValueToDoc(class ScDocument *,short,int) const
short nDx
0
sc/inc/chgtrack.hxx:711
void ScChangeActionContent::PutOldValueToDoc(class ScDocument *,short,int) const
int nDy
0
sc/inc/column.hxx:221
_Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const
_Bool bConsiderCellNotes
0
sc/inc/column.hxx:221
_Bool ScColumn::HasDataAt(struct sc::ColumnBlockConstPosition &,int,_Bool,_Bool) const
_Bool bConsiderCellDrawObjects
0
sc/inc/column.hxx:223
_Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool)
_Bool bConsiderCellNotes
0
sc/inc/column.hxx:223
_Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,_Bool,_Bool)
_Bool bConsiderCellDrawObjects
0
sc/inc/column.hxx:250
void ScColumn::GetUnprotectedCells(int,int,class ScRangeList &) const
int nStartRow
0
sc/inc/column.hxx:337
class ScFormulaCell * ScColumn::SetFormulaCell(int,class ScFormulaCell *,enum sc::StartListeningType,_Bool)
_Bool bInheritNumFormatIfNeeded
1
sc/inc/column.hxx:367
void ScColumn::GetString(struct sc::ColumnBlockConstPosition &,int,class rtl::OUString &,const struct ScInterpreterContext *) const
const struct ScInterpreterContext * pContext
0
sc/inc/column.hxx:669
void ScColumn::DetachFormulaCells(class sc::EndListeningContext &,int,int,class std::__debug::vector<int, class std::allocator<int> > *)
class std::__debug::vector<int, class std::allocator<int> > * pNewSharedRows
0
sc/inc/column.hxx:725
void ScColumn::AttachNewFormulaCell(const class mdds::detail::mtv::iterator_base<struct mdds::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, class svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, class EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, class ScFormulaCell> >, class sc::CellStoreEvent>::iterator_trait, struct mdds::detail::mtv::private_data_forward_update<struct mdds::detail::mtv::iterator_value_node<unsigned long, struct mdds::mtv::base_element_block> > > &,int,class ScFormulaCell &,const class std::__debug::vector<int, class std::allocator<int> > &,_Bool,enum sc::StartListeningType)
_Bool bJoin
1
sc/inc/columnspanset.hxx:59
void sc::ColumnSpanSet::ColumnType::ColumnType(int,int,_Bool)
_Bool bInit
0
sc/inc/columnspanset.hxx:59
void sc::ColumnSpanSet::ColumnType::ColumnType(int,int,_Bool)
int nStart
0
sc/inc/columnspanset.hxx:83
void sc::ColumnSpanSet::ColumnAction::executeSum(int,int,_Bool,double &)
_Bool
1
sc/inc/columnspanset.hxx:91
void sc::ColumnSpanSet::set(const class ScDocument &,short,short,int,_Bool)
_Bool bVal
1
sc/inc/columnspanset.hxx:93
void sc::ColumnSpanSet::set(const class ScDocument &,const class ScRange &,_Bool)
_Bool bVal
1
sc/inc/columnspanset.hxx:95
void sc::ColumnSpanSet::set(const class ScDocument &,short,short,const class sc::SingleColumnSpanSet &,_Bool)
_Bool bVal
1
sc/inc/columnspanset.hxx:101
void sc::ColumnSpanSet::scan(const class ScDocument &,short,short,int,short,int,_Bool)
_Bool bVal
1
sc/inc/compiler.hxx:358
void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *)
const struct ScInterpreterContext * pContext
0
sc/inc/compiler.hxx:358
void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *)
_Bool bComputeII
0
sc/inc/compiler.hxx:358
void ScCompiler::ScCompiler(class sc::CompileFormulaContext &,const class ScAddress &,_Bool,_Bool,const struct ScInterpreterContext *)
_Bool bMatrixFlag
0
sc/inc/compiler.hxx:364
void ScCompiler::ScCompiler(class ScDocument *,const class ScAddress &,enum formula::FormulaGrammar::Grammar,_Bool,_Bool,const struct ScInterpreterContext *)
const struct ScInterpreterContext * pContext
0
sc/inc/compiler.hxx:394
char16_t ScCompiler::GetNativeAddressSymbol(enum ScCompiler::Convention::SpecialSymbolType) const
enum ScCompiler::Convention::SpecialSymbolType eType
0
sc/inc/compressedarray.hxx:169
void ScBitMaskCompressedArray::ScBitMaskCompressedArray<A, D>(type-parameter-?-?,const type-parameter-?-? &)
const type-parameter-?-? & rValue
0
sc/inc/compressedarray.hxx:179
void ScBitMaskCompressedArray::CopyFromAnded(const ScBitMaskCompressedArray<A, D> &,type-parameter-?-?,type-parameter-?-?,const type-parameter-?-? &)
type-parameter-?-? nStart
0
sc/inc/dapiuno.hxx:297
void ScFieldIdentifier::ScFieldIdentifier(const class rtl::OUString &,_Bool)
_Bool bDataLayout
1
sc/inc/dociter.hxx:563
void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument *,short,short,int,short,int)
int nRow1
0
sc/inc/dociter.hxx:563
void ScUsedAreaIterator::ScUsedAreaIterator(class ScDocument *,short,short,int,short,int)
short nCol1
0
sc/inc/dociter.hxx:599
void ScDocRowHeightUpdater::TabRanges::TabRanges(short,int)
short nTab
0
sc/inc/document.hxx:956
void ScDocument::SetPendingRowHeights(short,_Bool)
_Bool bSet
0
sc/inc/document.hxx:960
void ScDocument::SetScenario(short,_Bool)
_Bool bFlag
1
sc/inc/document.hxx:1156
class rtl::OUString ScDocument::GetString(short,int,short,const struct ScInterpreterContext *) const
const struct ScInterpreterContext * pContext
0
sc/inc/document.hxx:1296
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:1523
void ScDocument::EnableUserInteraction(_Bool)
_Bool bVal
0
sc/inc/document.hxx:1610
void ScDocument::CopyMultiRangeFromClip(const class ScAddress &,const class ScMarkData &,enum InsertDeleteFlags,class ScDocument *,_Bool,_Bool,_Bool,_Bool)
_Bool bResetCut
1
sc/inc/document.hxx:1659
void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
_Bool bMarked
0
sc/inc/document.hxx:1659
void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
short nCol1
0
sc/inc/document.hxx:1666
void ScDocument::UndoToDocument(const class ScRange &,enum InsertDeleteFlags,_Bool,class ScDocument &)
_Bool bMarked
0
sc/inc/document.hxx:1711
const class ScPatternAttr * ScDocument::GetMostUsedPattern(short,int,int,short) const
int nStartRow
0
sc/inc/document.hxx:1862
unsigned long ScDocument::GetColWidth(short,short,short) const
short nStartCol
0
sc/inc/document.hxx:1903
void ScDocument::ShowRow(int,short,_Bool)
_Bool bShow
0
sc/inc/document.hxx:1906
void ScDocument::SetRowFlags(int,int,short,enum CRFlags)
int nStartRow
0
sc/inc/document.hxx:1911
void ScDocument::GetAllRowBreaks(class std::__debug::set<int, struct std::less<int>, class std::allocator<int> > &,short,_Bool,_Bool) const
_Bool bManual
1
sc/inc/document.hxx:1911
void ScDocument::GetAllRowBreaks(class std::__debug::set<int, struct std::less<int>, class std::allocator<int> > &,short,_Bool,_Bool) const
_Bool bPage
0
sc/inc/document.hxx:1912
void ScDocument::GetAllColBreaks(class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,short,_Bool,_Bool) const
_Bool bManual
1
sc/inc/document.hxx:1912
void ScDocument::GetAllColBreaks(class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,short,_Bool,_Bool) const
_Bool bPage
0
sc/inc/document.hxx:1915
void ScDocument::SetRowBreak(int,short,_Bool,_Bool)
_Bool bManual
1
sc/inc/document.hxx:1915
void ScDocument::SetRowBreak(int,short,_Bool,_Bool)
_Bool bPage
0
sc/inc/document.hxx:1916
void ScDocument::SetColBreak(short,short,_Bool,_Bool)
_Bool bManual
1
sc/inc/document.hxx:1916
void ScDocument::SetColBreak(short,short,_Bool,_Bool)
_Bool bPage
0
sc/inc/document.hxx:1917
void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool)
_Bool bPage
0
sc/inc/document.hxx:1917
void ScDocument::RemoveRowBreak(int,short,_Bool,_Bool)
_Bool bManual
1
sc/inc/document.hxx:1918
void ScDocument::RemoveColBreak(short,short,_Bool,_Bool)
_Bool bPage
0
sc/inc/document.hxx:1918
void ScDocument::RemoveColBreak(short,short,_Bool,_Bool)
_Bool bManual
1
sc/inc/document.hxx:2240
void ScDocument::UpdateBroadcastAreas(enum UpdateRefMode,const class ScRange &,short,int,short)
enum UpdateRefMode eUpdateRefMode
0
sc/inc/document.hxx:2270
void ScDocument::CalcFormulaTree(_Bool,_Bool,_Bool)
_Bool bSetAllDirty
1
sc/inc/document.hxx:2492
void ScDocument::StoreTabToCache(short,class SvStream &) const
short nTab
0
sc/inc/document.hxx:2493
void ScDocument::RestoreTabFromCache(short,class SvStream &)
short nTab
0
sc/inc/document.hxx:2569
void ScDocument::EndListeningIntersectedGroup(class sc::EndListeningContext &,const class ScAddress &,class std::__debug::vector<class ScAddress, class std::allocator<class ScAddress> > *)
class std::__debug::vector<class ScAddress, class std::allocator<class ScAddress> > * pGroupPos
0
sc/inc/document.hxx:2588
void ScMutationDisable::ScMutationDisable(class ScDocument *,enum ScMutationGuardFlags)
enum ScMutationGuardFlags nFlags
1
sc/inc/document.hxx:2620
void ScMutationGuard::ScMutationGuard(class ScDocument *,enum ScMutationGuardFlags)
enum ScMutationGuardFlags nFlags
1
sc/inc/documentimport.hxx:89
void ScDocumentImport::setSheetName(short,const class rtl::OUString &)
short nTab
0
sc/inc/documentimport.hxx:124
void ScDocumentImport::setRowsVisible(short,int,int,_Bool)
_Bool bVisible
0
sc/inc/documentlinkmgr.hxx:65
_Bool sc::DocumentLinkManager::hasDdeOrOleOrWebServiceLinks(_Bool,_Bool,_Bool) const
_Bool bDde
1
sc/inc/dpdimsave.hxx:175
class rtl::OUString ScDPDimensionSaveData::CreateDateGroupDimName(int,const class ScDPObject &,_Bool,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > *)
_Bool bAllowSource
1
sc/inc/dpglobal.hxx:54
void ScDPValue::Set(double,enum ScDPValue::Type)
enum ScDPValue::Type eT
0
sc/inc/dpsave.hxx:229
void ScDPSaveDimension::Dump(int) const
int nIndent
0
sc/inc/dptabdat.hxx:130
const class ScDPItemData * ScDPTableData::GetMemberByIndex(long,long)
long nIndex
0
sc/inc/dptabres.hxx:140
void ScDPRelativePos::ScDPRelativePos(long,long)
long nBase
0
sc/inc/drwlayer.hxx:160
class tools::Rectangle ScDrawLayer::GetCellRect(const class ScDocument &,const class ScAddress &,_Bool)
_Bool bMergedCell
1
sc/inc/filter.hxx:79
class ErrCode ScFormatFilterPlugin::ScExportExcel5(class SfxMedium &,class ScDocument *,enum ExportFormatExcel,unsigned short)
unsigned short eDest
1
sc/inc/filter.hxx:82
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:84
void ScFormatFilterPlugin::ScExportRTF(class SvStream &,class ScDocument *,const class ScRange &,const unsigned short)
const unsigned short eDest
0
sc/inc/formulacell.hxx:188
void ScFormulaCell::ScFormulaCell(class ScDocument *,const class ScAddress &,class std::unique_ptr<class ScTokenArray, struct std::default_delete<class ScTokenArray> >,const enum formula::FormulaGrammar::Grammar,enum ScMatrixMode)
enum ScMatrixMode cMatInd
0
sc/inc/formulacell.hxx:222
class rtl::OUString ScFormulaCell::GetFormula(class sc::CompileFormulaContext &,const struct ScInterpreterContext *) const
const struct ScInterpreterContext * pContext
0
sc/inc/markarr.hxx:55
void ScMarkArray::Reset(_Bool,unsigned long)
unsigned long nNeeded
1
sc/inc/miscuno.hxx:155
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:160
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/pivot.hxx:124
void ScPivotField::ScPivotField(short)
short nNewCol
0
sc/inc/postit.hxx:167
void ScPostIt::ScPostIt(class ScDocument &,const class ScAddress &,unsigned int)
unsigned int nPostItId
0
sc/inc/queryparam.hxx:60
struct ScQueryEntry * ScQueryParamBase::FindEntryByField(int,_Bool)
_Bool bNew
1
sc/inc/rangeutl.hxx:52
_Bool ScRangeUtil::IsAbsTabArea(const class rtl::OUString &,const class ScDocument *,class std::unique_ptr<class ScArea [], struct std::default_delete<class ScArea []> > *,unsigned short *,_Bool,const struct ScAddress::Details &)
_Bool bAcceptCellRef
1
sc/inc/rangeutl.hxx:120
_Bool ScRangeStringConverter::GetAddressFromString(class ScAddress &,const class rtl::OUString &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,int &,char16_t,char16_t)
enum formula::FormulaGrammar::AddressConvention eConv
0
sc/inc/rangeutl.hxx:144
_Bool ScRangeStringConverter::GetAreaFromString(class ScArea &,const class rtl::OUString &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,int &,char16_t)
enum formula::FormulaGrammar::AddressConvention eConv
0
sc/inc/rangeutl.hxx:178
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:185
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:185
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:195
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:195
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:210
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:453
class VclPtr<class AbstractScMetricInputDlg> ScAbstractDialogFactory::CreateScMetricInputDlg(class weld::Window *,const class rtl::OString &,long,long,enum FieldUnit,unsigned short,long,long)
long nMinimum
0
sc/inc/scmatrix.hxx:150
void ScMatrix::IterateResult::IterateResult(double,double,unsigned long)
unsigned long nCount
0
sc/inc/scmatrix.hxx:330
_Bool ScMatrix::IsEmptyResult(unsigned long,unsigned long) const
unsigned long nC
0
sc/inc/scmatrix.hxx:330
_Bool ScMatrix::IsEmptyResult(unsigned long,unsigned long) const
unsigned long nR
0
sc/inc/scmatrix.hxx:369
unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const
unsigned long nCol1
0
sc/inc/scmatrix.hxx:369
unsigned long ScMatrix::MatchDoubleInColumns(double,unsigned long,unsigned long) const
unsigned long nCol2
0
sc/inc/scmatrix.hxx:370
unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const
unsigned long nCol1
0
sc/inc/scmatrix.hxx:370
unsigned long ScMatrix::MatchStringInColumns(const class svl::SharedString &,unsigned long,unsigned long) const
unsigned long nCol2
0
sc/inc/scopetools.hxx:52
void sc::UndoSwitch::UndoSwitch(class ScDocument &,_Bool)
_Bool bUndo
1
sc/inc/scopetools.hxx:61
void sc::IdleSwitch::IdleSwitch(class ScDocument &,_Bool)
_Bool bEnableIdle
0
sc/inc/scopetools.hxx:71
void sc::DelayFormulaGroupingSwitch::DelayFormulaGroupingSwitch(class ScDocument &,_Bool)
_Bool delay
1
sc/inc/stringutil.hxx:154
class rtl::OUString ScStringUtil::GetQuotedToken(const class rtl::OUString &,int,const class rtl::OUString &,char16_t,int &)
int nToken
0
sc/inc/table.hxx:783
void ScTable::SetOptimalHeightOnly(class sc::RowHeightContext &,int,int,class ScProgress *,unsigned long)
int nStartRow
0
sc/inc/table.hxx:898
_Bool ScTable::RowHiddenLeaf(int,int *,int *) const
int * pFirstRow
0
sc/inc/table.hxx:903
void ScTable::CopyColHidden(const class ScTable &,short,short)
short nStartCol
0
sc/inc/table.hxx:904
void ScTable::CopyRowHidden(const class ScTable &,int,int)
int nStartRow
0
sc/inc/table.hxx:914
_Bool ScTable::ColFiltered(short,short *,short *) const
short * pFirstCol
0
sc/inc/table.hxx:916
void ScTable::CopyColFiltered(const class ScTable &,short,short)
short nStartCol
0
sc/inc/table.hxx:917
void ScTable::CopyRowFiltered(const class ScTable &,int,int)
int nStartRow
0
sc/inc/token.hxx:268
void ScRefListToken::ScRefListToken(_Bool)
_Bool bArrayResult
1
sc/inc/types.hxx:107
void sc::MultiDataCellState::MultiDataCellState(enum sc::MultiDataCellState::StateType)
enum sc::MultiDataCellState::StateType eState
1
sc/qa/extras/new_cond_format.cxx:183
void testShowValue(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,_Bool)
_Bool bShowVal
1
sc/qa/extras/scpdfexport.cxx:51
void ScPDFExportTest::setFont(class ScFieldEditEngine &,int,int,const class rtl::OUString &)
int nStart
0
sc/qa/unit/helper/qahelper.hxx:215
void testFormats(class ScBootstrapFixture *,class ScDocument *,int)
int nFormat
0
sc/qa/unit/mark_test.cxx:129
void Test::testScMarkArraySearch_check(const class ScMarkArray &,int,_Bool,unsigned long)
_Bool expectStatus
1
sc/qa/unit/opencl-test.cxx:506
_Bool ScOpenCLTest::initTestEnv(const class rtl::OUString &,int,_Bool)
_Bool bReadWrite
0
sc/qa/unit/parallelism.cxx:76
class ScUndoCut * ScParallelismTest::cutToClip(class ScDocShell &,const class ScRange &,class ScDocument *,_Bool)
_Bool bCreateUndo
0
sc/qa/unit/scshapetest.cxx:46
class rtl::OUString lcl_compareRectWithTolerance(const class tools::Rectangle &,const class tools::Rectangle &,const int)
const int nTolerance
1
sc/qa/unit/subsequent_export-test.cxx:1341
void setAttribute(class ScFieldEditEngine &,int,int,int,unsigned short,class Color)
int nPara
0
sc/qa/unit/subsequent_export-test.cxx:1398
void setFont(class ScFieldEditEngine &,int,int,int,const class rtl::OUString &)
int nPara
0
sc/qa/unit/subsequent_export-test.cxx:1411
void setEscapement(class ScFieldEditEngine &,int,int,int,short,unsigned char)
int nPara
0
sc/qa/unit/ucalc.hxx:51
void Test::clearSheet(class ScDocument *,short)
short nTab
0
sc/source/core/data/dociter.cxx:1277
void BoolResetter::BoolResetter(_Bool &,_Bool)
_Bool b
1
sc/source/core/data/drwlayer.cxx:2008
void DeleteFirstUserDataOfType(class SdrObject *,unsigned short)
unsigned short nId
1
sc/source/core/data/postit.cxx:410
void (anonymous namespace)::ScNoteCaptionCreator::ScNoteCaptionCreator(class ScDocument &,const class ScAddress &,class ScCaptionPtr &,_Bool)
_Bool bShown
1
sc/source/core/opencl/formulagroupcl.cxx:1071
class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::(anonymous namespace)::DynamicKernelSlidingArgument::GenSlidingWindowDeclRef(_Bool) const
_Bool nested
0
sc/source/core/opencl/opbase.hxx:129
class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::DynamicKernelArgument::GenDoubleSlidingWindowDeclRef(_Bool) const
_Bool
0
sc/source/core/opencl/opbase.hxx:132
class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > sc::opencl::DynamicKernelArgument::GenStringSlidingWindowDeclRef(_Bool) const
_Bool
0
sc/source/core/tool/compiler.cxx:766
void (anonymous namespace)::ConventionOOO_A1::ConventionOOO_A1(enum formula::FormulaGrammar::AddressConvention)
enum formula::FormulaGrammar::AddressConvention eConv
1
sc/source/core/tool/scmatrix.cxx:3313
double matop::(anonymous namespace)::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const
type-parameter-?-? aOp
0
sc/source/core/tool/scmatrix.cxx:3313
double matop::(anonymous namespace)::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const
double b
0
sc/source/filter/excel/xeformula.cxx:389
void XclExpFmlaCompImpl::ConvertRefData(struct ScComplexRefData &,struct XclRange &,_Bool) const
_Bool bNatLangRef
0
sc/source/filter/excel/xeformula.cxx:407
void XclExpFmlaCompImpl::Append(unsigned char,unsigned long)
unsigned char nData
0
sc/source/filter/excel/xeformula.cxx:409
void XclExpFmlaCompImpl::Append(unsigned int)
unsigned int nData
0
sc/source/filter/excel/xeformula.cxx:449
void XclExpFmlaCompImpl::AppendExt(unsigned char,unsigned long)
unsigned char nData
0
sc/source/filter/excel/xihelper.cxx:141
class std::unique_ptr<class EditTextObject, struct std::default_delete<class EditTextObject> > lclCreateTextObject(const class XclImpRoot &,const class XclImpString &,enum XclFontItemType,unsigned short)
enum XclFontItemType eType
1
sc/source/filter/html/htmlpars.cxx:1640
type-parameter-?-? getLimitedValue(const type-parameter-?-? &,const type-parameter-?-? &,const type-parameter-?-? &)
const type-parameter-?-? & rMin
1
sc/source/filter/inc/addressconverter.hxx:145
_Bool oox::xls::AddressConverter::parseOoxRange2d(int &,int &,int &,int &,const class rtl::OUString &,int)
int nStart
0
sc/source/filter/inc/addressconverter.hxx:234
_Bool oox::xls::AddressConverter::convertToCellAddress(class ScAddress &,const char *,short,_Bool)
_Bool bTrackOverflow
1
sc/source/filter/inc/addressconverter.hxx:245
class ScAddress oox::xls::AddressConverter::createValidCellAddress(const class rtl::OUString &,short,_Bool)
_Bool bTrackOverflow
0
sc/source/filter/inc/addressconverter.hxx:375
_Bool oox::xls::AddressConverter::convertToCellRange(class ScRange &,const class rtl::OUString &,short,_Bool,_Bool)
_Bool bAllowOverflow
1
sc/source/filter/inc/addressconverter.hxx:415
_Bool oox::xls::AddressConverter::convertToCellRange(class ScRange &,const struct oox::xls::BinRange &,short,_Bool,_Bool)
_Bool bAllowOverflow
1
sc/source/filter/inc/addressconverter.hxx:431
void oox::xls::AddressConverter::validateCellRangeList(class ScRangeList &,_Bool)
_Bool bTrackOverflow
0
sc/source/filter/inc/autofilterbuffer.hxx:51
void oox::xls::ApiFilterSettings::appendField(_Bool,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
_Bool bAnd
1
sc/source/filter/inc/excrecds.hxx:180
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:642
class rtl::OUString oox::xls::FormulaProcessorBase::generateAddress2dString(const class ScAddress &,_Bool)
_Bool bAbsolute
0
sc/source/filter/inc/formulabase.hxx:774
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:197
class ScStyleSheet & ScfTools::MakeCellStyleSheet(class ScStyleSheetPool &,const class rtl::OUString &,_Bool)
_Bool bForceName
1
sc/source/filter/inc/ftools.hxx:204
class ScStyleSheet & ScfTools::MakePageStyleSheet(class ScStyleSheetPool &,const class rtl::OUString &,_Bool)
_Bool bForceName
0
sc/source/filter/inc/htmlpars.hxx:189
void ScHTMLLayoutParser::MakeColNoRef(class o3tl::sorted_vector<unsigned long, struct std::less<unsigned long>, find_unique, true> *,unsigned short,unsigned short,unsigned short,unsigned short)
unsigned short nWidth
0
sc/source/filter/inc/htmlpars.hxx:189
void ScHTMLLayoutParser::MakeColNoRef(class o3tl::sorted_vector<unsigned long, struct std::less<unsigned long>, find_unique, true> *,unsigned short,unsigned short,unsigned short,unsigned short)
unsigned short nWidthTol
0
sc/source/filter/inc/htmlpars.hxx:189
void ScHTMLLayoutParser::MakeColNoRef(class o3tl::sorted_vector<unsigned long, struct std::less<unsigned long>, find_unique, true> *,unsigned short,unsigned short,unsigned short,unsigned short)
unsigned short nOffsetTol
0
sc/source/filter/inc/tool.h:36
void SetFormat(struct LotusContext &,short,int,short,unsigned char,unsigned char)
short nTab
0
sc/source/filter/inc/workbookhelper.hxx:161
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:200
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:197
void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
enum XclFutureRecType eRecType
1
sc/source/filter/inc/xechart.hxx:338
void XclExpChFrameBase::SetDefaultFrameBase(const class XclExpChRoot &,enum XclChFrameType,_Bool)
enum XclChFrameType eDefFrameType
1
sc/source/filter/inc/xechart.hxx:366
void XclExpChFrame::SetAutoFlags(_Bool,_Bool)
_Bool bAutoSize
0
sc/source/filter/inc/xechart.hxx:366
void XclExpChFrame::SetAutoFlags(_Bool,_Bool)
_Bool bAutoPos
0
sc/source/filter/inc/xeextlst.hxx:200
class XclExpExt * XclExtLst::GetItem(enum XclExpExtType)
enum XclExpExtType eType
0
sc/source/filter/inc/xehelper.hxx:107
struct XclAddress XclExpAddressConverter::CreateValidAddress(const class ScAddress &,_Bool)
_Bool bWarn
0
sc/source/filter/inc/xehelper.hxx:147
void XclExpAddressConverter::ValidateRangeList(class ScRangeList &,_Bool)
_Bool bWarn
0
sc/source/filter/inc/xehelper.hxx:279
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:295
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:309
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:318
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:271
unsigned short XclExpPTField::GetItemIndex(const class rtl::OUString &,unsigned short) const
unsigned short nDefaultIdx
0
sc/source/filter/inc/xestream.hxx:299
void XclExpXmlStream::WriteAttributes(int,type-parameter-?-? &&,type-parameter-?-? &&...)
###27
0
sc/source/filter/inc/xestring.hxx:74
void XclExpString::Assign(char16_t)
char16_t cChar
0
sc/source/filter/inc/xestring.hxx:103
void XclExpString::AppendTrailingFormat(unsigned short)
unsigned short nFontIdx
0
sc/source/filter/inc/xestring.hxx:141
unsigned short XclExpString::GetChar(unsigned short) const
unsigned short nCharIdx
0
sc/source/filter/inc/xestyle.hxx:225
unsigned short XclExpFontBuffer::Insert(const class SvxFont &,enum XclExpColorType)
enum XclExpColorType eColorType
0
sc/source/filter/inc/xestyle.hxx:231
unsigned short XclExpFontBuffer::Insert(const class SfxItemSet &,short,enum XclExpColorType,_Bool)
enum XclExpColorType eColorType
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:479
void XclImpControlHelper::ReadSourceRangeFormula(class XclImpStream &,_Bool)
_Bool bWithBoundSize
1
sc/source/filter/inc/xihelper.hxx:70
class ScAddress XclImpAddressConverter::CreateValidAddress(const struct XclAddress &,short,_Bool)
_Bool bWarn
0
sc/source/filter/inc/xipage.hxx:59
void XclImpPageSettings::SetPaperSize(unsigned short,_Bool)
_Bool bPortrait
0
sc/source/filter/inc/xipage.hxx:59
void XclImpPageSettings::SetPaperSize(unsigned short,_Bool)
unsigned short nXclPaperSize
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:294
class tools::Rectangle XclObjAnchor::GetRect(const class XclRoot &,short,enum MapUnit) const
enum MapUnit eMapUnit
0
sc/source/filter/inc/xlformula.hxx:381
void XclTokenArray::XclTokenArray(_Bool)
_Bool bVolatile
0
sc/source/filter/inc/xlformula.hxx:443
void XclTokenArrayIterator::XclTokenArrayIterator(const class ScTokenArray &,_Bool)
_Bool bSkipSpaces
1
sc/source/filter/inc/xlformula.hxx:445
void XclTokenArrayIterator::XclTokenArrayIterator(const class XclTokenArrayIterator &,_Bool)
_Bool bSkipSpaces
1
sc/source/filter/inc/xltools.hxx:62
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/inc/xltools.hxx:62
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:109
int XclTools::GetScRotation(unsigned short,int)
int nRotForStacked
0
sc/source/filter/oox/formulaparser.cxx:463
struct com::sun::star::sheet::FormulaToken & oox::xls::FormulaParserImpl::getOperandToken(unsigned long,unsigned long)
unsigned long nOpIndex
0
sc/source/filter/oox/formulaparser.cxx:463
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, struct std::default_delete<struct ScMyCellInfo> >)
unsigned int id
0
sc/source/filter/xml/XMLExportSharedData.hxx:69
void ScMySharedData::SetDrawPageHasForms(const int,_Bool)
_Bool bHasForms
1
sc/source/ui/dbgui/csvgrid.cxx:57
void (anonymous namespace)::Func_SetType::Func_SetType(int)
int nType
0
sc/source/ui/dbgui/csvgrid.cxx:65
void (anonymous namespace)::Func_Select::Func_Select(_Bool)
_Bool bSelect
0
sc/source/ui/inc/AccessibleDocument.hxx:251
void ScAccessibleDocument::RemoveChild(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,_Bool)
_Bool bFireEvent
1
sc/source/ui/inc/acredlin.hxx:118
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<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:118
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<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:74
void ScFormulaReferenceHelper::EnableSpreadsheets(_Bool)
_Bool bFlag
1
sc/source/ui/inc/anyrefdg.hxx:147
void ScRefHdlrControllerImpl::ScRefHdlrControllerImpl<TBase, bBindRef>(class weld::Window *,const class rtl::OUString &,const class rtl::OString &,const class SfxItemSet *,class SfxBindings *)
class SfxBindings * pB
0
sc/source/ui/inc/cliputil.hxx:23
void PasteFromClipboard(class ScViewData *,class ScTabViewShell *,_Bool)
_Bool bShowDialog
1
sc/source/ui/inc/datatransformation.hxx:149
void sc::NumberTransformation::NumberTransformation(const class std::__debug::set<short, struct std::less<short>, class std::allocator<short> > &,const enum sc::NUMBER_TRANSFORM_TYPE,int)
const enum sc::NUMBER_TRANSFORM_TYPE rType
0
sc/source/ui/inc/dbdocfun.hxx:80
_Bool ScDBDocFunc::RepeatDB(const class rtl::OUString &,_Bool,_Bool,short)
_Bool bApi
1
sc/source/ui/inc/docfunc.hxx:101
void ScDocFunc::SetValueCells(const class ScAddress &,const class std::__debug::vector<double, class std::allocator<double> > &,_Bool)
_Bool bInteraction
1
sc/source/ui/inc/docfunc.hxx:112
_Bool ScDocFunc::SetFormulaCells(const class ScAddress &,class std::__debug::vector<class ScFormulaCell *, class std::allocator<class ScFormulaCell *> > &,_Bool)
_Bool bInteraction
1
sc/source/ui/inc/docfunc.hxx:113
void ScDocFunc::PutData(const class ScAddress &,class ScEditEngineDefaulter &,_Bool)
_Bool bApi
1
sc/source/ui/inc/docfunc.hxx:114
_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:120
void ScDocFunc::SetNoteText(const class ScAddress &,const class rtl::OUString &,_Bool)
_Bool bApi
0
sc/source/ui/inc/docfunc.hxx:143
_Bool ScDocFunc::SetTabBgColor(class std::__debug::vector<struct ScUndoTabColorInfo, class std::allocator<struct ScUndoTabColorInfo> > &,_Bool)
_Bool bApi
0
sc/source/ui/inc/docfunc.hxx:145
void ScDocFunc::SetTableVisible(short,_Bool,_Bool)
_Bool bApi
1
sc/source/ui/inc/docfunc.hxx:178
_Bool ScDocFunc::FillSimple(const class ScRange &,const class ScMarkData *,enum FillDir,_Bool)
_Bool bApi
0
sc/source/ui/inc/docfunc.hxx:187
_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/drawutil.hxx:32
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:32
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:143
int ScDPSubtotalOptDlg::FindListBoxEntry(const class weld::ComboBox &,const class rtl::OUString &,int) const
int nStartPos
1
sc/source/ui/inc/RegressionDialog.hxx:56
class rtl::OUString ScRegressionDialog::GetYVariableNameFormula(_Bool)
_Bool bWithLog
0
sc/source/ui/inc/spellparam.hxx:37
void ScConversionParam::ScConversionParam(enum ScConversionType)
enum ScConversionType eConvType
0
sc/source/ui/inc/spellparam.hxx:40
void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool)
int nOptions
0
sc/source/ui/inc/spellparam.hxx:40
void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,int,_Bool)
_Bool bIsInteractive
1
sc/source/ui/inc/spellparam.hxx:40
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:47
void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,const class vcl::Font &,int,_Bool)
_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:375
void ScTabView::ClickCursor(short,int,_Bool)
_Bool bControl
0
sc/source/ui/inc/tabview.hxx:416
void ScTabView::MoveCursorAbs(short,int,enum ScFollowMode,_Bool,_Bool,_Bool,_Bool)
_Bool bControl
0
sc/source/ui/inc/tabview.hxx:427
void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
_Bool bShift
0
sc/source/ui/inc/tabview.hxx:427
void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
enum ScFollowMode eMode
1
sc/source/ui/inc/tabview.hxx:427
void ScTabView::MoveCursorScreen(short,int,enum ScFollowMode,_Bool)
short nMovX
0
sc/source/ui/inc/undoblk.hxx:323
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:323
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:323
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:120
void ScUndoRenameTab::ScUndoRenameTab(class ScDocShell *,short,const class rtl::OUString &,const class rtl::OUString &)
short nT
0
sc/source/ui/inc/undotab.hxx:200
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:604
class Point ScViewData::GetScrPos(short,int,enum ScHSplitPos) const
int nWhereY
0
sc/source/ui/inc/viewdata.hxx:605
class Point ScViewData::GetScrPos(short,int,enum ScVSplitPos) const
short nWhereX
0
sc/source/ui/inc/viewdata.hxx:668
void ScViewData::AddPixelsWhileBackward(long &,long,int &,int,double,const class ScDocument *,short)
int nStartRow
0
sc/source/ui/inc/viewfunc.hxx:174
void ScViewFunc::ApplyAttributes(const class SfxItemSet *,const class SfxItemSet *,_Bool)
_Bool bAdjustBlockHeight
1
sc/source/ui/inc/viewutil.hxx:69
void ScViewUtil::SetFullScreen(const class SfxViewShell &,_Bool)
_Bool bSet
0
sc/source/ui/pagedlg/tptable.cxx:46
_Bool lcl_PutScaleItem(unsigned short,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:54
_Bool lcl_PutScaleItem2(unsigned short,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:44
int ScVbaCondition::Operator(_Bool)
_Bool _bIncludeFormulaValue
1
sc/source/ui/vba/vbaeventshelper.hxx:54
_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:60
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:65
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:70
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:75
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:107
class com::sun::star::uno::Reference<class ooo::vba::excel::XRange> ScVbaRange::getArea(int)
int nIndex
0
sc/source/ui/view/olinewin.cxx:724
_Bool lcl_RotateValue(unsigned long &,unsigned long,unsigned long,_Bool)
unsigned long nMin
0
sc/source/ui/view/prevloc.cxx:266
struct ScPreviewLocationEntry * lcl_GetEntryByAddress(const class std::__debug::list<class std::unique_ptr<struct ScPreviewLocationEntry, struct std::default_delete<struct ScPreviewLocationEntry> >, class std::allocator<class std::unique_ptr<struct ScPreviewLocationEntry, struct std::default_delete<struct ScPreviewLocationEntry> > > > &,const class ScAddress &,const enum (anonymous namespace)::ScPreviewLocationType)
const enum (anonymous namespace)::ScPreviewLocationType eType
0
scaddins/source/analysis/analysishelper.hxx:70
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:84
int GetDaysInYear(int,int,int)
int nDate
0
scaddins/source/analysis/analysishelper.hxx:84
int GetDaysInYear(int,int,int)
int nNullDate
0
scaddins/source/analysis/analysishelper.hxx:263
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:901
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:129
class com::sun::star::uno::Any sd::CustomAnimationEffect::getProperty(int,const class rtl::OUString &,enum sd::EValue)
enum sd::EValue eValue
0
sd/inc/CustomAnimationEffect.hxx:130
_Bool sd::CustomAnimationEffect::setProperty(int,const class rtl::OUString &,enum sd::EValue,const class com::sun::star::uno::Any &)
enum sd::EValue eValue
0
sd/inc/CustomAnimationEffect.hxx:132
class com::sun::star::uno::Any sd::CustomAnimationEffect::getTransformationProperty(int,enum sd::EValue)
enum sd::EValue eValue
1
sd/inc/CustomAnimationEffect.hxx:133
_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:421
class com::sun::star::uno::Reference<class com::sun::star::text::XTextField> SdModelTestBase::getTextFieldFromPage(int,int,int,int,class tools::SvRef<class sd::DrawDocShell>)
int nPara
0
sd/qa/unit/sdmodeltestbase.hxx:421
class com::sun::star::uno::Reference<class com::sun::star::text::XTextField> SdModelTestBase::getTextFieldFromPage(int,int,int,int,class tools::SvRef<class sd::DrawDocShell>)
int nRun
0
sd/source/filter/eppt/epptbase.hxx:394
unsigned int PPTWriterBase::GetMasterIndex(enum PageType)
enum PageType ePageType
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:107
void FieldEntry::FieldEntry(unsigned int,unsigned int,unsigned int)
unsigned int nStart
0
sd/source/filter/ppt/pptinanimations.hxx:100
void ppt::AnimationImporter::dump_atom_header(const class ppt::Atom *,_Bool,_Bool)
_Bool bAppend
0
sd/source/filter/ppt/pptinanimations.hxx:101
void ppt::AnimationImporter::dump_atom(const class ppt::Atom *,_Bool)
_Bool bNewLine
1
sd/source/ui/inc/DrawDocShell.hxx:64
void sd::DrawDocShell::DrawDocShell(enum SfxModelFlags,_Bool,enum DocumentType)
_Bool bSdDataObj
0
sd/source/ui/inc/DrawDocShell.hxx:69
void sd::DrawDocShell::DrawDocShell(class SdDrawDocument *,enum SfxObjectCreateMode,_Bool,enum DocumentType)
enum SfxObjectCreateMode eMode
0
sd/source/ui/inc/DrawDocShell.hxx:69
void sd::DrawDocShell::DrawDocShell(class SdDrawDocument *,enum SfxObjectCreateMode,_Bool,enum DocumentType)
_Bool bSdDataObj
1
sd/source/ui/inc/DrawViewShell.hxx:90
void sd::DrawViewShell::DrawViewShell(class sd::ViewShellBase &,class vcl::Window *,enum PageKind,class sd::FrameView *)
enum PageKind ePageKind
0
sd/source/ui/inc/RemoteServer.hxx:40
void sd::ClientInfo::ClientInfo(const class rtl::OUString &,const _Bool)
const _Bool bIsAlreadyAuthorised
0
sd/source/ui/inc/slideshow.hxx:148
void sd::SlideShow::pause(_Bool)
_Bool bPause
0
sd/source/ui/inc/ToolBarManager.hxx:214
void sd::ToolBarManager::SetToolBarShell(enum sd::ToolBarManager::ToolBarGroup,enum ToolbarId)
enum sd::ToolBarManager::ToolBarGroup eGroup
1
sd/source/ui/inc/tools/ConfigurationAccess.hxx:58
void sd::tools::ConfigurationAccess::ConfigurationAccess(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const enum sd::tools::ConfigurationAccess::WriteMode)
const enum sd::tools::ConfigurationAccess::WriteMode eMode
1
sd/source/ui/inc/unomodel.hxx:131
void SdXImpressDocument::SdXImpressDocument(class SdDrawDocument *,_Bool)
_Bool bClipBoard
1
sd/source/ui/inc/View.hxx:147
_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
sdext/source/minimizer/configurationaccess.hxx:90
short ConfigurationAccess::GetConfigProperty(const enum PPPOptimizerTokenEnum,const short) const
const short nDefault
0
sdext/source/minimizer/informationdialog.hxx:29
class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short)
short nTabIndex
0
sdext/source/minimizer/informationdialog.hxx:29
class rtl::OUString InsertFixedText(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool,short)
_Bool bMultiLine
1
sdext/source/minimizer/informationdialog.hxx:32
class rtl::OUString InsertImage(class UnoDialog &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,int,_Bool)
_Bool bScale
0
sdext/source/minimizer/informationdialog.hxx:35
class rtl::OUString InsertCheckBox(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XItemListener> &,const class rtl::OUString &,int,int,int,short)
short nTabIndex
1
sdext/source/minimizer/optimizerdialogcontrols.cxx:91
class rtl::OUString InsertButton(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,_Bool,enum PPPOptimizerTokenEnum,enum com::sun::star::awt::PushButtonType)
enum com::sun::star::awt::PushButtonType nPushButtonType
0
sdext/source/minimizer/optimizerdialogcontrols.cxx:200
class rtl::OUString InsertFormattedField(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XSpinListener> &,int,int,double,double,short)
double fEffectiveMin
0
sdext/source/minimizer/optimizerdialogcontrols.cxx:248
class rtl::OUString InsertComboBox(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XTextListener> &,const _Bool,const class com::sun::star::uno::Sequence<class rtl::OUString> &,int,int,short)
const _Bool bEnabled
1
sdext/source/minimizer/optimizerdialogcontrols.cxx:326
class rtl::OUString InsertListBox(class OptimizerDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,const _Bool,const class com::sun::star::uno::Sequence<class rtl::OUString> &,int,int,int,short)
const _Bool bEnabled
1
sdext/source/pdfimport/wrapper/wrapper.cxx:970
oslFileError pdfi::(anonymous namespace)::Buffering::read(char *,short,unsigned long *)
short count
1
sdext/source/presenter/PresenterTextView.hxx:231
void sdext::presenter::PresenterTextView::SetOffset(const double,const double)
const double nLeft
0
sfx2/source/inc/workwin.hxx:277
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 T1
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:262
class std::shared_ptr<class RotateAndScaleDepthByHeight> makeRotateAndScaleDepthByHeight(const struct glm::vec<3, float, glm::packed_highp> &,const struct glm::vec<3, float, glm::packed_highp> &,double,_Bool,_Bool,double,double)
_Bool bInter
1
slideshow/source/engine/opengl/Operation.hxx:262
class std::shared_ptr<class RotateAndScaleDepthByHeight> makeRotateAndScaleDepthByHeight(const struct glm::vec<3, float, glm::packed_highp> &,const struct glm::vec<3, float, glm::packed_highp> &,double,_Bool,_Bool,double,double)
_Bool bScale
1
slideshow/source/engine/slide/layer.hxx:221
void slideshow::internal::Layer::Layer(enum slideshow::internal::Layer::Dummy)
enum slideshow::internal::Layer::Dummy eFlag
0
slideshow/source/engine/transitions/spiralwipe.hxx:34
void slideshow::internal::SpiralWipe::SpiralWipe(int,_Bool)
_Bool flipOnYAxis
0
slideshow/source/inc/animationfactory.hxx:105
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:123
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 &,int)
int nFlags
0
starmath/inc/rect.hxx:175
class SmRect & SmRect::ExtendBy(const class SmRect &,enum RectCopyMBL,_Bool)
_Bool bKeepVerAlignParams
1
starmath/inc/rect.hxx:175
class SmRect & SmRect::ExtendBy(const class SmRect &,enum RectCopyMBL,_Bool)
enum RectCopyMBL eCopyMode
0
starmath/source/cfgitem.hxx:85
class rtl::OUString SmFontFormatList::GetFontFormatId(const struct SmFontFormat &,_Bool)
_Bool bAdd
1
store/source/object.hxx:56
type-parameter-?-? * query(class store::OStoreObject *,type-parameter-?-? *)
type-parameter-?-? *
0
svl/source/crypto/cryptosign.cxx:396
enum _SECStatus my_SEC_StringToOID(struct SECItemStr *,const char *,unsigned int)
unsigned int len
0
svl/source/crypto/cryptosign.cxx:489
struct NSSCMSAttributeStr * my_NSS_CMSAttributeArray_FindAttrByOidTag(struct NSSCMSAttributeStr **,SECOidTag,int)
int only
0
svl/source/crypto/cryptosign.cxx:1715
struct NSSCMSAttributeStr * CMSAttributeArray_FindAttrByOidData(struct NSSCMSAttributeStr **,const struct SECOidDataStr *,int)
int only
1
svl/source/crypto/cryptosign.cxx:1754
enum _SECStatus StringToOID(struct SECItemStr *,const char *,unsigned int)
unsigned int len
0
svl/source/numbers/zforfind.hxx:239
_Bool ImpSvNumberInputScan::StringPtrContains(const class rtl::OUString &,const char16_t *,int)
int nPos
0
svl/source/numbers/zforfind.hxx:391
_Bool ImpSvNumberInputScan::IsDatePatternNumberOfType(unsigned short,char16_t)
unsigned short nNumber
0
svl/source/passwordcontainer/passwordcontainer.hxx:150
void NamePassRecord::RemovePasswords(signed char)
signed char nStatus
1
svtools/inc/svmedit2.hxx:36
void ExtMultiLineEdit::SetAttrib(const class TextAttrib &,unsigned int,int,int)
int nStart
0
svtools/source/control/valueimp.hxx:213
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:34
void SdrGrafInvertItem::SdrGrafInvertItem(_Bool)
_Bool bInvert
0
svx/inc/sxcaitm.hxx:37
void SdrCaptionAngleItem::SdrCaptionAngleItem(long)
long nAngle
0
svx/inc/sxmtaitm.hxx:30
void SdrMeasureTextAutoAngleItem::SdrMeasureTextAutoAngleItem(_Bool)
_Bool bOn
1
svx/inc/xftshtit.hxx:33
void XFormTextShadowTranspItem::XFormTextShadowTranspItem(unsigned short)
unsigned short nShdwTransparence
0
svx/qa/unit/classicshapes.cxx:34
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> (anonymous namespace)::ClassicshapesTest::getShape(unsigned char,unsigned char)
unsigned char nShapeIndex
0
svx/source/customshapes/EnhancedCustomShape3d.cxx:129
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:138
_Bool GetBool(const class SdrCustomShapeGeometryItem &,const class rtl::OUString &,const _Bool)
const _Bool bDefault
0
svx/source/dialog/srchdlg.cxx:726
void (anonymous namespace)::ToggleSaveToModule::ToggleSaveToModule(class SvxSearchDialog &,_Bool)
_Bool bValue
0
svx/source/gallery2/galbrws1.hxx:84
void GalleryBrowser1::SelectTheme(unsigned short)
unsigned short nThemePos
0
svx/source/inc/celltypes.hxx:59
void sdr::table::RangeIterator::RangeIterator<T>(const type-parameter-?-? &,const type-parameter-?-? &,_Bool)
const type-parameter-?-? & rStart
0
svx/source/inc/fmexpl.hxx:491
signed char svxform::NavigatorTree::implExecuteDataTransfer(const class svxform::OControlTransferData &,signed char,const class Point &,_Bool)
_Bool _bDnD
1
svx/source/inc/fmshimp.hxx:251
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> &,unsigned short,const class rtl::OUString &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> &,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/svdraw/svdoole2.cxx:628
void SdrOle2ObjImpl::SdrOle2ObjImpl(_Bool,const class svt::EmbeddedObjectRef &)
_Bool bFrame
0
svx/source/tbxctrls/tbcontrl.cxx:145
void (anonymous namespace)::SvxStyleBox_Base::insert_separator(int,const class rtl::OUString &)
int pos
1
sw/inc/authfld.hxx:162
class rtl::OUString SwAuthorityField::ExpandCitation(enum ToxAuthorityField,const class SwRootFrame *) const
const class SwRootFrame * pLayout
0
sw/inc/calc.hxx:109
void SwSbxValue::SwSbxValue(long)
long n
0
sw/inc/charfmt.hxx:30
void SwCharFormat::SwCharFormat(class SwAttrPool &,const char *,class SwCharFormat *)
class SwCharFormat * pDerivedFrom
0
sw/inc/crsrsh.hxx:560
_Bool SwCursorShell::GotoMark(const class sw::mark::IMark *const,_Bool)
_Bool bAtStart
1
sw/inc/crsrsh.hxx:824
void SwCursorShell::FireSectionChangeEvent(unsigned short,unsigned short)
unsigned short nNewSection
1
sw/inc/crsrsh.hxx:825
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:994
void SwDoc::CorrAbs(const class SwNodeIndex &,const struct SwPosition &,const int,_Bool)
_Bool bMoveCursor
1
sw/inc/doc.hxx:1008
void SwDoc::CorrAbs(const class SwPaM &,const struct SwPosition &,_Bool)
_Bool bMoveCursor
1
sw/inc/doc.hxx:1014
void SwDoc::CorrRel(const class SwNodeIndex &,const struct SwPosition &,const int,_Bool)
const int nOffset
0
sw/inc/doc.hxx:1053
void SwDoc::SetCounted(const class SwPaM &,_Bool,const class SwRootFrame *)
_Bool bCounted
1
sw/inc/doc.hxx:1122
const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool)
const _Bool bForward
0
sw/inc/doc.hxx:1122
const class SwNumRule * SwDoc::SearchNumRule(const struct SwPosition &,const _Bool,const _Bool,const _Bool,int,class rtl::OUString &,const class SwRootFrame *,const _Bool)
const _Bool bOutline
0
sw/inc/doc.hxx:1414
const class SvNumberFormatter * SwDoc::GetNumberFormatter(_Bool) const
_Bool bCreate
1
sw/inc/doc.hxx:1629
void SwDoc::dumpAsXml(struct _xmlTextWriter *) const
struct _xmlTextWriter *
0
sw/inc/docary.hxx:296
_Bool SwExtraRedlineTable::DeleteTableRowRedline(class SwDoc *,const class SwTableLine &,_Bool,enum RedlineType)
_Bool bSaveInUndo
1
sw/inc/docary.hxx:297
_Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,enum RedlineType)
_Bool bSaveInUndo
1
sw/inc/docufld.hxx:283
void SwHiddenTextFieldType::SwHiddenTextFieldType(_Bool)
_Bool bSetHidden
1
sw/inc/docufld.hxx:308
void SwHiddenTextField::SwHiddenTextField(class SwHiddenTextFieldType *,_Bool,const class rtl::OUString &,const class rtl::OUString &,_Bool,enum SwFieldTypesEnum)
_Bool bHidden
0
sw/inc/docufld.hxx:308
void SwHiddenTextField::SwHiddenTextField(class SwHiddenTextFieldType *,_Bool,const class rtl::OUString &,const class rtl::OUString &,_Bool,enum SwFieldTypesEnum)
_Bool bConditional
1
sw/inc/docufld.hxx:525
void SwDocInfoField::SwDocInfoField(class SwDocInfoFieldType *,unsigned short,const class rtl::OUString &,const class rtl::OUString &,unsigned int)
unsigned int nFormat
0
sw/inc/fesh.hxx:420
const class SwFrameFormat * SwFEShell::GetFlyNum(unsigned long,enum FlyCntType,_Bool) const
_Bool bIgnoreTextBoxes
0
sw/inc/fesh.hxx:420
const class SwFrameFormat * SwFEShell::GetFlyNum(unsigned long,enum FlyCntType,_Bool) const
enum FlyCntType eType
1
sw/inc/fesh.hxx:422
class std::__debug::vector<const class SwFrameFormat *, class std::allocator<const class SwFrameFormat *> > SwFEShell::GetFlyFrameFormats(enum FlyCntType,_Bool)
_Bool bIgnoreTextBoxes
1
sw/inc/fmtcol.hxx:70
void SwTextFormatColl::SwTextFormatColl(class SwAttrPool &,const char *,class SwTextFormatColl *,unsigned short)
class SwTextFormatColl * pDerFrom
0
sw/inc/fmtcol.hxx:142
void SwGrfFormatColl::SwGrfFormatColl(class SwAttrPool &,const char *,class SwGrfFormatColl *)
class SwGrfFormatColl * pDerFrom
0
sw/inc/frmfmt.hxx:85
void SwFrameFormat::SwFrameFormat(class SwAttrPool &,const char *,class SwFrameFormat *,unsigned short,const unsigned short *)
const unsigned short * pWhichRange
0
sw/inc/IDocumentMarkAccess.hxx:100
class IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator-(long) const
###1
1
sw/inc/IDocumentRedlineAccess.hxx:189
_Bool IDocumentRedlineAccess::RejectRedline(unsigned long,_Bool)
_Bool bCallDelete
1
sw/inc/IDocumentUndoRedo.hxx:209
unsigned long IDocumentUndoRedo::GetUndoActionCount(const _Bool) const
const _Bool bCurrentLevel
1
sw/inc/index.hxx:66
int SwIndex::operator--(int)
###1
0
sw/inc/ndgrf.hxx:64
void SwGrfNode::SwGrfNode(const class SwNodeIndex &,const class GraphicObject &,class SwGrfFormatColl *,const class SwAttrSet *)
const class SwAttrSet * pAutoAttr
0
sw/inc/ndindex.hxx:83
unsigned long SwNodeIndex::operator++(int)
###1
0
sw/inc/ndindex.hxx:84
unsigned long SwNodeIndex::operator--(int)
###1
0
sw/inc/ndindex.hxx:140
void SwNodeRange::SwNodeRange(class SwNodes &,unsigned long,unsigned long)
unsigned long nEndIdx
0
sw/inc/ndole.hxx:96
void SwOLENode::SwOLENode(const class SwNodeIndex &,const class svt::EmbeddedObjectRef &,class SwGrfFormatColl *,const class SwAttrSet *)
const class SwAttrSet * pAutoAttr
0
sw/inc/ndtxt.hxx:324
void SwTextNode::CopyText(class SwTextNode *const,const class SwIndex &,const int,const _Bool)
const _Bool bForceCopyOfAllAttrs
1
sw/inc/ndtxt.hxx:686
_Bool SwTextNode::CopyExpandText(class SwTextNode &,const class SwIndex *,int,int,const class SwRootFrame *,_Bool,_Bool,_Bool) const
_Bool bWithNum
0
sw/inc/ndtxt.hxx:696
int SwTextNode::GetDropLen(int) const
int nWishLen
0
sw/inc/pam.hxx:149
void SwPaM::SwPaM(const class SwNodeIndex &,const class SwNodeIndex &,long,long,class SwPaM *)
class SwPaM * pRing
0
sw/inc/pam.hxx:153
void SwPaM::SwPaM(const class SwNodeIndex &,int,const class SwNodeIndex &,int,class SwPaM *)
class SwPaM * pRing
0
sw/inc/pam.hxx:158
void SwPaM::SwPaM(const class SwNodeIndex &,int,class SwPaM *)
class SwPaM * pRing
0
sw/inc/shellio.hxx:520
void SwWriter::SwWriter(class SvStream &,class SwCursorShell &,_Bool)
_Bool bWriteAll
0
sw/inc/shellio.hxx:522
void SwWriter::SwWriter(class SvStream &,class SwPaM &,_Bool)
_Bool bWriteAll
0
sw/inc/shellio.hxx:526
void SwWriter::SwWriter(class SfxMedium &,class SwCursorShell &,_Bool)
_Bool bWriteAll
1
sw/inc/swabstdlg.hxx:295
void AbstractSwSelGlossaryDlg::SelectEntryPos(int)
int nIdx
0
sw/inc/swcrsr.hxx:122
unsigned long 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/swcrsr.hxx:149
_Bool SwCursor::SelectWordWT(const class SwViewShell *,short,const class Point *)
short nWordType
1
sw/inc/swmodule.hxx:158
void SwModule::ApplyRulerMetric(enum FieldUnit,_Bool,_Bool)
_Bool bWeb
0
sw/inc/undobj.hxx:314
void SwUndoInsLayFormat::SwUndoInsLayFormat(class SwFrameFormat *,unsigned long,int)
int nCntIdx
0
sw/inc/undobj.hxx:314
void SwUndoInsLayFormat::SwUndoInsLayFormat(class SwFrameFormat *,unsigned long,int)
unsigned long nNodeIdx
0
sw/inc/undobj.hxx:337
void SwUndoDelLayFormat::ChgShowSel(_Bool)
_Bool bNew
0
sw/inc/unocrsrhelper.hxx:156
void SetPropertyValue(class SwPaM &,const class SfxItemPropertySet &,const class rtl::OUString &,const class com::sun::star::uno::Any &,const enum SetAttrMode)
const enum SetAttrMode nAttrMode
0
sw/qa/core/doc/doc.cxx:26
class SwDoc * SwCoreDocTest::createDoc(const char *)
const char * pName
0
sw/qa/extras/ooxmlimport/ooxmlimport.cxx:86
void FailTest::executeImportTest(const char *,const char *)
const char *
0
sw/qa/extras/ooxmlimport/ooxmlimport.cxx:685
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:260
void SwModelTestBase::executeImportTest(const char *,const char *)
const char * pPassword
0
sw/qa/inc/swmodeltestbase.hxx:302
void SwModelTestBase::executeLoadReloadVerify(const char *,const char *)
const char * pPassword
0
sw/qa/inc/swmodeltestbase.hxx:321
void SwModelTestBase::executeImportExport(const char *,const char *)
const char * pPassword
0
sw/source/core/access/accmap.cxx:455
void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,class SwAccessibleContext *,const class sw::access::SwAccessibleChild &,const enum AccessibleStates)
enum SwAccessibleEvent_Impl::EventType eT
0
sw/source/core/crsr/swcrsr.cxx:71
void (anonymous namespace)::PercentHdl::PercentHdl(unsigned long,unsigned long,class SwDocShell *)
unsigned long nStt
0
sw/source/core/doc/doccomp.cxx:155
void (anonymous namespace)::CompareMainText::CompareMainText(class SwDoc &,_Bool)
_Bool bRecordDiff
0
sw/source/core/inc/drawfont.hxx:107
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:107
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/ftnfrm.hxx:55
class SwFootnoteFrame * SwFootnoteContFrame::AppendChained(class SwFrame *,_Bool)
_Bool bDefaultFormat
1
sw/source/core/inc/ftnfrm.hxx:56
class SwFootnoteFrame * SwFootnoteContFrame::PrependChained(class SwFrame *,_Bool)
_Bool bDefaultFormat
0
sw/source/core/inc/rolbck.hxx:393
void SwHistory::CopyAttr(const class SwpHints *,const unsigned long,const int,const int,const _Bool)
const int nStart
0
sw/source/core/inc/scriptinfo.hxx:387
enum SwFontScript SwScriptInfo::WhichFont(int,const class rtl::OUString &)
int nIdx
0
sw/source/core/inc/swfont.hxx:287
const class rtl::OUString & SwFont::GetName(const enum SwFontScript) const
const enum SwFontScript nWhich
0
sw/source/core/inc/txmsrt.hxx:113
class rtl::OUString SwTOXInternational::ToUpper(const class rtl::OUString &,int) const
int nPos
0
sw/source/core/inc/UndoDelete.hxx:67
void SwUndoDelete::SwUndoDelete(class SwPaM &,_Bool,_Bool)
_Bool bCalledByTableCpy
0
sw/source/core/inc/UndoTable.hxx:253
void SwUndoTableNumFormat::SwUndoTableNumFormat(const class SwTableBox &,const class SfxItemSet *)
const class SfxItemSet * pNewSet
0
sw/source/core/inc/wrong.hxx:351
void SwWrongList::InsertSubList(int,int,unsigned short,class SwWrongList *)
int nNewLen
1
sw/source/core/txtnode/txtedt.cxx:182
_Bool lcl_MaskRedlinesAndHiddenText(const class SwTextNode &,class rtl::OUStringBuffer &,int,int,const char16_t)
int nStt
0
sw/source/core/undo/untbl.cxx:2193
void (anonymous namespace)::RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags)
enum RedlineFlags eNewRedlineFlags
0
sw/source/filter/html/htmltab.cxx:485
unsigned short HTMLTable::GetBottomCellSpace(unsigned short,unsigned short) const
unsigned short nRowSpan
1
sw/source/filter/html/htmltab.cxx:501
class SwTableLine * HTMLTable::MakeTableLine(class SwTableBox *,unsigned short,unsigned short,unsigned short,unsigned short)
unsigned short nLeftCol
0
sw/source/filter/html/swhtml.hxx:823
void SwHTMLParser::BuildTableCell(class HTMLTable *,_Bool,_Bool)
_Bool bReadOptions
1
sw/source/filter/html/wrthtml.hxx:470
void SwHTMLWriter::OutBackground(const class SfxItemSet &,_Bool)
_Bool bGraphic
0
sw/source/filter/inc/fltshell.hxx:316
void ImportProgress::ImportProgress(class SwDocShell *,long,long)
long nStartVal
0
sw/source/filter/inc/wrtswtbl.hxx:280
unsigned short SwWriteTable::GetRelWidth(unsigned short,unsigned short) const
unsigned short nColSpan
1
sw/source/filter/ww8/docxattributeoutput.hxx:729
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:330
void myImplHelpers::(anonymous namespace)::IfBeforeStart::IfBeforeStart(int)
int nStart
0
sw/source/filter/ww8/wrtww8.hxx:177
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:641
void MSWordExportBase::OutputItemSet(const class SfxItemSet &,_Bool,_Bool,unsigned short,_Bool)
unsigned short nScript
1
sw/source/filter/ww8/wrtww8.hxx:895
void MSWordExportBase::NearestAnnotationMark(int &,const int,_Bool)
_Bool bNextPositionOnly
0
sw/source/filter/ww8/wrtww8.hxx:1381
void WW8_WrMagicTable::Append(int,unsigned long)
int nCp
0
sw/source/filter/ww8/wrtww8.hxx:1381
void WW8_WrMagicTable::Append(int,unsigned long)
unsigned long nData
0
sw/source/filter/ww8/ww8par.cxx:438
class rtl::OUString (anonymous namespace)::Sttb::getStringAtIndex(unsigned int)
unsigned int
1
sw/source/filter/ww8/ww8par.hxx:1684
_Bool SwWW8ImplReader::SetUpperSpacing(class SwPaM &,int)
int nSpace
0
sw/source/filter/ww8/ww8scan.hxx:168
class rtl::OUString read_uInt8_BeltAndBracesString(class SvStream &,unsigned short)
unsigned short eEnc
1
sw/source/filter/ww8/ww8scan.hxx:466
void WW8PLCFx_PCD::WW8PLCFx_PCD(const class WW8Fib &,class WW8PLCFpcd *,int,_Bool)
int nStartCp
0
sw/source/filter/ww8/ww8scan.hxx:670
void WW8PLCFx_SEPX::WW8PLCFx_SEPX(class SvStream *,class SvStream *,const class WW8Fib &,int)
int nStartCp
0
sw/source/filter/ww8/ww8scan.hxx:698
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:303
class ww8::WW8TableNodeInfo * ww8::WW8TableInfo::processTableLine(const class SwTable *,const class SwTableLine *,unsigned int,unsigned int,class ww8::WW8TableNodeInfo *,class std::__debug::map<unsigned int, class ww8::WW8TableNodeInfoInner *, struct std::greater<unsigned int>, class std::allocator<struct std::pair<const unsigned int, class ww8::WW8TableNodeInfoInner *> > > &)
unsigned int nDepth
1
sw/source/filter/xml/xmlfmt.cxx:405
void (anonymous namespace)::SwXMLCellStyleContext::XMLPropStyleContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,class SvXMLStylesContext &,enum XmlStyleFamily,_Bool)
_Bool
0
sw/source/ui/misc/impfnote.hxx:64
void SwEndNoteOptionPage::SwEndNoteOptionPage(class weld::Container *,class weld::DialogController *,_Bool,const class SfxItemSet &)
_Bool bEndNote
0
sw/source/ui/table/instable.cxx:173
void lcl_SetProperties(class SwTableAutoFormat *,_Bool)
_Bool bVal
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> &,const class rtl::OUString &,_Bool)
_Bool _bAbsorb
1
sw/source/uibase/inc/condedit.hxx:62
void ConditionEdit::ShowBrackets(_Bool)
_Bool bShow
0
sw/source/uibase/inc/dbtree.hxx:58
class std::unique_ptr<class weld::TreeIter, struct std::default_delete<class weld::TreeIter> > SwDBTreeList::make_iterator(const class weld::TreeIter *) const
const class weld::TreeIter * pOrig
0
sw/source/uibase/inc/edtwin.hxx:213
void SwEditWin::StdDrawMode(enum SdrObjKind,_Bool)
enum SdrObjKind eSdrObjectKind
0
sw/source/uibase/inc/FrameControlsManager.hxx:41
void SwFrameControlsManager::RemoveControlsByType(enum FrameControlType,const class SwFrame *)
enum FrameControlType eType
0
sw/source/uibase/inc/frmmgr.hxx:98
void SwFlyFrameAttrMgr::SetLRSpace(long,long)
long nLeft
0
sw/source/uibase/inc/frmmgr.hxx:98
void SwFlyFrameAttrMgr::SetLRSpace(long,long)
long nRight
0
sw/source/uibase/inc/frmmgr.hxx:100
void SwFlyFrameAttrMgr::SetULSpace(long,long)
long nTop
0
sw/source/uibase/inc/frmmgr.hxx:100
void SwFlyFrameAttrMgr::SetULSpace(long,long)
long nBottom
0
sw/source/uibase/inc/mmconfigitem.hxx:134
void SwMailMergeConfigItem::SetIndividualGreeting(_Bool,_Bool)
_Bool bInEMail
0
sw/source/uibase/inc/numfmtlb.hxx:136
void SwNumFormatTreeView::select(int)
int nPos
0
sw/source/uibase/inc/prcntfld.hxx:67
int SwPercentField::get_min(enum FieldUnit) const
enum FieldUnit eOutUnit
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::OString &)
_Bool bDraw
0
sw/source/uibase/inc/wrtsh.hxx:119
void SwWrtShell::EndDrag(const class Point *,_Bool)
_Bool bProp
0
sw/source/uibase/inc/wrtsh.hxx:120
long SwWrtShell::KillSelection(const class Point *,_Bool)
_Bool bProp
0
sw/source/uibase/inc/wrtsh.hxx:120
long SwWrtShell::KillSelection(const class Point *,_Bool)
const class Point * pPt
0
sw/source/uibase/inc/wrtsh.hxx:414
_Bool SwWrtShell::GotoMark(const class sw::mark::IMark *const,_Bool)
_Bool bSelect
0
sw/source/uibase/inc/wrtsh.hxx:484
const class SwRangeRedline * SwWrtShell::GotoRedline(unsigned long,_Bool)
_Bool bSelect
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 nRow
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 nCol
0
ucb/source/ucp/tdoc/tdoc_provider.hxx:118
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:125
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-neon/DAVResourceAccess.hxx:106
void webdav_ucp::DAVResourceAccess::PROPFIND(const enum webdav_ucp::Depth,class std::__debug::vector<struct webdav_ucp::DAVResourceInfo, class std::allocator<struct webdav_ucp::DAVResourceInfo> > &,const class com::sun::star::uno::Reference<class com::sun::star::ucb::XCommandEnvironment> &)
const enum webdav_ucp::Depth nDepth
0
ucb/source/ucp/webdav-neon/DAVTypes.hxx:180
void webdav_ucp::DAVOptionsCache::setHeadAllowed(const class rtl::OUString &,_Bool)
_Bool HeadAllowed
0
ucb/source/ucp/webdav-neon/NeonSession.hxx:251
int webdav_ucp::NeonSession::GET0(struct ne_session_s *,const char *,_Bool,void *)
_Bool getheaders
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 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:166
enum vcl::test::TestResult checkDiamondLine(class Bitmap &,int,class Color)
int aLayerNumber
1
vcl/backendtest/VisualBackendTest.cxx:53
void drawBitmapScaledAndCentered(const class tools::Rectangle &,class Bitmap,class OutputDevice &,enum BmpScaleFlag)
enum BmpScaleFlag aFlag
1
vcl/headless/svpgdi.cxx:400
void (anonymous namespace)::BitmapHelper::BitmapHelper(const class SalBitmap &,const _Bool)
const _Bool bForceARGB32
1
vcl/inc/listbox.hxx:143
class rtl::OUString ImplEntryList::GetSelectedEntry(int) const
int nIndex
0
vcl/inc/listbox.hxx:278
void ImplListBoxWindow::DrawEntry(class OutputDevice &,int,_Bool,_Bool,_Bool)
_Bool bDrawTextAtImagePos
0
vcl/inc/listbox.hxx:336
void ImplListBoxWindow::EnableMouseMoveSelect(_Bool)
_Bool bMouseMoveSelect
1
vcl/inc/opengl/gdiimpl.hxx:107
void OpenGLSalGraphicsImpl::ImplSetClipBit(const class vcl::Region &,unsigned int)
unsigned int nMask
1
vcl/inc/opengl/gdiimpl.hxx:119
_Bool OpenGLSalGraphicsImpl::UseLine(class Color,double,float,_Bool)
_Bool bUseAA
1
vcl/inc/opengl/gdiimpl.hxx:125
void OpenGLSalGraphicsImpl::DrawConvexPolygon(const class tools::Polygon &,_Bool)
_Bool blockAA
1
vcl/inc/opengl/gdiimpl.hxx:134
void OpenGLSalGraphicsImpl::DrawTexture(class OpenGLTexture &,const struct SalTwoRect &,_Bool)
_Bool bInverted
0
vcl/inc/opengl/gdiimpl.hxx:136
void OpenGLSalGraphicsImpl::DrawAlphaTexture(class OpenGLTexture &,const struct SalTwoRect &,_Bool,_Bool)
_Bool pPremultiplied
1
vcl/inc/opengl/gdiimpl.hxx:136
void OpenGLSalGraphicsImpl::DrawAlphaTexture(class OpenGLTexture &,const struct SalTwoRect &,_Bool,_Bool)
_Bool bInverted
1
vcl/inc/opengl/program.hxx:112
void OpenGLProgram::SetVertexAttrib(unsigned int &,const class rtl::OString &,int,unsigned int,unsigned char,int,const void *)
unsigned char bNormalized
0
vcl/inc/opengl/texture.hxx:90
void OpenGLTexture::OpenGLTexture(int,int,_Bool)
_Bool bAllocate
1
vcl/inc/qt5/Qt5Graphics_Controls.hxx:91
class QSize Qt5Graphics_Controls::downscale(const class QSize &,enum Qt5Graphics_Controls::Round)
enum Qt5Graphics_Controls::Round eRound
1
vcl/inc/qt5/Qt5Graphics_Controls.hxx:92
class QSize Qt5Graphics_Controls::upscale(const class QSize &,enum Qt5Graphics_Controls::Round)
enum Qt5Graphics_Controls::Round eRound
1
vcl/inc/qt5/Qt5Instance.hxx:86
void Qt5Instance::Qt5Instance(class std::unique_ptr<class QApplication, struct std::default_delete<class QApplication> > &,_Bool)
_Bool bUseCairo
1
vcl/inc/qt5/Qt5VirtualDevice.hxx:42
void Qt5VirtualDevice::Qt5VirtualDevice(enum DeviceFormat,double)
double fScale
1
vcl/inc/qt5/Qt5Widget.hxx:47
_Bool Qt5Widget::handleKeyEvent(class Qt5Frame &,const class QWidget &,class QKeyEvent *,const enum Qt5Widget::ButtonKeyState)
const enum Qt5Widget::ButtonKeyState
1
vcl/inc/salgdi.hxx:130
void SalGraphics::GetFontMetric(class tools::SvRef<class ImplFontMetricData> &,int)
int nFallbackLevel
0
vcl/inc/salgdi.hxx:497
void SalGraphics::copyArea(long,long,long,long,long,long,_Bool)
_Bool bWindowInvalidate
1
vcl/inc/scrptrun.h:68
void vcl::ScriptRun::reset(const char16_t *,int,int)
int start
0
vcl/inc/sft.hxx:475
enum vcl::SFErrCodes OpenTTFontBuffer(const void *,unsigned int,unsigned int,struct vcl::TrueTypeFont **)
unsigned int facenum
0
vcl/inc/sft.hxx:588
enum vcl::SFErrCodes CreateT3FromTTGlyphs(struct vcl::TrueTypeFont *,struct _IO_FILE *,const char *,const unsigned short *,unsigned char *,int,int)
int wmode
0
vcl/inc/skia/gdiimpl.hxx:210
void SkiaSalGraphicsImpl::drawGenericLayout(const class GenericSalLayout &,class Color,const class SkFont &,enum SkiaSalGraphicsImpl::GlyphOrientation)
enum SkiaSalGraphicsImpl::GlyphOrientation glyphOrientation
0
vcl/inc/skia/utils.hxx:36
void disableRenderMethod(enum SkiaHelper::RenderMethod)
enum SkiaHelper::RenderMethod method
1
vcl/inc/svimpbox.hxx:270
void SvImpLBox::SelectEntry(class SvTreeListEntry *,_Bool)
_Bool bSelect
0
vcl/inc/unx/gendisp.hxx:45
_Bool SalGenericDisplay::DispatchInternalEvent(_Bool)
_Bool bHandleAllCurrentEvent
0
vcl/inc/unx/gtk/gloactiongroup.h:51
void g_lo_action_group_insert(struct GLOActionGroup *,const char *,int,int)
int submenu
0
vcl/inc/unx/gtk/gloactiongroup.h:56
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:49
void g_lo_menu_new_section(struct GLOMenu *,int,const char *)
const char * label
0
vcl/inc/unx/gtk/gtkprintwrapper.hxx:41
void vcl::unx::GtkPrintWrapper::print_job_send(struct _GtkPrintJob *,void (*)(struct _GtkPrintJob *, void *, const struct _GError *),void *,void (*)(void *)) const
void (*)(void *) dnotify
0
vcl/inc/unx/gtk/gtkprintwrapper.hxx:41
void vcl::unx::GtkPrintWrapper::print_job_send(struct _GtkPrintJob *,void (*)(struct _GtkPrintJob *, void *, const struct _GError *),void *,void (*)(void *)) const
void * user_data
0
vcl/inc/unx/gtk/gtkprintwrapper.hxx:41
void vcl::unx::GtkPrintWrapper::print_job_send(struct _GtkPrintJob *,void (*)(struct _GtkPrintJob *, void *, const struct _GError *),void *,void (*)(void *)) const
void (*)(struct _GtkPrintJob *, void *, const struct _GError *) callback
0
vcl/inc/unx/gtk/gtkprintwrapper.hxx:60
void vcl::unx::GtkPrintWrapper::print_unix_dialog_set_support_selection(struct _GtkPrintUnixDialog *,int) const
int support_selection
1
vcl/inc/unx/gtk/gtkprintwrapper.hxx:61
void vcl::unx::GtkPrintWrapper::print_unix_dialog_set_has_selection(struct _GtkPrintUnixDialog *,int) const
int has_selection
1
vcl/inc/unx/gtk/gtkprn.hxx:34
_Bool GtkSalPrinter::impl_doJob(const class rtl::OUString *,const class rtl::OUString &,const class rtl::OUString &,class ImplJobSetup *,_Bool,class vcl::PrinterController &)
_Bool i_bCollate
0
vcl/inc/unx/gtk/hudawareness.h:20
unsigned int hud_awareness_register(struct _GDBusConnection *,const char *,void (*)(int, void *),void *,void (*)(void *),struct _GError **)
struct _GError ** error
0
vcl/inc/unx/gtk/hudawareness.h:20
unsigned int hud_awareness_register(struct _GDBusConnection *,const char *,void (*)(int, void *),void *,void (*)(void *),struct _GError **)
void (*)(void *) notify
0
vcl/inc/unx/printergfx.hxx:226
void psp::PrinterGfx::PSSetFont(const class rtl::OString &,unsigned short)
unsigned short nEncoding
0
vcl/inc/unx/printergfx.hxx:252
void psp::PrinterGfx::PSHexString(const unsigned char *,short)
short nLen
1
vcl/inc/unx/salbmp.h:49
class std::unique_ptr<struct BitmapBuffer, struct std::default_delete<struct BitmapBuffer> > X11SalBitmap::ImplCreateDIB(unsigned long,class SalX11Screen,long,long,long,long,long,_Bool)
long nY
0
vcl/inc/unx/salbmp.h:49
class std::unique_ptr<struct BitmapBuffer, struct std::default_delete<struct BitmapBuffer> > X11SalBitmap::ImplCreateDIB(unsigned long,class SalX11Screen,long,long,long,long,long,_Bool)
long nX
0
vcl/inc/unx/wmadaptor.hxx:182
const class tools::Rectangle & vcl_sal::WMAdaptor::getWorkArea(int) const
int n
0
vcl/inc/unx/wmadaptor.hxx:240
void vcl_sal::WMAdaptor::shade(class X11SalFrame *,_Bool) const
_Bool bToShaded
1
vcl/inc/unx/x11/xrender_peer.hxx:45
XRenderPictFormat * XRenderPeer::FindStandardFormat(int) const
int nFormat
0
vcl/inc/unx/x11/xrender_peer.hxx:61
void XRenderPeer::CompositeTrapezoids(int,unsigned long,unsigned long,const XRenderPictFormat *,int,int,const struct _XTrapezoid *,int) const
int nYSrc
0
vcl/inc/unx/x11/xrender_peer.hxx:61
void XRenderPeer::CompositeTrapezoids(int,unsigned long,unsigned long,const XRenderPictFormat *,int,int,const struct _XTrapezoid *,int) const
int nXSrc
0
vcl/inc/unx/x11/xrender_peer.hxx:64
void XRenderPeer::CompositeTriangles(int,unsigned long,unsigned long,const XRenderPictFormat *,int,int,const struct _XTriangle *,int) const
int nYSrc
0
vcl/inc/unx/x11/xrender_peer.hxx:64
void XRenderPeer::CompositeTriangles(int,unsigned long,unsigned long,const XRenderPictFormat *,int,int,const struct _XTriangle *,int) const
int nXSrc
0
vcl/inc/wizdlg.hxx:123
_Bool vcl::RoadmapWizard::Finish(long)
long nResult
1
vcl/qa/cppunit/BitmapTest.cxx:68
void assertColorsAreSimilar(int,const class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,const class BitmapColor &,const class BitmapColor &)
int maxDifference
1
vcl/source/app/salvtables.cxx:1654
void (anonymous namespace)::SalInstanceAssistant::SalInstanceAssistant(class vcl::RoadmapWizard *,class SalInstanceBuilder *,_Bool)
_Bool bTakeOwnership
0
vcl/source/app/salvtables.cxx:1853
void (anonymous namespace)::SalInstanceFrame::SalInstanceFrame(class VclFrame *,class SalInstanceBuilder *,_Bool)
_Bool bTakeOwnership
0
vcl/source/bitmap/BitmapBasicMorphologyFilter.cxx:214
void runFilter(class Bitmap &,const long,const _Bool,_Bool,unsigned char)
const _Bool bParallel
1
vcl/source/bitmap/BitmapFilterStackBlur.cxx:141
void (anonymous namespace)::SumFunction24::set(long *&,long)
long nConstant
0
vcl/source/bitmap/BitmapFilterStackBlur.cxx:195
void (anonymous namespace)::SumFunction8::set(long *&,long)
long nConstant
0
vcl/source/bitmap/BitmapFilterStackBlur.cxx:455
void runStackBlur(class Bitmap &,const long,const long,const long,void (*)(const struct (anonymous namespace)::BlurSharedData &, long, long),void (*)(const struct (anonymous namespace)::BlurSharedData &, long, long),const _Bool)
const _Bool bParallel
1
vcl/source/control/imivctl.hxx:353
const class Size & SvxIconChoiceCtrl_Impl::GetItemSize(enum IcnViewFieldType) const
enum IcnViewFieldType
1
vcl/source/control/imivctl.hxx:400
void SvxIconChoiceCtrl_Impl::SetColumn(unsigned short,const class SvxIconChoiceCtrlColumnInfo &)
unsigned short nIndex
0
vcl/source/control/imivctl.hxx:401
const class SvxIconChoiceCtrlColumnInfo * SvxIconChoiceCtrl_Impl::GetColumn(unsigned short) const
unsigned short nIndex
0
vcl/source/filter/FilterConfigCache.hxx:96
class rtl::OUString FilterConfigCache::GetExportWildcard(unsigned short,int)
int nEntry
0
vcl/source/filter/jpeg/Exif.cxx:174
void write32(unsigned int,unsigned char (&)[4],_Bool)
unsigned int value
1
vcl/source/filter/wmf/wmfwr.hxx:162
void WMFWriter::WMFRecord_SetBkMode(_Bool)
_Bool bTransparent
1
vcl/source/fontsubset/list.h:64
int listSkipForward(struct list_ *,int)
int n
1
vcl/source/gdi/bmpfast.cxx:34
void (anonymous namespace)::BasePixelPtr::BasePixelPtr(unsigned char *)
unsigned char * p
0
vcl/source/gdi/FileDefinitionWidgetDraw.cxx:98
_Bool getSettingValueBool(const class rtl::OString &,_Bool)
_Bool bDefault
1
vcl/source/uitest/logger.cxx:348
class rtl::OUString GetKeyInMapWithIndex(const class std::__debug::map<class rtl::OUString, class rtl::OUString, struct std::less<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, class rtl::OUString> > > &,int)
int index
0
vcl/source/window/menufloatingwindow.hxx:107
void MenuFloatingWindow::EnableScrollMenu(_Bool)
_Bool b
1
vcl/source/window/menuitemlist.hxx:110
struct MenuItemData * MenuItemList::Insert(unsigned short,enum MenuItemType,enum MenuItemBits,const class rtl::OUString &,class Menu *,unsigned long,const class rtl::OString &)
enum MenuItemType eType
1
vcl/source/window/window2.cxx:577
void lcl_HandleScrollHelper(class ScrollBar *,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/generic/print/psputil.hxx:46
_Bool WritePS(class osl::File *,const char *,unsigned long)
unsigned long nInLength
1
vcl/unx/gtk3/gtk3gtkinst.cxx:4763
void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool)
_Bool bTakeOwnership
1
vcl/unx/gtk3/gtk3gtkinst.cxx:4763
void (anonymous namespace)::GtkInstanceMessageDialog::GtkInstanceMessageDialog(struct _GtkMessageDialog *,class (anonymous namespace)::GtkInstanceBuilder *,_Bool)
class (anonymous namespace)::GtkInstanceBuilder * pBuilder
0
vcl/unx/gtk3/gtk3gtkinst.cxx:11102
int (anonymous namespace)::GtkInstanceTreeView::starts_with(const class rtl::OUString &,int,int,_Bool)
int col
0
vcl/unx/gtk3/gtk3gtkinst.cxx:13609
int (anonymous namespace)::GtkInstanceComboBox::find_text_including_mru(const class rtl::OUString &,_Bool) const
_Bool bSearchMRU
0
vcl/unx/kf5/KF5SalFrame.hxx:36
void KF5SalFrame::KF5SalFrame(class KF5SalFrame *,enum SalFrameStyleFlags,_Bool)
_Bool bUseCairo
1
workdir/../vcl/inc/qt5/Qt5Instance.hxx:76
_Bool Qt5Instance::ImplYieldSignal(_Bool,_Bool)
_Bool bWait
0
writerfilter/inc/dmapper/resourcemodel.hxx:241
void writerfilter::Stream::text(const unsigned char *,unsigned long)
unsigned long len
1
writerfilter/inc/ooxml/OOXMLDocument.hxx:133
void writerfilter::ooxml::OOXMLDocument::resolveFootnote(class writerfilter::Stream &,unsigned int,const int)
unsigned int aNoteType
0
writerfilter/inc/ooxml/OOXMLDocument.hxx:146
void writerfilter::ooxml::OOXMLDocument::resolveEndnote(class writerfilter::Stream &,unsigned int,const int)
unsigned int aNoteType
0
writerfilter/source/dmapper/DomainMapper.hxx:118
void writerfilter::dmapper::DomainMapper::hasControls(const _Bool)
const _Bool bSet
1
writerfilter/source/ooxml/OOXMLStreamImpl.hxx:64
void writerfilter::ooxml::OOXMLStreamImpl::OOXMLStreamImpl(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> &,enum writerfilter::ooxml::OOXMLStream::StreamType_t,_Bool)
enum writerfilter::ooxml::OOXMLStream::StreamType_t nType
1
xmlhelp/source/cxxhelp/provider/databases.hxx:362
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:367
void chelp::DataBaseIterator::DataBaseIterator(class chelp::Databases &,const class rtl::OUString &,const class rtl::OUString &,_Bool)
_Bool bHelpText
0
xmloff/inc/txtflde.hxx:254
void XMLTextFieldExport::ProcessIntegerDef(enum xmloff::token::XMLTokenEnum,int,int)
int nDefault
0
xmloff/inc/txtflde.hxx:325
void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,double,_Bool,_Bool,_Bool,unsigned short)
_Bool bOmitDurationIfZero
1
xmloff/inc/txtflde.hxx:334
void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,int,_Bool,_Bool)
_Bool bIsDuration
1
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::__debug::multimap<struct std::pair<int, enum SchXMLLabeledSequencePart>, class com::sun::star::uno::Reference<class com::sun::star::chart2::data::XLabeledDataSequence>, struct std::less<struct std::pair<int, enum SchXMLLabeledSequencePart> >, class std::allocator<struct std::pair<const 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:122
_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:181
void DataRowPointStyle::DataRowPointStyle(enum DataRowPointStyle::StyleType,const class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> &,int,int,const class rtl::OUString &,int)
int nPointRepeat
1
xmloff/source/text/txtflde.cxx:276
_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> &,unsigned short,const class rtl::OUString &,const SvXMLEnumMapEntry<type-parameter-?-?> *,enum xmloff::token::XMLTokenEnum,const char **,const _Bool *,_Bool)
_Bool bTOC_
0
xmloff/source/text/XMLSectionExport.hxx:105
_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:170
const class XMLTransformerContext * XMLTransformerBase::GetAncestorContext(unsigned int) const
unsigned int i
1
xmlscript/source/xmldlg_imexp/exp_share.hxx:223
void xmlscript::ElementDescriptor::read(const class rtl::OUString &,const class rtl::OUString &,_Bool)
_Bool forceAttribute
0
xmlsecurity/source/component/documentdigitalsignatures.cxx:93
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
|