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
|
basctl/source/basicide/baside2.hxx:159
unsigned short basctl::EditorWindow::GetCurrentZoom()
basegfx/source/range/b2drangeclipper.cxx:686
type-parameter-?-? basegfx::(anonymous namespace)::eraseFromList(type-parameter-?-? &,const type-parameter-?-? &)
basic/source/inc/buffer.hxx:40
void SbiBuffer::operator+=(signed char)
basic/source/inc/buffer.hxx:41
void SbiBuffer::operator+=(short)
basic/source/inc/buffer.hxx:45
void SbiBuffer::operator+=(int)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:185
void CPPU_CURRENT_NAMESPACE::raiseException(struct _uno_Any *,struct _uno_Mapping *)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:188
void CPPU_CURRENT_NAMESPACE::fillUnoException(struct _uno_Any *,struct _uno_Mapping *)
canvas/inc/rendering/icolorbuffer.hxx:47
unsigned char * canvas::IColorBuffer::lock() const
canvas/inc/rendering/icolorbuffer.hxx:51
void canvas::IColorBuffer::unlock() const
canvas/inc/rendering/icolorbuffer.hxx:66
unsigned int canvas::IColorBuffer::getStride() const
canvas/inc/rendering/icolorbuffer.hxx:70
enum canvas::IColorBuffer::Format canvas::IColorBuffer::getFormat() const
canvas/inc/rendering/isurfaceproxy.hxx:38
void canvas::ISurfaceProxy::setColorBufferDirty()
canvas/inc/rendering/isurfaceproxy.hxx:51
_Bool canvas::ISurfaceProxy::draw(double,const basegfx::B2DPoint &,const basegfx::B2DHomMatrix &)
canvas/inc/rendering/isurfaceproxy.hxx:71
_Bool canvas::ISurfaceProxy::draw(double,const basegfx::B2DPoint &,const basegfx::B2DRange &,const basegfx::B2DHomMatrix &)
canvas/inc/rendering/isurfaceproxy.hxx:91
_Bool canvas::ISurfaceProxy::draw(double,const basegfx::B2DPoint &,const basegfx::B2DPolyPolygon &,const basegfx::B2DHomMatrix &)
canvas/inc/rendering/isurfaceproxymanager.hxx:57
std::shared_ptr<struct canvas::ISurfaceProxy> canvas::ISurfaceProxyManager::createSurfaceProxy(const std::shared_ptr<struct canvas::IColorBuffer> &) const
canvas/inc/rendering/isurfaceproxymanager.hxx:63
std::shared_ptr<struct canvas::ISurfaceProxyManager> canvas::createSurfaceProxyManager(const std::shared_ptr<struct canvas::IRenderModule> &)
canvas/inc/vclwrapper.hxx:66
canvas::vcltools::VCLObject::VCLObject<Wrappee_>(unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> >)
canvas/inc/vclwrapper.hxx:135
type-parameter-?-? & canvas::vcltools::VCLObject::get()
canvas/inc/vclwrapper.hxx:136
const type-parameter-?-? & canvas::vcltools::VCLObject::get() const
canvas/inc/vclwrapper.hxx:138
void canvas::vcltools::VCLObject::swap(VCLObject<Wrappee_> &)
canvas/source/vcl/impltools.hxx:102
vclcanvas::tools::LocalGuard::LocalGuard()
chart2/source/view/axes/VAxisBase.hxx:73
std::shared_ptr<chart::DataTableView> chart::VAxisBase::getDataTableView()
connectivity/inc/sdbcx/VGroup.hxx:61
connectivity::sdbcx::OGroup::OGroup(_Bool)
connectivity/inc/sdbcx/VGroup.hxx:62
connectivity::sdbcx::OGroup::OGroup(const rtl::OUString &,_Bool)
connectivity/source/drivers/evoab2/NResultSet.hxx:60
rtl::OString connectivity::evoab::OEvoabVersionHelper::getUserName(void *)
connectivity/source/drivers/evoab2/NResultSetMetaData.hxx:49
com::sun::star::uno::Reference<com::sun::star::sdbc::XResultSetMetaData> connectivity::evoab::OEvoabResultSetMetaData::operator Reference()
connectivity/source/drivers/firebird/Driver.hxx:61
const com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> & connectivity::firebird::FirebirdDriver::getContext() const
connectivity/source/drivers/firebird/Util.hxx:66
connectivity::firebird::ColumnTypeInfo::ColumnTypeInfo(short,rtl::OUString)
connectivity/source/drivers/firebird/Util.hxx:71
short connectivity::firebird::ColumnTypeInfo::getType() const
connectivity/source/drivers/firebird/Util.hxx:72
short connectivity::firebird::ColumnTypeInfo::getSubType() const
connectivity/source/drivers/firebird/Util.hxx:74
const rtl::OUString & connectivity::firebird::ColumnTypeInfo::getCharacterSet() const
connectivity/source/drivers/mysqlc/mysqlc_connection.hxx:180
rtl::OUString connectivity::mysqlc::OConnection::transFormPreparedStatement(const rtl::OUString &)
connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:93
type-parameter-?-? connectivity::mysqlc::OPreparedResultSet::safelyRetrieveValue(const int)
connectivity/source/drivers/mysqlc/mysqlc_prepared_resultset.hxx:94
type-parameter-?-? connectivity::mysqlc::OPreparedResultSet::retrieveValue(const int)
connectivity/source/drivers/mysqlc/mysqlc_user.hxx:28
connectivity::mysqlc::User::User(com::sun::star::uno::Reference<com::sun::star::sdbc::XConnection>)
connectivity/source/drivers/mysqlc/mysqlc_user.hxx:32
connectivity::mysqlc::User::User(com::sun::star::uno::Reference<com::sun::star::sdbc::XConnection>,const rtl::OUString &)
connectivity/source/inc/calc/CDriver.hxx:30
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> connectivity::calc::ODriver_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
connectivity/source/inc/dbase/DDriver.hxx:29
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> connectivity::dbase::ODriver_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
connectivity/source/inc/dbase/dindexnode.hxx:64
_Bool connectivity::dbase::ONDXKey::operator<(const connectivity::dbase::ONDXKey &) const
connectivity/source/inc/flat/EDriver.hxx:29
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> connectivity::flat::ODriver_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
connectivity/source/inc/java/sql/Connection.hxx:60
rtl::OUString connectivity::java_sql_Connection::transFormPreparedStatement(const rtl::OUString &)
connectivity/source/inc/OColumn.hxx:103
_Bool connectivity::OColumn::isReadOnly() const
connectivity/source/inc/OColumn.hxx:104
_Bool connectivity::OColumn::isWritable() const
connectivity/source/inc/OColumn.hxx:105
_Bool connectivity::OColumn::isDefinitelyWritable() const
connectivity/source/inc/odbc/OConnection.hxx:117
connectivity::odbc::ODBCDriver * connectivity::odbc::OConnection::getDriver() const
connectivity/source/inc/odbc/ODriver.hxx:71
const com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> & connectivity::odbc::ODBCDriver::getContext() const
connectivity/source/inc/odbc/OPreparedStatement.hxx:70
void connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned long,const type-parameter-?-?)
connectivity/source/inc/odbc/OPreparedStatement.hxx:71
void connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned long,int,const type-parameter-?-?)
connectivity/source/inc/OTypeInfo.hxx:45
_Bool connectivity::OTypeInfo::operator==(const struct connectivity::OTypeInfo &) const
connectivity/source/inc/OTypeInfo.hxx:46
_Bool connectivity::OTypeInfo::operator!=(const struct connectivity::OTypeInfo &) const
cui/source/dialogs/SpellAttrib.hxx:73
_Bool svx::SpellErrorDescription::operator==(const struct svx::SpellErrorDescription &) const
cui/source/inc/CustomNotebookbarGenerator.hxx:30
CustomNotebookbarGenerator::CustomNotebookbarGenerator()
cui/source/inc/fileextcheckdlg.hxx:32
void FileExtCheckDialog::LinkStubOnOkClick(void *,weld::Button &)
cui/source/inc/fileextcheckdlg.hxx:32
void FileExtCheckDialog::OnOkClick(weld::Button &)
cui/source/inc/fileextcheckdlg.hxx:35
FileExtCheckDialog::FileExtCheckDialog(weld::Window *,const rtl::OUString &,const rtl::OUString &)
cui/source/inc/GraphicsTestsDialog.hxx:48
void GraphicsTestsDialog::HandleResultViewRequest(weld::Button &)
cui/source/inc/GraphicsTestsDialog.hxx:48
void GraphicsTestsDialog::LinkStubHandleResultViewRequest(void *,weld::Button &)
cui/source/inc/SvxNotebookbarConfigPage.hxx:40
void SvxNotebookbarConfigPage::SetElement()
dbaccess/source/filter/hsqldb/fbalterparser.hxx:19
void dbahsql::FbAlterStmtParser::ensureProperTableLengths() const
dbaccess/source/filter/hsqldb/parseschema.hxx:80
const std::map<rtl::OUString, std::vector<rtl::OUString> > & dbahsql::SchemaParser::getPrimaryKeys() const
dbaccess/source/ui/inc/dsmeta.hxx:87
__gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int>, struct std::bidirectional_iterator_tag> dbaui::FeatureSet::begin() const
dbaccess/source/ui/inc/dsmeta.hxx:88
__gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<int>, std::set<int>, struct std::bidirectional_iterator_tag> dbaui::FeatureSet::end() const
dbaccess/source/ui/inc/FieldControls.hxx:68
rtl::OUString dbaui::OPropNumericEditCtrl::get_text() const
dbaccess/source/ui/inc/FieldControls.hxx:73
void dbaui::OPropNumericEditCtrl::set_min(int)
dbaccess/source/ui/inc/indexcollection.hxx:51
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::begin() const
dbaccess/source/ui/inc/indexcollection.hxx:55
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::end() const
dbaccess/source/ui/inc/indexcollection.hxx:60
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::find(const rtl::OUString &) const
dbaccess/source/ui/inc/indexcollection.hxx:62
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, std::__cxx1998::vector<struct dbaui::OIndex> >, std::vector<struct dbaui::OIndex>, struct std::random_access_iterator_tag> dbaui::OIndexCollection::findOriginal(const rtl::OUString &) const
dbaccess/source/ui/inc/unodatbr.hxx:316
_Bool dbaui::SbaTableQueryBrowser::implCopyObject(ODataClipboard &,const weld::TreeIter &,int)
desktop/inc/lib/init.hxx:142
desktop::CallbackFlushHandler::CallbackData::CallbackData(const tools::Rectangle *,int)
desktop/source/lib/lokclipboard.hxx:95
LOKClipboardFactory::LOKClipboardFactory()
drawinglayer/inc/texture/texture.hxx:39
_Bool drawinglayer::texture::GeoTexSvx::operator!=(const drawinglayer::texture::GeoTexSvx &) const
drawinglayer/source/primitive2d/GlowSoftEgdeShadowTools.hxx:37
drawinglayer::geometry::ViewInformation2D drawinglayer::primitive2d::expandB2DRangeAtViewInformation2D(const drawinglayer::geometry::ViewInformation2D &,double)
drawinglayer/source/tools/emfpstringformat.hxx:93
_Bool emfplushelper::EMFPStringFormat::NoFitBlackBox() const
drawinglayer/source/tools/emfpstringformat.hxx:94
_Bool emfplushelper::EMFPStringFormat::DisplayFormatControl() const
drawinglayer/source/tools/emfpstringformat.hxx:95
_Bool emfplushelper::EMFPStringFormat::NoFontFallback() const
drawinglayer/source/tools/emfpstringformat.hxx:96
_Bool emfplushelper::EMFPStringFormat::MeasureTrailingSpaces() const
drawinglayer/source/tools/emfpstringformat.hxx:97
_Bool emfplushelper::EMFPStringFormat::NoWrap() const
drawinglayer/source/tools/emfpstringformat.hxx:98
_Bool emfplushelper::EMFPStringFormat::LineLimit() const
drawinglayer/source/tools/emfpstringformat.hxx:99
_Bool emfplushelper::EMFPStringFormat::NoClip() const
drawinglayer/source/tools/emfpstringformat.hxx:100
_Bool emfplushelper::EMFPStringFormat::BypassGDI() const
editeng/inc/editdoc.hxx:547
_Bool EditLine::IsInvalid() const
editeng/inc/editdoc.hxx:548
_Bool EditLine::IsValid() const
editeng/inc/edtspell.hxx:103
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> >, std::vector<struct editeng::MisspellRange>, struct std::random_access_iterator_tag> WrongList::begin() const
editeng/inc/edtspell.hxx:104
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct editeng::MisspellRange *, std::__cxx1998::vector<struct editeng::MisspellRange> >, std::vector<struct editeng::MisspellRange>, struct std::random_access_iterator_tag> WrongList::end() const
editeng/source/editeng/impedit.hxx:235
tools::Rectangle LOKSpecialPositioning::GetWindowPos(const tools::Rectangle &,enum MapUnit) const
embeddedobj/source/msole/olecomponent.hxx:75
_Bool OleComponent::InitializeObject_Impl()
embeddedobj/source/msole/olecomponent.hxx:77
void OleComponent::CreateNewIStorage_Impl()
embeddedobj/source/msole/olecomponent.hxx:78
void OleComponent::RetrieveObjectDataFlavors_Impl()
embeddedobj/source/msole/olecomponent.hxx:79
void OleComponent::Dispose()
embeddedobj/source/msole/olecomponent.hxx:83
OleComponent::OleComponent(const com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> &,OleEmbeddedObject *)
embeddedobj/source/msole/olecomponent.hxx:88
OleComponent * OleComponent::createEmbeddedCopyOfLink()
embeddedobj/source/msole/olecomponent.hxx:90
void OleComponent::disconnectEmbeddedObject()
embeddedobj/source/msole/olecomponent.hxx:92
struct com::sun::star::awt::Size OleComponent::CalculateWithFactor(const struct com::sun::star::awt::Size &,const struct com::sun::star::awt::Size &,const struct com::sun::star::awt::Size &)
embeddedobj/source/msole/olecomponent.hxx:96
struct com::sun::star::awt::Size OleComponent::CalculateTheRealSize(const struct com::sun::star::awt::Size &,_Bool)
embeddedobj/source/msole/olecomponent.hxx:99
void OleComponent::LoadEmbeddedObject(const rtl::OUString &)
embeddedobj/source/msole/olecomponent.hxx:100
void OleComponent::CreateObjectFromClipboard()
embeddedobj/source/msole/olecomponent.hxx:101
void OleComponent::CreateNewEmbeddedObject(const com::sun::star::uno::Sequence<signed char> &)
embeddedobj/source/msole/olecomponent.hxx:102
void OleComponent::CreateObjectFromData(const com::sun::star::uno::Reference<com::sun::star::datatransfer::XTransferable> &)
embeddedobj/source/msole/olecomponent.hxx:104
void OleComponent::CreateObjectFromFile(const rtl::OUString &)
embeddedobj/source/msole/olecomponent.hxx:105
void OleComponent::CreateLinkFromFile(const rtl::OUString &)
embeddedobj/source/msole/olecomponent.hxx:106
void OleComponent::InitEmbeddedCopyOfLink(const rtl::Reference<OleComponent> &)
embeddedobj/source/msole/olecomponent.hxx:109
void OleComponent::RunObject()
embeddedobj/source/msole/olecomponent.hxx:110
void OleComponent::CloseObject()
embeddedobj/source/msole/olecomponent.hxx:112
com::sun::star::uno::Sequence<struct com::sun::star::embed::VerbDescriptor> OleComponent::GetVerbList()
embeddedobj/source/msole/olecomponent.hxx:114
void OleComponent::ExecuteVerb(int)
embeddedobj/source/msole/olecomponent.hxx:115
void OleComponent::SetHostName(const rtl::OUString &)
embeddedobj/source/msole/olecomponent.hxx:116
void OleComponent::SetExtent(const struct com::sun::star::awt::Size &,long)
embeddedobj/source/msole/olecomponent.hxx:118
struct com::sun::star::awt::Size OleComponent::GetExtent(long)
embeddedobj/source/msole/olecomponent.hxx:119
struct com::sun::star::awt::Size OleComponent::GetCachedExtent(long)
embeddedobj/source/msole/olecomponent.hxx:120
struct com::sun::star::awt::Size OleComponent::GetRecommendedExtent(long)
embeddedobj/source/msole/olecomponent.hxx:122
long OleComponent::GetMiscStatus(long)
embeddedobj/source/msole/olecomponent.hxx:124
com::sun::star::uno::Sequence<signed char> OleComponent::GetCLSID()
embeddedobj/source/msole/olecomponent.hxx:126
_Bool OleComponent::IsWorkaroundActive() const
embeddedobj/source/msole/olecomponent.hxx:127
_Bool OleComponent::IsDirty()
embeddedobj/source/msole/olecomponent.hxx:129
void OleComponent::StoreOwnTmpIfNecessary()
embeddedobj/source/msole/olecomponent.hxx:131
_Bool OleComponent::SaveObject_Impl()
embeddedobj/source/msole/olecomponent.hxx:132
_Bool OleComponent::OnShowWindow_Impl(_Bool)
embeddedobj/source/msole/olecomponent.hxx:133
void OleComponent::OnViewChange_Impl(unsigned int)
embeddedobj/source/msole/olecomponent.hxx:134
void OleComponent::OnClose_Impl()
extensions/source/scanner/scanner.hxx:79
void ScannerManager::SetData(void *)
extensions/source/scanner/scanner.hxx:83
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScannerManager_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
hwpfilter/source/hiodev.h:63
unsigned long HIODev::read4b(void *,unsigned long)
hwpfilter/source/mzstring.h:100
MzString & MzString::operator<<(unsigned char)
hwpfilter/source/mzstring.h:102
MzString & MzString::operator<<(long)
hwpfilter/source/mzstring.h:103
MzString & MzString::operator<<(short)
idl/source/prj/svidl.cxx:103
int main(int,char **)
include/basegfx/curve/b2dcubicbezier.hxx:50
_Bool basegfx::B2DCubicBezier::operator==(const basegfx::B2DCubicBezier &) const
include/basegfx/curve/b2dcubicbezier.hxx:51
_Bool basegfx::B2DCubicBezier::operator!=(const basegfx::B2DCubicBezier &) const
include/basegfx/curve/b2dcubicbezier.hxx:194
void basegfx::B2DCubicBezier::transform(const basegfx::B2DHomMatrix &)
include/basegfx/curve/b2dcubicbezier.hxx:197
void basegfx::B2DCubicBezier::fround()
include/basegfx/matrix/b2dhommatrix.hxx:106
void basegfx::B2DHomMatrix::scale(const basegfx::B2DTuple &)
include/basegfx/matrix/b2dhommatrix.hxx:112
basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator+=(const basegfx::B2DHomMatrix &)
include/basegfx/matrix/b2dhommatrix.hxx:113
basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator-=(const basegfx::B2DHomMatrix &)
include/basegfx/matrix/b2dhommatrix.hxx:118
basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator*=(double)
include/basegfx/matrix/b2dhommatrix.hxx:119
basegfx::B2DHomMatrix & basegfx::B2DHomMatrix::operator/=(double)
include/basegfx/matrix/b2dhommatrixtools.hxx:132
basegfx::B2DHomMatrix basegfx::utils::createRotateAroundCenterKeepAspectRatioStayInsideRange(const basegfx::B2DRange &,double)
include/basegfx/matrix/b2dhommatrixtools.hxx:214
double basegfx::utils::B2DHomMatrixBufferedOnDemandDecompose::getShearX() const
include/basegfx/matrix/b3dhommatrix.hxx:66
void basegfx::B3DHomMatrix::rotate(const basegfx::B3DTuple &)
include/basegfx/matrix/b3dhommatrix.hxx:70
void basegfx::B3DHomMatrix::translate(const basegfx::B3DTuple &)
include/basegfx/matrix/b3dhommatrix.hxx:74
void basegfx::B3DHomMatrix::scale(const basegfx::B3DTuple &)
include/basegfx/matrix/b3dhommatrix.hxx:97
basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator+=(const basegfx::B3DHomMatrix &)
include/basegfx/matrix/b3dhommatrix.hxx:98
basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator-=(const basegfx::B3DHomMatrix &)
include/basegfx/matrix/b3dhommatrix.hxx:105
basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator*=(double)
include/basegfx/matrix/b3dhommatrix.hxx:106
basegfx::B3DHomMatrix & basegfx::B3DHomMatrix::operator/=(double)
include/basegfx/numeric/ftools.hxx:116
double basegfx::snapToRange(double,double,double)
include/basegfx/numeric/ftools.hxx:120
double basegfx::copySign(double,double)
include/basegfx/pixel/bpixel.hxx:53
basegfx::BPixel::BPixel(unsigned char,unsigned char,unsigned char,unsigned char)
include/basegfx/pixel/bpixel.hxx:84
_Bool basegfx::BPixel::operator==(const basegfx::BPixel &) const
include/basegfx/pixel/bpixel.hxx:89
_Bool basegfx::BPixel::operator!=(const basegfx::BPixel &) const
include/basegfx/point/b2ipoint.hxx:69
basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const basegfx::B2IPoint &)
include/basegfx/point/b2ipoint.hxx:78
basegfx::B2IPoint & basegfx::B2IPoint::operator*=(int)
include/basegfx/point/b2ipoint.hxx:95
basegfx::B2IPoint & basegfx::B2IPoint::operator*=(const basegfx::B2DHomMatrix &)
include/basegfx/point/b3dpoint.hxx:74
basegfx::B3DPoint & basegfx::B3DPoint::operator*=(const basegfx::B3DPoint &)
include/basegfx/point/b3dpoint.hxx:84
basegfx::B3DPoint & basegfx::B3DPoint::operator*=(double)
include/basegfx/polygon/b2dtrapezoid.hxx:70
basegfx::B2DPolygon basegfx::B2DTrapezoid::getB2DPolygon() const
include/basegfx/polygon/b2dtrapezoid.hxx:102
void basegfx::utils::createLineTrapezoidFromB2DPolygon(std::vector<basegfx::B2DTrapezoid> &,const basegfx::B2DPolygon &,double)
include/basegfx/polygon/b3dpolypolygon.hxx:88
void basegfx::B3DPolyPolygon::remove(unsigned int,unsigned int)
include/basegfx/polygon/b3dpolypolygon.hxx:108
basegfx::B3DPolygon * basegfx::B3DPolyPolygon::begin()
include/basegfx/polygon/b3dpolypolygon.hxx:109
basegfx::B3DPolygon * basegfx::B3DPolyPolygon::end()
include/basegfx/range/b1drange.hxx:50
basegfx::B1DRange::B1DRange(double)
include/basegfx/range/b1drange.hxx:72
_Bool basegfx::B1DRange::operator==(const basegfx::B1DRange &) const
include/basegfx/range/b1drange.hxx:143
double basegfx::B1DRange::clamp(double) const
include/basegfx/range/b2dpolyrange.hxx:64
_Bool basegfx::B2DPolyRange::operator!=(const basegfx::B2DPolyRange &) const
include/basegfx/range/b2drange.hxx:128
const basegfx::B2DRange & basegfx::B2DRange::getUnitB2DRange()
include/basegfx/range/b2drange.hxx:133
basegfx::B2DRange basegfx::operator*(const basegfx::B2DHomMatrix &,const basegfx::B2DRange &)
include/basegfx/range/b2ibox.hxx:61
basegfx::B2IBox::B2IBox()
include/basegfx/range/b2ibox.hxx:64
basegfx::B2IBox::B2IBox(const basegfx::B2ITuple &)
include/basegfx/range/b2ibox.hxx:83
basegfx::B2IBox::B2IBox(const basegfx::B2ITuple &,const basegfx::B2ITuple &)
include/basegfx/range/b2ibox.hxx:101
_Bool basegfx::B2IBox::operator==(const basegfx::B2IBox &) const
include/basegfx/range/b2ibox.hxx:107
_Bool basegfx::B2IBox::operator!=(const basegfx::B2IBox &) const
include/basegfx/range/b2ibox.hxx:150
_Bool basegfx::B2IBox::isInside(const basegfx::B2ITuple &) const
include/basegfx/range/b2ibox.hxx:166
void basegfx::B2IBox::intersect(const basegfx::B2IBox &)
include/basegfx/range/b3drange.hxx:97
_Bool basegfx::B3DRange::operator!=(const basegfx::B3DRange &) const
include/basegfx/range/b3drange.hxx:198
basegfx::B3DTuple basegfx::B3DRange::clamp(const basegfx::B3DTuple &) const
include/basegfx/range/b3drange.hxx:218
const basegfx::B3DRange & basegfx::B3DRange::getUnitB3DRange()
include/basegfx/range/b3drange.hxx:223
basegfx::B3DRange basegfx::operator*(const basegfx::B3DHomMatrix &,const basegfx::B3DRange &)
include/basegfx/range/Range2D.hxx:170
Tuple2D<type-parameter-?-?> basegfx::Range2D::clamp(const Tuple2D<type-parameter-?-?> &) const
include/basegfx/tuple/b3ituple.hxx:43
basegfx::B3ITuple::B3ITuple()
include/basegfx/tuple/b3ituple.hxx:66
const int & basegfx::B3ITuple::operator[](int) const
include/basegfx/tuple/b3ituple.hxx:75
int & basegfx::B3ITuple::operator[](int)
include/basegfx/tuple/Size2D.hxx:72
Size2D<TYPE> & basegfx::Size2D::operator/=(type-parameter-?-?)
include/basegfx/tuple/Size2D.hxx:90
Size2D<type-parameter-?-?> basegfx::operator+(const Size2D<type-parameter-?-?> &,const Size2D<type-parameter-?-?> &)
include/basegfx/tuple/Size2D.hxx:98
Size2D<type-parameter-?-?> basegfx::operator*(const Size2D<type-parameter-?-?> &,const Size2D<type-parameter-?-?> &)
include/basegfx/tuple/Size2D.hxx:106
Size2D<type-parameter-?-?> basegfx::operator/(const Size2D<type-parameter-?-?> &,const Size2D<type-parameter-?-?> &)
include/basegfx/tuple/Tuple2D.hxx:83
_Bool basegfx::Tuple2D::equal(const basegfx::Tuple2D<double> &) const
include/basegfx/tuple/Tuple2D.hxx:83
_Bool basegfx::Tuple2D::equal(const basegfx::Tuple2D<int> &) const
include/basegfx/tuple/Tuple2D.hxx:83
_Bool basegfx::Tuple2D::equal(const basegfx::Tuple2D<long> &) const
include/basegfx/utils/b2dclipstate.hxx:72
_Bool basegfx::utils::B2DClipState::operator!=(const basegfx::utils::B2DClipState &) const
include/basegfx/utils/canvastools.hxx:110
struct com::sun::star::geometry::AffineMatrix3D & basegfx::unotools::affineMatrixFromHomMatrix3D(struct com::sun::star::geometry::AffineMatrix3D &,const basegfx::B3DHomMatrix &)
include/basegfx/utils/canvastools.hxx:130
basegfx::B3DRange basegfx::unotools::b3DRectangleFromRealRectangle3D(const struct com::sun::star::geometry::RealRectangle3D &)
include/basegfx/utils/systemdependentdata.hxx:83
unsigned int basegfx::SystemDependentData::getCombinedHoldCyclesInSeconds() const
include/basegfx/utils/unopolypolygon.hxx:87
const basegfx::B2DPolyPolygon & basegfx::unotools::UnoPolyPolygon::getPolyPolygonUnsafe() const
include/basegfx/vector/b2dvector.hxx:81
basegfx::B2DVector & basegfx::B2DVector::operator*=(const basegfx::B2DVector &)
include/basegfx/vector/b2ivector.hxx:72
basegfx::B2IVector & basegfx::B2IVector::operator*=(const basegfx::B2IVector &)
include/basegfx/vector/b2ivector.hxx:81
basegfx::B2IVector & basegfx::B2IVector::operator*=(int)
include/basegfx/vector/b2ivector.hxx:115
basegfx::B2IVector & basegfx::B2IVector::operator*=(const basegfx::B2DHomMatrix &)
include/basegfx/vector/b3dvector.hxx:74
basegfx::B3DVector & basegfx::B3DVector::operator*=(const basegfx::B3DVector &)
include/basic/codecompletecache.hxx:82
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const CodeCompleteDataCache &)
include/basic/sbxvar.hxx:138
struct SbxValues * SbxValue::data()
include/codemaker/commoncpp.hxx:47
rtl::OString codemaker::cpp::translateUnoToCppType(enum codemaker::UnoType::Sort,std::basic_string_view<char16_t>)
include/codemaker/global.hxx:54
FileStream & operator<<(FileStream &,const rtl::OString *)
include/codemaker/global.hxx:56
FileStream & operator<<(FileStream &,const rtl::OStringBuffer *)
include/codemaker/global.hxx:57
FileStream & operator<<(FileStream &,const rtl::OStringBuffer &)
include/codemaker/options.hxx:54
const rtl::OString & Options::getProgramName() const
include/comphelper/automationinvokedzone.hxx:26
comphelper::Automation::AutomationInvokedZone::AutomationInvokedZone()
include/comphelper/basicio.hxx:52
const com::sun::star::uno::Reference<com::sun::star::io::XObjectInputStream> & comphelper::operator>>(const com::sun::star::uno::Reference<com::sun::star::io::XObjectInputStream> &,unsigned int &)
include/comphelper/basicio.hxx:53
const com::sun::star::uno::Reference<com::sun::star::io::XObjectOutputStream> & comphelper::operator<<(const com::sun::star::uno::Reference<com::sun::star::io::XObjectOutputStream> &,unsigned int)
include/comphelper/configuration.hxx:240
type-parameter-?-? comphelper::ConfigurationLocalizedProperty::get()
include/comphelper/configuration.hxx:256
void comphelper::ConfigurationLocalizedProperty::set(const type-parameter-?-? &,const std::shared_ptr<comphelper::ConfigurationChanges> &)
include/comphelper/configuration.hxx:291
com::sun::star::uno::Reference<com::sun::star::container::XHierarchicalNameReplace> comphelper::ConfigurationGroup::get(const std::shared_ptr<comphelper::ConfigurationChanges> &)
include/comphelper/errcode.hxx:84
_Bool ErrCode::operator<(const ErrCode &) const
include/comphelper/errcode.hxx:85
_Bool ErrCode::operator<=(const ErrCode &) const
include/comphelper/errcode.hxx:86
_Bool ErrCode::operator>(const ErrCode &) const
include/comphelper/errcode.hxx:87
_Bool ErrCode::operator>=(const ErrCode &) const
include/comphelper/flagguard.hxx:33
ValueRestorationGuard_Impl<T> comphelper::<deduction guide for ValueRestorationGuard_Impl>(ValueRestorationGuard_Impl<T>)
include/comphelper/flagguard.hxx:37
ValueRestorationGuard_Impl<T> comphelper::<deduction guide for ValueRestorationGuard_Impl>(type-parameter-?-? &)
include/comphelper/flagguard.hxx:46
ValueRestorationGuard<T> comphelper::<deduction guide for ValueRestorationGuard>(ValueRestorationGuard<T>)
include/comphelper/flagguard.hxx:49
ValueRestorationGuard<T> comphelper::<deduction guide for ValueRestorationGuard>(type-parameter-?-? &)
include/comphelper/flagguard.hxx:54
comphelper::ValueRestorationGuard::ValueRestorationGuard(_Bool &,type-parameter-?-? &&)
include/comphelper/flagguard.hxx:54
comphelper::ValueRestorationGuard::ValueRestorationGuard(const drawinglayer::primitive2d::StructureTagPrimitive2D *&,type-parameter-?-? &&)
include/comphelper/flagguard.hxx:54
comphelper::ValueRestorationGuard::ValueRestorationGuard(const unsigned char *&,type-parameter-?-? &&)
include/comphelper/flagguard.hxx:54
comphelper::ValueRestorationGuard::ValueRestorationGuard(int &,type-parameter-?-? &&)
include/comphelper/flagguard.hxx:54
comphelper::ValueRestorationGuard::ValueRestorationGuard(long &,type-parameter-?-? &&)
include/comphelper/flagguard.hxx:54
comphelper::ValueRestorationGuard::ValueRestorationGuard(unsigned char &,type-parameter-?-? &&)
include/comphelper/flagguard.hxx:54
ValueRestorationGuard<T> comphelper::<deduction guide for ValueRestorationGuard>(type-parameter-?-? &,type-parameter-?-? &&)
include/comphelper/interfacecontainer3.hxx:48
OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(OInterfaceIteratorHelper3<ListenerT>)
include/comphelper/interfacecontainer3.hxx:63
OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(OInterfaceContainerHelper3<type-parameter-?-?> &)
include/comphelper/interfacecontainer3.hxx:91
OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(const OInterfaceIteratorHelper3<ListenerT> &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XActionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XAdjustmentListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XDockableWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XItemListListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XItemListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XKeyHandler::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMenuListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMouseClickHandler::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XSpinListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XStyleChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XTabListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XTextListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XTopWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XVclContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XWindowListener2::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::grid::XGridSelectionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::tab::XTabPageContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::tree::XTreeEditListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::awt::tree::XTreeExpansionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::beans::XPropertiesChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::beans::XPropertySetInfoChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::beans::XVetoableChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::container::XContainerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::document::XDocumentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::document::XStorageChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::document::XUndoManagerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::drawing::XShape::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XApproveActionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XConfirmDeleteListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XDatabaseParameterListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XFormControllerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XGridControlListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XLoadListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XResetListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XSubmitListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::XUpdateListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::binding::XListEntryListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::runtime::XFilterControllerListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::submission::XSubmissionVetoListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::form::validation::XFormComponentValidityListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::frame::XStatusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::linguistic2::XDictionaryEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::linguistic2::XDictionaryListEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::linguistic2::XLinguServiceEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::presentation::XShapeEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::presentation::XSlideShowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::script::XScriptListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::script::vba::XVBAScriptListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdb::XDatabaseRegistrationsListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdb::XRowSetApproveListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdb::XRowSetChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdb::XRowsChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdb::XSQLErrorListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdb::application::XCopyTableListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::sdbc::XRowSetListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::text::XPasteListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::ucb::XContentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::ui::XContextMenuInterceptor::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::util::XChangesListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::util::XCloseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::util::XFlushListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::util::XModeChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::util::XModifyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer3.hxx:213
void comphelper::OInterfaceContainerHelper3::notifyEach(void (com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:46
OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(OInterfaceIteratorHelper4<ListenerT>)
include/comphelper/interfacecontainer4.hxx:63
OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(std::unique_lock<std::mutex> &,OInterfaceContainerHelper4<type-parameter-?-?> &)
include/comphelper/interfacecontainer4.hxx:95
OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(const OInterfaceIteratorHelper4<ListenerT> &)
include/comphelper/interfacecontainer4.hxx:188
void comphelper::OInterfaceContainerHelper4::clear(std::unique_lock<std::mutex> &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::accessibility::XAccessibleEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XFocusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XKeyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XMouseListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XMouseMotionListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XPaintListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::XWindowListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::awt::grid::XGridColumnListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertiesChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertyChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::beans::XPropertySetInfoChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::chart::XChartDataChangeEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XDocumentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::document::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::frame::XStatusListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::io::XStreamListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::lang::XEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ucb::XContentEventListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ui::XContextMenuInterceptor::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::ui::XUIConfigurationListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XModifyListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::util::XRefreshListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::view::XPrintJobListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/interfacecontainer4.hxx:228
void comphelper::OInterfaceContainerHelper4::notifyEach(std::unique_lock<std::mutex> &,void (com::sun::star::view::XSelectionChangeListener::*)(const type-parameter-?-? &),const type-parameter-?-? &)
include/comphelper/logging.hxx:58
rtl::OUString comphelper::log::convert::convertLogArgToString(char16_t)
include/comphelper/logging.hxx:224
void comphelper::EventLogger::log(const int,const char *,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:245
void comphelper::EventLogger::log(const int,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:257
void comphelper::EventLogger::log(const int,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:270
void comphelper::EventLogger::log(const int,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:294
void comphelper::EventLogger::logp(const int,const char *,const char *,const rtl::OUString &,type-parameter-?-?) const
include/comphelper/logging.hxx:303
void comphelper::EventLogger::logp(const int,const char *,const char *,const rtl::OUString &,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:313
void comphelper::EventLogger::logp(const int,const char *,const char *,const rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:324
void comphelper::EventLogger::logp(const int,const char *,const char *,const rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:336
void comphelper::EventLogger::logp(const int,const char *,const char *,const rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:349
void comphelper::EventLogger::logp(const int,const char *,const char *,const rtl::OUString &,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:373
void comphelper::EventLogger::logp(const int,const char *,const char *,const char *,type-parameter-?-?) const
include/comphelper/logging.hxx:382
void comphelper::EventLogger::logp(const int,const char *,const char *,const char *,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:392
void comphelper::EventLogger::logp(const int,const char *,const char *,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:403
void comphelper::EventLogger::logp(const int,const char *,const char *,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:415
void comphelper::EventLogger::logp(const int,const char *,const char *,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/logging.hxx:428
void comphelper::EventLogger::logp(const int,const char *,const char *,const char *,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?,type-parameter-?-?) const
include/comphelper/lok.hxx:49
_Bool comphelper::LibreOfficeKit::isLocalRendering()
include/comphelper/lok.hxx:112
void comphelper::LibreOfficeKit::setBlockedCommandList(const char *)
include/comphelper/multicontainer2.hxx:112
void comphelper::OMultiTypeInterfaceContainerHelper2::clear()
include/comphelper/multiinterfacecontainer3.hxx:179
void comphelper::OMultiTypeInterfaceContainerHelperVar3::clear()
include/comphelper/multiinterfacecontainer4.hxx:57
_Bool comphelper::OMultiTypeInterfaceContainerHelperVar4::hasContainedTypes() const
include/comphelper/multiinterfacecontainer4.hxx:161
void comphelper::OMultiTypeInterfaceContainerHelperVar4::clear()
include/comphelper/profilezone.hxx:56
comphelper::ProfileZone::ProfileZone(const char *,const std::map<rtl::OUString, rtl::OUString> &)
include/comphelper/propagg.hxx:59
_Bool comphelper::internal::OPropertyAccessor::operator==(const struct comphelper::internal::OPropertyAccessor &) const
include/comphelper/propagg.hxx:60
_Bool comphelper::internal::OPropertyAccessor::operator<(const struct comphelper::internal::OPropertyAccessor &) const
include/comphelper/proparrhlp.hxx:83
cppu::IPropertyArrayHelper * comphelper::OAggregationArrayUsageHelper::createArrayHelper() const
include/comphelper/PropertyInfoHash.hxx:36
comphelper::PropertyInfo::PropertyInfo(const rtl::OUString &,int,const com::sun::star::uno::Type &,short)
include/comphelper/scopeguard.hxx:54
ScopeGuard<Func> comphelper::<deduction guide for ScopeGuard>(ScopeGuard<Func>)
include/comphelper/scopeguard.hxx:59
ScopeGuard<Func> comphelper::<deduction guide for ScopeGuard>(type-parameter-?-? &&)
include/comphelper/scopeguard.hxx:75
ScopeGuard<Func> comphelper::<deduction guide for ScopeGuard>(const ScopeGuard<Func> &)
include/comphelper/sequence.hxx:207
Sequence<type-parameter-?-?> comphelper::containerToSequence(const type-parameter-?-? (&)[N])
include/comphelper/sequence.hxx:207
Sequence<type-parameter-?-?> comphelper::containerToSequence(const type-parameter-?-? (&)[S])
include/comphelper/sequenceashashmap.hxx:403
__gnu_debug::_Safe_iterator<struct std::__detail::_Node_const_iterator<struct std::pair<const struct comphelper::OUStringAndHashCode, com::sun::star::uno::Any>, false, true>, std::unordered_map<struct comphelper::OUStringAndHashCode, com::sun::star::uno::Any, struct comphelper::OUStringAndHashCodeHash, struct comphelper::OUStringAndHashCodeEqual>, struct std::forward_iterator_tag> comphelper::SequenceAsHashMap::find(const struct comphelper::OUStringAndHashCode &) const
include/comphelper/servicedecl.hxx:107
comphelper::service_decl::ServiceDecl::ServiceDecl(const type-parameter-?-? &,const char *,const char *)
include/comphelper/stl_types.hxx:81
_Bool comphelper::UniquePtrValueLess::operator()(const type-parameter-?-? &,const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &) const
include/comphelper/stl_types.hxx:87
_Bool comphelper::UniquePtrValueLess::operator()(const unique_ptr<type-parameter-?-?, default_delete<type-parameter-?-?> > &,const type-parameter-?-? &) const
include/comphelper/string.hxx:98
std::basic_string_view<char> comphelper::string::stripEnd(std::basic_string_view<char>,char)
include/comphelper/traceevent.hxx:215
void comphelper::AsyncEvent::finish()
include/comphelper/unique_disposing_ptr.hxx:47
type-parameter-?-? & comphelper::unique_disposing_ptr::operator*() const
include/comphelper/unwrapargs.hxx:51
void comphelper::detail::unwrapArgs(const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &,int,const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &)
include/connectivity/dbcharset.hxx:137
const dbtools::OCharsetMap::CharsetIterator & dbtools::OCharsetMap::CharsetIterator::operator--()
include/connectivity/FValue.hxx:346
unsigned char connectivity::ORowSetValue::getUInt8() const
include/connectivity/FValue.hxx:428
connectivity::TSetBound::TSetBound(_Bool)
include/connectivity/FValue.hxx:429
void connectivity::TSetBound::operator()(connectivity::ORowSetValue &) const
include/connectivity/sqlparse.hxx:186
rtl::OUString connectivity::OSQLParser::RuleIDToStr(unsigned int)
include/desktop/crashreport.hxx:104
rtl::OUString CrashReporter::getActiveSfxObjectName()
include/desktop/crashreport.hxx:109
rtl::OUString CrashReporter::getLoggedUnoCommands()
include/drawinglayer/geometry/viewinformation2d.hxx:123
_Bool drawinglayer::geometry::ViewInformation2D::operator!=(const drawinglayer::geometry::ViewInformation2D &) const
include/drawinglayer/primitive2d/baseprimitive2d.hxx:136
_Bool drawinglayer::primitive2d::BasePrimitive2D::operator!=(const drawinglayer::primitive2d::BasePrimitive2D &) const
include/drawinglayer/primitive3d/baseprimitive3d.hxx:65
drawinglayer::primitive3d::Primitive3DContainer::Primitive3DContainer(type-parameter-?-?,type-parameter-?-?)
include/drawinglayer/primitive3d/baseprimitive3d.hxx:112
_Bool drawinglayer::primitive3d::BasePrimitive3D::operator!=(const drawinglayer::primitive3d::BasePrimitive3D &) const
include/drawinglayer/tools/primitive2dxmldump.hxx:45
void drawinglayer::Primitive2dXmlDump::dump(const drawinglayer::primitive2d::Primitive2DContainer &,const rtl::OUString &)
include/editeng/colritem.hxx:96
short SvxColorItem::GetTintOrShade() const
include/editeng/colritem.hxx:101
void SvxColorItem::SetTintOrShade(short)
include/editeng/editeng.hxx:244
_Bool EditEngine::GetVertical() const
include/editeng/editeng.hxx:246
enum TextRotation EditEngine::GetRotation() const
include/editeng/hyphenzoneitem.hxx:67
_Bool SvxHyphenZoneItem::IsPageEnd() const
include/editeng/outlobj.hxx:146
std::optional::optional(struct std::in_place_t,type-parameter-?-? &&...)
include/editeng/outlobj.hxx:165
_Bool std::optional::has_value() const
include/editeng/outlobj.hxx:169
OutlinerParaObject & std::optional::value()
include/filter/msfilter/mstoolbar.hxx:103
Indent::Indent(_Bool)
include/formula/opcode.hxx:523
std::basic_string<char> OpCodeEnumToString(enum OpCode)
include/formula/tokenarray.hxx:182
formula::FormulaTokenArrayReferencesIterator formula::FormulaTokenArrayReferencesIterator::operator++(int)
include/formula/tokenarray.hxx:581
basic_ostream<type-parameter-?-?, type-parameter-?-?> & formula::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const formula::FormulaTokenArray &)
include/framework/addonsoptions.hxx:195
rtl::OUString framework::AddonsOptions::GetAddonsNotebookBarResourceName(unsigned int) const
include/framework/addonsoptions.hxx:220
_Bool framework::AddonsOptions::GetMergeNotebookBarInstructions(const rtl::OUString &,std::vector<struct framework::MergeNotebookBarInstruction> &) const
include/i18nlangtag/languagetag.hxx:270
enum LanguageTag::ScriptType LanguageTag::getScriptType() const
include/o3tl/any.hxx:155
std::optional<const struct o3tl::detail::Void> o3tl::tryAccess(const com::sun::star::uno::Any &)
include/o3tl/cow_wrapper.hxx:333
type-parameter-?-? * o3tl::cow_wrapper::get()
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const Color &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const Image &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const Size &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const SwSubFont &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const _Bool &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const char *const &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const double &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const enum SwFieldTypesEnum &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const enum writerfilter::dmapper::PropertyIds &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const int &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const rtl::OUString &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const rtl::Reference<XPropertyList> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const short &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::shared_ptr<dbaccess::OContentHelper_Impl> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<ImageList> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<QCursor> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<SfxModule> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<SvxNumBulletItem> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<SwContentType> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<struct PPTCharSheet> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<struct PPTParaSheet> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<svx::PropertyValueProvider> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::unique_ptr<weld::TreeIter> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const std::vector<vcl::Window *> &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const struct (anonymous namespace)::FactoryInfo &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const struct INetURLObject::SchemeInfo &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const struct PPTExtParaSheet &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const struct com::sun::star::table::BorderLine2 &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const unsigned long &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const unsigned short &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(const void *const &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:66
o3tl::enumarray::enumarray(struct _GdkCursor *const &,type-parameter-?-? &&...)
include/o3tl/enumarray.hxx:122
typename type-parameter-?-?::value_type * o3tl::enumarray_iterator::operator->() const
include/o3tl/enumarray.hxx:147
const typename type-parameter-?-?::value_type * o3tl::enumarray_const_iterator::operator->() const
include/o3tl/enumarray.hxx:150
_Bool o3tl::enumarray_const_iterator::operator==(const enumarray_const_iterator<EA> &) const
include/o3tl/float_int_conversion.hxx:64
typename enable_if<std::is_floating_point_v<F>, type-parameter-?-?>::type o3tl::roundAway(type-parameter-?-?)
include/o3tl/hash_combine.hxx:19
typename enable_if<(sizeof(N) == 4), void>::type o3tl::hash_combine(type-parameter-?-? &,const type-parameter-?-? *,unsigned long)
include/o3tl/hash_combine.hxx:30
typename enable_if<(sizeof(N) == 4), void>::type o3tl::hash_combine(type-parameter-?-? &,const type-parameter-?-? &)
include/o3tl/hash_combine.hxx:37
typename enable_if<(sizeof(N) == 8), void>::type o3tl::hash_combine(type-parameter-?-? &,const type-parameter-?-? *,unsigned long)
include/o3tl/intcmp.hxx:52
_Bool o3tl::cmp_not_equal(type-parameter-?-?,type-parameter-?-?)
include/o3tl/intcmp.hxx:83
_Bool o3tl::cmp_greater_equal(type-parameter-?-?,type-parameter-?-?)
include/o3tl/intcmp.hxx:91
IntCmp<T> o3tl::<deduction guide for IntCmp>(IntCmp<T>)
include/o3tl/intcmp.hxx:93
IntCmp<T> o3tl::<deduction guide for IntCmp>(type-parameter-?-?)
include/o3tl/intcmp.hxx:101
_Bool o3tl::operator==(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>)
include/o3tl/intcmp.hxx:106
_Bool o3tl::operator!=(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>)
include/o3tl/intcmp.hxx:111
_Bool o3tl::operator<(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>)
include/o3tl/intcmp.hxx:116
_Bool o3tl::operator>(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>)
include/o3tl/intcmp.hxx:126
_Bool o3tl::operator>=(IntCmp<type-parameter-?-?>,IntCmp<type-parameter-?-?>)
include/o3tl/sorted_vector.hxx:39
sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(sorted_vector<Value, Compare, Find, >)
include/o3tl/sorted_vector.hxx:52
sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(initializer_list<type-parameter-?-?>)
include/o3tl/sorted_vector.hxx:57
sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>()
include/o3tl/sorted_vector.hxx:58
sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(const sorted_vector<Value, Compare, Find, > &)
include/o3tl/sorted_vector.hxx:59
sorted_vector<Value, Compare, Find, > o3tl::<deduction guide for sorted_vector>(sorted_vector<Value, Compare, Find, > &&)
include/o3tl/sorted_vector.hxx:227
_Bool o3tl::sorted_vector::operator!=(const sorted_vector<Value, Compare, Find, > &) const
include/o3tl/sorted_vector.hxx:242
void o3tl::sorted_vector::insert_sorted_unique_vector(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &)
include/o3tl/span.hxx:36
span<T> o3tl::<deduction guide for span>(span<T>)
include/o3tl/span.hxx:50
span<T> o3tl::<deduction guide for span>()
include/o3tl/span.hxx:53
o3tl::span::span(const SfxPoolItem *(&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const SfxPoolItem *const (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const int (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const struct SfxItemPropertyMapEntry (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const struct SvXMLItemMapEntry (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const struct XMLPropertyState (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const struct com::sun::star::beans::NamedValue (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const struct com::sun::star::beans::PropertyValue (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const struct comphelper::PropertyMapEntry (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(const unsigned char (&)[_Len])
include/o3tl/span.hxx:53
o3tl::span::span(const unsigned short (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(int (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(struct SfxItemPropertyMapEntry (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(struct SvXMLItemMapEntry (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(struct XMLPropertyState (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(struct com::sun::star::beans::NamedValue (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(struct com::sun::star::beans::PropertyValue (&)[N])
include/o3tl/span.hxx:53
o3tl::span::span(unsigned char (&)[_Len])
include/o3tl/span.hxx:53
o3tl::span::span(unsigned short (&)[N])
include/o3tl/span.hxx:53
span<T> o3tl::<deduction guide for span>(type-parameter-?-? (&)[S])
include/o3tl/span.hxx:55
span<T> o3tl::<deduction guide for span>(type-parameter-?-? *,unsigned long)
include/o3tl/span.hxx:63
o3tl::span::span(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &)
include/o3tl/span.hxx:63
span<T> o3tl::<deduction guide for span>(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &)
include/o3tl/span.hxx:67
span<T> o3tl::<deduction guide for span>(const span<typename remove_const<type-parameter-?-?>::type> &)
include/o3tl/strong_int.hxx:86
o3tl::strong_int::strong_int(type-parameter-?-?,typename enable_if<std::is_integral<T>::value, int>::type)
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct FractionTag<100> >,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct Tag_TextFrameIndex>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct ViewShellDocIdTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct ViewShellIdTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<short, struct FractionTag<10> >,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<short, struct SdrLayerIDTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct SfxInterfaceIdTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:132
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct ToolBoxItemIdTag>,type-parameter-?-?...) const
include/o3tl/typed_flags_set.hxx:113
typename typed_flags<type-parameter-?-?>::Wrap operator~(typename typed_flags<type-parameter-?-?>::Wrap)
include/o3tl/typed_flags_set.hxx:146
typename typed_flags<type-parameter-?-?>::Wrap operator^(typename typed_flags<type-parameter-?-?>::Wrap,type-parameter-?-?)
include/o3tl/typed_flags_set.hxx:313
typename typed_flags<type-parameter-?-?>::Self operator^=(type-parameter-?-? &,typename typed_flags<type-parameter-?-?>::Wrap)
include/o3tl/vector_pool.hxx:84
o3tl::detail::struct_from_value::type::type()
include/oox/export/DMLPresetShapeExport.hxx:100
_Bool oox::drawingml::DMLPresetShapeExporter::HasHandleValue() const
include/oox/export/DMLPresetShapeExport.hxx:129
com::sun::star::uno::Any oox::drawingml::DMLPresetShapeExporter::FindHandleValue(com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue>,std::basic_string_view<char16_t>)
include/oox/helper/attributelist.hxx:69
long oox::AttributeConversion::decodeHyper(std::basic_string_view<char16_t>)
include/oox/helper/containerhelper.hxx:51
_Bool oox::ValueRange::operator!=(const struct oox::ValueRange &) const
include/oox/helper/containerhelper.hxx:72
const std::vector<struct oox::ValueRange> & oox::ValueRangeSet::getRanges() const
include/oox/helper/containerhelper.hxx:99
oox::Matrix::Matrix<Type>(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_reference)
include/oox/helper/containerhelper.hxx:110
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::iterator oox::Matrix::at(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
include/oox/helper/containerhelper.hxx:113
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::reference oox::Matrix::operator()(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
include/oox/helper/containerhelper.hxx:117
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_iterator oox::Matrix::begin() const
include/oox/helper/containerhelper.hxx:119
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::const_iterator oox::Matrix::end() const
include/oox/helper/containerhelper.hxx:121
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::iterator oox::Matrix::row_begin(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
include/oox/helper/containerhelper.hxx:123
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::iterator oox::Matrix::row_end(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
include/oox/helper/containerhelper.hxx:126
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::reference oox::Matrix::row_front(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
include/oox/helper/propertymap.hxx:115
void oox::PropertyMap::dumpCode(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &)
include/oox/helper/propertymap.hxx:116
void oox::PropertyMap::dumpData(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &)
include/oox/ppt/slidepersist.hxx:93
const std::shared_ptr<struct oox::drawingml::FillProperties> & oox::ppt::SlidePersist::getBackgroundProperties() const
include/opencl/openclconfig.hxx:58
_Bool OpenCLConfig::ImplMatcher::operator!=(const struct OpenCLConfig::ImplMatcher &) const
include/opencl/openclconfig.hxx:95
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct OpenCLConfig &)
include/sax/fshelper.hxx:129
void sax_fastparser::FastSerializerHelper::singleElementNS(int,int,const rtl::Reference<sax_fastparser::FastAttributeList> &)
include/sax/fshelper.hxx:133
void sax_fastparser::FastSerializerHelper::startElementNS(int,int,const rtl::Reference<sax_fastparser::FastAttributeList> &)
include/sax/tools/converter.hxx:206
_Bool sax::Converter::convertAngle(short &,std::basic_string_view<char16_t>,_Bool)
include/sfx2/childwin.hxx:120
void SfxChildWindow::ClearController()
include/sfx2/docfilt.hxx:81
_Bool SfxFilter::GetGpgEncryption() const
include/sfx2/evntconf.hxx:61
struct SfxEventName & SfxEventNamesList::at(unsigned long)
include/sfx2/infobar.hxx:104
void SfxInfoBarWindow::SetCommandHandler(weld::Button &,const rtl::OUString &)
include/sfx2/lokcomponenthelpers.hxx:49
void LokChartHelper::Invalidate()
include/sfx2/msg.hxx:120
const std::type_info * SfxType0::Type() const
include/sfx2/viewsh.hxx:406
enum LOKDeviceFormFactor SfxViewShell::GetLOKDeviceFormFactor() const
include/svl/itemiter.hxx:44
_Bool SfxItemIter::IsAtEnd() const
include/svl/itempool.hxx:103
enum MapUnit SfxItemPool::GetDefaultMetric() const
include/svl/itempool.hxx:158
const type-parameter-?-? * SfxItemPool::GetItem2Default(TypedWhichId<type-parameter-?-?>) const
include/svl/itempool.hxx:199
void SfxItemPool::dumpAsXml(struct _xmlTextWriter *) const
include/svl/lockfilecommon.hxx:60
void svt::LockFileCommon::SetURL(const rtl::OUString &)
include/svl/ondemand.hxx:346
const CharClass & OnDemandCharClass::operator*() const
include/svl/poolitem.hxx:169
type-parameter-?-? * SfxPoolItem::DynamicWhichCast(TypedWhichId<type-parameter-?-?>)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<CntUInt16Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<DatabaseMapItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<DbuTypeCollectionItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<DriverPoolingSettingsItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<MediaItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<NameOrIndex, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<OStringListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<OfaPtrItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<OfaXColorListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SbxItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScCondFormatDlgItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScCondFormatItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScConsolidateItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScHyphenateCell, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScIndentItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScLineBreakCell, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScMergeAttr, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScMergeFlagAttr, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPageHFItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPageScaleToItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPatternAttr, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScPivotItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScProtectionAttr, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScQueryItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScRotateValueItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScShrinkToFitCell, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScSolveItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScSortItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScSubTotalItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpCalcItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpDefaultsItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpFormulaItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpPrintItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScTpViewItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScUserListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScVerticalStackCell, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<ScViewObjectModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsLayoutItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsMiscItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsPrintItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdOptionsSnapItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllPositionXItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllPositionYItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllSizeHeightItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAllSizeWidthItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrAngleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscAbsItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscDirItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscIsRelItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionEscRelItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionFitLineLenItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionLineLenItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCaptionTypeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCircKindItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrCustomShapeGeometryItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeKindItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeLineDeltaCountItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode1GlueDistItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode1HorzDistItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode1VertDistItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode2GlueDistItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode2HorzDistItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrEdgeNode2VertDistItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafBlueItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafContrastItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafCropItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafGamma100Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafGreenItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafInvertItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafLuminanceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafRedItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrGrafTransparenceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrHorzShearAllItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrHorzShearOneItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLayerIdItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLayerNameItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLogicSizeHeightItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrLogicSizeWidthItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureBelowRefEdgeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureDecimalPlacesItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureFormatStringItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureKindItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureOverhangItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureScaleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextAutoAngleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextFixedAngleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextHPosItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextIsFixedAngleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextRota90Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureTextVPosItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMeasureUnitItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMetricItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMoveXItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrMoveYItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrObjPrintableItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrObjVisibleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOnOffItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOnePositionXItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOnePositionYItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOneSizeHeightItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrOneSizeWidthItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrPercentItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeXAllItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeXOneItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeYAllItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrResizeYOneItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrRotateAllItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrRotateOneItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrShearAngleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniAmountItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniCountItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniDelayItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniDirectionItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniKindItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniStartInsideItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextAniStopInsideItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextFitToSizeTypeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextFixedCellHeightItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextHorzAdjustItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTextVertAdjustItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef1XItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef1YItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef2XItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrTransformRef2YItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrVertShearAllItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrVertShearOneItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SdrYesNoItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxAllEnumItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxBoolItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxByteItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxDocumentInfoItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxEnumItemInterface, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxEventNamesItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxFlagItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxFrameItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxGlobalNameItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxGrabBagItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxHyphenRegionItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxInt16Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxInt32Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxInt64Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxIntegerListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxLinkItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxMacroInfoItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxMetricItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxPointItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxPoolItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxRectangleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxScriptOrganizerItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxStringItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxStringListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxTabDialogItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUInt16Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUInt32Item, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUnoAnyItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxUnoFrameItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxVoidItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SfxWatermarkItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvXMLAttrContainerItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DCharacterModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DCloseBackItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DCloseFrontItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DNormalsKindItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DPerspectiveItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DReducedLineGeometryItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DShadeModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DSmoothLidsItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DSmoothNormalsItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureKindItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureProjectionXItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<Svx3DTextureProjectionYItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxAdjustItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxAutoKernItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxB3DVectorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBitmapListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBlinkItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBoxInfoItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBoxItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBrushItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxBulletItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCaseMapItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharHiddenItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharReliefItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharRotateItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCharScaleWidthItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartColorTableItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartIndicateItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartKindErrorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartRegressItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxChartTextOrderItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxClipboardFormatItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxColorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxColorListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxColumnItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxContourItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxCrossedOutItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxDashListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxDoubleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxEmphasisMarkItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxEscapementItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFieldItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontHeightItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFontListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxForbiddenRuleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFormatBreakItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFormatKeepItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFormatSplitItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxFrameDirectionItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGalleryItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGradientListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGraphicItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGrfCrop, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxGridItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHangingPunctuationItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHatchListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHorJustifyItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHyperlinkItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxHyphenZoneItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxJustifyMethodItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxKerningItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLRSpaceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLanguageItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineEndListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLineSpacingItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLongLRSpaceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxLongULSpaceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxMacroItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxMarginItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxNoHyphenItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxNumBulletItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxNumberInfoItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxObjectItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOpaqueItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOrientationItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOrphansItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxOverlineItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPageItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPageModelItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPagePosSizeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPaperBinItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxParaGridItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxParaVertAlignItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPatternListItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItAuthorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItDateItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItIdItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostItTextItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPostureItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxPrintItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxProtectItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRotateModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxRsidItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxScriptSpaceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSearchItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSetItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxShadowItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxShadowedItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSizeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxSmartTagItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTabStopItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTextRotateItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxTwoLinesItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxULSpaceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxUnderlineItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxVerJustifyItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxViewLayoutItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWeightItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWidowsItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWordLineModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxWritingModeItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxZoomItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SvxZoomSliderItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwAddPrinterItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwAttrSetChg, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwAutoFormatGetDocNode, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwChannelBGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwChannelGGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwChannelRGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwCharFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwCondCollItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwConditionTextFormatColl, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwContrastGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwCropGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDocDisplayItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDocPosUpdate, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDrawFrameFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwDrawModeGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwElemItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwEnvItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFindNearestNode, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltAnchor, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltRDFMark, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltRedline, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFltTOX, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFlyFrameFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatAnchor, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatAutoFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatChain, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatCharFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatChg, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatCol, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatContent, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatContentControl, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatDrop, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatEditInReadonly, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatEndAtTextEnd, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatField, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFillOrder, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFlyCnt, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFollowTextFlow, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFooter, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFootnote, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFootnoteAtTextEnd, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatFrameSize, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatHeader, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatHoriOrient, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatINetFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatLayoutSplit, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatLineBreak, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatLineNumber, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatMeta, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatNoBalancedColumns, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatPageDesc, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatRefMark, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatRowSplit, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatRuby, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatSurround, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatURL, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatVertOrient, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFormatWrapInfluenceOnObjPos, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwFrameFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwGammaGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwGrfFormatColl, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwHeaderAndFooterEatSpacingItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwInvertGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwLuminanceGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwMirrorGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwMsgPoolItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwNumRuleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPaMItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPageFootnoteInfoItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwParaConnectBorderItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPtrItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwPtrMsgPoolItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwRegisterItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwRotationGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwShadowCursorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwStringMsgPoolItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTOXMark, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxFormula, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxNumFormat, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableBoxValue, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTableFormulaUpdate, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTestItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTextFormatColl, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTextGridItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwTransparencyGrf, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwUINumRuleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwUpdateAttr, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwVirtPageNumInfo, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<SwWrtShellItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XColorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillAttrSetItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBackgroundItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBitmapItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpPosItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpPosOffsetXItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpPosOffsetYItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpSizeLogItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpSizeYItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpStretchItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpTileItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpTileOffsetXItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillBmpTileOffsetYItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillColorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillFloatTransparenceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillGradientItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillHatchItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillStyleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillTransparenceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFillUseSlideBackgroundItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextAdjustItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextDistanceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextHideFormItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextMirrorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextOutlineItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowColorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowTranspItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowXValItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextShadowYValItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextStartItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XFormTextStyleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XGradientStepCountItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineAttrSetItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineCapItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineColorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineDashItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineEndCenterItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineEndItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineEndWidthItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineJointItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStartCenterItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStartItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStartWidthItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineStyleItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineTransparenceItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XLineWidthItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<XSecondaryFillColorItem, derived_type>, int>::type)
include/svl/typedwhich.hxx:31
TypedWhichId::TypedWhichId(TypedWhichId<type-parameter-?-?>,typename enable_if<std::is_base_of_v<const SfxStringItem, derived_type>, int>::type)
include/svl/whichranges.hxx:52
void svl::Items_t::fill(struct std::pair<unsigned short, unsigned short> *)
include/svtools/ctrlbox.hxx:402
void FontStyleBox::set_size_request(int,int)
include/svtools/ctrlbox.hxx:473
void FontSizeBox::set_size_request(int,int)
include/svtools/DocumentToGraphicRenderer.hxx:105
_Bool DocumentToGraphicRenderer::isImpress() const
include/svtools/HtmlWriter.hxx:46
void HtmlWriter::writeAttribute(SvStream &,std::basic_string_view<char>,int)
include/svtools/scrolladaptor.hxx:59
_Bool ScrollAdaptor::IsHoriScroll() const
include/svx/autoformathelper.hxx:145
_Bool AutoFormatBase::operator==(const AutoFormatBase &) const
include/svx/ClassificationField.hxx:48
const rtl::OUString & svx::ClassificationResult::getDisplayText() const
include/svx/ClassificationField.hxx:53
_Bool svx::ClassificationResult::operator==(const svx::ClassificationResult &) const
include/svx/ColorSets.hxx:102
void svx::Theme::SetName(const rtl::OUString &)
include/svx/diagram/IDiagramHelper.hxx:48
void svx::diagram::DiagramFrameHdl::clicked(const struct svx::diagram::Point &)
include/svx/diagram/IDiagramHelper.hxx:94
rtl::OUString svx::diagram::IDiagramHelper::getString() const
include/svx/dlgctrl.hxx:263
void SvxLineEndLB::set_active_text(const rtl::OUString &)
include/svx/framelink.hxx:168
_Bool svx::frame::operator>(const svx::frame::Style &,const svx::frame::Style &)
include/svx/gallery1.hxx:56
const std::unique_ptr<GalleryBinaryEngineEntry> & GalleryThemeEntry::getGalleryStorageEngineEntry() const
include/svx/gallerybinaryengine.hxx:59
const INetURLObject & GalleryBinaryEngine::GetStrURL() const
include/svx/hlnkitem.hxx:104
void SvxHyperlinkItem::SetReplacementText(const rtl::OUString &)
include/svx/langbox.hxx:97
void SvxLanguageBox::set_size_request(int,int)
include/svx/sidebar/InspectorTextPanel.hxx:49
std::unique_ptr<PanelLayout> svx::sidebar::InspectorTextPanel::Create(weld::Widget *)
include/svx/svdlayer.hxx:74
_Bool SdrLayer::operator==(const SdrLayer &) const
include/svx/svdpntv.hxx:445
_Bool SdrPaintView::IsSwapAsynchron() const
include/svx/svdtrans.hxx:242
_Bool IsMetric(enum MapUnit)
include/svx/txencbox.hxx:81
void SvxTextEncodingBox::grab_focus()
include/svx/txencbox.hxx:135
void SvxTextEncodingTreeView::connect_changed(const Link<weld::TreeView &, void> &)
include/svx/xpoly.hxx:83
_Bool XPolygon::operator==(const XPolygon &) const
include/tools/bigint.hxx:76
BigInt::BigInt(unsigned int)
include/tools/bigint.hxx:82
unsigned short BigInt::operator unsigned short() const
include/tools/bigint.hxx:84
unsigned int BigInt::operator unsigned int() const
include/tools/bigint.hxx:109
BigInt operator-(const BigInt &,const BigInt &)
include/tools/bigint.hxx:112
BigInt operator%(const BigInt &,const BigInt &)
include/tools/bigint.hxx:115
_Bool operator!=(const BigInt &,const BigInt &)
include/tools/bigint.hxx:118
_Bool operator<=(const BigInt &,const BigInt &)
include/tools/color.hxx:32
unsigned int color::extractRGB(unsigned int)
include/tools/cpuid.hxx:67
_Bool cpuid::hasSSE2()
include/tools/cpuid.hxx:74
_Bool cpuid::hasSSSE3()
include/tools/cpuid.hxx:81
_Bool cpuid::hasAVX()
include/tools/cpuid.hxx:88
_Bool cpuid::hasAVX2()
include/tools/cpuid.hxx:95
_Bool cpuid::hasAVX512F()
include/tools/date.hxx:218
_Bool Date::operator>=(const Date &) const
include/tools/date.hxx:244
_Bool Date::IsValidDate(unsigned short,unsigned short,short)
include/tools/datetime.hxx:47
DateTime::DateTime(const tools::Time &)
include/tools/datetime.hxx:88
DateTime operator-(const DateTime &,int)
include/tools/datetime.hxx:90
DateTime operator-(const DateTime &,double)
include/tools/datetime.hxx:93
DateTime operator-(const DateTime &,const tools::Time &)
include/tools/fract.hxx:41
Fraction::Fraction(double,double)
include/tools/fract.hxx:68
Fraction & Fraction::operator+=(double)
include/tools/fract.hxx:69
Fraction & Fraction::operator-=(double)
include/tools/fract.hxx:91
_Bool operator>=(const Fraction &,const Fraction &)
include/tools/fract.hxx:107
Fraction operator+(const Fraction &,double)
include/tools/fract.hxx:108
Fraction operator-(const Fraction &,double)
include/tools/fract.hxx:110
Fraction operator/(const Fraction &,double)
include/tools/gen.hxx:241
Size & Size::operator+=(const Size &)
include/tools/gen.hxx:242
Size & Size::operator-=(const Size &)
include/tools/gen.hxx:244
Size & Size::operator/=(const long)
include/tools/gen.hxx:246
Size operator+(const Size &,const Size &)
include/tools/gen.hxx:247
Size operator-(const Size &,const Size &)
include/tools/gen.hxx:367
Pair & Range::toPair()
include/tools/gen.hxx:430
Pair & Selection::toPair()
include/tools/link.hxx:134
const char * Link::getSourceFilename() const
include/tools/link.hxx:135
int Link::getSourceLineNumber() const
include/tools/link.hxx:136
const char * Link::getTargetName() const
include/tools/poly.hxx:162
_Bool tools::Polygon::operator!=(const tools::Polygon &) const
include/tools/poly.hxx:250
_Bool tools::PolyPolygon::operator!=(const tools::PolyPolygon &) const
include/tools/stream.hxx:516
rtl::OString read_uInt32_lenPrefixed_uInt8s_ToOString(SvStream &)
include/tools/urlobj.hxx:447
_Bool INetURLObject::SetHost(std::basic_string_view<char16_t>)
include/tools/urlobj.hxx:947
int INetURLObject::SubString::set(rtl::OUString &,std::basic_string_view<char16_t>)
include/tools/weakbase.h:77
tools::WeakReference::WeakReference<reference_type>()
include/tools/weakbase.h:80
tools::WeakReference::WeakReference<reference_type>(type-parameter-?-? *)
include/tools/weakbase.h:92
_Bool tools::WeakReference::operator bool() const
include/tools/weakbase.h:98
void tools::WeakReference::reset(type-parameter-?-? *)
include/tools/weakbase.h:101
void tools::WeakReference::reset()
include/tools/weakbase.h:104
type-parameter-?-? * tools::WeakReference::operator->() const
include/tools/weakbase.h:107
type-parameter-?-? & tools::WeakReference::operator*() const
include/tools/weakbase.h:110
_Bool tools::WeakReference::operator==(const type-parameter-?-? *) const
include/tools/weakbase.h:113
_Bool tools::WeakReference::operator==(const WeakReference<reference_type> &) const
include/tools/weakbase.h:116
_Bool tools::WeakReference::operator!=(const WeakReference<reference_type> &) const
include/tools/weakbase.h:119
_Bool tools::WeakReference::operator<(const WeakReference<reference_type> &) const
include/tools/weakbase.h:122
_Bool tools::WeakReference::operator>(const WeakReference<reference_type> &) const
include/tools/weakbase.h:148
void tools::WeakBase::clearWeak()
include/tools/weakbase.h:151
struct tools::WeakConnection * tools::WeakBase::getWeakConnection()
include/tools/XmlWriter.hxx:61
void tools::XmlWriter::element(const rtl::OString &)
include/unotest/directories.hxx:46
rtl::OUString test::Directories::getPathFromWorkdir(std::basic_string_view<char16_t>) const
include/unotools/charclass.hxx:98
_Bool CharClass::isAlphaNumericType(int)
include/unotools/localedatawrapper.hxx:239
const rtl::OUString & LocaleDataWrapper::getLongDateYearSep() const
include/unotools/moduleoptions.hxx:165
_Bool SvtModuleOptions::IsDataBase() const
include/unotools/resmgr.hxx:53
TranslateNId::TranslateNId()
include/unotools/resmgr.hxx:58
_Bool TranslateNId::operator bool() const
include/unotools/resmgr.hxx:61
_Bool TranslateNId::operator!=(const struct TranslateNId &) const
include/unotools/securityoptions.hxx:57
_Bool SvtSecurityOptions::Certificate::operator==(const struct SvtSecurityOptions::Certificate &) const
include/unotools/textsearch.hxx:121
basic_ostream<type-parameter-?-?, type-parameter-?-?> & utl::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const enum utl::SearchParam::SearchType &)
include/unotools/weakref.hxx:73
unotools::WeakReference::WeakReference<interface_type>(type-parameter-?-? &)
include/vcl/alpha.hxx:46
_Bool AlphaMask::operator==(const AlphaMask &) const
include/vcl/alpha.hxx:47
_Bool AlphaMask::operator!=(const AlphaMask &) const
include/vcl/animate/Animation.hxx:42
_Bool Animation::operator!=(const Animation &) const
include/vcl/animate/AnimationFrame.hxx:67
_Bool AnimationFrame::operator!=(const struct AnimationFrame &) const
include/vcl/bitmap.hxx:526
const basegfx::SystemDependentDataHolder * Bitmap::accessSystemDependentDataHolder() const
include/vcl/BitmapBasicMorphologyFilter.hxx:63
BitmapDilateFilter::BitmapDilateFilter(int,unsigned char)
include/vcl/BitmapReadAccess.hxx:87
BitmapColor BitmapReadAccess::GetPixel(const Point &) const
include/vcl/BitmapReadAccess.hxx:107
unsigned char BitmapReadAccess::GetPixelIndex(const Point &) const
include/vcl/builder.hxx:107
const rtl::OString & VclBuilder::getUIFile() const
include/vcl/builder.hxx:333
void VclBuilder::connectNumericFormatterAdjustment(const rtl::OString &,const rtl::OUString &)
include/vcl/builderpage.hxx:36
void BuilderPage::SetHelpId(const rtl::OString &)
include/vcl/ColorMask.hxx:110
void ColorMask::GetColorFor16BitMSB(BitmapColor &,const unsigned char *) const
include/vcl/ColorMask.hxx:111
void ColorMask::SetColorFor16BitMSB(const BitmapColor &,unsigned char *) const
include/vcl/ColorMask.hxx:113
void ColorMask::SetColorFor16BitLSB(const BitmapColor &,unsigned char *) const
include/vcl/commandevent.hxx:99
const CommandGestureRotateData * CommandEvent::GetGestureRotateData() const
include/vcl/commandevent.hxx:256
CommandMediaData::CommandMediaData(enum MediaCommand)
include/vcl/commandevent.hxx:263
_Bool CommandMediaData::GetPassThroughToOS() const
include/vcl/commandevent.hxx:283
CommandGestureSwipeData::CommandGestureSwipeData()
include/vcl/commandevent.hxx:300
CommandGestureLongPressData::CommandGestureLongPressData()
include/vcl/cursor.hxx:96
_Bool vcl::Cursor::operator!=(const vcl::Cursor &) const
include/vcl/customweld.hxx:45
rtl::OUString weld::CustomWidgetController::GetHelpText() const
include/vcl/customweld.hxx:88
Point weld::CustomWidgetController::GetPointerPosPixel() const
include/vcl/customweld.hxx:168
void weld::CustomWeld::queue_draw_area(int,int,int,int)
include/vcl/customweld.hxx:183
void weld::CustomWeld::set_visible(_Bool)
include/vcl/customweld.hxx:187
void weld::CustomWeld::set_tooltip_text(const rtl::OUString &)
include/vcl/fieldvalues.hxx:58
double vcl::ConvertDoubleValue(long,long,unsigned short,enum FieldUnit,enum FieldUnit)
include/vcl/filter/pdfdocument.hxx:119
const std::vector<vcl::filter::PDFReferenceElement *> & vcl::filter::PDFObjectElement::GetDictionaryReferences() const
include/vcl/filter/pdfdocument.hxx:128
unsigned long vcl::filter::PDFObjectElement::GetArrayLength() const
include/vcl/filter/pdfdocument.hxx:188
vcl::filter::PDFNumberElement & vcl::filter::PDFReferenceElement::GetObjectElement() const
include/vcl/filter/PDFiumLibrary.hxx:96
std::unique_ptr<vcl::pdf::PDFiumPageObject> vcl::pdf::PDFiumAnnotation::getObject(int)
include/vcl/filter/PDFiumLibrary.hxx:102
basegfx::B2DSize vcl::pdf::PDFiumAnnotation::getBorderCornerRadius()
include/vcl/font/Feature.hxx:50
vcl::font::FeatureParameter::FeatureParameter(unsigned int,struct TranslateId)
include/vcl/font/Feature.hxx:77
vcl::font::FeatureDefinition::FeatureDefinition(unsigned int,struct TranslateId,std::vector<struct vcl::font::FeatureParameter>)
include/vcl/gdimtf.hxx:108
_Bool GDIMetaFile::operator!=(const GDIMetaFile &) const
include/vcl/GestureEventRotate.hxx:36
GestureEventRotate::GestureEventRotate(int,int,enum GestureEventRotateType,double)
include/vcl/GestureEventZoom.hxx:36
GestureEventZoom::GestureEventZoom(int,int,enum GestureEventZoomType,double)
include/vcl/gradient.hxx:87
_Bool Gradient::operator!=(const Gradient &) const
include/vcl/hatch.hxx:57
_Bool Hatch::operator!=(const Hatch &) const
include/vcl/inputctx.hxx:63
_Bool InputContext::operator!=(const InputContext &) const
include/vcl/ITiledRenderable.hxx:237
enum PointerStyle vcl::ITiledRenderable::getPointer()
include/vcl/jsdialog/executor.hxx:47
void LOKTrigger::trigger_clicked(weld::Button &)
include/vcl/kernarray.hxx:64
int KernArray::get_subunit(unsigned long) const
include/vcl/kernarray.hxx:66
void KernArray::set_subunit(unsigned long,int)
include/vcl/lazydelete.hxx:77
vcl::DeleteOnDeinit::DeleteOnDeinit(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<(anonymous namespace)::SdrHdlBitmapSet> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<(anonymous namespace)::VDevBuffer> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<BitmapEx> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<SalLayoutGlyphsCache> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<VclPtr<OutputDevice> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<Wallpaper> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<drawinglayer::primitive2d::DiscreteShadow> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<o3tl::lru_map<rtl::OUString, std::shared_ptr<const vcl::text::TextLayoutCache>, struct vcl::text::FirstCharsStringHash, struct vcl::text::FastStringCompareEqual, struct vcl::text::(anonymous namespace)::TextLayoutCacheCost> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<std::shared_ptr<weld::Window> > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<std::unordered_map<int, rtl::Reference<LOKClipboard> > > vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lazydelete.hxx:93
std::optional<struct (anonymous namespace)::WavyLineCache> vcl::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/vcl/lok.hxx:23
void vcl::lok::unregisterPollCallbacks()
include/vcl/menubarupdateicon.hxx:74
MenuBarUpdateIconManager::MenuBarUpdateIconManager()
include/vcl/menubarupdateicon.hxx:77
void MenuBarUpdateIconManager::SetShowMenuIcon(_Bool)
include/vcl/menubarupdateicon.hxx:78
void MenuBarUpdateIconManager::SetShowBubble(_Bool)
include/vcl/menubarupdateicon.hxx:79
void MenuBarUpdateIconManager::SetBubbleImage(const Image &)
include/vcl/menubarupdateicon.hxx:80
void MenuBarUpdateIconManager::SetBubbleTitle(const rtl::OUString &)
include/vcl/menubarupdateicon.hxx:81
void MenuBarUpdateIconManager::SetBubbleText(const rtl::OUString &)
include/vcl/menubarupdateicon.hxx:83
void MenuBarUpdateIconManager::SetClickHdl(const Link<LinkParamNone *, void> &)
include/vcl/menubarupdateicon.hxx:85
_Bool MenuBarUpdateIconManager::GetShowMenuIcon() const
include/vcl/menubarupdateicon.hxx:86
_Bool MenuBarUpdateIconManager::GetShowBubble() const
include/vcl/menubarupdateicon.hxx:87
const rtl::OUString & MenuBarUpdateIconManager::GetBubbleTitle() const
include/vcl/menubarupdateicon.hxx:88
const rtl::OUString & MenuBarUpdateIconManager::GetBubbleText() const
include/vcl/opengl/OpenGLHelper.hxx:70
void OpenGLHelper::renderToFile(long,long,const rtl::OUString &)
include/vcl/opengl/OpenGLHelper.hxx:103
void OpenGLHelper::debugMsgStreamWarn(const std::basic_ostringstream<char> &)
include/vcl/outdev.hxx:1526
void OutputDevice::DrawMask(const Point &,const Size &,const Point &,const Size &,const Bitmap &,const Color &)
include/vcl/outdev.hxx:1616
basegfx::B2DPolyPolygon OutputDevice::LogicToPixel(const basegfx::B2DPolyPolygon &,const MapMode &) const
include/vcl/outdev.hxx:1634
basegfx::B2DPolyPolygon OutputDevice::PixelToLogic(const basegfx::B2DPolyPolygon &,const MapMode &) const
include/vcl/pdfextoutdevdata.hxx:108
_Bool vcl::PDFExtOutDevData::GetIsExportNotesInMargin() const
include/vcl/salnativewidgets.hxx:408
_Bool TabitemValue::isBothAligned() const
include/vcl/salnativewidgets.hxx:409
_Bool TabitemValue::isNotAligned() const
include/vcl/settings.hxx:438
void StyleSettings::SetUseFlatBorders(_Bool)
include/vcl/settings.hxx:441
void StyleSettings::SetUseFlatMenus(_Bool)
include/vcl/settings.hxx:453
void StyleSettings::SetHideDisabledMenuItems(_Bool)
include/vcl/settings.hxx:518
void StyleSettings::SetSpinSize(int)
include/vcl/settings.hxx:551
Size StyleSettings::GetToolbarIconSizePixel() const
include/vcl/settings.hxx:667
_Bool HelpSettings::operator!=(const HelpSettings &) const
include/vcl/settings.hxx:728
_Bool AllSettings::operator!=(const AllSettings &) const
include/vcl/split.hxx:92
void Splitter::SetHorizontal(_Bool)
include/vcl/svapp.hxx:163
ApplicationEvent::ApplicationEvent(enum ApplicationEvent::Type,std::vector<rtl::OUString> &&)
include/vcl/svapp.hxx:805
void Application::AppEvent(const ApplicationEvent &)
include/vcl/TaskStopwatch.hxx:91
void TaskStopwatch::reset()
include/vcl/TaskStopwatch.hxx:102
void TaskStopwatch::setInputStop(enum VclInputFlags)
include/vcl/TaskStopwatch.hxx:103
enum VclInputFlags TaskStopwatch::inputStop() const
include/vcl/TaskStopwatch.hxx:111
unsigned int TaskStopwatch::timeSlice()
include/vcl/TaskStopwatch.hxx:112
void TaskStopwatch::setTimeSlice(unsigned int)
include/vcl/textrectinfo.hxx:48
_Bool TextRectInfo::operator!=(const TextRectInfo &) const
include/vcl/toolkit/longcurr.hxx:47
BigInt LongCurrencyFormatter::GetValue() const
include/vcl/toolkit/treelist.hxx:170
const SvTreeListEntry * SvTreeList::GetParent(const SvTreeListEntry *) const
include/vcl/toolkit/treelistbox.hxx:368
void SvTreeListBox::RemoveSelection()
include/vcl/txtattr.hxx:56
_Bool TextAttrib::operator!=(const TextAttrib &) const
include/vcl/uitest/uiobject.hxx:135
std::unique_ptr<UIObject> WindowUIObject::get_visible_child(const rtl::OUString &)
include/vcl/uitest/uiobject.hxx:311
TabPageUIObject::TabPageUIObject(const VclPtr<TabPage> &)
include/vcl/uitest/uiobject.hxx:319
std::unique_ptr<UIObject> TabPageUIObject::create(vcl::Window *)
include/vcl/uitest/uiobject.hxx:382
SpinUIObject::SpinUIObject(const VclPtr<SpinButton> &)
include/vcl/uitest/uiobject.hxx:390
std::unique_ptr<UIObject> SpinUIObject::create(vcl::Window *)
include/vcl/weld.hxx:184
_Bool weld::Widget::get_hexpand() const
include/vcl/weld.hxx:186
_Bool weld::Widget::get_vexpand() const
include/vcl/weld.hxx:193
int weld::Widget::get_margin_top() const
include/vcl/weld.hxx:194
int weld::Widget::get_margin_bottom() const
include/vcl/weld.hxx:414
void weld::ScrolledWindow::hadjustment_set_upper(int)
include/vcl/weld.hxx:416
void weld::ScrolledWindow::hadjustment_set_page_size(int)
include/vcl/weld.hxx:417
void weld::ScrolledWindow::hadjustment_set_page_increment(int)
include/vcl/weld.hxx:418
void weld::ScrolledWindow::hadjustment_set_step_increment(int)
include/vcl/weld.hxx:557
struct SystemEnvData weld::Window::get_system_data() const
include/vcl/weld.hxx:641
rtl::OString weld::Assistant::get_current_page_ident() const
include/vcl/weld.hxx:647
rtl::OUString weld::Assistant::get_page_title(const rtl::OString &) const
include/vcl/weld.hxx:1061
_Bool weld::TreeView::get_sensitive(int,int) const
include/vcl/weld.hxx:1164
void weld::TreeView::set_text_align(const weld::TreeIter &,double,int)
include/vcl/weld.hxx:1334
const rtl::OUString & weld::TreeView::get_saved_value() const
include/vcl/weld.hxx:1448
_Bool weld::IconView::get_cursor(weld::TreeIter *) const
include/vcl/weld.hxx:1458
void weld::IconView::select_all()
include/vcl/weld.hxx:1464
void weld::IconView::save_value()
include/vcl/weld.hxx:1465
const rtl::OUString & weld::IconView::get_saved_value() const
include/vcl/weld.hxx:1466
_Bool weld::IconView::get_value_changed_from_saved() const
include/vcl/weld.hxx:1593
void weld::MenuButton::append_item_radio(const rtl::OUString &,const rtl::OUString &)
include/vcl/weld.hxx:1601
void weld::MenuButton::append_item(const rtl::OUString &,const rtl::OUString &,VirtualDevice &)
include/vcl/weld.hxx:1682
rtl::OUString weld::ProgressBar::get_text() const
include/vcl/weld.hxx:1892
void weld::EntryTreeView::EntryModifyHdl(const weld::Entry &)
include/vcl/weld.hxx:2128
Size weld::MetricSpinButton::get_size_request() const
include/vcl/weld.hxx:2140
void weld::MetricSpinButton::set_position(int)
include/vcl/weld.hxx:2244
int weld::TextView::vadjustment_get_lower() const
include/vcl/weld.hxx:2466
rtl::OUString weld::Toolbar::get_item_label(const rtl::OString &) const
include/vcl/weld.hxx:2511
void weld::Scrollbar::adjustment_configure(int,int,int,int,int,int)
include/vcl/weld.hxx:2527
int weld::Scrollbar::get_scroll_thickness() const
include/vcl/weld.hxx:2556
std::unique_ptr<weld::MenuToggleButton> weld::Builder::weld_menu_toggle_button(const rtl::OString &)
include/vcl/weld.hxx:2668
rtl::OUString weld::MessageDialogController::get_secondary_text() const
include/vcl/weldutils.hxx:198
const com::sun::star::uno::Reference<com::sun::star::frame::XFrame> & weld::WidgetStatusListener::getFrame() const
include/vcl/weldutils.hxx:350
void weld::DateFormatter::CursorChangedHdl(weld::Entry &)
include/vcl/weldutils.hxx:350
void weld::DateFormatter::LinkStubCursorChangedHdl(void *,weld::Entry &)
include/vcl/window.hxx:376
const char * ImplDbgCheckWindow(const void *)
include/vcl/windowstate.hxx:120
std::basic_ostream<char> & vcl::operator<<(std::basic_ostream<char> &,const vcl::WindowData &)
include/xmloff/txtimp.hxx:115
XMLPropertyBackpatcher<short> & XMLTextImportHelper::GetFootnoteBP()
include/xmloff/txtimp.hxx:116
XMLPropertyBackpatcher<short> & XMLTextImportHelper::GetSequenceIdBP()
include/xmloff/txtimp.hxx:117
XMLPropertyBackpatcher<rtl::OUString> & XMLTextImportHelper::GetSequenceNameBP()
include/xmloff/xmluconv.hxx:190
_Bool SvXMLUnitConverter::convertEnum(type-parameter-?-? &,std::basic_string_view<char>,const SvXMLEnumStringMapEntry<type-parameter-?-?> *)
libreofficekit/qa/gtktiledviewer/gtv-comments-sidebar.cxx:31
void * gtv_comments_sidebar_get_instance_private(struct GtvCommentsSidebar *)
libreofficekit/qa/gtktiledviewer/gtv-signal-handlers.hxx:37
void openLokDialog(struct _GtkWidget *,void *)
lotuswordpro/source/filter/clone.hxx:28
detail::has_clone<LwpAtomHolder>::no & detail::has_clone::check_sig()
lotuswordpro/source/filter/clone.hxx:28
detail::has_clone<LwpBackgroundStuff>::no & detail::has_clone::check_sig()
lotuswordpro/source/filter/clone.hxx:28
detail::has_clone<LwpBorderStuff>::no & detail::has_clone::check_sig()
lotuswordpro/source/filter/clone.hxx:28
detail::has_clone<LwpMargins>::no & detail::has_clone::check_sig()
lotuswordpro/source/filter/clone.hxx:28
detail::has_clone<LwpShadow>::no & detail::has_clone::check_sig()
lotuswordpro/source/filter/clone.hxx:28
detail::has_clone<LwpSpacingCommonOverride>::no & detail::has_clone::check_sig()
o3tl/qa/cow_wrapper_clients.hxx:140
_Bool o3tltests::cow_wrapper_client4::operator==(const o3tltests::cow_wrapper_client4 &) const
o3tl/qa/cow_wrapper_clients.hxx:141
_Bool o3tltests::cow_wrapper_client4::operator!=(const o3tltests::cow_wrapper_client4 &) const
o3tl/qa/cow_wrapper_clients.hxx:142
_Bool o3tltests::cow_wrapper_client4::operator<(const o3tltests::cow_wrapper_client4 &) const
o3tl/qa/cow_wrapper_clients.hxx:193
_Bool o3tltests::cow_wrapper_client5::operator!=(const o3tltests::cow_wrapper_client5 &) const
oox/inc/drawingml/textliststyle.hxx:61
void oox::drawingml::TextListStyle::dump() const
oox/inc/drawingml/textparagraphproperties.hxx:97
void oox::drawingml::TextParagraphProperties::setLineSpacing(const oox::drawingml::TextSpacing &)
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:331
const std::vector<std::shared_ptr<oox::drawingml::Shape> > & oox::drawingml::LayoutNode::getNodeShapes() const
oox/source/drawingml/diagram/diagramlayoutatoms.hxx:340
const oox::drawingml::LayoutNode * oox::drawingml::LayoutNode::getParentLayoutNode() const
sal/osl/unx/uunxapi.hxx:39
int mkdir_c(const rtl::OString &,unsigned int)
sal/osl/unx/uunxapi.hxx:74
int osl::lstat(const rtl::OUString &,struct stat &)
sal/rtl/strtmpl.hxx:55
null_terminated<C> rtl::str::<deduction guide for null_terminated>(null_terminated<C>)
sal/rtl/strtmpl.hxx:58
null_terminated<C> rtl::str::<deduction guide for null_terminated>(type-parameter-?-? *)
sal/rtl/strtmpl.hxx:66
_Bool rtl::str::operator==(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *)
sal/rtl/strtmpl.hxx:68
_Bool rtl::str::operator!=(struct rtl::str::null_terminated::EndDetector,type-parameter-?-? *)
sal/rtl/strtmpl.hxx:74
with_length<C> rtl::str::<deduction guide for with_length>(with_length<C>)
sal/rtl/strtmpl.hxx:78
with_length<C> rtl::str::<deduction guide for with_length>(type-parameter-?-? *,int)
sal/rtl/strtmpl.hxx:112
FromTo<C> rtl::str::<deduction guide for FromTo>(FromTo<C>)
sal/rtl/strtmpl.hxx:116
FromTo<C> rtl::str::<deduction guide for FromTo>(type-parameter-?-?,type-parameter-?-?)
sc/inc/address.hxx:663
_Bool ScRange::operator<=(const ScRange &) const
sc/inc/appluno.hxx:37
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScSpreadsheetSettings_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
sc/inc/appluno.hxx:40
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScRecentFunctionsObj_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
sc/inc/appluno.hxx:43
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScFunctionListObj_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
sc/inc/arraysumfunctor.hxx:39
KahanSum sc::op::executeUnrolled(unsigned long &,unsigned long,const double *)
sc/inc/bigrange.hxx:70
_Bool ScBigAddress::operator!=(const ScBigAddress &) const
sc/inc/column.hxx:138
const type-parameter-?-? & ScColumnData::GetAttr(int,TypedWhichId<type-parameter-?-?>,int &,int &) const
sc/inc/column.hxx:294
_Bool ScColumn::HasDataAt(struct sc::ColumnBlockPosition &,int,struct ScDataAreaExtras *)
sc/inc/columniterator.hxx:81
int sc::ColumnIterator::getType() const
sc/inc/datamapper.hxx:75
void sc::ExternalDataSource::setUpdateFrequency(double)
sc/inc/datamapper.hxx:78
void sc::ExternalDataSource::setURL(const rtl::OUString &)
sc/inc/datamapper.hxx:79
void sc::ExternalDataSource::setProvider(const rtl::OUString &)
sc/inc/document.hxx:895
rtl::OUString ScDocument::MaxRowAsString() const
sc/inc/dpfilteredcache.hxx:148
void ScDPFilteredCache::dump() const
sc/inc/formulacell.hxx:510
void ScFormulaCell::Dump() const
sc/inc/funcuno.hxx:35
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> ScFunctionAccess_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
sc/inc/kahan.hxx:91
KahanSum KahanSum::operator-() const
sc/inc/kahan.hxx:186
_Bool KahanSum::operator<(const KahanSum &) const
sc/inc/kahan.hxx:190
_Bool KahanSum::operator>(const KahanSum &) const
sc/inc/kahan.hxx:192
_Bool KahanSum::operator>(double) const
sc/inc/kahan.hxx:194
_Bool KahanSum::operator<=(const KahanSum &) const
sc/inc/kahan.hxx:196
_Bool KahanSum::operator<=(double) const
sc/inc/kahan.hxx:198
_Bool KahanSum::operator>=(const KahanSum &) const
sc/inc/miscuno.hxx:180
void ScUnoHelpFunctions::SetOptionalPropertyValue(const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &,const char *,const type-parameter-?-? &)
sc/inc/mtvcellfunc.hxx:40
mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> sc::ProcessFormula(const mdds::mtv::soa::detail::iterator_base<struct mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait>::iterator_trait> &,mdds::mtv::soa::multi_type_vector<struct mdds::mtv::custom_block_func3<struct mdds::mtv::default_element_block<52, svl::SharedString>, struct mdds::mtv::noncopyable_managed_element_block<53, EditTextObject>, struct mdds::mtv::noncopyable_managed_element_block<54, ScFormulaCell> >, struct sc::CellStoreTrait> &,int,int,std::function<void (unsigned long, ScFormulaCell *)>)
sc/inc/mtvelements.hxx:79
mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:79
void sc::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const struct sc::CellTextAttr &,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:80
mdds::mtv::base_element_block * sc::mdds_mtv_create_new_block(const sc::SparklineCell *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:80
void sc::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const sc::SparklineCell *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:84
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:84
void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScPostIt *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:85
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:85
void mdds_mtv_append_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:85
void mdds_mtv_assign_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:85
void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:85
void mdds_mtv_prepend_values(mdds::mtv::base_element_block &,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:85
void mdds_mtv_set_values(mdds::mtv::base_element_block &,unsigned long,const SvtBroadcaster *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:86
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:86
void mdds_mtv_get_empty_value(ScFormulaCell *&)
sc/inc/mtvelements.hxx:86
void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,ScFormulaCell *&)
sc/inc/mtvelements.hxx:86
void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const ScFormulaCell *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:87
mdds::mtv::base_element_block * mdds_mtv_create_new_block(const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:87
void mdds_mtv_get_empty_value(EditTextObject *&)
sc/inc/mtvelements.hxx:87
void mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,EditTextObject *&)
sc/inc/mtvelements.hxx:87
void mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const EditTextObject *,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:90
mdds::mtv::base_element_block * svl::mdds_mtv_create_new_block(const svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvelements.hxx:90
void svl::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const svl::SharedString &,const type-parameter-?-? &,const type-parameter-?-? &)
sc/inc/mtvfunctions.hxx:376
void sc::ProcessElements2(type-parameter-?-? &,type-parameter-?-? &,type-parameter-?-? &)
sc/inc/rangecache.hxx:94
unsigned long ScSortedRangeCache::size() const
sc/inc/scdll.hxx:35
ScDLL::ScDLL()
sc/inc/scopetools.hxx:80
void sc::DelayFormulaGroupingSwitch::reset()
sc/inc/segmenttree.hxx:149
void ScFlatUInt16RowSegments::setValueIf(int,int,unsigned short,const std::function<_Bool (unsigned short)> &)
sc/inc/segmenttree.hxx:162
void ScFlatUInt16RowSegments::makeReady()
sc/inc/sheetlimits.hxx:42
_Bool ScSheetLimits::ValidColRow(short,int) const
sc/inc/sheetlimits.hxx:46
_Bool ScSheetLimits::ValidColRowTab(short,int,short) const
sc/inc/sheetlimits.hxx:58
short ScSheetLimits::SanitizeCol(short) const
sc/inc/sheetlimits.hxx:59
int ScSheetLimits::SanitizeRow(int) const
sc/inc/SparklineCell.hxx:35
void sc::SparklineCell::setInputRange(const ScRangeList &)
sc/inc/SparklineCell.hxx:37
const ScRangeList & sc::SparklineCell::getInputRange()
sc/inc/stlalgorithm.hxx:46
sc::AlignedAllocator::AlignedAllocator(const AlignedAllocator<type-parameter-?-?, 256> &)
sc/inc/stlalgorithm.hxx:46
sc::AlignedAllocator::AlignedAllocator<T, Alignment>(const AlignedAllocator<type-parameter-?-?, Alignment> &)
sc/inc/stlalgorithm.hxx:60
_Bool sc::AlignedAllocator::operator==(const AlignedAllocator<T, Alignment> &) const
sc/inc/stlalgorithm.hxx:61
_Bool sc::AlignedAllocator::operator!=(const AlignedAllocator<T, Alignment> &) const
sc/inc/table.hxx:344
_Bool ScTable::IsColRowTabValid(const short,const int,const short) const
sc/inc/table.hxx:741
const type-parameter-?-? * ScTable::GetAttr(short,int,TypedWhichId<type-parameter-?-?>,int &,int &) const
sc/inc/userlist.hxx:89
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<ScUserListData> *, std::__cxx1998::vector<std::unique_ptr<ScUserListData> > >, std::vector<std::unique_ptr<ScUserListData> >, struct std::random_access_iterator_tag> ScUserList::begin() const
sc/qa/unit/helper/qahelper.hxx:77
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const enum OpCode &)
sc/qa/unit/helper/qahelper.hxx:83
std::basic_string<char> print(const ScAddress &)
sc/qa/unit/ucalc_copypaste.cxx:10910
int main()
sc/source/core/inc/interpre.hxx:71
basic_ostream<type-parameter-?-?, type-parameter-?-?> & sc::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const struct sc::ParamIfsResult &)
sc/source/core/opencl/opbase.hxx:151
std::basic_string<char> sc::opencl::DynamicKernelArgument::GenDoubleSlidingWindowDeclRef(_Bool) const
sc/source/core/opencl/opbase.hxx:154
std::basic_string<char> sc::opencl::DynamicKernelArgument::GenStringSlidingWindowDeclRef(_Bool) const
sc/source/core/opencl/opbase.hxx:391
void sc::opencl::SlidingFunctionBase::GenerateRangeArg(int,int,std::vector<std::shared_ptr<sc::opencl::DynamicKernelArgument> > &,sc::opencl::outputstream &,enum sc::opencl::SlidingFunctionBase::EmptyArgType,const char *,const char *)
sc/source/core/opencl/opbase.hxx:446
_Bool sc::opencl::DynamicKernelSlidingArgument::NeedParallelReduction() const
sc/source/core/opencl/opbase.hxx:447
void sc::opencl::DynamicKernelSlidingArgument::GenSlidingWindowFunction(sc::opencl::outputstream &)
sc/source/core/opencl/opbase.hxx:480
void sc::opencl::ParallelReductionVectorRef::GenSlidingWindowFunction(sc::opencl::outputstream &)
sc/source/core/opencl/opbase.hxx:481
std::basic_string<char> sc::opencl::ParallelReductionVectorRef::GenSlidingWindowDeclRef(_Bool) const
sc/source/core/opencl/opbase.hxx:484
unsigned long sc::opencl::ParallelReductionVectorRef::Marshal(struct _cl_kernel *,int,int,struct _cl_program *)
sc/source/core/opencl/opbase.hxx:485
unsigned long sc::opencl::ParallelReductionVectorRef::GetArrayLength() const
sc/source/core/opencl/opbase.hxx:486
unsigned long sc::opencl::ParallelReductionVectorRef::GetWindowSize() const
sc/source/core/opencl/opbase.hxx:487
_Bool sc::opencl::ParallelReductionVectorRef::GetStartFixed() const
sc/source/core/opencl/opbase.hxx:488
_Bool sc::opencl::ParallelReductionVectorRef::GetEndFixed() const
sc/source/core/tool/scmatrix.cxx:2263
type-parameter-?-? * (anonymous namespace)::wrapped_iterator::operator->() const
sc/source/filter/inc/orcusinterface.hxx:76
ScOrcusRefResolver::ScOrcusRefResolver(const ScOrcusGlobalSettings &)
sc/source/filter/inc/orcusinterface.hxx:632
const rtl::OUString * ScOrcusFactory::getString(unsigned long) const
sc/source/filter/inc/tokstack.hxx:213
_Bool TokenPool::GrowTripel(unsigned short)
sc/source/filter/inc/xcl97rec.hxx:70
unsigned long XclExpObjList::size() const
sc/source/filter/inc/xeextlst.hxx:198
void XclExtLst::AddRecord(const rtl::Reference<XclExpExt> &)
sc/source/filter/inc/xerecord.hxx:343
void XclExpRecordList::InsertRecord(type-parameter-?-? *,unsigned long)
sc/source/filter/inc/xerecord.hxx:352
void XclExpRecordList::AppendRecord(Reference<type-parameter-?-?>)
sc/source/filter/inc/xerecord.hxx:363
void XclExpRecordList::AppendNewRecord(const Reference<type-parameter-?-?> &)
sc/source/filter/inc/xerecord.hxx:365
void XclExpRecordList::AppendNewRecord(Reference<type-parameter-?-?>)
sc/source/filter/inc/xestream.hxx:106
XclExpStream & XclExpStream::operator<<(float)
sc/source/filter/inc/xiescher.hxx:153
Color XclImpDrawObjBase::GetSolidLineColor(const struct XclObjLineData &) const
sc/source/filter/inc/xlformula.hxx:408
_Bool XclTokenArray::operator==(const XclTokenArray &) const
sc/source/filter/xml/xmltransformationi.hxx:159
ScXMLDateTimeContext::ScXMLDateTimeContext(ScXMLImport &,const rtl::Reference<sax_fastparser::FastAttributeList> &)
sc/source/ui/inc/dataprovider.hxx:56
_Bool sc::CSVFetchThread::IsRequestedTerminate()
sc/source/ui/inc/dataprovider.hxx:57
void sc::CSVFetchThread::Terminate()
sc/source/ui/inc/dataprovider.hxx:58
void sc::CSVFetchThread::EndThread()
sc/source/ui/inc/dataprovider.hxx:83
const rtl::OUString & sc::DataProvider::GetURL() const
sc/source/ui/inc/dataproviderdlg.hxx:57
void ScDataProviderDlg::LinkStubStartMenuHdl(void *,const rtl::OString &)
sc/source/ui/inc/dataproviderdlg.hxx:57
void ScDataProviderDlg::StartMenuHdl(const rtl::OString &)
sc/source/ui/inc/dataproviderdlg.hxx:58
void ScDataProviderDlg::ColumnMenuHdl(const weld::ComboBox &)
sc/source/ui/inc/dataproviderdlg.hxx:58
void ScDataProviderDlg::LinkStubColumnMenuHdl(void *,const weld::ComboBox &)
sc/source/ui/inc/dataproviderdlg.hxx:75
void ScDataProviderDlg::applyAndQuit()
sc/source/ui/inc/dataproviderdlg.hxx:76
void ScDataProviderDlg::cancelAndQuit()
sc/source/ui/inc/datatableview.hxx:108
void ScDataTableView::getRowRange(int &,int &) const
sc/source/ui/inc/datatransformation.hxx:197
short sc::FindReplaceTransformation::getColumn() const
sc/source/ui/inc/datatransformation.hxx:198
const rtl::OUString & sc::FindReplaceTransformation::getFindString() const
sc/source/ui/inc/datatransformation.hxx:199
const rtl::OUString & sc::FindReplaceTransformation::getReplaceString() const
sc/source/ui/inc/datatransformation.hxx:211
short sc::DeleteRowTransformation::getColumn() const
sc/source/ui/inc/datatransformation.hxx:212
const rtl::OUString & sc::DeleteRowTransformation::getFindString() const
sc/source/ui/inc/datatransformation.hxx:223
int sc::SwapRowsTransformation::getFirstRow() const
sc/source/ui/inc/datatransformation.hxx:224
int sc::SwapRowsTransformation::getSecondRow() const
sc/source/ui/inc/hfedtdlg.hxx:85
ScHFEditFirstHeaderDlg::ScHFEditFirstHeaderDlg(weld::Window *,const SfxItemSet &,std::basic_string_view<char16_t>)
sc/source/ui/inc/hfedtdlg.hxx:106
ScHFEditFirstFooterDlg::ScHFEditFirstFooterDlg(weld::Window *,const SfxItemSet &,std::basic_string_view<char16_t>)
sc/source/ui/inc/impex.hxx:94
ScImportExport::ScImportExport(ScDocument &,const rtl::OUString &)
sc/source/ui/inc/RandomNumberGeneratorDialog.hxx:65
void ScRandomNumberGeneratorDialog::GenerateNumbers(type-parameter-?-? &,struct TranslateId,const std::optional<signed char>)
sc/source/ui/inc/SparklineDataRangeDialog.hxx:54
_Bool sc::SparklineDataRangeDialog::checkValidInputOutput()
sc/source/ui/inc/TableFillingAndNavigationTools.hxx:120
unsigned long DataRangeIterator::size()
sc/source/ui/inc/viewdata.hxx:407
long ScViewData::GetLOKDocWidthPixel() const
sc/source/ui/inc/viewdata.hxx:408
long ScViewData::GetLOKDocHeightPixel() const
sc/source/ui/inc/viewdata.hxx:557
_Bool ScViewData::IsGridMode() const
scaddins/source/analysis/analysishelper.hxx:797
_Bool sca::analysis::ScaDate::operator>=(const sca::analysis::ScaDate &) const
sccomp/source/solver/DifferentialEvolution.hxx:66
int DifferentialEvolutionAlgorithm::getLastChange()
sccomp/source/solver/ParticelSwarmOptimization.hxx:84
int ParticleSwarmOptimizationAlgorithm::getLastChange()
sd/inc/sddll.hxx:47
SdDLL::SdDLL()
sd/source/filter/ppt/pptinanimations.hxx:107
void ppt::AnimationImporter::dump(const char *,long)
sd/source/ui/inc/filedlg.hxx:54
_Bool SdOpenSoundFileDialog::IsInsertAsLinkSelected() const
sd/source/ui/inc/GraphicViewShell.hxx:43
SfxViewFactory * sd::GraphicViewShell::Factory()
sd/source/ui/inc/GraphicViewShell.hxx:43
SfxViewShell * sd::GraphicViewShell::CreateInstance(SfxViewFrame *,SfxViewShell *)
sd/source/ui/inc/GraphicViewShell.hxx:43
void sd::GraphicViewShell::InitFactory()
sd/source/ui/inc/GraphicViewShell.hxx:43
void sd::GraphicViewShell::RegisterFactory(struct o3tl::strong_int<unsigned short, struct SfxInterfaceIdTag>)
sd/source/ui/inc/optsitem.hxx:178
_Bool SdOptionsContents::operator==(const SdOptionsContents &) const
sd/source/ui/inc/OutlineViewShell.hxx:40
SfxViewFactory * sd::OutlineViewShell::Factory()
sd/source/ui/inc/OutlineViewShell.hxx:40
SfxViewShell * sd::OutlineViewShell::CreateInstance(SfxViewFrame *,SfxViewShell *)
sd/source/ui/inc/OutlineViewShell.hxx:40
void sd::OutlineViewShell::InitFactory()
sd/source/ui/inc/OutlineViewShell.hxx:40
void sd::OutlineViewShell::RegisterFactory(struct o3tl::strong_int<unsigned short, struct SfxInterfaceIdTag>)
sd/source/ui/inc/PaneShells.hxx:33
void sd::LeftImpressPaneShell::RegisterInterface(const SfxModule *)
sd/source/ui/inc/PaneShells.hxx:50
void sd::LeftDrawPaneShell::RegisterInterface(const SfxModule *)
sd/source/ui/inc/unomodel.hxx:137
_Bool SdXImpressDocument::operator==(const SdXImpressDocument &) const
sd/source/ui/slidesorter/inc/view/SlsLayouter.hxx:199
_Bool sd::slidesorter::view::InsertPosition::operator!=(const sd::slidesorter::view::InsertPosition &) const
sdext/source/minimizer/unodialog.hxx:48
UnoDialog::UnoDialog(const com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> &,const com::sun::star::uno::Reference<com::sun::star::frame::XFrame> &)
sdext/source/minimizer/unodialog.hxx:51
void UnoDialog::execute()
sdext/source/minimizer/unodialog.hxx:52
void UnoDialog::endExecute(_Bool)
sdext/source/minimizer/unodialog.hxx:57
void UnoDialog::setVisible(const rtl::OUString &,_Bool)
sdext/source/minimizer/unodialog.hxx:59
com::sun::star::uno::Reference<com::sun::star::awt::XButton> UnoDialog::insertButton(const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::awt::XActionListener> &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:63
com::sun::star::uno::Reference<com::sun::star::awt::XFixedText> UnoDialog::insertFixedText(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:66
com::sun::star::uno::Reference<com::sun::star::awt::XCheckBox> UnoDialog::insertCheckBox(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:69
com::sun::star::uno::Reference<com::sun::star::awt::XControl> UnoDialog::insertFormattedField(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:72
com::sun::star::uno::Reference<com::sun::star::awt::XComboBox> UnoDialog::insertComboBox(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:75
com::sun::star::uno::Reference<com::sun::star::awt::XRadioButton> UnoDialog::insertRadioButton(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:78
com::sun::star::uno::Reference<com::sun::star::awt::XListBox> UnoDialog::insertListBox(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:81
com::sun::star::uno::Reference<com::sun::star::awt::XControl> UnoDialog::insertImage(const rtl::OUString &,const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/minimizer/unodialog.hxx:85
com::sun::star::uno::Any UnoDialog::getControlProperty(const rtl::OUString &,const rtl::OUString &)
sdext/source/minimizer/unodialog.hxx:87
void UnoDialog::enableControl(const rtl::OUString &)
sdext/source/minimizer/unodialog.hxx:88
void UnoDialog::disableControl(const rtl::OUString &)
sdext/source/minimizer/unodialog.hxx:90
void UnoDialog::reschedule() const
sdext/source/minimizer/unodialog.hxx:91
_Bool UnoDialog::endStatus() const
sdext/source/minimizer/unodialog.hxx:92
com::sun::star::uno::Reference<com::sun::star::awt::XControl> UnoDialog::getControl(const rtl::OUString &) const
sdext/source/minimizer/unodialog.hxx:93
const com::sun::star::uno::Reference<com::sun::star::frame::XController> & UnoDialog::controller() const
sdext/source/minimizer/unodialog.hxx:94
void UnoDialog::setPropertyValues(const com::sun::star::uno::Sequence<rtl::OUString> &,const com::sun::star::uno::Sequence<com::sun::star::uno::Any> &)
sdext/source/pdfimport/pdfparse/pdfparse.cxx:112
long (anonymous namespace)::PDFGrammar<boost::spirit::classic::file_iterator<>>::pdf_string_parser::operator()(const type-parameter-?-? &,struct boost::spirit::classic::nil_t &) const
sfx2/inc/autoredactdialog.hxx:74
void TargetsTable::select(int)
sfx2/source/appl/shutdownicon.hxx:78
rtl::OUString ShutdownIcon::getShortcutName()
sfx2/source/appl/shutdownicon.hxx:94
ShutdownIcon * ShutdownIcon::createInstance()
sfx2/source/appl/shutdownicon.hxx:96
void ShutdownIcon::terminateDesktop()
sfx2/source/appl/shutdownicon.hxx:99
void ShutdownIcon::FileOpen()
sfx2/source/appl/shutdownicon.hxx:102
void ShutdownIcon::FromTemplate()
sfx2/source/appl/shutdownicon.hxx:111
rtl::OUString ShutdownIcon::GetUrlDescription(std::basic_string_view<char16_t>)
sfx2/source/appl/shutdownicon.hxx:113
void ShutdownIcon::SetVeto(_Bool)
sfx2/source/inc/templdgi.hxx:125
void SfxCommonTemplateDialog_Impl::LinkStubUpdateStyleDependents_Hdl(void *,void *)
shell/inc/xml_parser.hxx:43
xml_parser::xml_parser()
shell/inc/xml_parser.hxx:66
void xml_parser::parse(const char *,unsigned long,_Bool)
shell/inc/xml_parser.hxx:84
void xml_parser::set_document_handler(i_xml_parser_event_handler *)
slideshow/source/engine/activities/activitiesfactory.cxx:173
void slideshow::internal::(anonymous namespace)::FromToByActivity::startAnimation()
slideshow/source/engine/activities/activitiesfactory.cxx:242
void slideshow::internal::(anonymous namespace)::FromToByActivity::endAnimation()
slideshow/source/engine/activities/activitiesfactory.cxx:250
void slideshow::internal::(anonymous namespace)::FromToByActivity::perform(double,unsigned int) const
slideshow/source/engine/activities/activitiesfactory.cxx:314
void slideshow::internal::(anonymous namespace)::FromToByActivity::perform(unsigned int,unsigned int) const
slideshow/source/engine/activities/activitiesfactory.cxx:332
void slideshow::internal::(anonymous namespace)::FromToByActivity::performEnd()
slideshow/source/engine/activities/activitiesfactory.cxx:345
void slideshow::internal::(anonymous namespace)::FromToByActivity::dispose()
slideshow/source/engine/activities/activitiesfactory.cxx:526
void slideshow::internal::(anonymous namespace)::ValuesActivity::startAnimation()
slideshow/source/engine/activities/activitiesfactory.cxx:537
void slideshow::internal::(anonymous namespace)::ValuesActivity::endAnimation()
slideshow/source/engine/activities/activitiesfactory.cxx:545
void slideshow::internal::(anonymous namespace)::ValuesActivity::perform(unsigned int,double,unsigned int) const
slideshow/source/engine/activities/activitiesfactory.cxx:567
void slideshow::internal::(anonymous namespace)::ValuesActivity::perform(unsigned int,unsigned int) const
slideshow/source/engine/activities/activitiesfactory.cxx:582
void slideshow::internal::(anonymous namespace)::ValuesActivity::performEnd()
slideshow/source/engine/animationfactory.cxx:617
void slideshow::internal::(anonymous namespace)::GenericAnimation::prefetch()
slideshow/source/engine/animationfactory.cxx:620
void slideshow::internal::(anonymous namespace)::GenericAnimation::start(const std::shared_ptr<slideshow::internal::AnimatableShape> &,const std::shared_ptr<slideshow::internal::ShapeAttributeLayer> &)
slideshow/source/engine/animationfactory.cxx:699
_Bool slideshow::internal::(anonymous namespace)::GenericAnimation::operator()(const typename type-parameter-?-?::ValueType &)
slideshow/source/engine/animationfactory.cxx:716
_Bool slideshow::internal::(anonymous namespace)::GenericAnimation::operator()(typename type-parameter-?-?::ValueType)
slideshow/source/engine/animationfactory.cxx:737
typename type-parameter-?-?::ValueType slideshow::internal::(anonymous namespace)::GenericAnimation::getUnderlyingValue() const
slideshow/source/engine/opengl/TransitionImpl.hxx:180
void OGLTransitionImpl::cleanup()
slideshow/source/inc/box2dtools.hxx:159
void box2d::utils::box2DWorld::setShapeAngle(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape>,const double)
slideshow/source/inc/box2dtools.hxx:261
_Bool box2d::utils::box2DWorld::shapesInitialized()
slideshow/source/inc/box2dtools.hxx:299
std::shared_ptr<box2d::utils::box2DBody> box2d::utils::box2DWorld::makeShapeStatic(const std::shared_ptr<slideshow::internal::Shape> &)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::AnimationEventHandler> &)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::EventHandler> &)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::IntrinsicAnimationEventHandler> &)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::PauseEventHandler> &)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ShapeListenerEventHandler> &)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::UserPaintEventHandler> &)
slideshow/source/inc/listenercontainer.hxx:44
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ViewUpdate> &)
slideshow/source/inc/listenercontainer.hxx:54
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ViewEventHandler> &)
slideshow/source/inc/listenercontainer.hxx:54
_Bool slideshow::internal::FunctionApply::apply(type-parameter-?-?,const std::shared_ptr<slideshow::internal::ViewRepaintHandler> &)
starmath/inc/format.hxx:138
_Bool SmFormat::operator!=(const SmFormat &) const
starmath/inc/mathml/attribute.hxx:80
SmMlAttribute::SmMlAttribute(const SmMlAttribute *)
starmath/inc/mathml/attribute.hxx:116
_Bool SmMlAttribute::isMlAttributeValueType(enum SmMlAttributeValueType) const
starmath/inc/mathml/attribute.hxx:132
void SmMlAttribute::setMlAttributeValue(const SmMlAttribute &)
starmath/inc/mathml/element.hxx:103
_Bool SmMlElement::isMlElementType(enum SmMlElementType) const
starmath/inc/mathml/element.hxx:113
const struct ESelection & SmMlElement::getESelection() const
starmath/inc/mathml/element.hxx:125
void SmMlElement::setESelection(struct ESelection)
starmath/inc/mathml/element.hxx:132
int SmMlElement::GetSourceCodeRow() const
starmath/inc/mathml/element.hxx:139
int SmMlElement::GetSourceCodeColumn() const
starmath/inc/mathml/export.hxx:54
void SmMLExportWrapper::setFlat(_Bool)
starmath/inc/mathml/export.hxx:58
_Bool SmMLExportWrapper::getFlat() const
starmath/inc/mathml/export.hxx:62
void SmMLExportWrapper::setUseHTMLMLEntities(_Bool)
starmath/inc/mathml/export.hxx:69
_Bool SmMLExportWrapper::getUseHTMLMLEntities() const
starmath/inc/mathml/export.hxx:73
_Bool SmMLExportWrapper::getUseExportTag() const
starmath/inc/mathml/export.hxx:77
void SmMLExportWrapper::setUseExportTag(_Bool)
starmath/inc/mathml/export.hxx:80
SmMLExportWrapper::SmMLExportWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>)
starmath/inc/mathml/export.hxx:91
_Bool SmMLExportWrapper::Export(SfxMedium &)
starmath/inc/mathml/export.hxx:95
rtl::OUString SmMLExportWrapper::Export(SmMlElement *)
starmath/inc/mathml/export.hxx:138
_Bool SmMLExport::getUseExportTag() const
starmath/inc/mathml/import.hxx:38
SmMlElement * SmMLImportWrapper::getElementTree()
starmath/inc/mathml/import.hxx:43
SmMLImportWrapper::SmMLImportWrapper(com::sun::star::uno::Reference<com::sun::star::frame::XModel>)
starmath/inc/mathml/import.hxx:52
ErrCode SmMLImportWrapper::Import(SfxMedium &)
starmath/inc/mathml/import.hxx:56
ErrCode SmMLImportWrapper::Import(std::basic_string_view<char16_t>)
starmath/inc/mathml/import.hxx:144
void SmMLImport::SetSmSyntaxVersion(unsigned short)
starmath/inc/mathml/import.hxx:148
unsigned short SmMLImport::GetSmSyntaxVersion() const
starmath/inc/mathml/iterator.hxx:22
void mathml::SmMlIteratorBottomToTop(SmMlElement *,type-parameter-?-?,void *)
starmath/inc/mathml/iterator.hxx:121
SmMlElement * mathml::SmMlIteratorCopy(SmMlElement *)
starmath/inc/mathml/mathmlexport.hxx:62
_Bool SmXMLExportWrapper::IsUseHTMLMLEntities() const
starmath/inc/mathml/mathmlimport.hxx:112
unsigned short SmXMLImport::GetSmSyntaxVersion() const
starmath/inc/mathml/mathmlMo.hxx:83
enum moOpDF operator|(enum moOpDF,enum moOpDF)
starmath/inc/mathml/mathmlMo.hxx:88
enum moOpDF operator&(enum moOpDF,enum moOpDF)
starmath/inc/mathml/mathmlMo.hxx:98
enum moOpDP operator&(enum moOpDP,enum moOpDP)
starmath/inc/mathml/starmathdatabase.hxx:274
struct SmColorTokenTableEntry starmathdatabase::Identify_Color_HTML(unsigned int)
starmath/inc/mathml/starmathdatabase.hxx:294
struct SmColorTokenTableEntry starmathdatabase::Identify_Color_DVIPSNAMES(unsigned int)
starmath/inc/node.hxx:508
SmNode * SmStructureNode::GetSubNodeBinMo(unsigned long) const
starmath/inc/node.hxx:533
void SmStructureNode::SetSubNodes(SmNode *,SmNode *,SmNode *)
starmath/inc/node.hxx:554
void SmStructureNode::SetSubNodesBinMo(SmNode *,SmNode *,SmNode *)
starmath/inc/nodetype.hxx:59
_Bool starmathdatabase::isStructuralNode(enum SmNodeType)
starmath/inc/nodetype.hxx:71
_Bool starmathdatabase::isBinOperatorNode(enum SmNodeType)
starmath/inc/nodetype.hxx:77
_Bool starmathdatabase::isUnOperatorNode(enum SmNodeType)
starmath/inc/nodetype.hxx:82
_Bool starmathdatabase::isOperatorNode(enum SmNodeType)
starmath/inc/nodetype.hxx:89
_Bool starmathdatabase::isStandaloneNode(enum SmNodeType)
starmath/inc/parse.hxx:31
AbstractSmParser * starmathdatabase::GetDefaultSmParser()
starmath/inc/token.hxx:179
SmColorTokenTableEntry::SmColorTokenTableEntry(const std::unique_ptr<struct SmColorTokenTableEntry>)
starmath/inc/token.hxx:200
_Bool SmColorTokenTableEntry::equals(std::basic_string_view<char16_t>) const
starmath/inc/token.hxx:207
_Bool SmColorTokenTableEntry::equals(Color) const
svgio/inc/svgstyleattributes.hxx:348
svgio::svgreader::SvgNumber svgio::svgreader::SvgStyleAttributes::getStrokeDashOffset() const
svgio/inc/svgstyleattributes.hxx:372
enum svgio::svgreader::FontStretch svgio::svgreader::SvgStyleAttributes::getFontStretch() const
svgio/inc/svgtspannode.hxx:45
double svgio::svgreader::SvgTspanNode::getCurrentFontSize() const
svl/source/misc/gridprinter.cxx:45
mdds::mtv::base_element_block * rtl::mdds_mtv_create_new_block(const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
svl/source/misc/gridprinter.cxx:45
void rtl::mdds_mtv_append_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
svl/source/misc/gridprinter.cxx:45
void rtl::mdds_mtv_assign_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
svl/source/misc/gridprinter.cxx:45
void rtl::mdds_mtv_get_empty_value(rtl::OUString &)
svl/source/misc/gridprinter.cxx:45
void rtl::mdds_mtv_get_value(const mdds::mtv::base_element_block &,unsigned long,rtl::OUString &)
svl/source/misc/gridprinter.cxx:45
void rtl::mdds_mtv_insert_values(mdds::mtv::base_element_block &,unsigned long,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
svl/source/misc/gridprinter.cxx:45
void rtl::mdds_mtv_prepend_values(mdds::mtv::base_element_block &,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
svl/source/misc/gridprinter.cxx:45
void rtl::mdds_mtv_set_values(mdds::mtv::base_element_block &,unsigned long,const rtl::OUString &,const type-parameter-?-? &,const type-parameter-?-? &)
svx/inc/sdr/contact/viewcontactofgraphic.hxx:52
SdrGrafObj & sdr::contact::ViewContactOfGraphic::GetGrafObject()
sw/inc/calbck.hxx:298
sw::WriterListener * sw::ClientIteratorBase::GetLeftOfPos()
sw/inc/contentindex.hxx:68
int SwContentIndex::operator--(int)
sw/inc/contentindex.hxx:80
_Bool SwContentIndex::operator>(const int) const
sw/inc/contentindex.hxx:83
_Bool SwContentIndex::operator!=(const int) const
sw/inc/contentindex.hxx:113
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwContentIndex &)
sw/inc/dbgoutsw.hxx:54
const char * dbg_out(const void *)
sw/inc/dbgoutsw.hxx:56
const char * dbg_out(const SwRect &)
sw/inc/dbgoutsw.hxx:57
const char * dbg_out(const SwFrameFormat &)
sw/inc/dbgoutsw.hxx:60
const char * dbg_out(const SwContentNode *)
sw/inc/dbgoutsw.hxx:61
const char * dbg_out(const SwTextNode *)
sw/inc/dbgoutsw.hxx:62
const char * dbg_out(const SwTextAttr &)
sw/inc/dbgoutsw.hxx:63
const char * dbg_out(const SwpHints &)
sw/inc/dbgoutsw.hxx:64
const char * dbg_out(const SfxPoolItem &)
sw/inc/dbgoutsw.hxx:65
const char * dbg_out(const SfxPoolItem *)
sw/inc/dbgoutsw.hxx:66
const char * dbg_out(const SfxItemSet &)
sw/inc/dbgoutsw.hxx:67
const char * dbg_out(const struct SwPosition &)
sw/inc/dbgoutsw.hxx:68
const char * dbg_out(const SwPaM &)
sw/inc/dbgoutsw.hxx:69
const char * dbg_out(const SwNodeNum &)
sw/inc/dbgoutsw.hxx:70
const char * dbg_out(const SwUndo &)
sw/inc/dbgoutsw.hxx:71
const char * dbg_out(const SwOutlineNodes &)
sw/inc/dbgoutsw.hxx:72
const char * dbg_out(const SwNumRule &)
sw/inc/dbgoutsw.hxx:73
const char * dbg_out(const SwTextFormatColl &)
sw/inc/dbgoutsw.hxx:75
const char * dbg_out(const SwNumRuleTable &)
sw/inc/dbgoutsw.hxx:76
const char * dbg_out(const SwNodeRange &)
sw/inc/dbgoutsw.hxx:79
rtl::OUString lcl_dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &)
sw/inc/dbgoutsw.hxx:103
const char * dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &)
sw/inc/dbgoutsw.hxx:107
const char * dbg_out(const struct SwFormToken &)
sw/inc/dbgoutsw.hxx:108
const char * dbg_out(const std::vector<struct SwFormToken> &)
sw/inc/docary.hxx:97
void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFrameFormat **, std::__cxx1998::vector<SwFrameFormat *> >, std::vector<SwFrameFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
sw/inc/docary.hxx:97
void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwGrfFormatColl **, std::__cxx1998::vector<SwGrfFormatColl *> >, std::vector<SwGrfFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
sw/inc/docary.hxx:97
void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwNumRule **, std::__cxx1998::vector<SwNumRule *> >, std::vector<SwNumRule *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
sw/inc/docary.hxx:97
void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFormat **, std::__cxx1998::vector<SwSectionFormat *> >, std::vector<SwSectionFormat *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
sw/inc/docary.hxx:97
void SwVectorModifyBase::insert(__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFormatColl **, std::__cxx1998::vector<SwTextFormatColl *> >, std::vector<SwTextFormatColl *>, struct std::random_access_iterator_tag>,type-parameter-?-?,type-parameter-?-?)
sw/inc/docary.hxx:143
void SwVectorModifyBase::dumpAsXml(struct _xmlTextWriter *)
sw/inc/docufld.hxx:502
void SwPostItField::ToggleResolved()
sw/inc/editsh.hxx:371
void SwEditShell::ValidateCurrentParagraphSignatures(_Bool)
sw/inc/extinput.hxx:47
SwExtTextInput * SwExtTextInput::GetPrev()
sw/inc/extinput.hxx:48
const SwExtTextInput * SwExtTextInput::GetPrev() const
sw/inc/formatcontentcontrol.hxx:82
SwFormatContentControl * SwFormatContentControl::CreatePoolDefault(unsigned short)
sw/inc/IDocumentLinksAdministration.hxx:54
_Bool IDocumentLinksAdministration::GetData(const rtl::OUString &,const rtl::OUString &,com::sun::star::uno::Any &) const
sw/inc/IDocumentLinksAdministration.hxx:56
void IDocumentLinksAdministration::SetData(const rtl::OUString &)
sw/inc/IDocumentMarkAccess.hxx:95
IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator--()
sw/inc/IDocumentMarkAccess.hxx:96
IDocumentMarkAccess::iterator IDocumentMarkAccess::iterator::operator--(int)
sw/inc/IDocumentMarkAccess.hxx:97
IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator+=(long)
sw/inc/IDocumentMarkAccess.hxx:99
IDocumentMarkAccess::iterator & IDocumentMarkAccess::iterator::operator-=(long)
sw/inc/IDocumentMarkAccess.hxx:103
_Bool IDocumentMarkAccess::iterator::operator<(const IDocumentMarkAccess::iterator &) const
sw/inc/IDocumentMarkAccess.hxx:104
_Bool IDocumentMarkAccess::iterator::operator>(const IDocumentMarkAccess::iterator &) const
sw/inc/IDocumentMarkAccess.hxx:106
_Bool IDocumentMarkAccess::iterator::operator>=(const IDocumentMarkAccess::iterator &) const
sw/inc/modcfg.hxx:344
_Bool SwModuleOptions::IsFileEncryptedFromColumn() const
sw/inc/ndindex.hxx:127
SwNodeIndex & SwNodeIndex::Assign(const SwNodes &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>)
sw/inc/ndindex.hxx:139
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwNodeIndex &)
sw/inc/node.hxx:261
const IDocumentStylePoolAccess & SwNode::getIDocumentStylePoolAccess() const
sw/inc/node.hxx:265
const IDocumentDrawModelAccess & SwNode::getIDocumentDrawModelAccess() const
sw/inc/pagedesc.hxx:445
void SwPageDescs::erase(SwPageDesc *const &)
sw/inc/pagedesc.hxx:453
SwPageDesc *const & SwPageDescs::front() const
sw/inc/pagedesc.hxx:454
SwPageDesc *const & SwPageDescs::back() const
sw/inc/pam.hxx:49
SwPosition::SwPosition(const SwNodeIndex &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int)
sw/inc/pam.hxx:50
SwPosition::SwPosition(const SwNode &,struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,const SwContentNode *,int)
sw/inc/pam.hxx:51
SwPosition::SwPosition(const SwContentIndex &,short)
sw/inc/pam.hxx:334
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SwPaM &)
sw/inc/rdfhelper.hxx:76
void SwRDFHelper::cloneStatements(const com::sun::star::uno::Reference<com::sun::star::frame::XModel> &,const com::sun::star::uno::Reference<com::sun::star::frame::XModel> &,const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::rdf::XResource> &,const com::sun::star::uno::Reference<com::sun::star::rdf::XResource> &)
sw/inc/rdfhelper.hxx:94
void SwRDFHelper::removeTextNodeStatement(const rtl::OUString &,SwTextNode &,const rtl::OUString &,const rtl::OUString &)
sw/inc/rdfhelper.hxx:97
void SwRDFHelper::updateTextNodeStatement(const rtl::OUString &,const rtl::OUString &,SwTextNode &,const rtl::OUString &,const rtl::OUString &,const rtl::OUString &)
sw/inc/ring.hxx:203
sw::RingIterator::RingIterator<value_type>()
sw/inc/shellio.hxx:85
void SwAsciiOptions::SetIncludeHidden(_Bool)
sw/inc/swabstdlg.hxx:394
std::optional<SwLanguageListItem> AbstractSwTranslateLangSelectDlg::GetSelectedLanguage()
sw/inc/swatrset.hxx:219
const SvxNoHyphenItem & SwAttrSet::GetNoHyphenHere(_Bool) const
sw/inc/swcrsr.hxx:307
SwTableCursor * SwTableCursor::GetNext()
sw/inc/swcrsr.hxx:308
const SwTableCursor * SwTableCursor::GetNext() const
sw/inc/swcrsr.hxx:309
SwTableCursor * SwTableCursor::GetPrev()
sw/inc/swcrsr.hxx:310
const SwTableCursor * SwTableCursor::GetPrev() const
sw/inc/swrect.hxx:102
SwRect & SwRect::operator-=(const Point &)
sw/inc/swrect.hxx:108
SvStream & WriteSwRect(SvStream &,const SwRect &)
sw/inc/swrect.hxx:152
_Bool SwRect::OverStepTop(long) const
sw/inc/textboxhelper.hxx:252
_Bool SwTextBoxNode::IsGroupTextBox() const
sw/inc/view.hxx:466
void SwView::LinkStubMoveNavigationHdl(void *,void *)
sw/inc/viscrs.hxx:227
SwShellTableCursor * SwShellTableCursor::GetNext()
sw/inc/viscrs.hxx:228
const SwShellTableCursor * SwShellTableCursor::GetNext() const
sw/inc/viscrs.hxx:229
SwShellTableCursor * SwShellTableCursor::GetPrev()
sw/inc/viscrs.hxx:230
const SwShellTableCursor * SwShellTableCursor::GetPrev() const
sw/qa/inc/swmodeltestbase.hxx:252
com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> SwModelTestBase::getParagraphAnchoredObject(const int,const com::sun::star::uno::Reference<com::sun::star::text::XTextRange> &) const
sw/source/core/access/accportions.cxx:55
unsigned long FindBreak(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &,type-parameter-?-?)
sw/source/core/access/accportions.cxx:59
unsigned long FindLastBreak(const vector<type-parameter-?-?, allocator<type-parameter-?-?> > &,type-parameter-?-?)
sw/source/core/inc/AccessibilityIssue.hxx:52
const std::vector<rtl::OUString> & sw::AccessibilityIssue::getAdditionalInfo() const
sw/source/core/inc/AccessibilityIssue.hxx:54
void sw::AccessibilityIssue::setAdditionalInfo(std::vector<rtl::OUString> &&)
sw/source/core/inc/frame.hxx:936
void SwFrame::dumpTopMostAsXml(struct _xmlTextWriter *) const
sw/source/core/inc/frame.hxx:1383
Size SwRectFnSet::GetSize(const SwRect &) const
sw/source/core/inc/frame.hxx:1414
long SwRectFnSet::LeftDist(const SwRect &,long) const
sw/source/core/inc/frame.hxx:1415
long SwRectFnSet::RightDist(const SwRect &,long) const
sw/source/core/inc/mvsave.hxx:172
_Bool ZSortFly::operator==(const ZSortFly &) const
sw/source/core/inc/swfont.hxx:415
void SwFont::dumpAsXml(struct _xmlTextWriter *) const
sw/source/core/text/porlin.hxx:125
_Bool SwLinePortion::IsTabRightPortion() const
sw/source/core/text/txtpaint.hxx:72
DbgBackColor::DbgBackColor(OutputDevice *,const _Bool)
sw/source/core/text/txtpaint.hxx:79
DbgRect::DbgRect(OutputDevice *,const tools::Rectangle &,const _Bool,Color)
sw/source/uibase/inc/swcont.hxx:89
_Bool SwContent::operator==(const SwContent &) const
sw/source/uibase/inc/unomod.hxx:36
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> SwXModule_CreateInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
test/source/sheet/xsubtotalfield.cxx:28
_Bool CppUnit::assertion_traits::equal(const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &,const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &)
test/source/sheet/xsubtotalfield.cxx:34
std::basic_string<char> CppUnit::assertion_traits::toString(const com::sun::star::uno::Sequence<struct com::sun::star::sheet::SubTotalColumn> &)
toolkit/inc/awt/vclxbitmap.hxx:49
VCLXBitmap::VCLXBitmap(const BitmapEx &)
ucb/source/inc/regexpmap.hxx:285
RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::begin() const
ucb/source/inc/regexpmap.hxx:289
RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::end() const
ucb/source/ucp/ftp/ftpurl.hxx:108
rtl::OUString ftp::FTPURL::child() const
ucb/source/ucp/gio/gio_mount.cxx:37
void * ooo_mount_operation_get_instance_private(struct OOoMountOperation *)
unoxml/inc/node.hxx:116
void DOM::CNode::checkNoParent(const com::sun::star::uno::Reference<com::sun::star::xml::dom::XNode> &)
vcl/inc/bitmap/BitmapWriteAccess.hxx:73
void BitmapWriteAccess::SetFillColor()
vcl/inc/bitmap/ScanlineTools.hxx:23
void vcl::bitmap::ScanlineTransformer::skipPixel(unsigned int)
vcl/inc/ControlCacheKey.hxx:35
ControlCacheKey::ControlCacheKey(enum ControlType,enum ControlPart,enum ControlState,const Size &)
vcl/inc/ControlCacheKey.hxx:43
_Bool ControlCacheKey::operator==(const ControlCacheKey &) const
vcl/inc/ControlCacheKey.hxx:50
_Bool ControlCacheKey::canCacheControl() const
vcl/inc/ControlCacheKey.hxx:81
unsigned long ControlCacheHashFunction::operator()(const ControlCacheKey &) const
vcl/inc/dndhelper.hxx:35
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> vcl::OleDnDHelper(const com::sun::star::uno::Reference<com::sun::star::lang::XInitialization> &,long,enum vcl::DragOrDrop)
vcl/inc/driverblocklist.hxx:95
DriverBlocklist::DriverInfo::DriverInfo(enum DriverBlocklist::OperatingSystem,rtl::OUString,enum DriverBlocklist::VersionComparisonOp,unsigned long,_Bool,const char *)
vcl/inc/font/FontSelectPattern.hxx:52
_Bool vcl::font::FontSelectPattern::operator!=(const vcl::font::FontSelectPattern &) const
vcl/inc/font/LogicalFontInstance.hxx:96
void LogicalFontInstance::SetAverageWidthFactor(double)
vcl/inc/font/LogicalFontInstance.hxx:97
double LogicalFontInstance::GetAverageWidthFactor() const
vcl/inc/graphic/GraphicID.hxx:39
_Bool GraphicID::operator==(const GraphicID &) const
vcl/inc/headless/svpgdi.hxx:61
struct _cairo * SvpSalGraphics::createTmpCompatibleCairoContext() const
vcl/inc/impfont.hxx:93
unsigned long ImplFont::GetHashValue() const
vcl/inc/ImplLayoutArgs.hxx:71
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const vcl::text::ImplLayoutArgs &)
vcl/inc/jsdialog/jsdialogbuilder.hxx:206
void JSDropTarget::fire_dragEnter(const struct com::sun::star::datatransfer::dnd::DropTargetDragEnterEvent &)
vcl/inc/opengl/zone.hxx:26
void OpenGLZone::relaxWatchdogTimings()
vcl/inc/qt5/QtDragAndDrop.hxx:49
void QtDragSource::deinitialize()
vcl/inc/qt5/QtDragAndDrop.hxx:80
void QtDropTarget::deinitialize()
vcl/inc/qt5/QtFontFace.hxx:41
QtFontFace * QtFontFace::fromQFont(const QFont &)
vcl/inc/qt5/QtFrame.hxx:149
QPoint QtFrame::mapFromParent(const QPoint &) const
vcl/inc/qt5/QtFrame.hxx:164
void QtFrame::deregisterDragSource(const QtDragSource *)
vcl/inc/qt5/QtFrame.hxx:166
void QtFrame::deregisterDropTarget(const QtDropTarget *)
vcl/inc/qt5/QtGraphics.hxx:180
void QtGraphics::drawScaledImage(const struct SalTwoRect &,const QImage &)
vcl/inc/qt5/QtGraphics_Controls.hxx:96
QPoint QtGraphics_Controls::upscale(const QPoint &,enum QtGraphics_Controls::Round)
vcl/inc/qt5/QtMenu.hxx:67
void QtMenu::adjustButtonSizes()
vcl/inc/qt5/QtMenu.hxx:80
const QtFrame * QtMenu::GetFrame() const
vcl/inc/qt5/QtObject.hxx:48
QWidget * QtObject::widget() const
vcl/inc/qt5/QtPainter.hxx:53
void QtPainter::update()
vcl/inc/qt5/QtX11Support.hxx:23
void QtX11Support::fetchAtoms()
vcl/inc/qt5/QtX11Support.hxx:26
_Bool QtX11Support::fixICCCMwindowGroup(unsigned int)
vcl/inc/regionband.hxx:27
const char * ImplDbgTestRegionBand(const void *)
vcl/inc/salframe.hxx:159
rtl::OUString SalFrame::DumpSetPosSize(long,long,long,long,unsigned short)
vcl/inc/salgeom.hxx:69
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const SalFrameGeometry &)
vcl/inc/salmenu.hxx:47
SalMenuButtonItem::SalMenuButtonItem()
vcl/inc/salobj.hxx:73
_Bool SalObject::IsEraseBackgroundEnabled() const
vcl/inc/saltimer.hxx:69
VersionedEvent::VersionedEvent()
vcl/inc/saltimer.hxx:71
int VersionedEvent::GetNextEventVersion()
vcl/inc/saltimer.hxx:90
_Bool VersionedEvent::ExistsValidEvent() const
vcl/inc/saltimer.hxx:95
_Bool VersionedEvent::IsValidEventVersion(const int) const
vcl/inc/salwtype.hxx:136
SalMenuEvent::SalMenuEvent()
vcl/inc/schedulerimpl.hxx:49
const char * ImplSchedulerData::GetDebugName() const
vcl/inc/skia/gdiimpl.hxx:49
const vcl::Region & SkiaSalGraphicsImpl::getClipRegion() const
vcl/inc/skia/gdiimpl.hxx:204
void SkiaSalGraphicsImpl::dump(const char *) const
vcl/inc/skia/salbmp.hxx:99
void SkiaSalBitmap::dump(const char *) const
vcl/inc/skia/utils.hxx:58
sk_sp<SkSurface> SkiaHelper::createSkSurface(int,int,enum SkAlphaType)
vcl/inc/skia/utils.hxx:121
void SkiaHelper::removeCachedImage(sk_sp<SkImage>)
vcl/inc/skia/utils.hxx:131
void SkiaHelper::setPixelGeometry(enum SkPixelGeometry)
vcl/inc/skia/utils.hxx:249
void SkiaHelper::dump(const SkBitmap &,const char *)
vcl/inc/skia/zone.hxx:25
void SkiaZone::relaxWatchdogTimings()
vcl/inc/unx/fontmanager.hxx:206
enum FontItalic psp::PrintFontManager::getFontItalic(int) const
vcl/inc/unx/fontmanager.hxx:213
enum FontWeight psp::PrintFontManager::getFontWeight(int) const
vcl/inc/unx/freetype_glyphcache.hxx:61
const unsigned char * FreetypeFontInfo::GetTable(const char *,unsigned long *) const
vcl/inc/unx/gtk/gtkframe.hxx:298
void GtkSalFrame::DrawingAreaFocusInOut(enum SalEvent)
vcl/inc/unx/gtk/gtksalmenu.hxx:81
const GtkSalFrame * GtkSalMenu::GetFrame() const
vcl/inc/unx/printergfx.hxx:93
_Bool psp::PrinterColor::operator!=(const psp::PrinterColor &) const
vcl/inc/unx/saldisp.hxx:376
SalXLib * SalDisplay::GetXLib() const
vcl/inc/unx/salframe.h:186
enum SalFrameStyleFlags X11SalFrame::GetStyle() const
vcl/qa/cppunit/lifecycle.cxx:197
(anonymous namespace)::LeakTestClass::LeakTestClass(_Bool &,type-parameter-?-? &&...)
vcl/source/app/scheduler.cxx:83
basic_ostream<type-parameter-?-?, type-parameter-?-?> & (anonymous namespace)::operator<<(basic_ostream<type-parameter-?-?, type-parameter-?-?> &,const Idle &)
vcl/source/edit/textdat2.hxx:85
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::begin() const
vcl/source/edit/textdat2.hxx:87
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const TETextPortion *, std::__cxx1998::vector<TETextPortion> >, std::vector<TETextPortion>, struct std::random_access_iterator_tag> TETextPortionList::end() const
vcl/source/filter/FilterConfigCache.hxx:70
rtl::OUString FilterConfigCache::GetImportFormatMediaType(unsigned short)
vcl/source/fontsubset/xlat.hxx:30
unsigned short vcl::TranslateChar12(unsigned short)
vcl/source/fontsubset/xlat.hxx:31
unsigned short vcl::TranslateChar13(unsigned short)
vcl/source/fontsubset/xlat.hxx:32
unsigned short vcl::TranslateChar14(unsigned short)
vcl/source/fontsubset/xlat.hxx:33
unsigned short vcl::TranslateChar15(unsigned short)
vcl/source/fontsubset/xlat.hxx:34
unsigned short vcl::TranslateChar16(unsigned short)
vcl/source/opengl/GLMHelper.hxx:17
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::mat<4, 4, float, glm::packed_highp> &)
vcl/source/opengl/GLMHelper.hxx:18
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<4, float, glm::packed_highp> &)
vcl/source/opengl/GLMHelper.hxx:19
std::basic_ostream<char> & operator<<(std::basic_ostream<char> &,const struct glm::vec<3, float, glm::packed_highp> &)
vcl/source/window/menuitemlist.hxx:123
void MenuItemList::Clear()
vcl/unx/generic/dtrans/X11_clipboard.hxx:106
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::X11Clipboard_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
vcl/unx/generic/dtrans/X11_selection.hxx:487
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::Xdnd_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
vcl/unx/generic/dtrans/X11_selection.hxx:491
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> x11::Xdnd_dropTarget_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
vcl/unx/gtk3/customcellrenderer.hxx:29
int CUSTOM_IS_CELL_RENDERER(void *)
vcl/unx/gtk3/customcellrenderer.hxx:29
struct _CustomCellRenderer * CUSTOM_CELL_RENDERER(void *)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_autoptr_cleanup_CustomCellRenderer(struct _CustomCellRenderer **)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_autoptr_cleanup_CustomCellRendererClass(CustomCellRendererClass **)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_listautoptr_cleanup_CustomCellRenderer(struct _GList **)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_listautoptr_cleanup_CustomCellRendererClass(struct _GList **)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_queueautoptr_cleanup_CustomCellRenderer(struct _GQueue **)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_queueautoptr_cleanup_CustomCellRendererClass(struct _GQueue **)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_slistautoptr_cleanup_CustomCellRenderer(struct _GSList **)
vcl/unx/gtk3/customcellrenderer.hxx:29
void glib_slistautoptr_cleanup_CustomCellRendererClass(struct _GSList **)
vcl/unx/gtk3/gloactiongroup.cxx:51
void * g_lo_action_get_instance_private(struct (anonymous namespace)::GLOAction *)
vcl/unx/gtk3/glomenu.cxx:32
void * g_lo_menu_get_instance_private(struct GLOMenu *)
writerfilter/source/dmapper/PropertyMap.hxx:380
int writerfilter::dmapper::SectionPropertyMap::GetBreakType() const
writerfilter/source/ooxml/OOXMLPropertySet.hxx:183
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::begin() const
writerfilter/source/ooxml/OOXMLPropertySet.hxx:184
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const tools::SvRef<writerfilter::ooxml::OOXMLProperty> *, std::__cxx1998::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> > >, std::vector<tools::SvRef<writerfilter::ooxml::OOXMLProperty> >, struct std::random_access_iterator_tag> writerfilter::ooxml::OOXMLPropertySet::end() const
writerfilter/source/ooxml/OOXMLPropertySet.hxx:187
std::basic_string<char> writerfilter::ooxml::OOXMLPropertySet::toString()
xmlsecurity/inc/framework/xmlsignaturetemplateimpl.hxx:92
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> XMLSignatureTemplateImpl::impl_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
xmlsecurity/inc/gpg/xmlsignature_gpgimpl.hxx:74
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> XMLSignature_GpgImpl::impl_createInstance(const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> &)
xmlsecurity/source/gpg/XMLEncryption.hxx:24
XMLEncryptionGpg::XMLEncryptionGpg()
xmlsecurity/source/xmlsec/nss/nssinitializer.hxx:45
ONSSInitializer::ONSSInitializer(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext>)
|