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
|
basctl/source/inc/dlged.hxx:77
void basctl::DlgEdHint::DlgEdHint(enum basctl::DlgEdHint::Kind,class basctl::DlgEdObj *)
enum basctl::DlgEdHint::Kind
2
basctl/source/inc/sbxitem.hxx:48
void basctl::SbxItem::SbxItem(unsigned short,const class basctl::ScriptDocument &,const class rtl::OUString &,const class rtl::OUString &,enum basctl::ItemType)
unsigned short nWhich
30799
basctl/source/inc/sbxitem.hxx:49
void basctl::SbxItem::SbxItem(unsigned short,const class basctl::ScriptDocument &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum basctl::ItemType)
unsigned short nWhich
30799
basic/source/classes/sbunoobj.cxx:3208
class com::sun::star::uno::Reference<class com::sun::star::reflection::XTypeDescriptionEnumeration> getTypeDescriptorEnumeration(const class rtl::OUString &,const class com::sun::star::uno::Sequence<enum com::sun::star::uno::TypeClass> &,enum com::sun::star::reflection::TypeDescriptionSearchDepth)
enum com::sun::star::reflection::TypeDescriptionSearchDepth depth
-1
basic/source/inc/codegen.hxx:37
void SbiCodeGen::SbiCodeGen(class SbModule &,class SbiParser *,short)
short
1024
basic/source/inc/expr.hxx:178
void SbiExpression::SbiExpression(class SbiParser *,double,enum SbxDataType)
enum SbxDataType
2
basic/source/inc/runtime.hxx:346
_Bool SbiRuntime::IsImageFlag(enum SbiImageFlags) const
enum SbiImageFlags n
2
basic/source/inc/sbjsmeth.hxx:33
void SbJScriptMethod::SbJScriptMethod(enum SbxDataType)
enum SbxDataType
12
canvas/inc/verifyinput.hxx:103
void verifyInput(const struct com::sun::star::geometry::Matrix2D &,const char *,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,short)
short nArgPos
2
canvas/workben/canvasdemo.cxx:146
void (anonymous namespace)::DemoRenderer::drawStringAt(class rtl::OString,double,double)
double y
15
canvas/workben/canvasdemo.cxx:485
void (anonymous namespace)::DemoRenderer::drawRegularPolygon(double,double,int,double)
double centery
35
canvas/workben/canvasdemo.cxx:485
void (anonymous namespace)::DemoRenderer::drawRegularPolygon(double,double,int,double)
double r
15
chart2/qa/extras/chart2export.cxx:478
void checkPolynomialTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int,double,double,double)
int aExpectedDegree
3
chart2/qa/extras/chart2export.cxx:500
void checkMovingAverageTrendline(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XRegressionCurve> &,const class rtl::OUString &,int)
int aExpectedPeriod
3
chart2/qa/extras/chart2export.cxx:987
void ::change(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartDocument> &,short)
short nNumFmtTypeFlag
16
chart2/qa/extras/PivotChartTest.cxx:78
void lclModifyFunction(const class com::sun::star::uno::Reference<class com::sun::star::sheet::XDataPilotDescriptor> &,const class rtl::OUString &,enum com::sun::star::sheet::GeneralFunction)
enum com::sun::star::sheet::GeneralFunction eFunction
2
chart2/source/controller/inc/AccessibleBase.hxx:146
void chart::AccessibleBase::RemoveState(short)
short aState
23
chart2/source/inc/LinePropertiesHelper.hxx:62
void SetLineColor(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,int)
int nColor
14540253
chart2/source/inc/ObjectIdentifier.hxx:177
class rtl::OUString chart::ObjectIdentifier::createSeriesSubObjectStub(enum chart::ObjectType,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &)
enum chart::ObjectType eSubObjectType
12
chart2/source/inc/StatisticsHelper.hxx:79
class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> addErrorBars(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XDataSeries> &,int,_Bool)
int nStyle
2
chart2/source/tools/RangeHighlighter.cxx:48
void lcl_fillRanges(class com::sun::star::uno::Sequence<struct com::sun::star::chart2::data::HighlightedRange> &,const class com::sun::star::uno::Sequence<class rtl::OUString> &,class Color,int)
int nIndex
-1
codemaker/source/javamaker/classfile.cxx:86
void writeU4(class FileStream &,unsigned int)
unsigned int data
3405691582
comphelper/qa/unit/variadictemplates.cxx:57
void extract(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int,optional<type-parameter-?-?> &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
int nArg
4
connectivity/source/drivers/firebird/StatementCommonBase.hxx:90
short connectivity::firebird::OStatementCommonBase::getSqlInfoItem(char)
char aInfoItem
21
connectivity/source/drivers/firebird/Util.hxx:124
class rtl::OUString escapeWith(const class rtl::OUString &,const char,const char)
const char aKey
39
connectivity/source/drivers/firebird/Util.hxx:124
class rtl::OUString escapeWith(const class rtl::OUString &,const char,const char)
const char aEscapeChar
39
connectivity/source/drivers/mork/MorkParser.hxx:79
struct MorkTableMap * MorkParser::getTables(int)
int tableScope
128
connectivity/source/drivers/mork/MQueryHelper.hxx:171
_Bool connectivity::mork::MQueryHelper::getRowValue(class connectivity::ORowSetValue &,int,const class rtl::OUString &,int)
int nType
12
connectivity/source/drivers/postgresql/pq_connection.cxx:379
void properties2arrays(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,const class com::sun::star::uno::Reference<class com::sun::star::script::XTypeConverter> &,unsigned short,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &,class pq_sdbc_driver::(anonymous namespace)::cstr_vector &)
unsigned short enc
76
connectivity/source/drivers/postgresql/pq_statics.cxx:80
void pq_sdbc_driver::(anonymous namespace)::PropertyDefEx::PropertyDefEx(const class rtl::OUString &,const class com::sun::star::uno::Type &,int)
int a
16
connectivity/source/inc/java/sql/ConnectionLog.hxx:106
void connectivity::java::sql::ConnectionLog::log(const int,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
const int _nLogLevel
300
connectivity/source/inc/java/sql/ConnectionLog.hxx:112
void connectivity::java::sql::ConnectionLog::log(const int,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
const int _nLogLevel
300
connectivity/source/inc/java/sql/ConnectionLog.hxx:118
void connectivity::java::sql::ConnectionLog::log(const int,const class rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
const int _nLogLevel
300
connectivity/source/inc/mysql/YTable.hxx:82
void connectivity::mysql::OMySQLTable::OMySQLTable(class connectivity::sdbcx::OCollection *,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int)
int _nPrivileges
511
connectivity/source/inc/odbc/OPreparedStatement.hxx:78
void connectivity::odbc::OPreparedStatement::setParameter(int,int,const class com::sun::star::uno::Sequence<signed char> &)
int _nType
-2
connectivity/source/inc/odbc/OTools.hxx:200
class com::sun::star::uno::Sequence<signed char> connectivity::odbc::OTools::getBytesValue(const class connectivity::odbc::OConnection *,void *,int,short,_Bool &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
short _fSqlType
-2
cppcanvas/source/inc/implrenderer.hxx:184
_Bool cppcanvas::internal::ImplRenderer::isActionContained(class GDIMetaFile &,const char *,enum MetaActionType)
enum MetaActionType nType
147
cui/source/inc/chardlg.hxx:268
void SvxCharPositionPage::UpdatePreview_Impl(unsigned char,unsigned char,short)
unsigned char nProp
100
cui/source/inc/cuihyperdlg.hxx:49
void SvxHlinkCtrl::SvxHlinkCtrl(unsigned short,class SfxBindings &,class SvxHpLinkDlg *)
unsigned short nId
10361
cui/source/inc/optlingu.hxx:144
void SvxLinguTabPage::HideGroups(unsigned short)
unsigned short nGrp
8
cui/source/inc/SpellDialog.hxx:110
void svx::SentenceEditWindow_Impl::UndoActionStart(unsigned short)
unsigned short nId
205
cui/source/inc/SvxToolbarConfigPage.hxx:63
void SvxToolbarConfigPage::AddFunction(int)
int nTarget
-1
cui/source/options/cfgchart.hxx:89
void SvxChartColorTableItem::SvxChartColorTableItem(unsigned short,const class SvxChartColorTable &)
unsigned short nWhich
10437
cui/source/options/connpoolsettings.hxx:75
void offapp::DriverPoolingSettingsItem::DriverPoolingSettingsItem(unsigned short,const class offapp::DriverPoolingSettings &)
unsigned short _nId
17148
cui/source/options/dbregistersettings.hxx:67
void svx::DatabaseMapItem::DatabaseMapItem(unsigned short,const class std::__debug::map<class rtl::OUString, struct svx::DatabaseRegistration, struct std::less<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, struct svx::DatabaseRegistration> > > &)
unsigned short _nId
17149
cui/source/tabpages/align.cxx:60
void lcl_MaybeResetAlignToDistro(class weld::ComboBox &,unsigned short,const class SfxItemSet &,unsigned short,unsigned short,type-parameter-?-?)
type-parameter-?-? eBlock
4
dbaccess/source/core/dataaccess/documentdefinition.hxx:184
void dbaccess::ODocumentDefinition::firePropertyChange(int,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &,_Bool,const struct dbaccess::ODocumentDefinition::NotifierAccess &)
int i_nHandle
7
dbaccess/source/core/inc/columnsettings.hxx:40
void dbaccess::IPropertyContainer::registerMayBeVoidProperty(const class rtl::OUString &,int,int,class com::sun::star::uno::Any *,const class com::sun::star::uno::Type &)
int _nAttributes
3
dbaccess/source/ui/dlg/adminpages.hxx:222
void dbaui::OGenericAdministrationPage::fillString(class SfxItemSet &,const class dbaui::OConnectionURLEdit *,unsigned short,_Bool &)
unsigned short _nID
3
dbaccess/source/ui/dlg/dsnItem.hxx:39
void dbaui::DbuTypeCollectionItem::DbuTypeCollectionItem(short,class dbaccess::ODsnTypeCollection *)
short nWhich
5
dbaccess/source/ui/inc/charsetlistbox.hxx:37
_Bool dbaui::CharSetListBox::StoreSelectedCharSet(class SfxItemSet &,const unsigned short)
const unsigned short _nItemId
11
dbaccess/source/ui/inc/FieldDescControl.hxx:149
void dbaui::OFieldDescControl::CellModified(long,unsigned short)
long nRow
-1
dbaccess/source/ui/inc/JAccess.hxx:58
void dbaui::OJoinDesignViewAccess::notifyAccessibleEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short _nEventId
7
dbaccess/source/ui/inc/JoinExchange.hxx:55
void dbaui::OJoinExchObj::StartDrag(class vcl::Window *,signed char,class dbaui::IDragTransferableListener *)
signed char nDragSourceActions
4
dbaccess/source/ui/querydesign/SelectionBrowseBox.hxx:85
class rtl::Reference<class dbaui::OTableFieldDesc> dbaui::OSelectionBrowseBox::InsertField(const class rtl::Reference<class dbaui::OTableFieldDesc> &,unsigned short,_Bool,_Bool)
unsigned short _nColumnPosition
65535
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:111
class drawinglayer::primitive3d::Primitive3DContainer getLineTubeSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &)
unsigned int nSegments
8
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:189
class drawinglayer::primitive3d::Primitive3DContainer getLineCapSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &)
unsigned int nSegments
8
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:285
class drawinglayer::primitive3d::Primitive3DContainer getLineCapRoundSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &)
unsigned int nSegments
8
drawinglayer/source/primitive3d/polygontubeprimitive3d.cxx:294
class drawinglayer::primitive3d::Primitive3DContainer getLineJoinSegments(unsigned int,const class drawinglayer::attribute::MaterialAttribute3D &,double,double,enum basegfx::B2DLineJoin)
unsigned int nSegments
8
editeng/source/editeng/impedit.hxx:647
_Bool ImpEditEngine::HasScriptType(int,unsigned short) const
unsigned short nType
3
editeng/source/editeng/impedit.hxx:965
void ImpEditEngine::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nLangWhichId
4039
editeng/source/editeng/impedit.hxx:965
void ImpEditEngine::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nFontWhichId
4041
editeng/source/editeng/textconv.hxx:88
void TextConvWrapper::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nFontWhichId
4041
editeng/source/editeng/textconv.hxx:88
void TextConvWrapper::SetLanguageAndFont(const struct ESelection &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nLangWhichId
4039
editeng/source/outliner/outlundo.hxx:32
void OutlinerUndoBase::OutlinerUndoBase(unsigned short,class Outliner *)
unsigned short nId
200
filter/source/config/cache/filtercache.hxx:332
_Bool filter::config::FilterCache::isFillState(enum filter::config::FilterCache::EFillState) const
enum filter::config::FilterCache::EFillState eRequired
2
filter/source/graphicfilter/eps/eps.cxx:91
enum (anonymous namespace)::NMode operator|(enum (anonymous namespace)::NMode,enum (anonymous namespace)::NMode)
enum (anonymous namespace)::NMode b
4
filter/source/graphicfilter/eps/eps.cxx:186
void (anonymous namespace)::PSWriter::ImplCurveTo(const class Point &,const class Point &,const class Point &,enum (anonymous namespace)::NMode)
enum (anonymous namespace)::NMode nMode
4
filter/source/graphicfilter/idxf/dxf2mtf.hxx:107
_Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short)
unsigned short nMaxPercent
100
filter/source/graphicfilter/idxf/dxf2mtf.hxx:107
_Bool DXF2GDIMetaFile::Convert(const class DXFRepresentation &,class GDIMetaFile &,unsigned short,unsigned short)
unsigned short nMinPercent
60
filter/source/msfilter/mscodec.cxx:57
void lclRotateLeft(type-parameter-?-? &,unsigned char,unsigned char)
unsigned char nWidth
15
filter/source/msfilter/mscodec.cxx:72
unsigned short lclGetKey(const unsigned char *,unsigned long)
unsigned long nBufferSize
16
filter/source/msfilter/mscodec.cxx:97
unsigned short lclGetHash(const unsigned char *,unsigned long)
unsigned long nBufferSize
16
forms/source/richtext/richtextcontrol.cxx:83
void implAdjustTriStateFlag(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,long &,long,long)
long _nPositiveFlag
256
forms/source/richtext/richtextcontrol.cxx:83
void implAdjustTriStateFlag(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,long &,long,long)
long nNegativeFlag
512
forms/source/richtext/rtattributes.hxx:52
void frm::AttributeState::AttributeState(enum frm::AttributeCheckState)
enum frm::AttributeCheckState _eCheckState
2
formula/source/core/api/FormulaCompiler.cxx:243
const char16_t * lcl_UnicodeStrChr(const char16_t *,char16_t)
char16_t c
34
fpicker/source/office/autocmpledit.hxx:40
void AutocompleteEdit::select_region(int,int)
int nEndPos
-1
fpicker/source/office/iodlg.hxx:206
void SvtFileDialog::displayIOException(const class rtl::OUString &,enum com::sun::star::ucb::IOErrorCode)
enum com::sun::star::ucb::IOErrorCode _eCode
5
framework/inc/uielement/macrosmenucontroller.hxx:55
void framework::MacrosMenuController::addScriptItems(class PopupMenu *,unsigned short)
unsigned short startItemId
4
framework/source/uielement/thesaurusmenucontroller.cxx:48
void (anonymous namespace)::ThesaurusMenuController::getMeanings(class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &,const class rtl::OUString &,const struct com::sun::star::lang::Locale &,unsigned long)
unsigned long nMaxSynonms
7
hwpfilter/source/hgzip.h:90
int gz_flush(struct gz_stream *,int)
int flush
4
hwpfilter/source/hwpfile.h:254
_Bool HWPFile::already_importing_type(unsigned char) const
unsigned char scflag
16
hwpfilter/source/lexer.cxx:202
struct (anonymous namespace)::yy_buffer_state * yy_create_buffer(struct _IO_FILE *,int)
int size
16384
hwpfilter/source/mzstring.h:123
int MzString::rfind(char)
char c
125
hwpfilter/source/mzstring.h:127
void MzString::replace(int,char)
char c
32
idlc/inc/astattribute.hxx:39
void AstAttribute::AstAttribute(enum NodeType,unsigned int,const class AstType *,const class rtl::OString &,class AstScope *)
enum NodeType nodeType
12
idlc/inc/astconstant.hxx:30
void AstConstant::AstConstant(const enum ExprType,const enum NodeType,class AstExpression *,const class rtl::OString &,class AstScope *)
const enum NodeType nodeType
20
idlc/inc/astconstant.hxx:30
void AstConstant::AstConstant(const enum ExprType,const enum NodeType,class AstExpression *,const class rtl::OString &,class AstScope *)
const enum ExprType type
2
idlc/inc/astexpression.hxx:97
void AstExpression::AstExpression(int,enum ExprType)
enum ExprType et
10
idlc/inc/astmember.hxx:37
void AstMember::AstMember(enum NodeType,const class AstType *,const class rtl::OString &,class AstScope *)
enum NodeType type
14
idlc/inc/astservice.hxx:35
void AstService::AstService(const enum NodeType,const class rtl::OString &,class AstScope *)
const enum NodeType type
24
idlc/inc/aststruct.hxx:37
void AstStruct::AstStruct(const enum NodeType,const class rtl::OString &,const class AstStruct *,class AstScope *)
const enum NodeType type
10
idlc/inc/errorhandler.hxx:83
void ErrorHandler::error3(enum ErrorCode,const class AstDeclaration *,const class AstDeclaration *,const class AstDeclaration *)
enum ErrorCode e
3
include/basegfx/curve/b2dbeziertools.hxx:44
void basegfx::B2DCubicBezierHelper::B2DCubicBezierHelper(const class basegfx::B2DCubicBezier &,unsigned int)
unsigned int nDivisions
9
include/basegfx/range/b2ibox.hxx:71
void basegfx::B2IBox::B2IBox(int,int,int,int)
int y2
10
include/basegfx/range/b2ibox.hxx:71
void basegfx::B2IBox::B2IBox(int,int,int,int)
int x2
10
include/basegfx/utils/tools.hxx:118
class basegfx::B2DPolyPolygon number2PolyPolygon(double,int,int,_Bool)
int nTotalDigits
10
include/basegfx/utils/tools.hxx:118
class basegfx::B2DPolyPolygon number2PolyPolygon(double,int,int,_Bool)
int nDecPlaces
3
include/basic/sbxcore.hxx:65
_Bool SbxBase::IsReset(enum SbxFlagBits) const
enum SbxFlagBits n
256
include/comphelper/docpasswordhelper.hxx:267
class rtl::OUString comphelper::DocPasswordHelper::GetOoxHashAsBase64(const class rtl::OUString &,const class rtl::OUString &,unsigned int,enum comphelper::Hash::IterCount,const class rtl::OUString &)
enum comphelper::Hash::IterCount eIterCount
2
include/comphelper/docpasswordhelper.hxx:323
class com::sun::star::uno::Sequence<signed char> comphelper::DocPasswordHelper::GenerateRandomByteSequence(int)
int nLength
16
include/comphelper/propagg.hxx:124
void comphelper::OPropertyArrayAggregationHelper::OPropertyArrayAggregationHelper(const class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,class comphelper::IPropertyInfoService *,int)
int _nFirstAggregateId
10000
include/comphelper/propagg.hxx:290
void comphelper::OPropertySetAggregationHelper::declareForwardedProperty(int)
int _nHandle
194
include/comphelper/property.hxx:52
void ModifyPropertyAttributes(class com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,const class rtl::OUString &,short,short)
short _nRemoveAttrib
8
include/comphelper/seqstream.hxx:104
void comphelper::OSequenceOutputStream::OSequenceOutputStream(class com::sun::star::uno::Sequence<signed char> &,double,int)
int _nMinimumResize
128
include/comphelper/storagehelper.hxx:117
class com::sun::star::uno::Reference<class com::sun::star::embed::XStorage> comphelper::OStorageHelper::GetStorageFromStream(const class com::sun::star::uno::Reference<class com::sun::star::io::XStream> &,int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &)
int nStorageMode
7
include/comphelper/threadpool.hxx:60
void comphelper::ThreadPool::ThreadPool(int)
int nWorkers
4
include/connectivity/dbtools.hxx:299
class com::sun::star::sdbc::SQLException prependErrorInfo(const class com::sun::star::sdbc::SQLException &,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class rtl::OUString &,const enum dbtools::StandardSQLState)
const enum dbtools::StandardSQLState _eSQLState
2147483647
include/connectivity/sqlerror.hxx:82
class rtl::OUString connectivity::SQLError::getErrorMessage(const int) const
const int _eCondition
300
include/connectivity/sqlerror.hxx:93
int connectivity::SQLError::getErrorCode(const int)
const int _eCondition
550
include/connectivity/sqlerror.hxx:161
void connectivity::SQLError::raiseException(const int) const
const int _eCondition
200
include/connectivity/sqlerror.hxx:186
void connectivity::SQLError::raiseTypedException(const int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &,const class com::sun::star::uno::Type &) const
const int _eCondition
100
include/dbaccess/genericcontroller.hxx:311
_Bool dbaui::OGenericUnoController::isFeatureSupported(int)
int _nId
5502
include/drawinglayer/attribute/fillhatchattribute.hxx:66
void drawinglayer::attribute::FillHatchAttribute::FillHatchAttribute(enum drawinglayer::attribute::HatchStyle,double,double,const class basegfx::BColor &,unsigned int,_Bool)
unsigned int nMinimalDiscreteDistance
3
include/drawinglayer/primitive2d/mediaprimitive2d.hxx:63
void drawinglayer::primitive2d::MediaPrimitive2D::MediaPrimitive2D(const class basegfx::B2DHomMatrix &,const class rtl::OUString &,const class basegfx::BColor &,unsigned int,const class Graphic &)
unsigned int nDiscreteBorder
4
include/editeng/AccessibleParaManager.hxx:128
void accessibility::AccessibleParaManager::FireEvent(int,const short) const
const short nEventId
21
include/editeng/AccessibleParaManager.hxx:242
void accessibility::AccessibleParaManager::SetState(int,const short)
const short nStateId
11
include/editeng/AccessibleParaManager.hxx:244
void accessibility::AccessibleParaManager::UnSetState(int,const short)
const short nStateId
11
include/editeng/bulletitem.hxx:60
void SvxBulletItem::SvxBulletItem(unsigned short)
unsigned short nWhich
4016
include/editeng/editeng.hxx:299
struct ESelection EditEngine::GetWord(const struct ESelection &,unsigned short) const
unsigned short nWordType
2
include/editeng/editeng.hxx:311
void EditEngine::InsertParagraph(int,const class EditTextObject &,const _Bool)
int nPara
2147483647
include/editeng/editeng.hxx:344
void EditEngine::UndoActionStart(unsigned short,const struct ESelection &)
unsigned short nId
111
include/editeng/editstat.hxx:89
void SetFlags(enum EVControlBits &,enum EVControlBits,_Bool)
enum EVControlBits nMask
16
include/editeng/editund2.hxx:38
void EditUndoManager::EditUndoManager(unsigned short)
unsigned short nMaxUndoActionCount
20
include/editeng/editview.hxx:230
void EditView::RemoveCharAttribs(int,unsigned short)
unsigned short nWhich
4028
include/editeng/fhgtitem.hxx:72
void SvxFontHeightItem::SetHeight(unsigned int,unsigned short,enum MapUnit,enum MapUnit)
enum MapUnit eUnit
8
include/editeng/flditem.hxx:74
void SvxFieldItem::SvxFieldItem(class std::unique_ptr<class SvxFieldData, struct std::default_delete<class SvxFieldData> >,const unsigned short)
const unsigned short nId
4060
include/editeng/flditem.hxx:75
void SvxFieldItem::SvxFieldItem(const class SvxFieldData &,const unsigned short)
const unsigned short nId
4060
include/editeng/justifyitem.hxx:33
void SvxHorJustifyItem::SvxHorJustifyItem(const unsigned short)
const unsigned short nId
1059
include/editeng/justifyitem.hxx:60
void SvxVerJustifyItem::SvxVerJustifyItem(const unsigned short)
const unsigned short nId
1060
include/editeng/legacyitem.hxx:172
void Create(class SvxFormatBreakItem &,class SvStream &,unsigned short)
unsigned short nItemVersion
5050
include/editeng/legacyitem.hxx:179
void Create(class SvxFormatKeepItem &,class SvStream &,unsigned short)
unsigned short nItemVersion
5050
include/editeng/legacyitem.hxx:186
void Create(class SvxShadowItem &,class SvStream &,unsigned short)
unsigned short nItemVersion
5050
include/editeng/nhypitem.hxx:29
void SvxNoHyphenItem::SvxNoHyphenItem(const unsigned short)
const unsigned short nId
19
include/editeng/opaqitem.hxx:36
void SvxOpaqueItem::SvxOpaqueItem(const unsigned short,const _Bool)
const unsigned short nId
99
include/editeng/outliner.hxx:153
void Paragraph::RemoveFlag(enum ParaFlag)
enum ParaFlag nFlag
256
include/editeng/outliner.hxx:843
void Outliner::SetParaFlag(class Paragraph *,enum ParaFlag)
enum ParaFlag nFlag
256
include/editeng/outliner.hxx:844
_Bool Outliner::HasParaFlag(const class Paragraph *,enum ParaFlag)
enum ParaFlag nFlag
256
include/editeng/outlobj.hxx:112
void OutlinerParaObject::SetStyleSheets(unsigned short,const class rtl::OUString &,const enum SfxStyleFamily &)
const enum SfxStyleFamily & rNewFamily
8
include/editeng/prntitem.hxx:38
void SvxPrintItem::SvxPrintItem(const unsigned short,const _Bool)
const unsigned short nId
98
include/editeng/svxrtf.hxx:223
class rtl::OUString & SvxRTFParser::DelCharAtEnd(class rtl::OUString &,const char16_t)
const char16_t cDel
59
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)
unsigned short nLeft
2
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)
unsigned short nRight
2
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)
unsigned short nCacheSize
30
include/editeng/unoedhlp.hxx:45
void SvxEditSourceHint::SvxEditSourceHint(enum SfxHintId)
enum SfxHintId nId
30
include/editeng/unoedhlp.hxx:46
void SvxEditSourceHint::SvxEditSourceHint(enum SfxHintId,unsigned long,int,int)
enum SfxHintId nId
29
include/editeng/writingmodeitem.hxx:31
void SvxWritingModeItem::SvxWritingModeItem(enum com::sun::star::text::WritingMode,unsigned short)
unsigned short nWhich
1161
include/filter/msfilter/dffpropset.hxx:64
class rtl::OUString DffPropSet::GetPropertyString(unsigned int,class SvStream &) const
unsigned int nId
896
include/filter/msfilter/escherex.hxx:726
void EscherPropertyContainer::Commit(class SvStream &,unsigned short,unsigned short)
unsigned short nVersion
3
include/filter/msfilter/msdffimp.hxx:567
_Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const
unsigned short nRecId2
4000
include/filter/msfilter/msdffimp.hxx:567
_Bool SvxMSDffManager::SeekToRec2(unsigned short,unsigned short,unsigned long) const
unsigned short nRecId1
4008
include/filter/msfilter/rtfutil.hxx:30
class rtl::OString OutHex(unsigned long,unsigned char)
unsigned char nLen
2
include/filter/msfilter/rtfutil.hxx:66
class rtl::OString WriteHex(const unsigned char *,unsigned int,class SvStream *,unsigned int)
unsigned int nLimit
64
include/filter/msfilter/util.hxx:103
_Bool msfilter::util::WW8ReadFieldParams::GetTokenSttFromTo(int *,int *,int)
int _nMax
9
include/formula/tokenarray.hxx:286
unsigned short formula::FormulaTokenArray::RemoveToken(unsigned short,unsigned short)
unsigned short nCount
2
include/formula/tokenarray.hxx:534
void formula::FormulaTokenIterator::Item::Item(const class formula::FormulaTokenArray *,short,short)
short pc
-1
include/formula/tokenarray.hxx:534
void formula::FormulaTokenIterator::Item::Item(const class formula::FormulaTokenArray *,short,short)
short stop
32767
include/formula/tokenarray.hxx:657
void formula::FormulaTokenArrayPlainIterator::AfterRemoveToken(unsigned short,unsigned short)
unsigned short nCount
2
include/linguistic/spelldta.hxx:87
class com::sun::star::uno::Reference<class com::sun::star::linguistic2::XSpellAlternatives> linguistic::SpellAlternatives::CreateSpellAlternatives(const class rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,short,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
short nTypeP
4
include/o3tl/typed_flags_set.hxx:136
typename typed_flags<type-parameter-?-?>::Wrap operator^(type-parameter-?-?,typename typed_flags<type-parameter-?-?>::Wrap)
type-parameter-?-? lhs
1535
include/oox/core/contexthandler2.hxx:169
_Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
int nElement
525390
include/oox/core/contexthandler2.hxx:169
_Bool oox::core::ContextHandler2Helper::isParentElement(int,int) const
int nCountBack
4
include/oox/drawingml/drawingmltypes.hxx:229
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nX
-1
include/oox/drawingml/drawingmltypes.hxx:229
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nWidth
-1
include/oox/drawingml/drawingmltypes.hxx:229
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nHeight
-1
include/oox/drawingml/drawingmltypes.hxx:229
void oox::drawingml::EmuRectangle::EmuRectangle(long,long,long,long)
long nY
-1
include/oox/export/drawingml.hxx:208
void oox::drawingml::DrawingML::WriteBlipFill(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,int)
int nXmlNamespace
421
include/oox/export/vmlexport.hxx:154
void oox::vml::VMLExport::AddShapeAttribute(int,const class rtl::OString &)
int nAttribute
5458
include/oox/helper/attributelist.hxx:98
class oox::drawingml::Color oox::AttributeList::getHighlightColor(int) const
int nAttrToken
988639
include/oox/helper/attributelist.hxx:142
const char * oox::AttributeList::getChar(int) const
int nAttrToken
4179
include/oox/helper/attributelist.hxx:165
unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
int nAttrToken
4318
include/oox/helper/attributelist.hxx:165
unsigned int oox::AttributeList::getUnsignedHex(int,unsigned int) const
unsigned int nDefault
4294967295
include/oox/helper/binaryoutputstream.hxx:86
void oox::BinaryOutputStream::writeCharArrayUC(const class rtl::OUString &,unsigned short)
unsigned short eTextEnc
12
include/oox/helper/binarystreambase.hxx:103
void oox::BinaryStreamBase::alignToBlock(int,long)
int nBlockSize
4
include/oox/helper/containerhelper.hxx:193
class rtl::OUString oox::ContainerHelper::insertByUnusedName(const class com::sun::star::uno::Reference<class com::sun::star::container::XNameContainer> &,const class rtl::OUString &,char16_t,const class com::sun::star::uno::Any &)
char16_t cSeparator
32
include/oox/helper/helper.hxx:116
type-parameter-?-? getIntervalValue(type-parameter-?-?,type-parameter-?-?,type-parameter-?-?)
type-parameter-?-? nEnd
360
include/oox/helper/propertyset.hxx:110
_Bool oox::PropertySet::setProperty(int,class Color)
int nPropId
511
include/oox/helper/textinputstream.hxx:42
void oox::TextInputStream::TextInputStream(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,unsigned short)
unsigned short eTextEnc
76
include/oox/mathml/importutils.hxx:122
class rtl::OUString & oox::formulaimport::XmlStream::AttributeList::operator[](int)
###1
1512927
include/oox/mathml/importutils.hxx:135
void oox::formulaimport::XmlStream::Tag::Tag(int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &)
int token
-1
include/oox/mathml/importutils.hxx:150
_Bool oox::formulaimport::XmlStream::Tag::attribute(int,_Bool) const
int token
1512927
include/oox/mathml/importutils.hxx:154
char16_t oox::formulaimport::XmlStream::Tag::attribute(int,char16_t) const
int token
1512927
include/oox/ole/axcontrol.hxx:950
type-parameter-?-? & oox::ole::EmbeddedControl::createModel(const type-parameter-?-? &)
const type-parameter-?-? & rParam
6
include/oox/ole/olehelper.hxx:80
void oox::ole::StdFontInfo::StdFontInfo(const class rtl::OUString &,unsigned int)
unsigned int nHeight
82500
include/oox/ole/vbaproject.hxx:154
void oox::ole::VbaProject::addDummyModule(const class rtl::OUString &,int)
int nType
4
include/sfx2/app.hxx:87
void SfxLinkItem::SfxLinkItem(unsigned short,const class Link<const class SfxPoolItem *, void> &)
unsigned short nWhichId
5646
include/sfx2/childwin.hxx:138
void SfxChildWindowContext::RegisterChildWindowContext(class SfxModule *,unsigned short,class std::unique_ptr<struct SfxChildWinContextFactory, struct std::default_delete<struct SfxChildWinContextFactory> >)
unsigned short
10366
include/sfx2/ctrlitem.hxx:85
void SfxStatusForwarder::SfxStatusForwarder(unsigned short,class SfxControllerItem &)
unsigned short nSlotId
10930
include/sfx2/evntconf.hxx:72
void SfxEventNamesItem::SfxEventNamesItem(const unsigned short)
const unsigned short nId
6101
include/sfx2/fcontnr.hxx:54
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetAnyFilter(enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nMust
3
include/sfx2/fcontnr.hxx:54
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetAnyFilter(enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:55
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4EA(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nMust
2
include/sfx2/fcontnr.hxx:55
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4EA(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:56
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4Extension(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:57
class std::shared_ptr<const class SfxFilter> SfxFilterContainer::GetFilter4FilterName(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:88
class std::shared_ptr<const class SfxFilter> SfxFilterMatcher::GetFilter4Mime(const class rtl::OUString &,enum SfxFilterFlags,enum SfxFilterFlags) const
enum SfxFilterFlags nDont
393216
include/sfx2/fcontnr.hxx:109
void SfxFilterMatcherIter::SfxFilterMatcherIter(const class SfxFilterMatcher &,enum SfxFilterFlags,enum SfxFilterFlags)
enum SfxFilterFlags nNotMask
393216
include/sfx2/frame.hxx:201
void SfxUnoFrameItem::SfxUnoFrameItem(unsigned short,const class com::sun::star::uno::Reference<class com::sun::star::frame::XFrame> &)
unsigned short nWhich
6516
include/sfx2/infobar.hxx:111
class VclPtr<class SfxInfoBarWindow> SfxInfoBarContainerWindow::appendInfoBar(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,long,_Bool)
long nMessageStyle
278528
include/sfx2/linkmgr.hxx:63
_Bool sfx2::LinkManager::InsertLink(class sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const class rtl::OUString *)
enum SfxLinkUpdateMode nUpdateType
3
include/sfx2/lokhelper.hxx:32
void LokMouseEventData::LokMouseEventData(int,class Point,int,enum MouseEventModifiers,int,int)
enum MouseEventModifiers eModifiers
256
include/sfx2/objsh.hxx:670
void SfxObjectShell::AppendInfoBarWhenReady(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,enum InfobarType,_Bool)
enum InfobarType aInfobarType
2
include/sfx2/opengrf.hxx:38
void SvxOpenGraphicDialog::SvxOpenGraphicDialog(const class rtl::OUString &,class weld::Window *,short)
short nDialogType
13
include/sfx2/request.hxx:65
void SfxRequest::SfxRequest(unsigned short,enum SfxCallMode,const class SfxAllItemSet &,const class SfxAllItemSet &)
unsigned short nSlot
5904
include/sfx2/sfxhtml.hxx:64
_Bool SfxHTMLParser::ParseAreaOptions(class ImageMap *,const class rtl::OUString &,enum SvMacroItemId,enum SvMacroItemId)
enum SvMacroItemId nEventMouseOver
5100
include/sfx2/sfxhtml.hxx:64
_Bool SfxHTMLParser::ParseAreaOptions(class ImageMap *,const class rtl::OUString &,enum SvMacroItemId,enum SvMacroItemId)
enum SvMacroItemId nEventMouseOut
5102
include/sfx2/sidebar/Theme.hxx:135
_Bool sfx2::sidebar::Theme::GetBoolean(const enum sfx2::sidebar::Theme::ThemeItem)
const enum sfx2::sidebar::Theme::ThemeItem eItem
50
include/sfx2/tabdlg.hxx:49
void SfxTabDialogItem::SfxTabDialogItem(unsigned short,const class SfxItemSet &)
unsigned short nId
11022
include/sfx2/templatelocalview.hxx:229
class BitmapEx SfxTemplateLocalView::fetchThumbnail(const class rtl::OUString &,long,long)
long width
150
include/sfx2/templatelocalview.hxx:229
class BitmapEx SfxTemplateLocalView::fetchThumbnail(const class rtl::OUString &,long,long)
long height
86
include/sfx2/thumbnailview.hxx:210
void ThumbnailView::setItemDimensions(long,long,long,int)
int itemPadding
5
include/sfx2/thumbnailview.hxx:210
void ThumbnailView::setItemDimensions(long,long,long,int)
long DisplayHeight
30
include/sfx2/thumbnailview.hxx:345
void SfxThumbnailView::setItemDimensions(long,long,long,int)
int itemPadding
5
include/sfx2/thumbnailview.hxx:345
void SfxThumbnailView::setItemDimensions(long,long,long,int)
long ItemWidth
160
include/sfx2/thumbnailview.hxx:345
void SfxThumbnailView::setItemDimensions(long,long,long,int)
long ThumbnailHeight
96
include/sot/stg.hxx:99
class BaseStorage * BaseStorage::OpenUCBStorage(const class rtl::OUString &,enum StreamMode,_Bool)
enum StreamMode
2050
include/sot/stg.hxx:102
class BaseStorage * BaseStorage::OpenOLEStorage(const class rtl::OUString &,enum StreamMode,_Bool)
enum StreamMode
2050
include/sot/storage.hxx:50
void SotStorageStream::SotStorageStream(const class rtl::OUString &,enum StreamMode)
enum StreamMode
2051
include/store/store.h:63
storeError store_createMemoryFile(unsigned short,void **)
unsigned short nPageSize
1024
include/store/store.h:80
storeError store_openFile(struct _rtl_uString *,enum storeAccessMode,unsigned short,void **)
unsigned short nPageSize
1024
include/svl/globalnameitem.hxx:34
void SfxGlobalNameItem::SfxGlobalNameItem(unsigned short,const class SvGlobalName &)
unsigned short nWhich
5561
include/svl/int64item.hxx:21
void SfxInt64Item::SfxInt64Item(unsigned short,long)
long nVal
75
include/svl/int64item.hxx:21
void SfxInt64Item::SfxInt64Item(unsigned short,long)
unsigned short nWhich
11141
include/svl/itemset.hxx:206
void SfxItemSet::PutExtended(const class SfxItemSet &,enum SfxItemState,enum SfxItemState)
enum SfxItemState eDontCareAs
16
include/svl/languageoptions.hxx:120
_Bool SvtSystemLanguageOptions::isKeyboardLayoutTypeInstalled(short) const
short scriptType
2
include/svl/svdde.hxx:158
void DdePoke::DdePoke(class DdeConnection &,const class rtl::OUString &,const class DdeData &,long)
long
30000
include/svl/svdde.hxx:165
void DdeExecute::DdeExecute(class DdeConnection &,const class rtl::OUString &,long)
long
30000
include/svl/urihelper.hxx:51
class rtl::OUString SmartRel2Abs(const class INetURLObject &,const class rtl::OUString &,const class Link<class rtl::OUString *, _Bool> &,_Bool,_Bool,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
unsigned short eCharset
76
include/svl/urihelper.hxx:51
class rtl::OUString SmartRel2Abs(const class INetURLObject &,const class rtl::OUString &,const class Link<class rtl::OUString *, _Bool> &,_Bool,_Bool,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
enum FSysStyle eStyle
7
include/svl/urihelper.hxx:116
class rtl::OUString FindFirstURLInText(const class rtl::OUString &,int &,int &,const class CharClass &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/svl/urihelper.hxx:148
class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
unsigned short eCharset
76
include/svl/urihelper.hxx:148
class rtl::OUString removePassword(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::DecodeMechanism eDecodeMechanism
3
include/svl/zformat.hxx:390
_Bool SvNumberformat::IsInQuote(const class rtl::OUString &,int,char16_t,char16_t,char16_t)
char16_t cEscOut
92
include/svl/zformat.hxx:405
int SvNumberformat::GetQuoteEnd(const class rtl::OUString &,int,char16_t,char16_t)
char16_t cQuote
34
include/svtools/brwbox.hxx:561
void BrowseBox::commitBrowseBoxEvent(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short nEventId
7
include/svtools/ctrlbox.hxx:378
void FontNameBox::set_size_request(int,int)
int nHeight
-1
include/svtools/ctrlbox.hxx:459
void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nMax
995
include/svtools/ctrlbox.hxx:459
void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nStep
5
include/svtools/ctrlbox.hxx:459
void FontSizeBox::EnableRelativeMode(unsigned short,unsigned short,unsigned short)
unsigned short nMin
5
include/svtools/ctrlbox.hxx:460
void FontSizeBox::EnablePtRelativeMode(short,short,short)
short nStep
10
include/svtools/editsyntaxhighlighter.hxx:41
void MultiLineEditSyntaxHighlight::MultiLineEditSyntaxHighlight(class vcl::Window *,long,enum HighlighterLanguage)
long nWinStyle
24584
include/svtools/htmlout.hxx:66
class SvStream & HTMLOutFuncs::Out_Hex(class SvStream &,unsigned long,unsigned char)
unsigned char nLen
2
include/svtools/unitconv.hxx:42
long ControlToItem(long,enum FieldUnit,enum MapUnit)
enum FieldUnit eCtrl
5
include/svx/AccessibleShape.hxx:208
_Bool accessibility::AccessibleShape::GetState(short)
short aState
11
include/svx/chrtitem.hxx:83
void SvxChartRegressItem::SvxChartRegressItem(enum SvxChartRegress,unsigned short)
unsigned short nId
88
include/svx/chrtitem.hxx:94
void SvxChartTextOrderItem::SvxChartTextOrderItem(enum SvxChartTextOrder,unsigned short)
unsigned short nId
66
include/svx/chrtitem.hxx:108
void SvxChartKindErrorItem::SvxChartKindErrorItem(enum SvxChartKindError,unsigned short)
unsigned short nId
18
include/svx/chrtitem.hxx:119
void SvxChartIndicateItem::SvxChartIndicateItem(enum SvxChartIndicate,unsigned short)
unsigned short nId
23
include/svx/dbaexchange.hxx:57
void svx::OColumnTransferable::OColumnTransferable(enum ColumnTransferFormatFlags)
enum ColumnTransferFormatFlags nFormats
7
include/svx/dbaexchange.hxx:97
void svx::OColumnTransferable::OColumnTransferable(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class com::sun::star::uno::Reference<class com::sun::star::sdbc::XConnection> &,enum ColumnTransferFormatFlags)
enum ColumnTransferFormatFlags _nFormats
5
include/svx/dlgctrl.hxx:105
void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short)
unsigned short nBorder
200
include/svx/dlgctrl.hxx:105
void SvxRectCtl::SvxRectCtl(class SvxTabPage *,enum RectPoint,unsigned short)
enum RectPoint eRpt
4
include/svx/dlgctrl.hxx:106
void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short)
unsigned short nBorder
240
include/svx/dlgctrl.hxx:106
void SvxRectCtl::SetControlSettings(enum RectPoint,unsigned short)
enum RectPoint eRpt
4
include/svx/drawitem.hxx:59
void SvxGradientListItem::SvxGradientListItem(const class rtl::Reference<class XGradientList> &,unsigned short)
unsigned short nWhich
10180
include/svx/drawitem.hxx:83
void SvxHatchListItem::SvxHatchListItem(const class rtl::Reference<class XHatchList> &,unsigned short)
unsigned short nWhich
10181
include/svx/drawitem.hxx:108
void SvxBitmapListItem::SvxBitmapListItem(const class rtl::Reference<class XBitmapList> &,unsigned short)
unsigned short nWhich
10182
include/svx/drawitem.hxx:133
void SvxPatternListItem::SvxPatternListItem(const class rtl::Reference<class XPatternList> &,unsigned short)
unsigned short nWhich
10183
include/svx/drawitem.hxx:157
void SvxDashListItem::SvxDashListItem(const class rtl::Reference<class XDashList> &,unsigned short)
unsigned short nWhich
10184
include/svx/drawitem.hxx:182
void SvxLineEndListItem::SvxLineEndListItem(const class rtl::Reference<class XLineEndList> &,unsigned short)
unsigned short nWhich
10185
include/svx/float3d.hxx:267
void Svx3DCtrlItem::Svx3DCtrlItem(unsigned short,class SfxBindings *)
unsigned short
10645
include/svx/fmgridcl.hxx:42
void FmGridHeader::FmGridHeader(class BrowseBox *,long)
long nWinBits
1051648
include/svx/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> &)
unsigned short _nLabelObjectID
37
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> &)
enum SdrInventor _nInventor
827609170
include/svx/fontworkgallery.hxx:61
void svx::FontWorkGalleryDialog::initFavorites(unsigned short)
unsigned short nThemeId
37
include/svx/fontworkgallery.hxx:63
void svx::FontWorkGalleryDialog::fillFavorites(unsigned short)
unsigned short nThemeId
37
include/svx/framelink.hxx:148
void svx::frame::Style::Style(double,double,double,enum SvxBorderLineStyle,double)
double nP
3
include/svx/gallery.hxx:110
_Bool GalleryExplorer::FillObjListTitle(const unsigned int,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
const unsigned int nThemeId
16
include/svx/gallery.hxx:117
_Bool GalleryExplorer::GetGraphicObj(unsigned int,unsigned int,class Graphic *)
unsigned int nThemeId
3
include/svx/galmisc.hxx:187
void GalleryHint::GalleryHint(enum GalleryHintType,const class rtl::OUString &,const class rtl::OUString &)
enum GalleryHintType nType
2
include/svx/grfcrop.hxx:33
void SvxGrfCrop::SvxGrfCrop(unsigned short)
unsigned short
132
include/svx/langbox.hxx:72
void SvxLanguageBox::InsertLanguage(const struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,short)
short nType
4
include/svx/numinf.hxx:33
void SvxNumberInfoItem::SvxNumberInfoItem(const unsigned short)
const unsigned short nId
10086
include/svx/numinf.hxx:38
void SvxNumberInfoItem::SvxNumberInfoItem(class SvNumberFormatter *,const double &,const unsigned short)
const unsigned short nId
10086
include/svx/numinf.hxx:41
void SvxNumberInfoItem::SvxNumberInfoItem(class SvNumberFormatter *,const double &,const class rtl::OUString &,const unsigned short)
const unsigned short nId
10086
include/svx/ofaitem.hxx:32
void OfaPtrItem::OfaPtrItem(unsigned short,void *)
unsigned short nWhich
11021
include/svx/ofaitem.hxx:46
void OfaRefItem::OfaRefItem<reference_type>(unsigned short,const Reference<type-parameter-?-?> &)
unsigned short _nWhich
10441
include/svx/optgrid.hxx:77
void SvxGridItem::SvxGridItem(unsigned short)
unsigned short _nWhich
10298
include/svx/relfld.hxx:43
void SvxRelativeField::EnableRelativeMode(unsigned short,unsigned short)
unsigned short nMax
999
include/svx/ruler.hxx:244
_Bool SvxRuler::IsActLastColumn(_Bool,unsigned short) const
unsigned short nAct
65535
include/svx/ruler.hxx:247
_Bool SvxRuler::IsActFirstColumn(_Bool,unsigned short) const
unsigned short nAct
65535
include/svx/sdtaitm.hxx:38
void SdrTextVertAdjustItem::SdrTextVertAdjustItem(enum SdrTextVertAdjust,unsigned short)
unsigned short nWhich
130
include/svx/svdetc.hxx:104
class std::unique_ptr<unsigned short [], struct std::default_delete<unsigned short []> > RemoveWhichRange(const unsigned short *,unsigned short,unsigned short)
unsigned short nRangeBeg
4005
include/svx/svdetc.hxx:104
class std::unique_ptr<unsigned short [], struct std::default_delete<unsigned short []> > RemoveWhichRange(const unsigned short *,unsigned short,unsigned short)
unsigned short nRangeEnd
4060
include/svx/svdhdl.hxx:349
void SdrHdlLine::SdrHdlLine(class SdrHdl &,class SdrHdl &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
14
include/svx/svdhdl.hxx:362
void SdrHdlBezWgt::SdrHdlBezWgt(const class SdrHdl *,enum SdrHdlKind)
enum SdrHdlKind eNewKind
10
include/svx/svdhdl.hxx:393
void ImpEdgeHdl::ImpEdgeHdl(const class Point &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
9
include/svx/svdhdl.hxx:409
void ImpMeasureHdl::ImpMeasureHdl(const class Point &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
20
include/svx/svdmodel.hxx:119
void SdrHint::SdrHint(enum SdrHintKind,const class SdrPage *)
enum SdrHintKind eNewHint
2
include/svx/svdmrkv.hxx:286
_Bool SdrMarkView::PickMarkedObj(const class Point &,class SdrObject *&,class SdrPageView *&,enum SdrSearchOptions) const
enum SdrSearchOptions nOptions
128
include/svx/svdpage.hxx:114
void SdrObjList::InsertObjectThenMakeNameUnique(class SdrObject *,class std::__debug::unordered_set<class rtl::OUString, struct std::hash< ::rtl::OUString>, struct std::equal_to<class rtl::OUString>, class std::allocator<class rtl::OUString> > &,unsigned long)
unsigned long nPos
18446744073709551615
include/svx/txencbox.hxx:151
int SvxTextEncodingTreeView::get_height_rows(int) const
int nRows
6
include/svx/txencbox.hxx:155
void SvxTextEncodingTreeView::set_size_request(int,int)
int nWidth
-1
include/svx/unoapi.hxx:43
class SvxShape * CreateSvxShapeByTypeAndInventor(unsigned short,enum SdrInventor,const class rtl::OUString &)
enum SdrInventor nInventor
1917081171
include/svx/xflclit.hxx:37
void XFillColorItem::XFillColorItem(int,const class Color &)
int nIndex
-1
include/svx/xflgrit.hxx:39
void XFillGradientItem::XFillGradientItem(int,const class XGradient &)
int nIndex
-1
include/svx/xlnclit.hxx:33
void XLineColorItem::XLineColorItem(int,const class Color &)
int nIndex
-1
include/svx/xpoly.hxx:73
void XPolygon::Insert(unsigned short,const class XPolygon &)
unsigned short nPos
65535
include/test/helper/form.hxx:37
class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nHeight
3000
include/test/helper/form.hxx:37
class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nWidth
4500
include/test/helper/form.hxx:37
class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nX
15000
include/test/helper/form.hxx:37
class com::sun::star::uno::Reference<class com::sun::star::drawing::XControlShape> createCommandButton(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nY
10000
include/test/helper/shape.hxx:52
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nHeight
3500
include/test/helper/shape.hxx:52
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nY
10000
include/test/helper/shape.hxx:52
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nWidth
5000
include/test/helper/shape.hxx:52
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createLine(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nX
7500
include/test/helper/shape.hxx:66
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createRectangle(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nY
5000
include/test/helper/shape.hxx:66
class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> createRectangle(const class com::sun::star::uno::Reference<class com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
const int nWidth
5000
include/test/unoapi_property_testers.hxx:85
void testLongOptionalProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const int &)
const int & nValue
42
include/test/unoapi_property_testers.hxx:166
void testColorProperty(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,const int &)
const int & rValue
305419896
include/toolkit/controls/unocontrolbase.hxx:47
int UnoControlBase::ImplGetPropertyValue_INT32(unsigned short)
unsigned short nProp
74
include/tools/b3dtrans.hxx:113
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fB
-2
include/tools/b3dtrans.hxx:113
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fT
2
include/tools/b3dtrans.hxx:113
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fL
-2
include/tools/b3dtrans.hxx:113
void B3dTransformationSet::SetDeviceRectangle(double,double,double,double)
double fR
2
include/tools/datetime.hxx:87
class DateTime operator+(const class DateTime &,int)
int nDays
10
include/tools/fract.hxx:71
class Fraction & Fraction::operator*=(double)
###1
-1
include/tools/gen.hxx:91
class Point & Point::operator*=(const long)
###1
-1
include/tools/gen.hxx:92
class Point & Point::operator/=(const long)
###1
2
include/tools/gen.hxx:96
class Point operator*(const class Point &,const long)
const long nVal2
-1
include/tools/gen.hxx:202
void Size::extendBy(long,long)
long y
10
include/tools/gen.hxx:202
void Size::extendBy(long,long)
long x
10
include/tools/poly.hxx:96
void tools::Polygon::Polygon(const class Point &,const class Point &,const class Point &,const class Point &,unsigned short)
unsigned short nPoints
25
include/tools/urlobj.hxx:271
class rtl::OUString INetURLObject::GetURLNoMark(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:276
class rtl::OUString INetURLObject::getAbbreviated(const class com::sun::star::uno::Reference<class com::sun::star::util::XStringWidth> &,int,enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:276
class rtl::OUString INetURLObject::getAbbreviated(const class com::sun::star::uno::Reference<class com::sun::star::util::XStringWidth> &,int,enum INetURLObject::DecodeMechanism,unsigned short) const
enum INetURLObject::DecodeMechanism eMechanism
3
include/tools/urlobj.hxx:294
_Bool INetURLObject::SetURL(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
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)
unsigned short eCharset
76
include/tools/urlobj.hxx:351
class rtl::OUString INetURLObject::GetRelURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
enum FSysStyle eStyle
7
include/tools/urlobj.hxx:351
class rtl::OUString INetURLObject::GetRelURL(const class rtl::OUString &,const class rtl::OUString &,enum INetURLObject::EncodeMechanism,enum INetURLObject::DecodeMechanism,unsigned short,enum FSysStyle)
unsigned short eCharset
76
include/tools/urlobj.hxx:362
_Bool INetURLObject::translateToExternal(const class rtl::OUString &,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:369
_Bool INetURLObject::translateToInternal(const class rtl::OUString &,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:369
_Bool INetURLObject::translateToInternal(const class rtl::OUString &,class rtl::OUString &,enum INetURLObject::DecodeMechanism,unsigned short)
enum INetURLObject::DecodeMechanism eDecodeMechanism
3
include/tools/urlobj.hxx:416
class rtl::OUString INetURLObject::GetUser(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:421
class rtl::OUString INetURLObject::GetPass(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:438
class rtl::OUString INetURLObject::GetHost(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:443
class rtl::OUString INetURLObject::GetHostPort(enum INetURLObject::DecodeMechanism,unsigned short) const
enum INetURLObject::DecodeMechanism eMechanism
2
include/tools/urlobj.hxx:443
class rtl::OUString INetURLObject::GetHostPort(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:462
_Bool INetURLObject::SetURLPath(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:516
_Bool INetURLObject::removeSegment(int,_Bool)
int nIndex
-1
include/tools/urlobj.hxx:586
_Bool INetURLObject::setName(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:606
class rtl::OUString INetURLObject::getBase(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
int nIndex
-1
include/tools/urlobj.hxx:606
class rtl::OUString INetURLObject::getBase(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:630
_Bool INetURLObject::setBase(const class rtl::OUString &,int,enum INetURLObject::EncodeMechanism,unsigned short)
int nIndex
-1
include/tools/urlobj.hxx:630
_Bool INetURLObject::setBase(const class rtl::OUString &,int,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:659
class rtl::OUString INetURLObject::getExtension(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:659
class rtl::OUString INetURLObject::getExtension(int,_Bool,enum INetURLObject::DecodeMechanism,unsigned short) const
int nIndex
-1
include/tools/urlobj.hxx:683
_Bool INetURLObject::setExtension(const class rtl::OUString &,int,_Bool,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:683
_Bool INetURLObject::setExtension(const class rtl::OUString &,int,_Bool,unsigned short)
int nIndex
-1
include/tools/urlobj.hxx:702
_Bool INetURLObject::removeExtension(int,_Bool)
int nIndex
-1
include/tools/urlobj.hxx:735
class rtl::OUString INetURLObject::GetParam(unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:739
_Bool INetURLObject::SetParam(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:747
class rtl::OUString INetURLObject::GetMark(enum INetURLObject::DecodeMechanism,unsigned short) const
unsigned short eCharset
76
include/tools/urlobj.hxx:752
_Bool INetURLObject::SetMark(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:897
_Bool INetURLObject::Append(const class rtl::OUString &,enum INetURLObject::EncodeMechanism,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:1031
_Bool INetURLObject::setUser(const class rtl::OUString &,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:1037
_Bool INetURLObject::setPassword(const class rtl::OUString &,unsigned short)
unsigned short eCharset
76
include/tools/urlobj.hxx:1052
_Bool INetURLObject::setHost(const class rtl::OUString &,unsigned short)
unsigned short eCharset
76
include/ucbhelper/simpleinteractionrequest.hxx:76
void ucbhelper::SimpleInteractionRequest::SimpleInteractionRequest(const class com::sun::star::uno::Any &,const enum ContinuationFlags)
const enum ContinuationFlags nContinuations
12
include/unotools/compatibility.hxx:206
void SvtCompatibilityOptions::SetDefault(enum SvtCompatibilityEntry::Index,_Bool)
enum SvtCompatibilityEntry::Index rIdx
12
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)
int _nDepth
-1
include/unotools/configvaluecontainer.hxx:83
void utl::OConfigurationValueContainer::OConfigurationValueContainer(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,class osl::Mutex &,const char *,const int)
const int _nLevels
2
include/unotools/fontdefs.hxx:39
class rtl::OUString GetSubsFontName(const class rtl::OUString &,enum SubsFontFlags)
enum SubsFontFlags nFlags
3
include/unotools/useroptions.hxx:90
void SvtUserOptions::SetBoolValue(enum UserOptToken,_Bool)
enum UserOptToken nToken
19
include/vcl/accessiblefactory.hxx:113
class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> vcl::IAccessibleFactory::createAccessibleBrowseBoxHeaderBar(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class vcl::IAccessibleTableProvider &,enum vcl::AccessibleBrowseBoxObjType) const
enum vcl::AccessibleBrowseBoxObjType _eObjType
3
include/vcl/alpha.hxx:57
void AlphaMask::Replace(const class Bitmap &,unsigned char)
unsigned char rReplaceTransparency
255
include/vcl/BitmapAlphaClampFilter.hxx:21
void BitmapAlphaClampFilter::BitmapAlphaClampFilter(unsigned char)
unsigned char cThreshold
253
include/vcl/BitmapBasicMorphologyFilter.hxx:50
void BitmapErodeFilter::BitmapErodeFilter(int,unsigned char)
unsigned char nValueOutside
255
include/vcl/bitmapex.hxx:51
void BitmapEx::BitmapEx(class Size,unsigned short)
unsigned short nBitCount
24
include/vcl/bitmapex.hxx:450
void BitmapEx::CombineMaskOr(class Color,unsigned char)
unsigned char nTol
9
include/vcl/dockwin.hxx:145
void ImplDockingWindowWrapper::ShowTitleButton(enum TitleButton,_Bool)
enum TitleButton nButton
4
include/vcl/errinf.hxx:180
void TwoStringErrorInfo::TwoStringErrorInfo(class ErrCode,const class rtl::OUString &,const class rtl::OUString &,enum DialogMask)
enum DialogMask nMask
4097
include/vcl/fieldvalues.hxx:60
double ConvertDoubleValue(long,unsigned short,enum FieldUnit,enum MapUnit)
enum MapUnit eOutUnit
9
include/vcl/fieldvalues.hxx:66
double ConvertDoubleValue(long,unsigned short,enum MapUnit,enum FieldUnit)
enum MapUnit eInUnit
9
include/vcl/floatwin.hxx:158
class Point FloatingWindow::CalcFloatingPosition(class vcl::Window *,const class tools::Rectangle &,enum FloatWinPopupFlags,unsigned short &)
enum FloatWinPopupFlags nFlags
16
include/vcl/font.hxx:92
void vcl::Font::IncreaseQualityBy(int)
int
50
include/vcl/font.hxx:93
void vcl::Font::DecreaseQualityBy(int)
int
100
include/vcl/font/Feature.hxx:77
void vcl::font::FeatureDefinition::FeatureDefinition(unsigned int,const char *,class std::__debug::vector<struct vcl::font::FeatureParameter, class std::allocator<struct vcl::font::FeatureParameter> >)
unsigned int nCode
1718772067
include/vcl/imap.hxx:117
unsigned long ImageMap::Read(class SvStream &,unsigned long)
unsigned long nFormat
4294967295
include/vcl/lstbox.hxx:116
void ListBox::ListBox(enum WindowType)
enum WindowType nType
332
include/vcl/outdev.hxx:1078
_Bool OutputDevice::GetTextOutline(class tools::PolyPolygon &,const class rtl::OUString &,int,unsigned long,const long *) const
int nLen
-1
include/vcl/outdev.hxx:1176
int OutputDevice::GetTextBreak(const class rtl::OUString &,long,char16_t,int &,int,int,long,const class vcl::TextLayoutCache *) const
char16_t nExtraChar
45
include/vcl/print.hxx:679
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
int i_nMaxValue
1000
include/vcl/print.hxx:679
class com::sun::star::uno::Any vcl::PrinterOptionsHelper::setRangeControlOpt(const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString &,int,int,int,const struct vcl::PrinterOptionsHelper::UIControlOptions &)
int i_nMinValue
10
include/vcl/svapp.hxx:752
struct ImplSVEvent * Application::PostGestureEvent(enum VclEventId,class vcl::Window *,const class GestureEvent *)
enum VclEventId nEvent
129
include/vcl/texteng.hxx:136
class TextPaM TextEngine::ImpInsertText(const class TextSelection &,char16_t,_Bool)
char16_t c
9
include/vcl/toolbox.hxx:317
void ToolBox::InsertBreak(unsigned long)
unsigned long nPos
18446744073709551615
include/vcl/toolkit/svtabbx.hxx:84
class rtl::OUString SvTabListBox::GetEntryText(unsigned long,unsigned short) const
unsigned short nCol
65535
include/vcl/toolkit/svtabbx.hxx:89
void SvTabListBox::SetTabJustify(unsigned short,enum SvTabJustify)
enum SvTabJustify
8
include/vcl/transfer.hxx:227
void TransferableHelper::RemoveFormat(enum SotClipboardFormatId)
enum SotClipboardFormatId nFormat
59
include/vcl/transfer.hxx:325
_Bool TransferableDataHelper::GetBitmapEx(enum SotClipboardFormatId,class BitmapEx &)
enum SotClipboardFormatId nFormat
2
include/vcl/transfer.hxx:336
_Bool TransferableDataHelper::GetGDIMetaFile(enum SotClipboardFormatId,class GDIMetaFile &,unsigned long)
enum SotClipboardFormatId nFormat
3
include/vcl/transfer.hxx:342
_Bool TransferableDataHelper::GetImageMap(enum SotClipboardFormatId,class ImageMap &)
enum SotClipboardFormatId nFormat
13
include/vcl/transfer.hxx:357
class com::sun::star::uno::Sequence<signed char> TransferableDataHelper::GetSequence(enum SotClipboardFormatId,const class rtl::OUString &)
enum SotClipboardFormatId nFormat
59
include/vcl/treelistbox.hxx:531
class SvLBoxTab * SvTreeListBox::GetFirstTab(enum SvLBoxTabFlags,unsigned short &)
enum SvLBoxTabFlags nFlagMask
16
include/vcl/treelistbox.hxx:532
void SvTreeListBox::GetLastTab(enum SvLBoxTabFlags,unsigned short &)
enum SvLBoxTabFlags nFlagMask
16
include/vcl/treelistbox.hxx:692
void SvTreeListBox::SetHighlightRange(unsigned short,unsigned short)
unsigned short nLastTab
65535
include/vcl/vclevent.hxx:222
void VclAccessibleEvent::VclAccessibleEvent(enum VclEventId,const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &)
enum VclEventId n
37
include/vcl/vclmedit.hxx:115
void VclMultiLineEdit::EnableUpdateData(unsigned long)
unsigned long nTimeout
300
include/vcl/weld.hxx:928
void weld::TreeView::set_sensitive(int,_Bool,int)
int col
-1
include/vcl/weld.hxx:1033
void weld::TreeView::set_image(const class weld::TreeIter &,const class rtl::OUString &,int)
int col
-1
include/vcl/weld.hxx:1182
void weld::IconView::insert(int,const class rtl::OUString *,const class rtl::OUString *,const class rtl::OUString *,class weld::TreeIter *)
int pos
-1
include/vcl/weld.hxx:1213
void weld::IconView::select(int)
int pos
-1
include/vcl/weld.hxx:1214
void weld::IconView::unselect(int)
int pos
-1
include/vcl/weld.hxx:2085
void weld::Menu::insert(int,const class rtl::OUString &,const class rtl::OUString &,const class rtl::OUString *,class VirtualDevice *,enum TriState)
int pos
-1
include/vcl/weld.hxx:2094
void weld::Menu::insert_separator(int,const class rtl::OUString &)
int pos
-1
include/vcl/window.hxx:1570
void vcl::Window::SimulateKeyPress(unsigned short) const
unsigned short nKeyCode
1312
include/vcl/wrkwin.hxx:61
void WorkWindow::WorkWindow(enum WindowType)
enum WindowType nType
372
include/vcl/wrkwin.hxx:67
void WorkWindow::WorkWindow(class vcl::Window *,const class com::sun::star::uno::Any &,long)
long nStyle
1312
include/xmloff/txtparae.hxx:349
void XMLTextParagraphExport::exportListAndSectionChange(class com::sun::star::uno::Reference<class com::sun::star::text::XTextSection> &,class MultiPropertySetHelper &,short,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextContent> &,const class XMLTextNumRuleInfo &,const class XMLTextNumRuleInfo &,_Bool)
short nTextSectionId
5
include/xmloff/txtparae.hxx:377
void XMLTextParagraphExport::Add(enum XmlStyleFamily,class MultiPropertySetHelper &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
enum XmlStyleFamily nFamily
100
include/xmloff/xmlaustp.hxx:94
void SvXMLAutoStylePoolP::SetFamilyPropSetMapper(enum XmlStyleFamily,const class rtl::Reference<class SvXMLExportPropertyMapper> &)
enum XmlStyleFamily nFamily
203
include/xmloff/xmlaustp.hxx:101
void SvXMLAutoStylePoolP::RegisterDefinedName(enum XmlStyleFamily,const class rtl::OUString &)
enum XmlStyleFamily nFamily
204
include/xmloff/xmlerror.hxx:135
void XMLErrors::ThrowErrorAsSAXException(int)
int nIdMask
1073741824
include/xmloff/xmlexp.hxx:272
void SvXMLExport::SvXMLExport(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,const class rtl::OUString &,const short,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XDocumentHandler> &)
const short eDefaultMeasureUnit
3
include/xmloff/xmlexp.hxx:337
void SvXMLExport::AddAttributeASCII(unsigned short,const char *,const char *)
unsigned short nPrefix
34
include/xmloff/xmlexp.hxx:512
void SvXMLExport::SetError(int,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
int nId
1074266113
include/xmloff/xmlexppr.hxx:135
void SvXMLExportPropertyMapper::exportXML(class SvXMLExport &,const class std::__debug::vector<struct XMLPropertyState, class std::allocator<struct XMLPropertyState> > &,enum SvXmlExportFlags,_Bool) const
enum SvXmlExportFlags nFlags
8
include/xmloff/xmlimp.hxx:488
void SvXMLImport::SetError(int,const class rtl::OUString &,const class rtl::OUString &)
int nId
268566538
include/xmloff/xmlnumfi.hxx:162
void SvXMLNumFormatContext::SvXMLNumFormatContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,const int,class SvXMLStylesContext &)
unsigned short nPrfx
9
include/xmloff/xmlnumfi.hxx:195
_Bool SvXMLNumFormatContext::ReplaceNfKeyword(unsigned short,unsigned short)
unsigned short nNew
25
include/xmloff/xmlnumfi.hxx:195
_Bool SvXMLNumFormatContext::ReplaceNfKeyword(unsigned short,unsigned short)
unsigned short nOld
24
include/xmloff/XMLSettingsExportContext.hxx:37
void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,const class rtl::OUString &)
enum xmloff::token::XMLTokenEnum i_eName
1221
include/xmloff/XMLSettingsExportContext.hxx:39
void xmloff::XMLSettingsExportContext::AddAttribute(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum i_eName
1863
libreofficekit/qa/tilebench/tilebench.cxx:68
void dumpTile(const char *,const int,const int,const int,const unsigned char *,const int,const int,int)
int nTotalWidth
-1
libreofficekit/qa/tilebench/tilebench.cxx:341
int testJoinsAt(class lok::Document *,long,long,const long,const long)
const long nTilePixelSize
256
lotuswordpro/inc/xfilter/xfdrawstyle.hxx:95
void XFDrawStyle::SetLineDashStyle(enum enumXFLineStyle,double,double,double)
enum enumXFLineStyle style
3
lotuswordpro/inc/xfilter/xfdrawstyle.hxx:117
void XFDrawStyle::SetFontWorkStyle(enum enumXFFWStyle,enum enumXFFWAdjust)
enum enumXFFWStyle eStyle
4
lotuswordpro/inc/xfilter/xffont.hxx:203
void XFFont::SetPosition(_Bool,short,short)
short scale
58
lotuswordpro/inc/xfilter/xffont.hxx:203
void XFFont::SetPosition(_Bool,short,short)
short pos
33
lotuswordpro/inc/xfilter/xfindex.hxx:100
void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
enum enumXFTab type
3
lotuswordpro/inc/xfilter/xfindex.hxx:100
void XFIndexTemplate::AddTabEntry(enum enumXFTab,double,char16_t,char16_t,const class rtl::OUString &)
char16_t delimiter
100
lotuswordpro/source/filter/bento.hxx:215
void OpenStormBento::LtcBenContainer::SeekFromEnd(long)
long Offset
-24
lotuswordpro/source/filter/tocread.hxx:86
enum OpenStormBento::BenError OpenStormBento::CBenTOCReader::GetData(void *,unsigned long)
unsigned long Amt
4
o3tl/qa/cow_wrapper_clients.hxx:69
void o3tltests::cow_wrapper_client2::cow_wrapper_client2(int)
int nVal
4
o3tl/qa/cow_wrapper_clients.hxx:100
void o3tltests::cow_wrapper_client3::cow_wrapper_client3(int)
int nVal
7
o3tl/qa/cow_wrapper_clients.hxx:132
void o3tltests::cow_wrapper_client4::cow_wrapper_client4(int)
int
4
oox/source/core/xmlfilterbase.cxx:592
void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class com::sun::star::uno::Sequence<class rtl::OUString> &)
int nXmlElement
93588338
oox/source/core/xmlfilterbase.cxx:609
void writeElement(const class std::shared_ptr<class sax_fastparser::FastSerializerHelper> &,int,const class LanguageTag &)
int nXmlElement
110037902
oox/source/export/vmlexport.cxx:332
void impl_AddInt(class sax_fastparser::FastAttributeList *,int,unsigned int)
int nElement
5722
package/inc/ThreadedDeflater.hxx:55
void ZipUtils::ThreadedDeflater::ThreadedDeflater(int)
int nSetLevel
-1
reportdesign/source/filter/xml/xmlExport.hxx:124
void rptxml::ORptExport::collectStyleNames(enum XmlStyleFamily,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
enum XmlStyleFamily _nFamily
202
reportdesign/source/filter/xml/xmlExport.hxx:125
void rptxml::ORptExport::collectStyleNames(enum XmlStyleFamily,const class std::__debug::vector<int, class std::allocator<int> > &,const class std::__debug::vector<int, class std::allocator<int> > &,class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
enum XmlStyleFamily _nFamily
203
reportdesign/source/filter/xml/xmlStyleImport.hxx:62
void rptxml::OControlStyleContext::AddProperty(short,const class com::sun::star::uno::Any &)
short nContextID
28673
reportdesign/source/ui/inc/UITools.hxx:142
class SdrObject * isOver(const class tools::Rectangle &,const class SdrPage &,const class SdrView &,_Bool,class std::unique_ptr<class SdrUnoObj, struct SdrObjectFreeOp> *,int)
int _nIgnoreListLength
2
sal/osl/unx/file_path_helper.cxx:173
void (anonymous namespace)::path_list_iterator::path_list_iterator(const class rtl::OUString &,char16_t)
char16_t list_separator
58
sal/osl/unx/file_url.cxx:503
_Bool _islastchr(char16_t *,char16_t)
char16_t Chr
47
sal/osl/unx/file_url.hxx:36
int TextToUnicode(const char *,unsigned long,char16_t *,int)
int unic_text_buffer_size
4096
sal/osl/unx/nlsupport.cxx:106
char * compose_locale(struct _rtl_Locale *,char *,unsigned long)
unsigned long n
64
sal/osl/unx/profile.cxx:137
void osl_ProfileGenerateExtension(const char *,const char *,char *,int)
int BufferMaxLen
4096
sal/osl/unx/readwrite_helper.hxx:22
_Bool safeRead(int,void *,unsigned long)
unsigned long count
511
sal/osl/unx/socket.cxx:286
struct oslSocketImpl * createSocketImpl(int)
int Socket
-1
sal/osl/unx/uunxapi.hxx:74
int mkdir(const class rtl::OString &,unsigned int)
unsigned int aMode
511
sal/qa/osl/file/osl_File.cxx:107
_Bool t_compareTime(struct TimeValue *,struct TimeValue *,int)
int nDelta
2000
sax/inc/xml2utf.hxx:96
int sax_expatwrap::XMLFile2UTFConverter::readAndConvert(class com::sun::star::uno::Sequence<signed char> &,int)
int nMaxToRead
16384
sax/source/tools/converter.cxx:994
enum sax::(anonymous namespace)::Result readUnsignedNumberMaxDigits(int,const class rtl::OUString &,int &,int &)
int maxDigits
9
sc/inc/AccessibleFilterMenu.hxx:41
void ScAccessibleFilterMenu::ScAccessibleFilterMenu(const class com::sun::star::uno::Reference<class com::sun::star::accessibility::XAccessible> &,class ScMenuFloatingWindow *,const class rtl::OUString &,unsigned long)
unsigned long nMenuPos
999
sc/inc/address.hxx:334
void ScAddress::Format(class rtl::OStringBuffer &,enum ScRefFlags,const class ScDocument *,const struct ScAddress::Details &) const
enum ScRefFlags nFlags
32768
sc/inc/autoform.hxx:82
void ScAfVersions::Write(class SvStream &,unsigned short)
unsigned short fileVersion
5050
sc/inc/autoform.hxx:163
void ScAutoFormatData::CopyItem(unsigned short,unsigned short,unsigned short)
unsigned short nWhich
150
sc/inc/autoform.hxx:173
_Bool ScAutoFormatData::Save(class SvStream &,unsigned short)
unsigned short fileVersion
5050
sc/inc/cellsuno.hxx:497
void ScCellRangeObj::SetArrayFormula_Impl(const class rtl::OUString &,const enum formula::FormulaGrammar::Grammar)
const enum formula::FormulaGrammar::Grammar eGrammar
16908294
sc/inc/cellvalues.hxx:71
void sc::CellValues::reset(unsigned long)
unsigned long nSize
1048576
sc/inc/chgtrack.hxx:219
void ScChangeAction::ScChangeAction(enum ScChangeActionType,const class ScBigRange &,const unsigned long)
enum ScChangeActionType
8
sc/inc/colcontainer.hxx:34
void ScColContainer::ScColContainer(const unsigned long)
const unsigned long nSize
64
sc/inc/column.hxx:264
void ScColumn::DeleteRanges(const class std::__debug::vector<struct sc::RowSpan, class std::allocator<struct sc::RowSpan> > &,enum InsertDeleteFlags)
enum InsertDeleteFlags nDelFlag
2071
sc/inc/column.hxx:524
unsigned short ScColumn::GetOptimalColWidth(class OutputDevice *,double,double,const class Fraction &,const class Fraction &,_Bool,unsigned short,const class ScMarkData *,const struct ScColWidthParam *) const
unsigned short nOldWidth
1167
sc/inc/column.hxx:611
void ScColumn::BroadcastRows(int,int,enum SfxHintId)
enum SfxHintId nHint
51
sc/inc/compressedarray.hxx:173
void ScBitMaskCompressedArray::AndValue(type-parameter-?-?,const type-parameter-?-? &)
const type-parameter-?-? & rValueToAnd
7
sc/inc/compressedarray.hxx:179
void ScBitMaskCompressedArray::CopyFromAnded(const ScBitMaskCompressedArray<A, D> &,type-parameter-?-?,type-parameter-?-?,const type-parameter-?-? &)
const type-parameter-?-? & rValueToAnd
8
sc/inc/compressedarray.hxx:186
type-parameter-?-? ScBitMaskCompressedArray::GetLastAnyBitAccess(const type-parameter-?-? &) const
const type-parameter-?-? & rBitMask
15
sc/inc/document.hxx:1324
_Bool ScDocument::CompileErrorCells(enum FormulaError)
enum FormulaError nErrCode
525
sc/inc/document.hxx:1659
void ScDocument::UndoToDocument(short,int,short,short,int,short,enum InsertDeleteFlags,_Bool,class ScDocument &)
enum InsertDeleteFlags nFlags
2303
sc/inc/document.hxx:1849
void ScDocument::DeleteSelectionTab(short,enum InsertDeleteFlags,const class ScMarkData &)
enum InsertDeleteFlags nDelFlag
2303
sc/inc/document.hxx:1906
void ScDocument::SetRowFlags(int,int,short,enum CRFlags)
enum CRFlags nNewFlags
8
sc/inc/document.hxx:2235
void ScDocument::BroadcastCells(const class ScRange &,enum SfxHintId,_Bool)
enum SfxHintId nHint
31
sc/inc/dpsave.hxx:317
class ScDPSaveDimension * ScDPSaveData::GetFirstDimension(enum com::sun::star::sheet::DataPilotFieldOrientation)
enum com::sun::star::sheet::DataPilotFieldOrientation eOrientation
4
sc/inc/externalrefmgr.hxx:790
void ScExternalRefManager::purgeStaleSrcDocument(int)
int nTimeOut
30000
sc/inc/formulacell.hxx:375
void ScFormulaCell::AddRecalcMode(enum ScRecalcMode)
enum ScRecalcMode
4
sc/inc/global.hxx:643
void ScGlobal::AddQuotes(class rtl::OUString &,char16_t,_Bool)
char16_t cQuote
34
sc/inc/global.hxx:650
void ScGlobal::EraseQuotes(class rtl::OUString &,char16_t,_Bool)
char16_t cQuote
34
sc/inc/global.hxx:666
const char16_t * ScGlobal::FindUnquoted(const char16_t *,char16_t)
char16_t cChar
46
sc/inc/nameuno.hxx:64
void ScNamedRangeObj::Modify_Impl(const class rtl::OUString *,const class ScTokenArray *,const class rtl::OUString *,const class ScAddress *,const enum ScRangeData::Type *,const enum formula::FormulaGrammar::Grammar)
const enum formula::FormulaGrammar::Grammar eGrammar
16908294
sc/inc/optutil.hxx:44
void ScLinkConfigItem::ScLinkConfigItem(const class rtl::OUString &,enum ConfigItemMode)
enum ConfigItemMode nMode
2
sc/inc/rangeutl.hxx:104
int ScRangeStringConverter::GetTokenCount(const class rtl::OUString &,char16_t)
char16_t cSeparator
32
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)
char16_t cQuote
39
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)
char16_t cSeparator
32
sc/inc/rangeutl.hxx:136
_Bool ScRangeStringConverter::GetRangeListFromString(class ScRangeList &,const class rtl::OUString &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,char16_t)
char16_t cQuote
39
sc/inc/rangeutl.hxx:144
_Bool ScRangeStringConverter::GetAreaFromString(class ScArea &,const class rtl::OUString &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,int &,char16_t)
char16_t cSeparator
32
sc/inc/rangeutl.hxx:153
_Bool ScRangeStringConverter::GetRangeFromString(struct com::sun::star::table::CellRangeAddress &,const class rtl::OUString &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,int &,char16_t)
char16_t cSeparator
32
sc/inc/rangeutl.hxx:178
void ScRangeStringConverter::GetStringFromRangeList(class rtl::OUString &,const class ScRangeList *,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t)
char16_t cSeparator
32
sc/inc/rangeutl.hxx:185
void ScRangeStringConverter::GetStringFromArea(class rtl::OUString &,const class ScArea &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags)
char16_t cSeparator
32
sc/inc/rangeutl.hxx:185
void ScRangeStringConverter::GetStringFromArea(class rtl::OUString &,const class ScArea &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags)
enum ScRefFlags nFormatFlags
32776
sc/inc/rangeutl.hxx:195
void ScRangeStringConverter::GetStringFromAddress(class rtl::OUString &,const struct com::sun::star::table::CellAddress &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool)
char16_t cSeparator
32
sc/inc/rangeutl.hxx:202
void ScRangeStringConverter::GetStringFromRange(class rtl::OUString &,const struct com::sun::star::table::CellRangeAddress &,const class ScDocument *,enum formula::FormulaGrammar::AddressConvention,char16_t,_Bool,enum ScRefFlags)
enum ScRefFlags nFormatFlags
32776
sc/inc/rangeutl.hxx: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)
char16_t cSeparator
32
sc/inc/scmod.hxx:245
void ScModule::RegisterRefController(unsigned short,class std::shared_ptr<class SfxDialogController> &,class weld::Window *)
unsigned short nSlotId
26161
sc/inc/scmod.hxx:246
void ScModule::UnregisterRefController(unsigned short,const class std::shared_ptr<class SfxDialogController> &)
unsigned short nSlotId
26161
sc/inc/scmod.hxx:247
class std::shared_ptr<class SfxDialogController> ScModule::Find1RefWindow(unsigned short,const class weld::Window *)
unsigned short nSlotId
26161
sc/inc/simpleformulacalc.hxx:39
void ScSimpleFormulaCalculator::ScSimpleFormulaCalculator(class ScDocument *,const class ScAddress &,const class rtl::OUString &,_Bool,enum formula::FormulaGrammar::Grammar)
enum formula::FormulaGrammar::Grammar eGram
65539
sc/inc/stlpool.hxx:54
class ScStyleSheet * ScStyleSheetPool::FindCaseIns(const class rtl::OUString &,enum SfxStyleFamily)
enum SfxStyleFamily eFam
2
sc/inc/stringutil.hxx:151
_Bool ScStringUtil::parseSimpleNumber(const char *,unsigned long,char,char,double &)
char dsep
46
sc/inc/stringutil.hxx:151
_Bool ScStringUtil::parseSimpleNumber(const char *,unsigned long,char,char,double &)
char gsep
44
sc/inc/table.hxx:414
void ScTable::SetFormula(short,int,const class ScTokenArray &,enum formula::FormulaGrammar::Grammar)
enum formula::FormulaGrammar::Grammar eGram
65539
sc/inc/table.hxx:677
_Bool ScTable::HasAttribSelection(const class ScMarkData &,enum HasAttrFlags) const
enum HasAttrFlags nMask
8
sc/inc/tokenarray.hxx:262
void ScTokenArray::WrapReference(const class ScAddress &,short,int)
short nMaxCol
255
sc/inc/tokenarray.hxx:262
void ScTokenArray::WrapReference(const class ScAddress &,short,int)
int nMaxRow
65535
sc/inc/tokenarray.hxx:263
_Bool ScTokenArray::NeedsWrapReference(const class ScAddress &,short,int) const
short nMaxCol
255
sc/inc/tokenarray.hxx:263
_Bool ScTokenArray::NeedsWrapReference(const class ScAddress &,short,int) const
int nMaxRow
65535
sc/inc/zforauto.hxx:38
void ScNumFormatAbbrev::Save(class SvStream &,unsigned short) const
unsigned short eByteStrSet
76
sc/qa/extras/new_cond_format.cxx:375
void testColorScaleEntries(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,int,int,const class rtl::OUString &,class Color,int,const class rtl::OUString &,class Color,int,const class rtl::OUString &,class Color)
int nMediumType
2
sc/qa/extras/scpdfexport.cxx:51
void ScPDFExportTest::setFont(class ScFieldEditEngine &,int,int,const class rtl::OUString &)
int nEnd
4
sc/qa/unit/parallelism.cxx:407
void lcl_setupCommon(class ScDocument *,unsigned long,unsigned long)
unsigned long nConstCellValue
20
sc/qa/unit/parallelism.cxx:407
void lcl_setupCommon(class ScDocument *,unsigned long,unsigned long)
unsigned long nNumRows
1048
sc/qa/unit/parallelism.cxx:537
void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long)
unsigned long nOffset
100
sc/qa/unit/parallelism.cxx:537
void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long)
unsigned long nNumRowsInBlock
200
sc/qa/unit/parallelism.cxx:537
void lcl_setupMultipleFGColumn(class ScDocument *,unsigned long,unsigned long,unsigned long)
unsigned long nNumFG
50
sc/qa/unit/subsequent_export-test.cxx:1502
_Bool ::isOverline(const struct editeng::Section &,enum FontLineStyle)
enum FontLineStyle eStyle
2
sc/qa/unit/subsequent_export-test.cxx:1509
_Bool ::isUnderline(const struct editeng::Section &,enum FontLineStyle)
enum FontLineStyle eStyle
2
sc/qa/unit/ucalc.cxx:1154
_Bool checkRelativeRefToken(class ScDocument &,const class ScAddress &,short,int)
short nRelCol
-1
sc/qa/unit/ucalc.hxx:32
void FormulaGrammarSwitch::FormulaGrammarSwitch(class ScDocument *,enum formula::FormulaGrammar::Grammar)
enum formula::FormulaGrammar::Grammar eGrammar
17104900
sc/qa/unit/ucalc.hxx:57
void Test::pasteOneCellFromClip(class ScDocument *,const class ScRange &,class ScDocument *,enum InsertDeleteFlags)
enum InsertDeleteFlags eFlags
2303
sc/qa/unit/ucalc_formula.cxx:8369
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nEnd2
319
sc/qa/unit/ucalc_formula.cxx:8369
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nStart2
169
sc/qa/unit/ucalc_formula.cxx:8369
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nTotalRows
330
sc/qa/unit/ucalc_formula.cxx:8369
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nEnd1
159
sc/qa/unit/ucalc_formula.cxx:8369
void (anonymous namespace)::ColumnTest::ColumnTest(class ScDocument *,int,int,int,int,int)
int nStart1
9
sc/source/core/data/documen8.cxx:512
void (anonymous namespace)::IdleCalcTextWidthScope::incCol(short)
short nInc
-1
sc/source/core/data/dpoutput.cxx:315
void lcl_SetFrame(class ScDocument *,short,short,int,short,int,unsigned short)
unsigned short nWidth
20
sc/source/core/tool/compiler.cxx:1268
void (anonymous namespace)::ConventionXL_A1::ConventionXL_A1(enum formula::FormulaGrammar::AddressConvention)
enum formula::FormulaGrammar::AddressConvention eConv
4
sc/source/core/tool/compiler.cxx:2008
_Bool lcl_isUnicodeIgnoreAscii(const char16_t *,const char *,unsigned long)
unsigned long n
4
sc/source/core/tool/editutil.cxx:87
class rtl::OUString lcl_GetDelimitedString(const class EditTextObject &,const char)
const char c
10
sc/source/core/tool/scmatrix.cxx:361
unsigned long GetElementsMax(unsigned long)
unsigned long nMemory
6442450944
sc/source/filter/excel/xechart.cxx:134
void lclSaveRecord(class XclExpStream &,const class rtl::Reference<class XclExpRecordBase> &,unsigned short,type-parameter-?-?)
unsigned short nRecId
4129
sc/source/filter/excel/xechart.cxx:144
void lclSaveRecord(class XclExpStream &,type-parameter-?-? *,unsigned short,type-parameter-?-?)
unsigned short nRecId
4124
sc/source/filter/excel/xechart.cxx:561
class rtl::Reference<class XclExpChLineFormat> lclCreateLineFormat(const class XclExpChRoot &,const class ScfPropertySet &,enum XclChObjectType)
enum XclChObjectType eObjType
9
sc/source/filter/excel/xelink.cxx:296
void (anonymous namespace)::XclExpSupbook::XclExpSupbook(const class XclExpRoot &,const class rtl::OUString &,enum XclSupbookType)
enum XclSupbookType
5
sc/source/filter/excel/xepage.cxx:343
void (anonymous namespace)::XclExpXmlStartHeaderFooterElementRecord::XclExpXmlStartHeaderFooterElementRecord(const int)
const int nElement
2613
sc/source/filter/excel/xepivotxml.cxx:713
void WriteGrabBagItemToStream(class XclExpXmlStream &,int,const class com::sun::star::uno::Any &)
int tokenId
4009
sc/source/filter/inc/addressconverter.hxx:489
void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
short nMaxXlsTab
32767
sc/source/filter/inc/addressconverter.hxx:489
void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
int nMaxXlsRow
1048575
sc/source/filter/inc/addressconverter.hxx:489
void oox::xls::AddressConverter::initializeMaxPos(short,int,int)
int nMaxXlsCol
16383
sc/source/filter/inc/formulabase.hxx:278
void oox::xls::ApiTokenVector::reserve(unsigned long)
unsigned long n
8192
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
char16_t cStringSep
44
sc/source/filter/inc/ftools.hxx:46
type-parameter-?-? llimit_cast(type-parameter-?-?,type-parameter-?-?)
type-parameter-?-? nMin
8
sc/source/filter/inc/pivottablebuffer.hxx:119
void oox::xls::PivotTableField::PivotTableField(class oox::xls::PivotTable &,int)
int nFieldIndex
-2
sc/source/filter/inc/tokstack.hxx:256
_Bool TokenPool::IsSingleOp(const struct TokenId &,const enum OpCode) const
const enum OpCode eId
13
sc/source/filter/inc/unitconverter.hxx:72
double oox::xls::UnitConverter::scaleValue(double,enum oox::xls::Unit,enum oox::xls::Unit) const
enum oox::xls::Unit eToUnit
3
sc/source/filter/inc/unitconverter.hxx:77
double oox::xls::UnitConverter::scaleFromMm100(int,enum oox::xls::Unit) const
enum oox::xls::Unit eUnit
6
sc/source/filter/inc/xechart.hxx:197
void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
unsigned long nRecSize
4
sc/source/filter/inc/xechart.hxx:197
void XclExpChFutureRecordBase::XclExpChFutureRecordBase(const class XclExpChRoot &,enum XclFutureRecType,unsigned short,unsigned long)
unsigned short nRecId
2155
sc/source/filter/inc/xeescher.hxx:152
void XclExpImgData::XclExpImgData(const class Graphic &,unsigned short)
unsigned short nRecId
233
sc/source/filter/inc/xeformula.hxx:64
class std::shared_ptr<class XclTokenArray> XclExpFormulaCompiler::CreateFormula(enum XclFormulaType,const class ScAddress &)
enum XclFormulaType eType
7
sc/source/filter/inc/xeformula.hxx:70
class std::shared_ptr<class XclTokenArray> XclExpFormulaCompiler::CreateFormula(enum XclFormulaType,const class ScRangeList &)
enum XclFormulaType eType
5
sc/source/filter/inc/xehelper.hxx:243
class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,char16_t,enum XclStrFlags,unsigned short)
unsigned short nMaxLen
32767
sc/source/filter/inc/xehelper.hxx:243
class std::shared_ptr<class XclExpString> XclExpStringHelper::CreateString(const class XclExpRoot &,char16_t,enum XclStrFlags,unsigned short)
enum XclStrFlags nFlags
2
sc/source/filter/inc/xelink.hxx:174
unsigned short XclExpLinkManager::FindExtSheet(char16_t)
char16_t cCode
4
sc/source/filter/inc/xepivot.hxx:235
void XclExpPTItem::XclExpPTItem(unsigned short,unsigned short)
unsigned short nCacheIdx
65535
sc/source/filter/inc/xepivot.hxx:337
unsigned short XclExpPivotTable::GetDataFieldIndex(const class rtl::OUString &,unsigned short) const
unsigned short nDefaultIdx
65535
sc/source/filter/inc/xerecord.hxx:399
void XclExpSubStream::XclExpSubStream(unsigned short)
unsigned short nSubStrmType
32
sc/source/filter/inc/xestream.hxx:299
void XclExpXmlStream::WriteAttributes(int,type-parameter-?-? &&,type-parameter-?-? &&...)
###26
4071
sc/source/filter/inc/xestring.hxx:51
void XclExpString::XclExpString(enum XclStrFlags,unsigned short)
unsigned short nMaxLen
32767
sc/source/filter/inc/xestyle.hxx:590
unsigned int XclExpXFBuffer::InsertWithFont(const class ScPatternAttr *,short,unsigned short,_Bool)
short nScript
4
sc/source/filter/inc/xetable.hxx:80
void XclExpRangeFmlaBase::XclExpRangeFmlaBase(unsigned short,unsigned int,const class ScRange &)
unsigned short nRecId
545
sc/source/filter/inc/xiescher.hxx:1198
unsigned int XclImpDffPropSet::GetPropertyValue(unsigned short) const
unsigned short nPropId
384
sc/source/filter/inc/xiformula.hxx:41
void XclImpFormulaCompiler::CreateRangeList(class ScRangeList &,enum XclFormulaType,const class XclTokenArray &,class XclImpStream &)
enum XclFormulaType eType
7
sc/source/filter/inc/xiformula.hxx:48
class std::unique_ptr<class ScTokenArray, struct std::default_delete<class ScTokenArray> > XclImpFormulaCompiler::CreateFormula(enum XclFormulaType,const class XclTokenArray &)
enum XclFormulaType eType
6
sc/source/filter/inc/xipivot.hxx:224
void XclImpPTField::XclImpPTField(const class XclImpPivotTable &,unsigned short)
unsigned short nCacheIdx
65534
sc/source/filter/inc/xlformula.hxx:518
_Bool XclTokenArrayHelper::GetStringList(class rtl::OUString &,const class ScTokenArray &,char16_t)
char16_t cSep
10
sc/source/filter/inc/xlformula.hxx:526
void XclTokenArrayHelper::ConvertStringToList(class ScTokenArray &,class svl::SharedStringPool &,char16_t)
char16_t cStringSep
10
sc/source/filter/xcl97/XclExpChangeTrack.cxx:1375
void (anonymous namespace)::EndXmlElement::EndXmlElement(int)
int nElement
2621
sc/source/filter/xml/xmlfonte.cxx:41
void (anonymous namespace)::ScXMLFontAutoStylePool_Impl::AddFontItems(const unsigned short *,unsigned char,const class SfxItemPool *,const _Bool)
unsigned char nIdCount
3
sc/source/filter/xml/xmlstyli.cxx:269
void (anonymous namespace)::XMLTableCellPropsContext::XMLTableCellPropsContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,unsigned int,class std::__debug::vector<struct XMLPropertyState, class std::allocator<struct XMLPropertyState> > &,const class rtl::Reference<class SvXMLImportPropertyMapper> &)
unsigned int nFamily
196608
sc/source/ui/Accessibility/AccessibleCsvControl.cxx:218
int lcl_ExpandSequence(class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &,int)
int nExp
7
sc/source/ui/dbgui/pvfundlg.cxx:72
_Bool lclFillListBox(class weld::ComboBox &,const class std::__debug::vector<struct ScDPLabelData::Member, class std::allocator<struct ScDPLabelData::Member> > &,int)
int nEmptyPos
2
sc/source/ui/inc/AccessibleCell.hxx:157
void ScAccessibleCell::AddRelation(const class ScAddress &,const unsigned short,class utl::AccessibleRelationSetHelper *)
const unsigned short aRelationType
4
sc/source/ui/inc/AccessibleEditObject.hxx:68
void ScAccessibleEditObject::ScAccessibleEditObject(enum ScAccessibleEditObject::EditObjectType)
enum ScAccessibleEditObject::EditObjectType eObjectType
2
sc/source/ui/inc/AccessibleSpreadsheet.hxx:85
_Bool ScAccessibleSpreadsheet::CalcScRangeListDifferenceMax(class ScRangeList *,class ScRangeList *,int,class std::__debug::vector<class ScMyAddress, class std::allocator<class ScMyAddress> > &)
int nMax
10
sc/source/ui/inc/content.hxx:163
void ScContentTree::SelectEntryByName(const enum ScContentId,const class rtl::OUString &)
const enum ScContentId nRoot
8
sc/source/ui/inc/datatransformation.hxx:83
void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t)
short nCol
2
sc/source/ui/inc/datatransformation.hxx:83
void sc::SplitColumnTransformation::SplitColumnTransformation(short,char16_t)
char16_t cSeparator
44
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)
int nPrecision
4
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)
const enum formula::FormulaGrammar::Grammar eGrammar
16908294
sc/source/ui/inc/imoptdlg.hxx:32
void ScImportOptions::ScImportOptions(char16_t,char16_t,unsigned short)
char16_t nTextSep
34
sc/source/ui/inc/pvfundlg.hxx:45
int ScDPFunctionListBox::get_height_rows(int) const
int nRows
8
sc/source/ui/inc/pvfundlg.hxx:46
void ScDPFunctionListBox::set_size_request(int,int)
int nWidth
-1
sc/source/ui/inc/select.hxx:34
void ScViewSelectionEngine::ScViewSelectionEngine(class vcl::Window *,class ScTabView *,enum ScSplitPos)
enum ScSplitPos eSplitPos
2
sc/source/ui/inc/spellparam.hxx:47
void ScConversionParam::ScConversionParam(enum ScConversionType,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,const class vcl::Font &,int,_Bool)
enum ScConversionType eConvType
2
sc/source/ui/inc/TableFillingAndNavigationTools.hxx:44
void FormulaTemplate::applyRangeList(const class rtl::OUString &,const class ScRangeList &,char16_t)
char16_t cDelimiter
59
sc/source/ui/inc/tabview.hxx:421
void ScTabView::MoveCursorPage(short,int,enum ScFollowMode,_Bool,_Bool)
enum ScFollowMode eMode
2
sc/source/ui/inc/tabview.hxx:423
void ScTabView::MoveCursorArea(short,int,enum ScFollowMode,_Bool,_Bool)
enum ScFollowMode eMode
3
sc/source/ui/inc/uiitems.hxx:55
void ScInputStatusItem::ScInputStatusItem(unsigned short,const class ScAddress &,const class ScAddress &,const class ScAddress &,const class rtl::OUString &,const class EditTextObject *)
unsigned short nWhich
26100
sc/source/ui/inc/uiitems.hxx:120
void ScIndexHint::ScIndexHint(enum SfxHintId,unsigned short)
enum SfxHintId nNewId
42
sc/source/ui/inc/uiitems.hxx:131
void ScSortItem::ScSortItem(unsigned short,class ScViewData *,const struct ScSortParam *)
unsigned short nWhich
1102
sc/source/ui/inc/uiitems.hxx:134
void ScSortItem::ScSortItem(unsigned short,const struct ScSortParam *)
unsigned short nWhich
1102
sc/source/ui/inc/uiitems.hxx:152
void ScQueryItem::ScQueryItem(unsigned short,class ScViewData *,const struct ScQueryParam *)
unsigned short nWhich
1103
sc/source/ui/inc/uiitems.hxx:179
void ScSubTotalItem::ScSubTotalItem(unsigned short,class ScViewData *,const struct ScSubTotalParam *)
unsigned short nWhich
1104
sc/source/ui/inc/uiitems.hxx:253
void ScSolveItem::ScSolveItem(unsigned short,const struct ScSolveParam *)
unsigned short nWhich
1107
sc/source/ui/inc/uiitems.hxx:268
void ScTabOpItem::ScTabOpItem(unsigned short,const struct ScTabOpParam *)
unsigned short nWhich
26345
sc/source/ui/inc/viewdata.hxx:185
void ScBoundsProvider::EnlargeBy(long)
long nOffset
2
sc/source/ui/inc/viewfunc.hxx:201
void ScViewFunc::Protect(short,const class rtl::OUString &)
short nTab
32767
sc/source/ui/pagedlg/tptable.cxx:64
_Bool lcl_PutScaleItem3(unsigned short,class SfxItemSet &,const class SfxItemSet &,const class weld::ComboBox &,unsigned short,const class weld::SpinButton &,unsigned short)
unsigned short nLBEntry
2
sc/source/ui/unoobj/cellsuno.cxx:1235
_Bool lcl_PutFormulaArray(class ScDocShell &,const class ScRange &,const class com::sun::star::uno::Sequence<class com::sun::star::uno::Sequence<class rtl::OUString> > &,const enum formula::FormulaGrammar::Grammar)
const enum formula::FormulaGrammar::Grammar eGrammar
16908294
sc/source/ui/vba/vbarange.hxx:159
class com::sun::star::uno::Reference<class ooo::vba::excel::XRange> ScVbaRange::getRangeObjectForName(const class com::sun::star::uno::Reference<class com::sun::star::uno::XComponentContext> &,const class rtl::OUString &,class ScDocShell *,enum formula::FormulaGrammar::AddressConvention)
enum formula::FormulaGrammar::AddressConvention eConv
3
sc/source/ui/view/printfun.cxx:78
unsigned short lcl_GetUShort(const class SfxItemSet *,unsigned short)
unsigned short nWhich
176
sc/source/ui/view/viewfun3.cxx:832
_Bool lcl_SelHasAttrib(const class ScDocument *,short,int,short,int,const class ScMarkData &,enum HasAttrFlags)
enum HasAttrFlags nMask
4
scaddins/source/analysis/analysishelper.hxx:96
double ConvertToDec(const class rtl::OUString &,unsigned short,unsigned short)
unsigned short nCharLim
10
scaddins/source/analysis/analysishelper.hxx:99
class rtl::OUString ConvertFromDec(double,double,double,unsigned short,int,int,_Bool)
int nMaxPlaces
10
scaddins/source/analysis/analysishelper.hxx:105
class rtl::OUString GetString(double,_Bool,unsigned short)
unsigned short nMaxNumOfDigits
15
scaddins/source/analysis/analysishelper.hxx:538
void sca::analysis::ConvertDataLinear::ConvertDataLinear(const char *,double,double,enum sca::analysis::ConvertDataClass,_Bool)
enum sca::analysis::ConvertDataClass eClass
8
sccomp/source/solver/DifferentialEvolution.hxx:49
void DifferentialEvolutionAlgorithm::DifferentialEvolutionAlgorithm<DataProvider>(type-parameter-?-? &,unsigned long)
unsigned long nPopulationSize
50
sccomp/source/solver/ParticelSwarmOptimization.hxx:68
void ParticleSwarmOptimizationAlgorithm::ParticleSwarmOptimizationAlgorithm<DataProvider>(type-parameter-?-? &,unsigned long)
unsigned long nNumOfParticles
100
sd/inc/Annotation.hxx:52
void LOKCommentNotify(enum sd::CommentNotificationType,const class SfxViewShell *,const class com::sun::star::uno::Reference<class com::sun::star::office::XAnnotation> &)
enum sd::CommentNotificationType nType
2
sd/inc/CustomAnimationEffect.hxx:74
void sd::CustomAnimationEffect::setPresetClassAndId(short,const class rtl::OUString &)
short nPresetClass
4
sd/inc/sdpage.hxx:349
class SdStyleSheet * SdPage::getPresentationStyle(unsigned int) const
unsigned int nHelpId
59865
sd/qa/unit/tiledrendering/tiledrendering.cxx:260
class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > lcl_convertSeparated(const class rtl::OUString &,char16_t)
char16_t nSeparator
59
sd/source/core/sdpage.cxx:1210
enum PresObjKind operator|(enum PresObjKind,int)
int x
32768
sd/source/filter/eppt/pptexanimations.hxx:84
void ppt::AnimationExporter::exportAnimPropertyByte(class SvStream &,const unsigned short,const unsigned char)
const unsigned short nPropertyId
13
sd/source/ui/animations/CustomAnimationList.hxx:111
int sd::CustomAnimationList::get_height_rows(int)
int nRows
8
sd/source/ui/animations/STLPropertySet.hxx:62
void sd::STLPropertySet::setPropertyState(int,enum sd::STLPropertyState)
enum sd::STLPropertyState nState
3
sd/source/ui/inc/animobjs.hxx:150
void sd::AnimationControllerItem::AnimationControllerItem(unsigned short,class sd::AnimationWindow *,class SfxBindings *)
unsigned short
27112
sd/source/ui/inc/assclass.hxx:47
void Assistent::Assistent(int)
int nNoOfPage
6
sd/source/ui/inc/assclass.hxx:49
_Bool Assistent::IsEnabled(int) const
int nPage
4
sd/source/ui/inc/assclass.hxx:50
void Assistent::EnablePage(int)
int nPage
4
sd/source/ui/inc/assclass.hxx:51
void Assistent::DisablePage(int)
int nPage
4
sd/source/ui/inc/navigatr.hxx:156
void SdNavigatorControllerItem::SdNavigatorControllerItem(unsigned short,class SdNavigatorWin *,class SfxBindings *,const class std::function<void (void)> &)
unsigned short
27288
sd/source/ui/inc/navigatr.hxx:174
void SdPageNameControllerItem::SdPageNameControllerItem(unsigned short,class SdNavigatorWin *,class SfxBindings *)
unsigned short
27287
sd/source/ui/inc/sdtreelb.hxx:188
int SdPageObjsTLV::get_height_rows(int) const
int nRows
12
sd/source/ui/inc/smarttag.hxx:160
void sd::SmartHdl::SmartHdl(const class rtl::Reference<class sd::SmartTag> &,const class Point &,enum SdrHdlKind)
enum SdrHdlKind eNewKind
23
sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx:51
class std::shared_ptr<class sd::tools::TimerBasedTaskExecution> sd::tools::TimerBasedTaskExecution::Create(const class std::shared_ptr<class sd::tools::AsynchronousTask> &,unsigned int,unsigned int)
unsigned int nMillisecondsBetweenSteps
5
sd/source/ui/inc/tools/TimerBasedTaskExecution.hxx:51
class std::shared_ptr<class sd::tools::TimerBasedTaskExecution> sd::tools::TimerBasedTaskExecution::Create(const class std::shared_ptr<class sd::tools::AsynchronousTask> &,unsigned int,unsigned int)
unsigned int nMaxTimePerStep
50
sd/source/ui/inc/ViewShellManager.hxx:160
class SfxShell * sd::ViewShellManager::GetShell(enum ToolbarId) const
enum ToolbarId nId
23016
sd/source/ui/remotecontrol/AvahiNetworkService.hxx:20
void sd::AvahiNetworkService::AvahiNetworkService(const class std::__cxx11::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,unsigned int)
unsigned int aport
1599
sd/source/ui/remotecontrol/ImagePreparer.hxx:37
class com::sun::star::uno::Sequence<signed char> sd::ImagePreparer::preparePreview(unsigned int,unsigned int,unsigned int,unsigned long &)
unsigned int aWidth
320
sd/source/ui/remotecontrol/ImagePreparer.hxx:37
class com::sun::star::uno::Sequence<signed char> sd::ImagePreparer::preparePreview(unsigned int,unsigned int,unsigned int,unsigned long &)
unsigned int aHeight
240
sd/source/ui/sidebar/LayoutMenu.hxx:153
class SfxRequest sd::sidebar::LayoutMenu::CreateRequest(unsigned short,enum AutoLayout)
unsigned short nSlotId
27014
sd/source/ui/slidesorter/controller/SlsSelectionFunction.cxx:108
void sd::slidesorter::controller::SelectionFunction::EventDescriptor::EventDescriptor(unsigned int,const struct AcceptDropEvent &,const signed char,const class sd::slidesorter::SlideSorter &)
unsigned int nEventType
2048
sd/source/ui/slidesorter/inc/view/SlsPageObjectLayouter.hxx:136
class tools::Rectangle sd::slidesorter::view::PageObjectLayouter::CalculatePreviewBoundingBox(class Size &,const class Size &,const int,const int)
const int nFocusIndicatorWidth
3
sd/source/ui/slidesorter/view/SlsLayeredDevice.hxx:62
void sd::slidesorter::view::LayeredDevice::RemovePainter(const class std::shared_ptr<class sd::slidesorter::view::ILayerPainter> &,const int)
const int nLayer
2
sd/source/ui/slidesorter/view/SlsLayouter.cxx:145
int sd::slidesorter::view::Layouter::Implementation::ResolvePositionInGap(int,enum sd::slidesorter::view::Layouter::Implementation::GapMembership,int,int)
int nGap
4
sdext/source/minimizer/configurationaccess.hxx:90
short ConfigurationAccess::GetConfigProperty(const enum PPPOptimizerTokenEnum,const short) const
const enum PPPOptimizerTokenEnum
38
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)
int nYPos
6
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)
int nWidth
199
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)
int nXPos
35
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)
int nHeight
24
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)
int nPosX
5
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)
int nPosY
5
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)
int nHeight
25
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)
int nWidth
25
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)
int nXPos
35
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)
int nYPos
42
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)
int nWidth
199
sdext/source/minimizer/informationdialog.hxx:39
class rtl::OUString InsertButton(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,const class rtl::OUString &)
int nXPos
95
sdext/source/minimizer/informationdialog.hxx:39
class rtl::OUString InsertButton(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,const class rtl::OUString &)
int nWidth
50
sdext/source/minimizer/informationdialog.hxx:39
class rtl::OUString InsertButton(class UnoDialog &,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::awt::XActionListener> &,int,int,int,short,const class rtl::OUString &)
short nTabIndex
2
sdext/source/minimizer/optimizerdialog.hxx:108
void OptimizerDialog::EnablePage(short)
short nStep
4
sdext/source/minimizer/optimizerdialog.hxx:109
void OptimizerDialog::DisablePage(short)
short nStep
4
sdext/source/minimizer/optimizerdialogcontrols.cxx:163
class rtl::OUString InsertCheckBox(class OptimizerDialog &,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)
int nXPos
97
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)
int nXPos
197
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 fEffectiveMax
100
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)
int nYPos
46
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)
int nXPos
197
sfx2/inc/SfxRedactionHelper.hxx:62
class rtl::OUString SfxRedactionHelper::getStringParam(const class SfxRequest &,unsigned short)
unsigned short nParamId
6734
sfx2/source/dialog/filedlghelper.cxx:1923
void SetToken(class rtl::OUString &,int,char16_t,const class rtl::OUString &)
char16_t cTok
32
sfx2/source/dialog/mgetempl.hxx:83
_Bool SfxManageStyleSheetPage::Execute_Impl(unsigned short,const class rtl::OUString &,unsigned short)
unsigned short nId
5550
sfx2/source/doc/oleprops.cxx:100
void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &)
int nPropType
30
sfx2/source/doc/oleprops.cxx:103
void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,const class SfxOleTextEncoding &,const class rtl::OUString &)
int nPropType
30
sfx2/source/doc/oleprops.cxx:106
void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short)
unsigned short eTextEnc
65535
sfx2/source/doc/oleprops.cxx:106
void (anonymous namespace)::SfxOleStringPropertyBase::SfxOleStringPropertyBase(int,int,unsigned short)
int nPropType
31
sfx2/source/doc/oleprops.hxx:304
void SfxOleSection::SetThumbnailValue(int,const class com::sun::star::uno::Sequence<signed char> &)
int nPropId
17
sfx2/source/doc/syspath.hxx:27
_Bool GetUserTemplateLocation(char16_t *,int)
int nSize
16000
slideshow/source/engine/eventmultiplexer.cxx:107
void slideshow::internal::ListenerOperations::pruneListeners(type-parameter-?-? &,unsigned long)
unsigned long nSizeThreshold
16
slideshow/source/engine/opengl/Operation.hxx:262
class std::shared_ptr<class RotateAndScaleDepthByHeight> makeRotateAndScaleDepthByHeight(const struct glm::vec<3, float, glm::packed_highp> &,const struct glm::vec<3, float, glm::packed_highp> &,double,_Bool,_Bool,double,double)
double Angle
-120
slideshow/source/engine/opengl/TransitionImpl.cxx:1830
class std::shared_ptr<class OGLTransitionImpl> makeVortexTransition(const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const struct TransitionSettings &,int,int)
int NX
96
slideshow/source/engine/opengl/TransitionImpl.cxx:1830
class std::shared_ptr<class OGLTransitionImpl> makeVortexTransition(const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const class std::__debug::vector<class Primitive, class std::allocator<class Primitive> > &,const struct TransitionSettings &,int,int)
int NY
96
slideshow/source/engine/opengl/TransitionImpl.cxx:1944
void createHexagon(class Primitive &,const int,const int,const int,const int)
const int NY
106
slideshow/source/engine/opengl/TransitionImpl.cxx:1944
void createHexagon(class Primitive &,const int,const int,const int,const int)
const int NX
80
slideshow/source/engine/opengl/TransitionImpl.hxx:254
class std::shared_ptr<class OGLTransitionImpl> makeRevolvingCircles(unsigned short,unsigned short)
unsigned short nCircles
8
slideshow/source/engine/opengl/TransitionImpl.hxx:254
class std::shared_ptr<class OGLTransitionImpl> makeRevolvingCircles(unsigned short,unsigned short)
unsigned short nPointsOnCircles
128
slideshow/source/engine/opengl/TransitionImpl.hxx:255
class std::shared_ptr<class OGLTransitionImpl> makeHelix(unsigned short)
unsigned short nRows
20
slideshow/source/inc/listenercontainer.hxx:104
void slideshow::internal::ListenerOperations::pruneListeners(type-parameter-?-? &,unsigned long)
unsigned long
16
solenv/bin/concat-deps.c:443
struct hash * hash_create(unsigned int)
unsigned int size
4096
sot/source/sdstor/stgdir.hxx:60
void StgDirEntry::StgDirEntry(const void *,unsigned int,unsigned long,_Bool *)
unsigned int nBufferLen
128
sot/source/sdstor/stgstrms.hxx:80
_Bool StgStrm::Copy(int,int)
int nFrom
-1
sot/source/sdstor/stgstrms.hxx:141
void StgSmallStrm::StgSmallStrm(class StgIo &,int)
int nBgn
-2
starmath/inc/node.hxx:441
void SmSpecialNode::SmSpecialNode(enum SmNodeType,const struct SmToken &,unsigned short)
unsigned short _nFontDesc
7
starmath/inc/node.hxx:618
void SmLineNode::SmLineNode(enum SmNodeType,const struct SmToken &)
enum SmNodeType eNodeType
21
starmath/inc/rect.hxx:173
void SmRect::ExtendBy(const class SmRect &,enum RectCopyMBL,long)
enum RectCopyMBL eCopyMode
2
starmath/inc/view.hxx:137
void SmGraphicController::SmGraphicController(class SmGraphicWindow &,unsigned short,class SfxBindings &)
unsigned short
30357
starmath/inc/view.hxx:148
void SmEditController::SmEditController(class SmEditWindow &,unsigned short,class SfxBindings &)
unsigned short
30356
store/source/storbase.hxx:260
void store::PageData::location(unsigned int)
unsigned int nAddr
-1
store/source/stordir.cxx:46
unsigned long convertTextToUnicode(void *,const char *,unsigned long,char16_t *,unsigned long)
unsigned long nDstLength
255
svl/source/items/itemset.cxx:1552
unsigned short * AddRanges_Impl(unsigned short *,long,unsigned short)
unsigned short nIncr
10
svl/source/numbers/zforfind.hxx:391
_Bool ImpSvNumberInputScan::IsDatePatternNumberOfType(unsigned short,char16_t)
char16_t cType
89
svl/source/numbers/zforscan.hxx:283
_Bool ImpSvNumberformatScan::InsertSymbol(unsigned short &,enum svt::NfSymbolType,const class rtl::OUString &)
enum svt::NfSymbolType eType
-7
svtools/inc/table/tablecontrol.hxx:126
void svt::table::TableControl::commitCellEventIfAccessibleAlive(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short i_eventID
4
svtools/inc/table/tablecontrolinterface.hxx:221
void svt::table::ITableControl::showTracking(const class tools::Rectangle &,const enum ShowTrackFlags)
const enum ShowTrackFlags i_flags
4099
svtools/source/dialogs/ServerDetailsControls.hxx:73
void HostDetailsContainer::HostDetailsContainer(class PlaceEditDialog *,unsigned short,const class rtl::OUString &)
unsigned short nPort
80
svtools/source/misc/sampletext.cxx:605
class rtl::OUString makeMinimalTextForScript(enum UScriptCode)
enum UScriptCode eScript
19
svtools/source/svhtml/htmlout.cxx:394
unsigned long lcl_FlushContext(struct HTMLOutContext &,char *,unsigned int)
unsigned int nFlags
6161
svtools/source/svrtf/rtfout.cxx:29
class SvStream & Out_Hex(class SvStream &,unsigned long,unsigned char)
unsigned char nLen
2
svtools/source/table/tablecontrol_impl.hxx:241
void svt::table::TableControl_Impl::commitAccessibleEvent(const short)
const short i_eventID
9
svtools/source/uno/unoiface.cxx:38
void lcl_setWinBits(class vcl::Window *,long,_Bool)
long _nBits
68719476736
svx/inc/AccessibleTableShape.hxx:121
_Bool accessibility::AccessibleTableShape::ResetStateDirectly(short)
short aState
11
svx/inc/sxmoitm.hxx:29
void SdrMeasureOverhangItem::SdrMeasureOverhangItem(long)
long nVal
600
svx/inc/sxmtaitm.hxx:41
void SdrMeasureTextAutoAngleViewItem::SdrMeasureTextAutoAngleViewItem(long)
long nVal
31500
svx/inc/xpolyimp.hxx:41
void ImpXPolygon::ImpXPolygon(unsigned short,unsigned short)
unsigned short nResize
16
svx/source/dialog/fntctrl.cxx:494
void SetPrevFontEscapement(class SvxFont &,unsigned char,unsigned char,short)
unsigned char nProp
100
svx/source/inc/AccessibleFrameSelector.hxx:111
void svx::a11y::AccFrameSelectorChild::NotifyAccessibleEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short _nEventId
4
svx/source/inc/charmapacc.hxx:209
void svx::SvxShowCharSetItemAcc::fireEvent(const short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
const short _nEventId
4
svx/source/inc/fmcontrolbordermanager.hxx:70
void svxform::UnderlineDescriptor::UnderlineDescriptor(short,class Color)
short _nUnderlineType
10
svx/source/inc/fmexch.hxx:105
void svxform::OLocalExchangeHelper::startDrag(signed char)
signed char nDragSourceActions
3
svx/source/inc/fmshimp.hxx:462
void FmXFormShell::UpdateSlot_Lock(short)
short nId
10636
svx/source/inc/GraphCtlAccessibleContext.hxx:157
void SvxGraphCtrlAccessibleContext::CommitChange(short,const class com::sun::star::uno::Any &,const class com::sun::star::uno::Any &)
short aEventId
7
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:68
void textconversiondlgs::DictionaryList::set_size_request(int,int)
int nWidth
-1
svx/source/unodialogs/textconversiondlgs/chinese_dictionarydialog.hxx:78
int textconversiondlgs::DictionaryList::get_height_rows(int) const
int nRows
8
sw/inc/authfld.hxx:126
void SwAuthorityFieldType::SetSortKeys(unsigned short,const struct SwTOXSortKey *)
unsigned short nKeyCount
3
sw/inc/crsrsh.hxx:824
void SwCursorShell::FireSectionChangeEvent(unsigned short,unsigned short)
unsigned short nOldSection
2
sw/inc/crsrsh.hxx:825
void SwCursorShell::FireColumnChangeEvent(unsigned short,unsigned short)
unsigned short nOldColumn
2
sw/inc/docary.hxx:295
_Bool SwExtraRedlineTable::DeleteAllTableRedlines(class SwDoc *,const class SwTable &,_Bool,enum RedlineType)
enum RedlineType nRedlineTypeToDelete
65535
sw/inc/docary.hxx:296
_Bool SwExtraRedlineTable::DeleteTableRowRedline(class SwDoc *,const class SwTableLine &,_Bool,enum RedlineType)
enum RedlineType nRedlineTypeToDelete
65535
sw/inc/docary.hxx:297
_Bool SwExtraRedlineTable::DeleteTableCellRedline(class SwDoc *,const class SwTableBox &,_Bool,enum RedlineType)
enum RedlineType nRedlineTypeToDelete
65535
sw/inc/editsh.hxx:162
void SwEditShell::Insert(char16_t,_Bool)
char16_t
32
sw/inc/editsh.hxx:239
class std::__debug::vector<struct std::pair<const class SfxPoolItem *, class std::unique_ptr<class SwPaM, struct std::default_delete<class SwPaM> > >, class std::allocator<struct std::pair<const class SfxPoolItem *, class std::unique_ptr<class SwPaM, struct std::default_delete<class SwPaM> > > > > SwEditShell::GetItemWithPaM(unsigned short)
unsigned short nWhich
8
sw/inc/fesh.hxx:532
_Bool SwFEShell::BeginCreate(unsigned short,enum SdrInventor,const class Point &)
enum SdrInventor eObjInventor
825249094
sw/inc/fmtcol.hxx:70
void SwTextFormatColl::SwTextFormatColl(class SwAttrPool &,const char *,class SwTextFormatColl *,unsigned short)
unsigned short nFormatWh
155
sw/inc/fmteiro.hxx:32
void SwFormatEditInReadonly::SwFormatEditInReadonly(unsigned short,_Bool)
unsigned short nId
112
sw/inc/frmfmt.hxx:85
void SwFrameFormat::SwFrameFormat(class SwAttrPool &,const char *,class SwFrameFormat *,unsigned short,const unsigned short *)
unsigned short nFormatWhich
153
sw/inc/IDocumentRedlineAccess.hxx:164
_Bool IDocumentRedlineAccess::DeleteRedline(const class SwStartNode &,_Bool,enum RedlineType)
enum RedlineType nDelType
65535
sw/inc/ndtxt.hxx:160
void SwTextNode::SetLanguageAndFont(const class SwPaM &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nFontWhichId
22
sw/inc/ndtxt.hxx:160
void SwTextNode::SetLanguageAndFont(const class SwPaM &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,unsigned short,const class vcl::Font *,unsigned short)
unsigned short nLangWhichId
24
sw/inc/swfltopt.hxx:31
void SwFilterOptions::SwFilterOptions(unsigned short,const char **,unsigned long *)
unsigned short nCnt
13
sw/inc/tblafmt.hxx:249
_Bool SwTableAutoFormat::Save(class SvStream &,unsigned short) const
unsigned short fileVersion
5050
sw/inc/unostyle.hxx:97
void sw::ICoreFrameStyle::SetItem(unsigned short,const class SfxPoolItem &)
unsigned short eAtr
108
sw/inc/unostyle.hxx:98
const class SfxPoolItem * sw::ICoreFrameStyle::GetItem(unsigned short)
unsigned short eAtr
108
sw/inc/unotextcursor.hxx:86
void SwXTextCursor::SwXTextCursor(const class com::sun::star::uno::Reference<class com::sun::star::text::XText> &,const class SwPaM &,const enum CursorType)
const enum CursorType eType
7
sw/qa/core/Test-BigPtrArray.cxx:55
void fillBigPtrArray(class BigPtrArray &,unsigned long)
unsigned long numEntries
10
sw/source/core/access/accmap.cxx:419
void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,const class sw::access::SwAccessibleChild &)
enum SwAccessibleEvent_Impl::EventType eT
5
sw/source/core/access/accmap.cxx:430
void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType)
enum SwAccessibleEvent_Impl::EventType eT
4
sw/source/core/access/accmap.cxx:469
void SwAccessibleEvent_Impl::SwAccessibleEvent_Impl(enum SwAccessibleEvent_Impl::EventType,const class SwFrame *,const class sw::access::SwAccessibleChild &,const class SwRect &)
enum SwAccessibleEvent_Impl::EventType eT
3
sw/source/core/crsr/bookmrk.cxx:161
void lcl_SetFieldMarks(class sw::mark::Fieldmark *const,class SwDoc *const,const char16_t,const char16_t,const struct SwPosition *const)
const char16_t aStartMark
7
sw/source/core/crsr/bookmrk.cxx:217
void lcl_RemoveFieldMarks(const class sw::mark::Fieldmark *const,class SwDoc *const,const char16_t,const char16_t)
const char16_t aStartMark
7
sw/source/core/doc/doclay.cxx:94
_Bool lcl_IsItemSet(const class SwContentNode &,unsigned short)
unsigned short which
64
sw/source/core/doc/docredln.cxx:297
void lcl_LOKInvalidateFrames(const class SwModify &,const class SwRootFrame *,const enum SwFrameType,const class Point *)
const enum SwFrameType nFrameType
49152
sw/source/core/doc/DocumentStylePoolManager.cxx:118
void lcl_SetDfltFont(enum DefaultFontType,class SfxItemSet &)
enum DefaultFontType nFntType
4
sw/source/core/doc/DocumentStylePoolManager.cxx:141
void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &)
enum DefaultFontType nLatinFntType
2000
sw/source/core/doc/DocumentStylePoolManager.cxx:141
void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &)
enum DefaultFontType nCTLFntType
4000
sw/source/core/doc/DocumentStylePoolManager.cxx:141
void lcl_SetDfltFont(enum DefaultFontType,enum DefaultFontType,enum DefaultFontType,class SfxItemSet &)
enum DefaultFontType nCJKFntType
3000
sw/source/core/doc/SwStyleNameMapper.cxx:87
class std::__debug::unordered_map<class rtl::OUString, unsigned short, struct std::hash< ::rtl::OUString>, struct std::equal_to<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, unsigned short> > > HashFromRange(unsigned short,unsigned short,unsigned short,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &(*)(void),type-parameter-?-?...)
###16
12288
sw/source/core/doc/SwStyleNameMapper.cxx:87
class std::__debug::unordered_map<class rtl::OUString, unsigned short, struct std::hash< ::rtl::OUString>, struct std::equal_to<class rtl::OUString>, class std::allocator<struct std::pair<const class rtl::OUString, unsigned short> > > HashFromRange(unsigned short,unsigned short,unsigned short,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &(*)(void),type-parameter-?-?...)
###17
12293
sw/source/core/doc/tblafmt.cxx:180
void SwAfVersions::Write(class SvStream &,unsigned short)
unsigned short fileVersion
5050
sw/source/core/inc/swcache.hxx:112
void SwCache::DecreaseMax(const unsigned short)
const unsigned short nSub
100
sw/source/core/inc/txtfrm.hxx:490
long SwTextFrame::GrowTst(const long)
const long nGrow
9223372036854775807
sw/source/core/inc/UndoAttribute.hxx:72
void SwUndoResetAttr::SwUndoResetAttr(const struct SwPosition &,unsigned short)
unsigned short nFormatId
47
sw/source/core/inc/UndoCore.hxx:250
class rtl::OUString ShortenString(const class rtl::OUString &,int,const class rtl::OUString &)
int nLength
20
sw/source/core/inc/UndoNumbering.hxx:39
void SwUndoInsNum::SwUndoInsNum(const class SwNumRule &,const class SwNumRule &,const class SwDoc *,enum SwUndoId)
enum SwUndoId nUndoId
10
sw/source/core/layout/dbg_lay.cxx:467
void lcl_Padded(class rtl::OStringBuffer &,const long,unsigned long)
unsigned long length
5
sw/source/core/layout/objectformattertxtfrm.hxx:96
class SwAnchoredObject * SwObjectFormatterTextFrame::GetFirstObjWithMovedFwdAnchor(const short,unsigned int &,_Bool &)
const short _nWrapInfluenceOnPosition
2
sw/source/core/txtnode/txtedt.cxx:182
_Bool lcl_MaskRedlinesAndHiddenText(const class SwTextNode &,class rtl::OUStringBuffer &,int,int,const char16_t)
const char16_t cChar
65529
sw/source/core/undo/untbl.cxx:2193
void (anonymous namespace)::RedlineFlagsInternGuard::RedlineFlagsInternGuard(class SwDoc &,enum RedlineFlags,enum RedlineFlags)
enum RedlineFlags eRedlineFlagsMask
2
sw/source/filter/html/htmlatr.cxx:1149
_Bool (anonymous namespace)::HTMLEndPosLst::IsHTMLMode(unsigned long) const
unsigned long nMode
32
sw/source/filter/html/svxcss1.hxx:159
void SvxCSS1PropertyInfo::SetBoxItem(class SfxItemSet &,unsigned short,const class SvxBoxItem *)
unsigned short nMinBorderDist
28
sw/source/filter/html/swhtml.hxx:628
void SwHTMLParser::NewStdAttr(enum HtmlTokenId)
enum HtmlTokenId nToken
414
sw/source/filter/inc/fltshell.hxx:173
class SfxPoolItem * SwFltControlStack::GetFormatStackAttr(unsigned short,unsigned short *)
unsigned short nWhich
6
sw/source/filter/inc/fltshell.hxx:174
const class SfxPoolItem * SwFltControlStack::GetOpenStackAttr(const struct SwPosition &,unsigned short)
unsigned short nWhich
14
sw/source/filter/ww8/docxattributeoutput.cxx:3709
class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char)
char cFill
48
sw/source/filter/ww8/docxattributeoutput.cxx:3709
class rtl::OString lcl_padStartToLength(const class rtl::OString &,int,char)
int nLen
4
sw/source/filter/ww8/docxexport.hxx:195
void DocxExport::WriteOutliner(const class OutlinerParaObject &,unsigned char)
unsigned char nTyp
5
sw/source/filter/ww8/escher.hxx:124
void SwBasicEscherEx::WriteEmptyFlyFrame(const class SwFrameFormat &,unsigned int)
unsigned int nShapeId
1025
sw/source/filter/ww8/writerhelper.hxx:473
const type-parameter-?-? * HasItem(const class std::__debug::map<unsigned short, const class SfxPoolItem *, class sw::util::ItemSort, class std::allocator<struct std::pair<const unsigned short, const class SfxPoolItem *> > > &,unsigned short)
unsigned short eType
52
sw/source/filter/ww8/wrtww8.hxx:1366
void WW8_WrPlcField::WW8_WrPlcField(unsigned short,unsigned char)
unsigned short nStructSz
2
sw/source/filter/ww8/wrtww8.hxx:1423
void SwWW8WrGrf::WritePICBulletFHeader(class SvStream &,const class Graphic &,unsigned short,unsigned short,unsigned short)
unsigned short mm
100
sw/source/filter/ww8/wrtww8.hxx:1536
void SwWW8AttrIter::handleToggleProperty(class SfxItemSet &,const class SwFormatCharFormat *,unsigned short,const class SfxPoolItem *)
unsigned short nWhich
15
sw/source/filter/ww8/ww8glsy.hxx:63
void WW8Glossary::WW8Glossary(class tools::SvRef<class SotStorageStream> &,unsigned char,class SotStorage *)
unsigned char nVersion
8
sw/source/filter/ww8/ww8par.hxx:1595
class std::unique_ptr<class OutlinerParaObject, struct std::default_delete<class OutlinerParaObject> > SwWW8ImplReader::ImportAsOutliner(class rtl::OUString &,int,int,enum ManTypes)
enum ManTypes eType
4
sw/source/filter/ww8/ww8scan.cxx:7118
_Bool readS16(const unsigned char *,unsigned long,const unsigned char *,short *)
unsigned long offset
2
sw/source/filter/ww8/ww8scan.hxx:989
struct SprmResult WW8PLCFMan::HasCharSprm(unsigned short) const
unsigned short nId
2138
sw/source/filter/ww8/ww8scan.hxx:1528
void WW8Fib::WW8Fib(unsigned char,_Bool)
unsigned char nVersion
8
sw/source/filter/xml/xmlbrshi.hxx:59
void SwXMLBrushItemImportContext::SwXMLBrushItemImportContext(class SvXMLImport &,unsigned short,const class rtl::OUString &,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XAttributeList> &,const class SvXMLUnitConverter &,unsigned short)
unsigned short nWhich
105
sw/source/uibase/inc/frmmgr.hxx:120
void SwFlyFrameAttrMgr::DelAttr(unsigned short)
unsigned short nId
89
sw/source/uibase/inc/mailmergehelper.hxx:99
void SwAddressPreview::SetLayout(unsigned short,unsigned short)
unsigned short nColumns
2
sw/source/uibase/inc/numpara.hxx:61
_Bool SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const class rtl::OUString &,enum SfxStyleFamily)
enum SfxStyleFamily nFamily
16
sw/source/uibase/inc/numpara.hxx:61
_Bool SwParagraphNumTabPage::ExecuteEditNumStyle_Impl(unsigned short,const class rtl::OUString &,enum SfxStyleFamily)
unsigned short nId
5550
sw/source/uibase/inc/prcntfld.hxx:64
void SwPercentField::set_min(int,enum FieldUnit)
enum FieldUnit eInUnit
5
sw/source/uibase/inc/prcntfld.hxx:65
void SwPercentField::set_max(int,enum FieldUnit)
enum FieldUnit eInUnit
5
sw/source/uibase/inc/swuipardlg.hxx:34
void SwParaDlg::SwParaDlg(class weld::Window *,class SwView &,const class SfxItemSet &,unsigned char,const class rtl::OUString *,_Bool,const class rtl::OString &)
unsigned char nDialogMode
2
toolkit/inc/helper/btndlg.hxx:61
void ButtonDialog::RemoveButton(unsigned short)
unsigned short nId
10
toolkit/inc/helper/btndlg.hxx:64
void ButtonDialog::ButtonDialog(enum WindowType)
enum WindowType nType
304
toolkit/source/awt/vclxspinbutton.cxx:40
void lcl_modifyStyle(class vcl::Window *,long,_Bool)
long _nStyleBits
4096
toolkit/source/awt/vclxwindows.cxx:6920
void lcl_setWinBits(class vcl::Window *,long,_Bool)
long _nBits
68719476736
tools/source/stream/strmunx.cxx:104
class ErrCode GetSvError(int)
int nErrno
21
ucbhelper/source/provider/resultset.cxx:100
void ucbhelper_impl::(anonymous namespace)::PropertySetInfo::PropertySetInfo(const struct ucbhelper_impl::(anonymous namespace)::PropertyInfo *,int)
int nProps
2
unotools/source/config/useroptions.cxx:98
_Bool SvtUserOptions::Impl::GetBoolValue(enum UserOptToken) const
enum UserOptToken nToken
19
unotools/source/misc/datetime.cxx:72
_Bool convertNumber64(long &,const class rtl::OUString &,long,long)
long
-1
vcl/backendtest/outputdevice/rectangle.cxx:24
void drawInvertOffset(class OutputDevice &,const class tools::Rectangle &,int,enum InvertFlags)
int nOffset
2
vcl/inc/driverblocklist.hxx:138
unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
unsigned int a
10
vcl/inc/driverblocklist.hxx:138
unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
unsigned int d
40
vcl/inc/driverblocklist.hxx:138
unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
unsigned int c
30
vcl/inc/driverblocklist.hxx:138
unsigned long V(unsigned int,unsigned int,unsigned int,unsigned int)
unsigned int b
20
vcl/inc/fontsubset.hxx:54
void FontSubsetInfo::LoadFont(enum FontType,const unsigned char *,int)
enum FontType eInFontType
32
vcl/inc/headless/svpgdi.hxx:250
void SvpSalGraphics::drawBitmap(const struct SalTwoRect &,const struct BitmapBuffer *,enum _cairo_operator)
enum _cairo_operator eOp
2
vcl/inc/listbox.hxx:492
void ImplListBox::SetMRUEntries(const class rtl::OUString &,char16_t)
char16_t cSep
59
vcl/inc/listbox.hxx:493
class rtl::OUString ImplListBox::GetMRUEntries(char16_t) const
char16_t cSep
59
vcl/inc/opengl/program.hxx:86
void OpenGLProgram::SetUniform1fv(const class rtl::OString &,int,const float *)
int nCount
16
vcl/inc/opengl/program.hxx:87
void OpenGLProgram::SetUniform2fv(const class rtl::OString &,int,const float *)
int nCount
16
vcl/inc/opengl/program.hxx:108
void OpenGLProgram::DrawElements(unsigned int,unsigned int)
unsigned int aMode
4
vcl/inc/test/outputdevice.hxx:68
void vcl::test::OutputDeviceTestCommon::createDiamondPoints(class tools::Rectangle,int,class Point &,class Point &,class Point &,class Point &)
int nOffset
4
vcl/inc/TypeSerializer.hxx:29
unsigned int createMagic(char,char,char,char)
char char4
48
vcl/inc/unx/gendisp.hxx:44
void SalGenericDisplay::CancelInternalEvent(class SalFrame *,void *,enum SalEvent)
enum SalEvent nEvent
21
vcl/inc/unx/gtk/gtkprintwrapper.hxx:55
void vcl::unx::GtkPrintWrapper::print_unix_dialog_set_manual_capabilities(struct _GtkPrintUnixDialog *,GtkPrintCapabilities) const
GtkPrintCapabilities capabilities
846
vcl/inc/unx/saldata.hxx:47
void X11SalData::X11SalData(enum GenericUnixSalDataType,class SalInstance *)
enum GenericUnixSalDataType t
3
vcl/inc/unx/x11/xrender_peer.hxx:51
void XRenderPeer::ChangePicture(unsigned long,unsigned long,const struct _XRenderPictureAttributes *) const
unsigned long nValueMask
64
vcl/inc/unx/x11/xrender_peer.hxx:54
void XRenderPeer::CompositePicture(int,unsigned long,unsigned long,unsigned long,int,int,int,int,unsigned int,unsigned int) const
int nOp
3
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 nOp
3
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 nOp
3
vcl/inc/WidgetDrawInterface.hxx:47
_Bool vcl::WidgetDrawInterface::hitTestNativeControl(enum ControlType,enum ControlPart,const class tools::Rectangle &,const class Point &,_Bool &)
enum ControlType eType
60
vcl/inc/wizdlg.hxx:88
long vcl::RoadmapWizard::LogicalCoordinateToPixel(int)
int iCoordinate
6
vcl/inc/wizdlg.hxx:286
void vcl::RoadmapWizard::implConstruct(const enum WizardButtonFlags)
const enum WizardButtonFlags _nButtonFlags
31
vcl/qa/cppunit/BitmapScaleTest.cxx:75
void assertColorsAreSimilar(int,int,const class BitmapColor &,const class BitmapColor &)
int maxDifference
2
vcl/qa/cppunit/jpeg/JpegReaderTest.cxx:48
_Bool checkRect(class Bitmap &,int,long,long,class Color,int)
long nAreaHeight
8
vcl/qa/cppunit/jpeg/JpegReaderTest.cxx:48
_Bool checkRect(class Bitmap &,int,long,long,class Color,int)
long nAreaWidth
8
vcl/qa/cppunit/timer.cxx:37
void (anonymous namespace)::WatchDog::WatchDog(int)
int nSeconds
120
vcl/qa/cppunit/timer.cxx:343
void (anonymous namespace)::YieldTimer::YieldTimer(unsigned long)
unsigned long nMS
5
vcl/qa/cppunit/timer.cxx:373
void (anonymous namespace)::SlowCallbackTimer::SlowCallbackTimer(unsigned long,_Bool &)
unsigned long nMS
250
vcl/source/filter/jpeg/JpegReader.cxx:55
long StreamRead(class SvStream *,void *,long)
long nBufferSize
4096
vcl/source/filter/wmf/emfwr.hxx:57
void EMFWriter::ImplBeginCommentRecord(int)
int nCommentType
726027589
vcl/source/filter/wmf/wmfwr.hxx:144
void WMFWriter::WMFRecord_Escape(unsigned int,unsigned int,const signed char *)
unsigned int nEsc
2
vcl/source/fontsubset/ttcr.hxx:61
void TrueTypeCreatorNewEmpty(unsigned int,struct vcl::TrueTypeCreator **)
unsigned int tag
1953658213
vcl/source/fontsubset/ttcr.hxx:174
struct vcl::TrueTypeTable * TrueTypeTableNew_post(int,int,short,short,unsigned int)
int format
196608
vcl/source/fontsubset/ttcr.hxx:185
void cmapAdd(struct vcl::TrueTypeTable *,unsigned int,unsigned int,unsigned int)
unsigned int id
65536
vcl/source/gdi/pdfwriter_impl.hxx:1007
_Bool vcl::PDFWriterImpl::computeODictionaryValue(const unsigned char *,const unsigned char *,class std::__debug::vector<unsigned char, class std::allocator<unsigned char> > &,int)
int i_nKeyLength
16
vcl/source/gdi/pdfwriter_impl.hxx:1055
void vcl::PDFWriterImpl::insertError(enum vcl::PDFWriter::ErrorCode)
enum vcl::PDFWriter::ErrorCode eErr
3
vcl/source/graphic/GraphicObject.cxx:134
void lclImplAdjust(class BitmapEx &,const class GraphicAttr &,enum GraphicAdjustmentFlags)
enum GraphicAdjustmentFlags nAdjustmentFlags
31
vcl/source/graphic/GraphicObject.cxx:185
void lclImplAdjust(class GDIMetaFile &,const class GraphicAttr &,enum GraphicAdjustmentFlags)
enum GraphicAdjustmentFlags nAdjustmentFlags
31
vcl/source/graphic/GraphicObject.cxx:236
void lclImplAdjust(class Animation &,const class GraphicAttr &,enum GraphicAdjustmentFlags)
enum GraphicAdjustmentFlags nAdjustmentFlags
31
vcl/source/opengl/OpenGLHelper.cxx:170
class rtl::OString getHexString(const unsigned char *,unsigned int)
unsigned int nLength
16
vcl/source/window/menu.cxx:534
void ImplCopyItem(class Menu *,const class Menu &,unsigned short,unsigned short)
unsigned short nNewPos
65535
vcl/unx/generic/app/saldisp.cxx:693
unsigned int GetKeySymMask(struct _XDisplay *,unsigned long)
unsigned long nKeySym
65509
vcl/unx/generic/dtrans/X11_selection.hxx:384
unsigned long x11::SelectionManager::createCursor(const unsigned char *,const unsigned char *,int,int,int,int)
int width
32
vcl/unx/generic/dtrans/X11_selection.hxx:384
unsigned long x11::SelectionManager::createCursor(const unsigned char *,const unsigned char *,int,int,int,int)
int height
32
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:175
void writerfilter::ooxml::OOXMLFastContextHandler::sendPropertiesWithId(unsigned int)
unsigned int nId
92465
writerfilter/source/ooxml/OOXMLFastContextHandler.hxx:512
void writerfilter::ooxml::OOXMLFastContextHandlerWrapper::addToken(int)
int Element
2167927
writerfilter/source/rtftok/rtfdocumentimpl.hxx:669
class tools::SvRef<class writerfilter::rtftok::RTFValue> getNestedSprm(class writerfilter::rtftok::RTFSprms &,unsigned int,unsigned int)
unsigned int nParent
92165
writerfilter/source/rtftok/rtfsprm.hxx:61
void writerfilter::rtftok::RTFSprms::eraseLast(unsigned int)
unsigned int nKeyword
92679
xmloff/inc/txtflde.hxx:254
void XMLTextFieldExport::ProcessIntegerDef(enum xmloff::token::XMLTokenEnum,int,int)
enum xmloff::token::XMLTokenEnum eXmlName
1319
xmloff/inc/txtflde.hxx:280
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,const class rtl::OUString &)
enum xmloff::token::XMLTokenEnum eXmlName
809
xmloff/inc/txtflde.hxx:280
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,unsigned short,const class rtl::OUString &,const class rtl::OUString &)
unsigned short nValuePrefix
30
xmloff/inc/txtflde.hxx:293
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum eXmlName
1438
xmloff/inc/txtflde.hxx:293
void XMLTextFieldExport::ProcessString(enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum eDefault
1770
xmloff/inc/txtflde.hxx:325
void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,double,_Bool,_Bool,_Bool,unsigned short)
unsigned short nPrefix
2
xmloff/inc/txtflde.hxx:341
void XMLTextFieldExport::ProcessDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &)
enum xmloff::token::XMLTokenEnum eXMLName
513
xmloff/inc/txtflde.hxx:346
void XMLTextFieldExport::ProcessTimeOrDateTime(enum xmloff::token::XMLTokenEnum,const struct com::sun::star::util::DateTime &)
enum xmloff::token::XMLTokenEnum eXMLName
1823
xmloff/inc/XMLBase64Export.hxx:39
_Bool XMLBase64Export::exportElement(const class com::sun::star::uno::Reference<class com::sun::star::io::XInputStream> &,enum xmloff::token::XMLTokenEnum)
enum xmloff::token::XMLTokenEnum eName
2030
xmloff/source/draw/ximpcustomshape.cxx:87
void GetInt32(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
80
xmloff/source/draw/ximpcustomshape.cxx:100
void GetDouble(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
65
xmloff/source/draw/ximpcustomshape.cxx:113
void GetString(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
61
xmloff/source/draw/ximpcustomshape.cxx:123
void GetEnum(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum,const SvXMLEnumMapEntry<type-parameter-?-?> &)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
114
xmloff/source/draw/ximpcustomshape.cxx:426
void GetPosition3D(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum,class SvXMLUnitConverter &)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
96
xmloff/source/draw/ximpcustomshape.cxx:440
void GetDoubleSequence(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
113
xmloff/source/draw/ximpcustomshape.cxx:465
void GetSizeSequence(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
120
xmloff/source/draw/ximpcustomshape.cxx:531
int GetEnhancedParameterPairSequence(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
112
xmloff/source/draw/ximpcustomshape.cxx:553
void GetEnhancedRectangleSequence(class std::__debug::vector<struct com::sun::star::beans::PropertyValue, class std::allocator<struct com::sun::star::beans::PropertyValue> > &,const class rtl::OUString &,const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum)
const enum xmloff::EnhancedCustomShapeToken::EnhancedCustomShapeTokenEnum eDestProp
111
xmloff/source/forms/elementimport.cxx:1361
void xmloff::(anonymous namespace)::EqualHandle::EqualHandle(int)
int _nHandle
2
xmloff/source/forms/property_description.hxx:81
void xmloff::PropertyDescription::PropertyDescription(const class rtl::OUString &,const unsigned short,const enum xmloff::token::XMLTokenEnum,class rtl::Reference<class xmloff::PropertyHandlerBase> (*const)(enum xmloff::PropertyId),const enum xmloff::PropertyId)
const unsigned short i_namespacePrefix
15
xmloff/source/script/xmlbasicscript.hxx:36
_Bool xmloff::BasicElementBase::getBoolAttr(_Bool *,int,const class com::sun::star::uno::Reference<class com::sun::star::xml::sax::XFastAttributeList> &)
int nToken
1968618
xmloff/source/style/xmlbahdl.hxx:51
void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char)
signed char nB
2
xmloff/source/style/xmlbahdl.hxx:51
void XMLNumberNonePropHdl::XMLNumberNonePropHdl(enum xmloff::token::XMLTokenEnum,signed char)
enum xmloff::token::XMLTokenEnum eZeroString
402
xmloff/source/style/xmlbahdl.hxx:117
void XMLMeasurePxPropHdl::XMLMeasurePxPropHdl(signed char)
signed char nB
4
xmloff/source/text/XMLIndexMarkExport.cxx:182
void lcl_ExportPropertyBool(class SvXMLExport &,const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &,const class rtl::OUString &,enum xmloff::token::XMLTokenEnum,class com::sun::star::uno::Any &)
enum xmloff::token::XMLTokenEnum eToken
2140
xmloff/source/transform/TransformerContext.hxx:58
_Bool XMLTransformerContext::HasNamespace(unsigned short) const
unsigned short nPrefix
15
xmlsecurity/inc/xsecctl.hxx:86
void InternalSignatureInformation::addReference(enum SignatureReferenceType,int,const class rtl::OUString &,int,const class rtl::OUString &)
int keeperId
-1
xmlsecurity/source/framework/elementmark.hxx:57
void ElementMark::ElementMark(int,int)
int nSecurityId
-1
|