summaryrefslogtreecommitdiff
path: root/linguistic/source/defs/wntmsci8
blob: 814b5bfccbaaa671ff435946787daa66b5e8e3f5 (plain)
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
??0?$Guard@VMutex@osl@@@osl@@QAE@AAVMutex@1@@Z
??0?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@XZ
??0?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@QAE@XZ
??0LinguDispatcher@@QAE@XZ
??0OUString@rtl@@AAE@PAU_rtl_uString@@PAVDO_NOT_ACQUIRE@01@@Z
??0OUString@rtl@@QAE@ABV01@@Z
??0SeqLangSvcEntry_Thes@@QAE@ABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z
??0SvcFlags@@QAE@XZ
??0ThesSvcList@@QAE@GG@Z
??0ThesaurusDispatcher@@QAE@XZ
??0XInterface@uno@star@sun@com@@QAE@XZ
??0XSupportedLocales@linguistic2@star@sun@com@@QAE@XZ
??0XThesaurus@linguistic2@star@sun@com@@QAE@XZ
??0XTypeProvider@lang@star@sun@com@@QAE@XZ
??1?$Guard@VMutex@osl@@@osl@@QAE@XZ
??1?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@UAE@XZ
??1Any@uno@star@sun@com@@QAE@XZ
??1Locale@lang@star@sun@com@@QAE@XZ
??1OUString@rtl@@QAE@XZ
??1SeqLangSvcEntry_Thes@@QAE@XZ
??1Table@@QAE@XZ
??1ThesSvcList@@QAE@XZ
??1ThesaurusDispatcher@@UAE@XZ
??4?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4Locale@lang@star@sun@com@@QAEAAU01234@ABU01234@@Z
??4OUString@rtl@@QAEAAV01@ABV01@@Z
??C?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXMultiServiceFactory@lang@234@XZ
??C?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXThesaurus@linguistic2@234@XZ
??_3uno@star@sun@com@@YAXAAVAny@0123@ABV?$Reference@VXPropertySet@beans@star@sun@com@@@0123@@Z
??_7LinguDispatcher@@6B@
??_7ThesaurusDispatcher@@6B@
??_7ThesaurusDispatcher@@6BOWeakObject@cppu@@@
??_7ThesaurusDispatcher@@6BXThesaurus@linguistic2@star@sun@com@@@
??_7ThesaurusDispatcher@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0BJ@JMOFKNDD@com?4sun?4star?4lang?4Locale?$AA@
??_C@_0CA@JIGCNJJM@com?4sun?4star?4lang?4XTypeProvider?$AA@
??_C@_0CA@MIBACMNI@com?4sun?4star?4beans?4XPropertySet?$AA@
??_C@_0CC@FBGLDPFH@com?4sun?4star?4linguistic2?4XMeanin@
??_C@_0CE@CBKHAKJJ@com?4sun?4star?4linguistic2?4XThesau@
??_GSeqLangSvcEntry_Thes@@QAEPAXI@Z
??_GThesaurusDispatcher@@UAEPAXI@Z
?ClearSvcList@ThesaurusDispatcher@@AAEXXZ
?Count@Table@@QBEKXZ
?First@ThesSvcList@@QAEPAVSeqLangSvcEntry_Thes@@XZ
?Get@ThesSvcList@@QBEPAVSeqLangSvcEntry_Thes@@K@Z
?GetDspType@ThesaurusDispatcher@@UBE?AW4DspType@LinguDispatcher@@XZ
?GetKey@ThesSvcList@@QBEKPBVSeqLangSvcEntry_Thes@@@Z
?GetPropSet@ThesaurusDispatcher@@AAE?AV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@XZ
?GetServiceList@ThesaurusDispatcher@@UBE?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABULocale@lang@456@@Z
?Insert@ThesSvcList@@QAEEKPAVSeqLangSvcEntry_Thes@@@Z
?Next@ThesSvcList@@QAEPAVSeqLangSvcEntry_Thes@@XZ
?Remove@ThesSvcList@@QAEPAVSeqLangSvcEntry_Thes@@K@Z
?SetServiceList@ThesaurusDispatcher@@UAEXABULocale@lang@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@uno@456@@Z
?acquire@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?acquire@Mutex@osl@@QAEEXZ
?cpp_acquire@uno@star@sun@com@@YAXPAX@Z
?cpp_release@uno@star@sun@com@@YAXPAX@Z
?get@BaseReference@uno@star@sun@com@@QBAPAVXInterface@2345@XZ
?getArray@?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QAAPAULocale@lang@345@XZ
?getArray@?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Reference@VXThesaurus@linguistic2@star@sun@com@@@2345@XZ
?getArray@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAAPAVAny@2345@XZ
?getConstArray@?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAPBV?$Reference@VXThesaurus@linguistic2@star@sun@com@@@2345@XZ
?getConstArray@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QBAPBVOUString@rtl@@XZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBULocale@lang@345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMeaning@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXThesaurus@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@ULocale@lang@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VAny@uno@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@VOUString@rtl@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBVAny@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBVOUString@rtl@@@Z
?getImplementationId@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getLength@?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QBAJXZ
?getLength@OUString@rtl@@QBEJXZ
?getLocales@ThesaurusDispatcher@@UAA?AV?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@XZ
?getTypeLibType@Type@uno@star@sun@com@@QBAPAU_typelib_TypeDescriptionReference@@XZ
?getTypes@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?hasLocale@ThesaurusDispatcher@@UAAEABULocale@lang@star@sun@com@@@Z
?iquery@?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXThesaurus@linguistic2@345@PAVXInterface@2345@@Z
?iquery@BaseReference@uno@star@sun@com@@KAPAVXInterface@2345@PAV62345@ABVType@2345@@Z
?is@BaseReference@uno@star@sun@com@@QBAEXZ
?queryInterface@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryMeanings@ThesaurusDispatcher@@UAA?AV?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@@Z
?release@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?release@Mutex@osl@@QAEEXZ
?replace@OUString@rtl@@QBE?AV12@GG@Z
?s_cd@?$WeakImplHelper1@VXThesaurus@linguistic2@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_pType@?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@V?$Reference@VXMeaning@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@V?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_beans_XPropertySet@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_lang_Locale@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBULocale@lang@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_lang_XTypeProvider@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XMeaning@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMeaning@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XThesaurus@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXThesaurus@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?set@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAEPAVXPropertySet@beans@345@@Z
?set@?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXThesaurus@linguistic2@345@@Z
??0?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAE@J@Z
??0?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@QAE@XZ
??0OUString@rtl@@QAE@XZ
??0SpellAlternatives@linguistic@@QAE@ABVOUString@rtl@@FF0@Z
??0SpellAlternatives@linguistic@@QAE@ABVOUString@rtl@@FFABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z
??0SpellAlternatives@linguistic@@QAE@XZ
??0XSpellAlternatives@linguistic2@star@sun@com@@QAE@XZ
??1?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@UAE@XZ
??1SpellAlternatives@linguistic@@UAE@XZ
??2OWeakObject@cppu@@SAPAXI@Z
??3OWeakObject@cppu@@SAXPAX@Z
??4?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXSpellAlternatives@linguistic2@234@@Z
??8rtl@@YAEABVOUString@0@0@Z
??C?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXSpellAlternatives@linguistic2@234@XZ
??_7SpellAlternatives@linguistic@@6BOWeakObject@cppu@@@
??_7SpellAlternatives@linguistic@@6BXSpellAlternatives@linguistic2@star@sun@com@@@
??_7SpellAlternatives@linguistic@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0CM@CEJBCIJC@com?4sun?4star?4linguistic2?4XSpellA@
??_GSpellAlternatives@linguistic@@UAEPAXI@Z
?MergeProposalSeqs@linguistic@@YA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@AAV23456@0E@Z
?MergeProposals@linguistic@@YA?AV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@AAV23456@0@Z
?Min@@YAJJJ@Z
?SeqHasEntry@linguistic@@YAEABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
?SeqRemoveNegEntries@linguistic@@YAXAAV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@AAV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@3456@F@Z
?SetAlternatives@SpellAlternatives@linguistic@@QAEXABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z
?SetFailureType@SpellAlternatives@linguistic@@QAEXF@Z
?SetWordLanguage@SpellAlternatives@linguistic@@QAEXABVOUString@rtl@@F@Z
?acquire@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?compareTo@OUString@rtl@@QBEJABV12@@Z
?getAlternatives@SpellAlternatives@linguistic@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getAlternativesCount@SpellAlternatives@linguistic@@UAAFXZ
?getArray@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAAPAVOUString@rtl@@XZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@2345@@Z
?getFailureType@SpellAlternatives@linguistic@@UAAFXZ
?getImplementationId@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getLocale@SpellAlternatives@linguistic@@UAA?AULocale@lang@star@sun@com@@XZ
?getTypes@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getWord@SpellAlternatives@linguistic@@UAA?AVOUString@rtl@@XZ
?queryInterface@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?realloc@?$Sequence@VOUString@rtl@@@uno@star@sun@com@@QAAXJ@Z
?release@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?s_cd@?$WeakImplHelper1@VXSpellAlternatives@linguistic2@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_pType_com_sun_star_linguistic2_XSpellAlternatives@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?set@?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSpellAlternatives@linguistic2@345@@Z
??0?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Sequence@F@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@F@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@QAE@XZ
??0Locale@lang@star@sun@com@@QAE@XZ
??0SeqLangSvcEntry_Spell@@QAE@ABV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@@Z
??0SpellCheckerDispatcher@@QAE@AAVLngSvcMgr@@@Z
??0SpellSvcList@@QAE@GG@Z
??0XSpellChecker1@linguistic2@star@sun@com@@QAE@XZ
??0XSpellChecker@linguistic2@star@sun@com@@QAE@XZ
??0XSupportedLanguages@linguistic2@star@sun@com@@QAE@XZ
??1?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@F@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@UAE@XZ
??1SeqLangSvcEntry_Spell@@QAE@XZ
??1SpellCheckerDispatcher@@UAE@XZ
??1SpellSvcList@@QAE@XZ
??4?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??C?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXDictionaryEntry@linguistic2@234@XZ
??C?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXSpellChecker1@linguistic2@234@XZ
??C?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXSpellChecker@linguistic2@234@XZ
??_7SpellCheckerDispatcher@@6B@
??_7SpellCheckerDispatcher@@6BOWeakObject@cppu@@@
??_7SpellCheckerDispatcher@@6BXSpellChecker1@linguistic2@star@sun@com@@@
??_7SpellCheckerDispatcher@@6BXSpellChecker@linguistic2@star@sun@com@@@
??_7SpellCheckerDispatcher@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0CH@EMBKJDCJ@com?4sun?4star?4linguistic2?4XSpellC@
??_C@_0CI@IEKDIFEN@com?4sun?4star?4linguistic2?4XSpellC@
??_C@_0CJ@JKMKPNDP@com?4sun?4star?4linguistic2?4XDictio@
??_C@_0DH@KCAPGOKH@com?4sun?4star?4linguistic2?4XLinguS@
??_GSeqLangSvcEntry_Spell@@QAEPAXI@Z
??_GSpellCheckerDispatcher@@UAEPAXI@Z
?ClearSvcList@SpellCheckerDispatcher@@AAEXXZ
?First@SpellSvcList@@QAEPAVSeqLangSvcEntry_Spell@@XZ
?Get@SpellSvcList@@QBEPAVSeqLangSvcEntry_Spell@@K@Z
?GetDicList@SpellCheckerDispatcher@@AAE?AV?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@XZ
?GetDspType@SpellCheckerDispatcher@@UBE?AW4DspType@LinguDispatcher@@XZ
?GetExtCache@SpellCheckerDispatcher@@ABEAAVIPRSpellCache@linguistic@@XZ
?GetKey@SpellSvcList@@QBEKPBVSeqLangSvcEntry_Spell@@@Z
?GetPropSet@SpellCheckerDispatcher@@AAE?AV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@XZ
?GetServiceList@SpellCheckerDispatcher@@UBE?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABULocale@lang@456@@Z
?Insert@SpellSvcList@@QAEEKPAVSeqLangSvcEntry_Spell@@@Z
?IsSpellInAllLanguages@LinguOptions@@QBEEXZ
?Next@SpellSvcList@@QAEPAVSeqLangSvcEntry_Spell@@XZ
?Remove@SpellSvcList@@QAEPAVSeqLangSvcEntry_Spell@@K@Z
?SetServiceList@SpellCheckerDispatcher@@UAEXABULocale@lang@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@uno@456@@Z
?SvcListHasLanguage@@YAEABVSeqLangSvcEntry_Spell@@F@Z
?acquire@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBI@AAXXZ
?getArray@?$Sequence@F@uno@star@sun@com@@QAAPAFXZ
?getArray@?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@2345@XZ
?getArray@?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@2345@XZ
?getConstArray@?$Sequence@F@uno@star@sun@com@@QBAPBFXZ
?getConstArray@?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAPBV?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@2345@XZ
?getConstArray@?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAPBV?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@2345@XZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBF@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@F@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@2345@@Z
?getImplementationId@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getLanguages@SpellCheckerDispatcher@@UAA?AV?$Sequence@F@uno@star@sun@com@@XZ
?getLength@?$Sequence@F@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getLocales@SpellCheckerDispatcher@@UAA?AV?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?hasLanguage@SpellCheckerDispatcher@@UAAEF@Z
?hasLocale@SpellCheckerDispatcher@@UAAEABULocale@lang@star@sun@com@@@Z
?iquery@?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXDictionaryList@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXLinguServiceEventBroadcaster@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXSpellChecker1@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXSpellChecker@linguistic2@345@PAVXInterface@2345@@Z
?isValid@SpellCheckerDispatcher@@UAAEABVOUString@rtl@@ABULocale@lang@star@sun@com@@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@678@@Z
?isValid@SpellCheckerDispatcher@@UAAEABVOUString@rtl@@FABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@Z
?isValidInAny@SpellCheckerDispatcher@@AAEEABVOUString@rtl@@ABV?$Sequence@F@uno@star@sun@com@@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@5678@@Z
?isValid_Impl@SpellCheckerDispatcher@@AAEEABVOUString@rtl@@FABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@E@Z
?queryInterface@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?release@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@UAAXXZ
?release@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@WBI@AAXXZ
?s_cd@?$WeakImplHelper2@VXSpellChecker@linguistic2@star@sun@com@@VXSpellChecker1@2345@@cppu@@0Uclass_data2@2@A
?s_pType@?$Sequence@F@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType@?$Sequence@V?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XDictionaryList@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XLinguServiceEventBroadcaster@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XSpellChecker1@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XSpellChecker@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?set@?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDictionaryList@linguistic2@345@@Z
?set@?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSearchableDictionaryList@linguistic2@345@@Z
?set@?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSpellChecker1@linguistic2@345@@Z
?set@?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXSpellChecker@linguistic2@345@@Z
?spell@SpellCheckerDispatcher@@UAA?AV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@@Z
?spell@SpellCheckerDispatcher@@UAA?AV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@FABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@@Z
?spellInAny@SpellCheckerDispatcher@@AAE?AV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABV?$Sequence@F@3456@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@F@Z
?spell_Impl@SpellCheckerDispatcher@@AAE?AV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@FABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@E@Z
??0?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXDictionary1@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXTerminateListener@frame@star@sun@com@@@uno@star@sun@com@@QAE@PAVXTerminateListener@frame@234@@Z
??0?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@QAE@XZ
??0AppExitListener@linguistic@@QAE@XZ
??0Locale@lang@star@sun@com@@QAE@ABVOUString@rtl@@00@Z
??0Mutex@osl@@QAE@XZ
??0XEventListener@lang@star@sun@com@@QAE@XZ
??0XTerminateListener@frame@star@sun@com@@QAE@XZ
??1?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXDictionary1@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXTerminateListener@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@UAE@XZ
??1AppExitListener@linguistic@@UAE@XZ
??1Mutex@osl@@QAE@XZ
??4?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXDesktop@frame@234@@Z
??4?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXDictionaryEntry@linguistic2@234@@Z
??4?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXHyphenatedWord@linguistic2@234@@Z
??4?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??8BaseReference@uno@star@sun@com@@QBAEABV01234@@Z
??8BaseReference@uno@star@sun@com@@QBAEPAVXInterface@1234@@Z
??BOUString@rtl@@QBEPBGXZ
??C?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@QBAPAVXDesktop@frame@234@XZ
??C?$Reference@VXDictionary1@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXDictionary1@linguistic2@234@XZ
??C?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXDictionaryList@linguistic2@234@XZ
??C?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QBAPAVXFastPropertySet@beans@234@XZ
??C?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXHyphenatedWord@linguistic2@234@XZ
??YOUString@rtl@@QAEAAV01@ABV01@@Z
??_2uno@star@sun@com@@YAEABVAny@0123@AAE@Z
??_7AppExitListener@linguistic@@6BOWeakObject@cppu@@@
??_7AppExitListener@linguistic@@6BXTerminateListener@frame@star@sun@com@@@
??_7AppExitListener@linguistic@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0BM@PFPBLCFN@com?4sun?4star?4frame?4XDesktop?$AA@
??_C@_0CE@FHBEPBJL@com?4sun?4star?4beans?4XFastProperty@
??_C@_0CF@KFOPCONF@com?4sun?4star?4linguistic2?4XDictio@
??_C@_0CG@DAEBMOMH@com?4sun?4star?4linguistic2?4XDictio@
??_C@_0CG@MJHIDAG@com?4sun?4star?4frame?4XTerminateLis@
??_C@_0DD@BLKHILAN@com?4sun?4star?4linguistic2?4XSearch@
??_GAppExitListener@linguistic@@UAEPAXI@Z
??_R0?AVRuntimeException@uno@star@sun@com@@@8
?Activate@AppExitListener@linguistic@@QAEXXZ
?CreateLocale@linguistic@@YA?AULocale@lang@star@sun@com@@G@Z
?Deactivate@AppExitListener@linguistic@@QAEXXZ
?GetChar@String@@QBEGG@Z
?GetDictionaryList@linguistic@@YA?AV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@XZ
?GetLinguMutex@linguistic@@YAAAVMutex@osl@@XZ
?GetLinguProperties@linguistic@@YA?AV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@XZ
?GetOneInstanceService@linguistic@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@PBD@Z
?GetPosInWordToCheck@linguistic@@YAJABVOUString@rtl@@J@Z
?GetSearchableDictionaryList@linguistic@@YA?AV?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@XZ
?GetTextEncoding@linguistic@@YAGF@Z
?HasDigits@linguistic@@YAEABVString@@@Z
?IsControlChar@linguistic@@YAEG@Z
?IsHyphen@linguistic@@YAEG@Z
?IsIgnoreControlChars@linguistic@@YAEABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXPropertySet@beans@star@sun@com@@@3456@@Z
?IsLower@linguistic@@YAEABVString@@F@Z
?IsNumeric@linguistic@@YAEABVString@@@Z
?IsUpper@linguistic@@YAEABVString@@F@Z
?IsUseDicList@linguistic@@YAEABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXPropertySet@beans@star@sun@com@@@3456@@Z
?LangSeqToLocaleSeq@linguistic@@YA?AV?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@F@3456@@Z
?LanguageToLocale@linguistic@@YAAAULocale@lang@star@sun@com@@AAU23456@G@Z
?Len@String@@QBEGXZ
?LocaleSeqToLangSeq@linguistic@@YA?AV?$Sequence@F@uno@star@sun@com@@AAV?$Sequence@ULocale@lang@star@sun@com@@@3456@@Z
?LocaleToLanguage@linguistic@@YAGABULocale@lang@star@sun@com@@@Z
?RebuildHyphensAndControlChars@linguistic@@YA?AV?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@AAV23456@@Z
?SearchDicList@linguistic@@YA?AV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@3456@ABVOUString@rtl@@FEE@Z
?ToLower@linguistic@@YA?AVString@@ABV2@F@Z
?ToLower@linguistic@@YAGGF@Z
?ToUpper@linguistic@@YAGGF@Z
?acquire@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@WBE@AAXXZ
?copy@OUString@rtl@@QBE?AV12@J@Z
?copy@OUString@rtl@@QBE?AV12@JJ@Z
?createFromAscii@OUString@rtl@@SA?AV12@PBD@Z
?disposing@AppExitListener@linguistic@@UAAXABUEventObject@lang@star@sun@com@@@Z
?getConstArray@?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QBAPBULocale@lang@345@XZ
?getConstArray@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QBAPBUPropertyValue@beans@345@XZ
?getConstArray@?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAPBV?$Reference@VXDictionary@linguistic2@star@sun@com@@@2345@XZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDesktop@frame@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionary1@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionary@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFastPropertySet@beans@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInterface@uno@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTerminateListener@frame@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@2345@@Z
?getImplementationId@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getLength@?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getStr@OUString@rtl@@QBEPBGXZ
?getTypes@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?indexOf@OUString@rtl@@QBEJGJ@Z
?iquery@?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@CAPAVXDesktop@frame@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXDictionary1@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXDictionary1@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXFastPropertySet@beans@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXPropertySet@beans@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXSearchableDictionaryList@linguistic2@345@PAVXInterface@2345@@Z
?lcl_GetCharClassMutex@linguistic@@YAAAVMutex@osl@@XZ
?lower@CharClass@@QBE?AVString@@ABV2@@Z
?notifyTermination@AppExitListener@linguistic@@UAAXABUEventObject@lang@star@sun@com@@@Z
?queryInterface@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryTermination@AppExitListener@linguistic@@UAAXABUEventObject@lang@star@sun@com@@@Z
?release@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@WBE@AAXXZ
?s_cd@?$WeakImplHelper1@VXTerminateListener@frame@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_pType@?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_beans_XFastPropertySet@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFastPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_frame_XDesktop@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDesktop@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_frame_XTerminateListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTerminateListener@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XDictionary1@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionary1@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XDictionary@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionary@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XSearchableDictionaryList@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?set@?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDesktop@frame@345@@Z
?set@?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDictionaryEntry@linguistic2@345@@Z
?set@?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXHyphenatedWord@linguistic2@345@@Z
?set@?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAAEPAVXInterface@2345@@Z
?upper@CharClass@@QBE?AVString@@ABV2@@Z
??0?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXDictionaryListEventListener@linguistic2@234@@Z
??0?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXEnumeration@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@@Z
??0?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXLinguServiceEventListener@linguistic2@234@@Z
??0?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@PAVXMultiServiceFactory@lang@234@@Z
??0?$Reference@VXServiceInfo@lang@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@F@uno@star@sun@com@@QAE@XZ
??0?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@QAE@XZ
??0?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@QAE@XZ
??0Any@uno@star@sun@com@@QAE@XZ
??0EventObject@lang@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@@Z
??0LinguServiceEvent@linguistic2@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@ABF@Z
??0Link@@QAE@PAXP6AJ00@Z@Z
??0LngSvcMgr@@QAE@XZ
??0LngSvcMgrListenerHelper@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@2345@@Z
??0OUString@rtl@@QAE@PBGJ@Z
??0SortedINT16Array@@QAE@EE@Z
??0SortedINT16Array_SAR@@QAE@EE@Z
??0SvcInfo@@QAE@ABVOUString@rtl@@ABV?$Sequence@F@uno@star@sun@com@@@Z
??0SvcInfoArray@@QAE@EE@Z
??0SvtLinguConfigItem@@QAE@ABVOUString@rtl@@@Z
??0XAvailableLocales@linguistic2@star@sun@com@@QAE@XZ
??0XComponent@lang@star@sun@com@@QAE@XZ
??0XDictionaryListEventListener@linguistic2@star@sun@com@@QAE@XZ
??0XLinguServiceEventListener@linguistic2@star@sun@com@@QAE@XZ
??0XLinguServiceManager@linguistic2@star@sun@com@@QAE@XZ
??0XServiceInfo@lang@star@sun@com@@QAE@XZ
??1?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXEnumeration@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXRegistryKey@registry@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXServiceInfo@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@UAE@XZ
??1?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@UAE@XZ
??1EventObject@lang@star@sun@com@@QAE@XZ
??1LinguServiceEvent@linguistic2@star@sun@com@@QAE@XZ
??1LngSvcMgr@@UAE@XZ
??1LngSvcMgrListenerHelper@@UAE@XZ
??1SortedINT16Array@@QAE@XZ
??1SortedINT16Array_SAR@@QAE@XZ
??1SvPtrarr@@QAE@XZ
??1SvcInfoArray@@QAE@XZ
??1SvtLinguConfigItem@@UAE@XZ
??4?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXDictionaryList@linguistic2@234@@Z
??4?$Reference@VXEnumeration@container@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXEventListener@lang@234@@Z
??4?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXHyphenator@linguistic2@234@@Z
??4?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXSpellChecker@linguistic2@234@@Z
??4?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXThesaurus@linguistic2@234@@Z
??4?$Sequence@F@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4Any@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??9rtl@@YAEABVOUString@0@0@Z
??ASortedINT16Array@@QBEABFG@Z
??ASortedINT16Array_SAR@@QBEAAFG@Z
??ASvPtrarr@@QBEAAPAXG@Z
??ASvcInfoArray@@QBEPAUSvcInfo@@G@Z
??B?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??B?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??C?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@uno@star@sun@com@@QBAPAVXContentEnumerationAccess@container@234@XZ
??C?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXDictionaryListEventListener@linguistic2@234@XZ
??C?$Reference@VXEnumeration@container@star@sun@com@@@uno@star@sun@com@@QBAPAVXEnumeration@container@234@XZ
??C?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXLinguServiceEventBroadcaster@linguistic2@234@XZ
??C?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXLinguServiceEventListener@linguistic2@234@XZ
??C?$Reference@VXRegistryKey@registry@star@sun@com@@@uno@star@sun@com@@QBAPAVXRegistryKey@registry@234@XZ
??C?$Reference@VXServiceInfo@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXServiceInfo@lang@234@XZ
??C?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXSingleServiceFactory@lang@234@XZ
??C?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXSupportedLocales@linguistic2@234@XZ
??YString@@QAEAAV0@PBG@Z
??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@0123@@Z
??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Sequence@VOUString@rtl@@@0123@@Z
??_2uno@star@sun@com@@YAEABVAny@0123@AAVOUString@rtl@@@Z
??_3uno@star@sun@com@@YAXAAVAny@0123@ABV?$Sequence@VOUString@rtl@@@0123@@Z
??_3uno@star@sun@com@@YAXAAVAny@0123@ABVOUString@rtl@@@Z
??_7LngSvcMgr@@6BOWeakObject@cppu@@@
??_7LngSvcMgr@@6BXAvailableLocales@linguistic2@star@sun@com@@@
??_7LngSvcMgr@@6BXComponent@lang@star@sun@com@@@
??_7LngSvcMgr@@6BXLinguServiceManager@linguistic2@star@sun@com@@@
??_7LngSvcMgr@@6BXServiceInfo@lang@star@sun@com@@@
??_7LngSvcMgr@@6BXTypeProvider@lang@star@sun@com@@@
??_7LngSvcMgrListenerHelper@@6BOWeakObject@cppu@@@
??_7LngSvcMgrListenerHelper@@6BXDictionaryListEventListener@linguistic2@star@sun@com@@@
??_7LngSvcMgrListenerHelper@@6BXLinguServiceEventListener@linguistic2@star@sun@com@@@
??_7LngSvcMgrListenerHelper@@6BXTypeProvider@lang@star@sun@com@@@
??_7SvtLinguConfigItem@@6B@
??_C@_0BN@DBFOLCOP@com?4sun?4star?4lang?4XComponent?$AA@
??_C@_0BO@KBIAOJEJ@com?4sun?4star?4lingu2?4LngSvcMgr?$AA@
??_C@_0BP@PCEDPGBI@com?4sun?4star?4lang?4XServiceInfo?$AA@
??_C@_0CB@CAMHJNFE@com?4sun?4star?4beans?4PropertyValue@
??_C@_0CF@CIGDAHGP@com?4sun?4star?4linguistic2?4XHyphen@
??_C@_0CI@CAOCKCIB@com?4sun?4star?4lang?4XSingleService@
??_C@_0CL@FOPNLNAJ@com?4sun?4star?4linguistic2?4XSuppor@
??_C@_0CL@OKEEOFAJ@com?4sun?4star?4linguistic2?4XAvaila@
??_C@_0CO@NHIJBEBI@com?4sun?4star?4linguistic2?4XLinguS@
??_C@_0DB@PPFCFKIH@com?4sun?4star?4container?4XContentE@
??_C@_0DE@CNCCEJHB@com?4sun?4star?4linguistic2?4XLinguS@
??_C@_0DG@JOFBKGGF@com?4sun?4star?4linguistic2?4XDictio@
??_GLngSvcMgr@@UAEPAXI@Z
??_GLngSvcMgrListenerHelper@@UAEPAXI@Z
??_GSvcInfoArray@@QAEPAXI@Z
??_GSvtLinguConfigItem@@UAEPAXI@Z
??_R0?AVException@uno@star@sun@com@@@8
?AddLngSvcEvt@LngSvcMgrListenerHelper@@QAEXF@Z
?AddLngSvcEvtBroadcaster@LngSvcMgr@@QAEEABV?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?AddLngSvcEvtBroadcaster@LngSvcMgrListenerHelper@@QAEEABV?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?AddLngSvcMgrListener@LngSvcMgrListenerHelper@@QAEEABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?Count@SortedINT16Array@@QBEGXZ
?Count@SortedINT16Array_SAR@@QBEGXZ
?Count@SvPtrarr@@QBEGXZ
?DeleteAndDestroy@SvcInfoArray@@QAEXGG@Z
?DisposeAndClear@LngSvcMgrListenerHelper@@QAEXABUEventObject@lang@star@sun@com@@@Z
?GetAvailableHyphSvcs_Impl@LngSvcMgr@@AAEXXZ
?GetAvailableSpellSvcs_Impl@LngSvcMgr@@AAEXXZ
?GetAvailableThesSvcs_Impl@LngSvcMgr@@AAEXXZ
?GetData@SortedINT16Array@@QBEPBFXZ
?GetHyphenatorDsp_Impl@LngSvcMgr@@AAEXXZ
?GetListenerHelper_Impl@LngSvcMgr@@AAEXXZ
?GetNodeNames@SvtLinguConfigItem@@QAE?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
?GetObject@SvPtrarr@@QBEAAPAXG@Z
?GetObject@SvcInfoArray@@QBEPAUSvcInfo@@G@Z
?GetProperties@SvtLinguConfigItem@@QAE?AV?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@3456@@Z
?GetSpellCheckerDsp_Impl@LngSvcMgr@@AAEXXZ
?GetThesaurusDsp_Impl@LngSvcMgr@@AAEXXZ
?HasLanguage@SvcInfo@@QBEEF@Z
?Insert@SortedINT16Array@@QAEEABF@Z
?Insert@SortedINT16Array@@QAEEABFAAG@Z
?Insert@SortedINT16Array@@QAEXPBFG@Z
?Insert@SortedINT16Array@@QAEXPBV1@GG@Z
?Insert@SortedINT16Array_SAR@@QAEXABFG@Z
?Insert@SortedINT16Array_SAR@@QAEXPBFGG@Z
?Insert@SortedINT16Array_SAR@@QAEXPBV1@GGG@Z
?Insert@SvcInfoArray@@QAEXABQAUSvcInfo@@G@Z
?LaunchEvent@LngSvcMgrListenerHelper@@AAEXF@Z
?LinkStubTimeOut@LngSvcMgrListenerHelper@@CAJPAX0@Z
?LngSvcMgr_CreateInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
?LngSvcMgr_getFactory@@YAPAXPBDPAVXMultiServiceFactory@lang@star@sun@com@@PAX@Z
?LngSvcMgr_writeInfo@@YAEPAXPAVXRegistryKey@registry@star@sun@com@@@Z
?Remove@SortedINT16Array@@QAEXABFG@Z
?Remove@SortedINT16Array@@QAEXGG@Z
?Remove@SortedINT16Array_SAR@@QAEXGG@Z
?RemoveLngSvcEvtBroadcaster@LngSvcMgr@@QAEEABV?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?RemoveLngSvcEvtBroadcaster@LngSvcMgrListenerHelper@@QAEEABV?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?RemoveLngSvcMgrListener@LngSvcMgrListenerHelper@@QAEEABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?Replace@SortedINT16Array_SAR@@QAEXABFG@Z
?Replace@SortedINT16Array_SAR@@QAEXPBFGG@Z
?ReplaceSetProperties@SvtLinguConfigItem@@QAEEABVOUString@rtl@@V?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@Z
?SaveCfgSvcs@LngSvcMgr@@AAEEABVString@@@Z
?Seek_Entry@SortedINT16Array@@QBEEABFPAG@Z
?SetAvailableCfgServiceLists@@YAXAAVLinguDispatcher@@ABVSvcInfoArray@@@Z
?SetCfgServiceLists@LngSvcMgr@@AAEXAAVHyphenatorDispatcher@@@Z
?SetCfgServiceLists@LngSvcMgr@@AAEXAAVSpellCheckerDispatcher@@@Z
?SetCfgServiceLists@LngSvcMgr@@AAEXAAVThesaurusDispatcher@@@Z
?SetTimeoutHdl@Timer@@QAEXABVLink@@@Z
?TimeOut@LngSvcMgrListenerHelper@@AAEJPAVTimer@@@Z
?_ForEach@SortedINT16Array_SAR@@QAEXGGP6AEABFPAX@Z1@Z
?_resize@SortedINT16Array_SAR@@IAEXI@Z
?acquire@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBM@AAXXZ
?acquire@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WCA@AAXXZ
?addEventListener@LngSvcMgr@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?addLinguServiceManagerListener@LngSvcMgr@@UAAEABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?clear@?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QAAXXZ
?compareToAscii@OUString@rtl@@QBEJPBD@Z
?cpp_queryInterface@uno@star@sun@com@@YAPAXPAXPAU_typelib_TypeDescriptionReference@@@Z
?dispose@LngSvcMgr@@UAAXXZ
?disposing@LngSvcMgrListenerHelper@@UAAXABUEventObject@lang@star@sun@com@@@Z
?disposing@LngSvcMgrListenerHelper@@W3AAXABUEventObject@lang@star@sun@com@@@Z
?extractInterface@cppu@@YAEAAV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@ABVAny@3456@@Z
?get@?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@uno@star@sun@com@@QBAPAVXSingleServiceFactory@lang@345@XZ
?getArray@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@QAAPAUPropertyValue@beans@345@XZ
?getAvailableLocales@LngSvcMgr@@UAA?AV?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
?getAvailableServices@LngSvcMgr@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@@Z
?getConfiguredServices@LngSvcMgr@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@@Z
?getConstArray@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QBAPBVAny@2345@XZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAvailableLocales@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXHyphenator@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceManager@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXServiceInfo@lang@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UPropertyValue@beans@star@sun@com@@@2345@@Z
?getHyphenator@LngSvcMgr@@UAA?AV?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationName@LngSvcMgr@@UAA?AVOUString@rtl@@XZ
?getImplementationName_Static@LngSvcMgr@@SA?AVOUString@rtl@@XZ
?getLength@?$Sequence@VAny@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getSpellChecker@LngSvcMgr@@UAA?AV?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@XZ
?getSupportedServiceNames@LngSvcMgr@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getSupportedServiceNames_Static@LngSvcMgr@@SA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getThesaurus@LngSvcMgr@@UAA?AV?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?hasMoreElements@OInterfaceIteratorHelper@cppu@@QBAEXZ
?hasValue@Any@uno@star@sun@com@@QBAEXZ
?iquery@?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@uno@star@sun@com@@CAPAVXContentEnumerationAccess@container@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXDictionaryListEventListener@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXHyphenator@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXLinguServiceEventListener@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXServiceInfo@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXServiceInfo@lang@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXSupportedLocales@linguistic2@345@PAVXInterface@2345@@Z
?processDictionaryListEvent@LngSvcMgrListenerHelper@@UAAXABUDictionaryListEvent@linguistic2@star@sun@com@@@Z
?processLinguServiceEvent@LngSvcMgrListenerHelper@@UAAXABULinguServiceEvent@linguistic2@star@sun@com@@@Z
?queryInterface@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WCA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?realloc@?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z
?release@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@UAAXXZ
?release@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@UAAXXZ
?release@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WBM@AAXXZ
?release@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@WCA@AAXXZ
?removeEventListener@LngSvcMgr@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?removeLinguServiceManagerListener@LngSvcMgr@@UAAEABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?s_cd@?$WeakImplHelper2@VXLinguServiceEventListener@linguistic2@star@sun@com@@VXDictionaryListEventListener@2345@@cppu@@0Uclass_data2@2@A
?s_cd@?$WeakImplHelper4@VXLinguServiceManager@linguistic2@star@sun@com@@VXAvailableLocales@2345@VXComponent@lang@345@VXServiceInfo@8345@@cppu@@0Uclass_data4@2@A
?s_pType@?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_beans_PropertyValue@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_container_XContentEnumerationAccess@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_lang_XComponent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_lang_XServiceInfo@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXServiceInfo@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_lang_XSingleServiceFactory@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XAvailableLocales@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAvailableLocales@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XDictionaryListEventListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XHyphenator@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXHyphenator@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XLinguServiceEventListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XLinguServiceManager@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceManager@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XSupportedLocales@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?set@?$Reference@VXEnumeration@container@star@sun@com@@@uno@star@sun@com@@QAAEPAVXEnumeration@container@345@@Z
?set@?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@QAAEPAVXEventListener@lang@345@@Z
?set@?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXHyphenator@linguistic2@345@@Z
?setConfiguredServices@LngSvcMgr@@UAAXABVOUString@rtl@@ABULocale@lang@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@uno@678@@Z
?supportsService@LngSvcMgr@@UAAEABVOUString@rtl@@@Z
?valueOf@OUString@rtl@@SA?AV12@G@Z
??0?$OMultiTypeInterfaceContainerHelperVar@JUPropHashType_Impl@@U?$equal_to@J@_STL@@@cppu@@QAE@AAVMutex@osl@@@Z
??0?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@QAE@PAVXPropertySetInfo@beans@234@@Z
??0?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@QAE@XZ
??0?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@QAE@XZ
??0?$_Hashtable_iterator@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAE@PAU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@1@PAV?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@1@@Z
??0?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@1@PBV?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@1@@Z
??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@1@I@Z
??0?$allocator@PAX@_STL@@QAE@ABV?$allocator@U?$pair@$$CBJPAX@_STL@@@1@@Z
??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z
??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBJPAX@_STL@@@1@@Z
??0?$allocator@U?$pair@$$CBJPAX@_STL@@@_STL@@QAE@XZ
??0?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QAE@XZ
??0?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAE@IABUPropHashType_Impl@@ABU?$equal_to@J@1@ABV?$allocator@U?$pair@$$CBJPAX@_STL@@@1@@Z
??0?$pair@$$CBJPAX@_STL@@QAE@ABJABQAX@Z
??0?$pair@$$CBJPAX@_STL@@QAE@ABU01@@Z
??0Any@uno@star@sun@com@@QAE@ABV01234@@Z
??0LinguOptions@@QAE@ABV0@@Z
??0LinguOptions@@QAE@XZ
??0LinguProps@@QAE@XZ
??0ORefCount@vos@@QAE@XZ
??0OUString@rtl@@QAE@PBDJGK@Z
??0PropertyChangeEvent@beans@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@ABVOUString@rtl@@ABEABJABVAny@6234@4@Z
??0SfxItemPropertySetInfo@@QAE@PBUSfxItemPropertyMap@@@Z
??0XFastPropertySet@beans@star@sun@com@@QAE@XZ
??0XPropertyAccess@beans@star@sun@com@@QAE@XZ
??0XPropertySet@beans@star@sun@com@@QAE@XZ
??0XPropertySetInfo@beans@star@sun@com@@QAE@XZ
??1?$OMultiTypeInterfaceContainerHelperVar@JUPropHashType_Impl@@U?$equal_to@J@_STL@@@cppu@@QAE@XZ
??1?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAE@XZ
??1?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@UAE@XZ
??1?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@2@@_STL@@QAE@XZ
??1?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@U?$pair@$$CBJPAX@_STL@@@_STL@@QAE@XZ
??1?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QAE@XZ
??1?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAE@XZ
??1LinguOptions@@QAE@XZ
??1LinguProps@@UAE@XZ
??1PropertyChangeEvent@beans@star@sun@com@@QAE@XZ
??1SfxItemPropertySetInfo@@UAE@XZ
??1SvtLinguOptions@@QAE@XZ
??2@YAPAXIPAX@Z
??2OInterfaceContainerHelper@cppu@@SAPAXI@Z
??3@YAXPAX0@Z
??3OInterfaceContainerHelper@cppu@@SAXPAX@Z
??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@0@0@Z
??9_STL@@YA_NABU?$_Hashtable_iterator@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@0@0@Z
??A?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QAEAAPAXABJ@Z
??B?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??C?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QBAPAVXPropertyChangeListener@beans@234@XZ
??D?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBJPAX@1@XZ
??E?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAEAAU01@XZ
??EORefCount@vos@@QAAJXZ
??FORefCount@vos@@QAAJXZ
??R?$_Select1st@U?$pair@$$CBJPAX@_STL@@@_STL@@QBEABJABU?$pair@$$CBJPAX@1@@Z
??R?$equal_to@J@_STL@@QBE_NABJ0@Z
??R?$less@I@_STL@@QBE_NABI0@Z
??RPropHashType_Impl@@QBEIABJ@Z
??_2uno@star@sun@com@@YAEABVAny@0123@AAF@Z
??_2uno@star@sun@com@@YAEABVAny@0123@AAULocale@lang@123@@Z
??_3uno@star@sun@com@@YAXAAVAny@0123@ABE@Z
??_3uno@star@sun@com@@YAXAAVAny@0123@ABF@Z
??_7LinguProps@@6BOWeakObject@cppu@@@
??_7LinguProps@@6BXComponent@lang@star@sun@com@@@
??_7LinguProps@@6BXFastPropertySet@beans@star@sun@com@@@
??_7LinguProps@@6BXPropertyAccess@beans@star@sun@com@@@
??_7LinguProps@@6BXPropertySet@beans@star@sun@com@@@
??_7LinguProps@@6BXServiceInfo@lang@star@sun@com@@@
??_7LinguProps@@6BXTypeProvider@lang@star@sun@com@@@
??_7ORefCount@vos@@6B@
??_7SfxItemPropertySetInfo@@6BOWeakObject@cppu@@@
??_7SfxItemPropertySetInfo@@6BXPropertySetInfo@beans@star@sun@com@@@
??_7SfxItemPropertySetInfo@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0BP@BCAMBPAF@com?4sun?4star?4lingu2?4LinguProps?$AA@
??_C@_0CD@NJJMBOP@com?4sun?4star?4beans?4XPropertyAcce@
??_C@_0CE@CNOPAMND@com?4sun?4star?4beans?4XPropertySetI@
??_C@_0CL@FDIDFJEH@com?4sun?4star?4beans?4XPropertyChan@
??_G?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QAEPAXI@Z
??_GLinguProps@@UAEPAXI@Z
??_GOInterfaceContainerHelper@cppu@@QAEPAXI@Z
??_GORefCount@vos@@UAEPAXI@Z
??_GSfxItemPropertySetInfo@@UAEPAXI@Z
??_GSvtLinguOptions@@QAEPAXI@Z
?GetName@LinguOptions@@QBE?AVOUString@rtl@@J@Z
?GetValue@LinguOptions@@QBEXAAVAny@uno@star@sun@com@@J@Z
?LinguProps_CreateInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
?LinguProps_getFactory@@YAPAXPBDPAVXMultiServiceFactory@lang@star@sun@com@@PAX@Z
?LinguProps_writeInfo@@YAEPAXPAVXRegistryKey@registry@star@sun@com@@@Z
?SetLocale_Impl@LinguOptions@@AAEEAAFAAVAny@uno@star@sun@com@@ABV23456@@Z
?SetValue@LinguOptions@@QAEEAAVAny@uno@star@sun@com@@ABV23456@J@Z
?_Construct@_STL@@YAXPAU?$pair@$$CBJPAX@1@ABU21@@Z
?_Destroy@_STL@@YAXPAU?$pair@$$CBJPAX@1@@Z
?_M_bkt_num@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBJPAX@2@@Z
?_M_bkt_num@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBJPAX@2@I@Z
?_M_bkt_num_key@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@ABEIABJ@Z
?_M_bkt_num_key@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@ABEIABJI@Z
?_M_delete_node@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@2@@Z
?_M_find@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@ABEPAU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@2@ABJ@Z
?_M_initialize_buckets@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@AAEXI@Z
?_M_insert@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAEAAU?$pair@$$CBJPAX@2@ABU32@@Z
?_M_list@?$_Stl_prime@_N@_STL@@2QBIB
?_M_new_node@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@2@ABU?$pair@$$CBJPAX@2@@Z
?_M_next_size@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@ABEII@Z
?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@2@XZ
?__advance@_STL@@YAXAAPBIHABUrandom_access_iterator_tag@1@@Z
?__distance@_STL@@YAHABQBI0ABUrandom_access_iterator_tag@1@@Z
?__less@_STL@@YA?AU?$less@I@1@PAI@Z
?__lower_bound@_STL@@YAPBIPBI0ABIU?$less@I@1@PAH@Z
?aRefCount@LinguOptions@@0VORefCount@vos@@A
?aWID_Name@@3PAUWID_Name@@A
?acquire@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBM@AAXXZ
?acquire@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WCA@AAXXZ
?acquire@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WCE@AAXXZ
?acquire@ORefCount@vos@@QAAJXZ
?addEventListener@LinguProps@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?addInterface@?$OMultiTypeInterfaceContainerHelperVar@JUPropHashType_Impl@@U?$equal_to@J@_STL@@@cppu@@QAAJABJABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@Z
?addPropertyChangeListener@LinguProps@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
?addVetoableChangeListener@LinguProps@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
?advance@_STL@@YAXAAPBIH@Z
?allocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@2@IPBX@Z
?begin@?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@2@XZ
?begin@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@2@XZ
?bucket_count@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QBEIXZ
?clear@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAEXXZ
?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBJPAX@_STL@@@2@I@Z
?dispose@LinguProps@@UAAXXZ
?disposeAndClear@?$OMultiTypeInterfaceContainerHelperVar@JUPropHashType_Impl@@U?$equal_to@J@_STL@@@cppu@@QAAXABUEventObject@lang@star@sun@com@@@Z
?distance@_STL@@YAHABQBI0@Z
?end@?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@2@XZ
?end@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@2@XZ
?find@?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@2@ABJ@Z
?find@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBJPAX@_STL@@U?$_Nonconst_traits@U?$pair@$$CBJPAX@_STL@@@2@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@2@ABJ@Z
?getBooleanCppuType@@YAABVType@uno@star@sun@com@@XZ
?getContainer@?$OMultiTypeInterfaceContainerHelperVar@JUPropHashType_Impl@@U?$equal_to@J@_STL@@@cppu@@QBAPAVOInterfaceContainerHelper@2@ABJ@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBE@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyAccess@beans@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@2345@@Z
?getFastPropertyValue@LinguProps@@UAA?AVAny@uno@star@sun@com@@J@Z
?getImplementationId@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationName@LinguProps@@UAA?AVOUString@rtl@@XZ
?getImplementationName_Static@LinguProps@@SA?AVOUString@rtl@@XZ
?getPropertySetInfo@LinguProps@@UAA?AV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@uno@star@sun@com@@XZ
?getPropertyValue@LinguProps@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
?getPropertyValues@LinguProps@@UAA?AV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@XZ
?getSupportedServiceNames@LinguProps@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getSupportedServiceNames_Static@LinguProps@@SA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?iquery@?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXPropertyChangeListener@beans@345@PAVXInterface@2345@@Z
?iterator_category@_STL@@YA?AUrandom_access_iterator_tag@1@PBI@Z
?launchEvent@LinguProps@@ABEXABUPropertyChangeEvent@beans@star@sun@com@@@Z
?pData@LinguOptions@@0PAUSvtLinguOptions@@A
?queryInterface@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WCA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WCE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?release@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@UAAXXZ
?release@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WBM@AAXXZ
?release@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WCA@AAXXZ
?release@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@WCE@AAXXZ
?release@ORefCount@vos@@QAAJXZ
?removeEventListener@LinguProps@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?removeInterface@?$OMultiTypeInterfaceContainerHelperVar@JUPropHashType_Impl@@U?$equal_to@J@_STL@@@cppu@@QAAJABJABV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@@Z
?removePropertyChangeListener@LinguProps@@UAAXABVOUString@rtl@@ABV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
?removeVetoableChangeListener@LinguProps@@UAAXABVOUString@rtl@@ABV?$Reference@VXVetoableChangeListener@beans@star@sun@com@@@uno@star@sun@com@@@Z
?resize@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QAEXI@Z
?s_cd@?$WeakImplHelper1@VXPropertySetInfo@beans@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_cd@?$WeakImplHelper5@VXPropertySet@beans@star@sun@com@@VXFastPropertySet@2345@VXPropertyAccess@2345@VXComponent@lang@345@VXServiceInfo@9345@@cppu@@0Uclass_data5@2@A
?s_pType_com_sun_star_beans_XPropertyAccess@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyAccess@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_beans_XPropertyChangeListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_beans_XPropertySetInfo@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?setFastPropertyValue@LinguProps@@UAAXJABVAny@uno@star@sun@com@@@Z
?setPropertyValue@LinguProps@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
?setPropertyValues@LinguProps@@UAAXABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@Z
?setValue@Any@uno@star@sun@com@@QAAXPBXABVType@2345@@Z
?size@?$hash_map@JPAXUPropHashType_Impl@@U?$equal_to@J@_STL@@V?$allocator@U?$pair@$$CBJPAX@_STL@@@3@@_STL@@QBEIXZ
?size@?$hashtable@U?$pair@$$CBJPAX@_STL@@JUPropHashType_Impl@@U?$_Select1st@U?$pair@$$CBJPAX@_STL@@@2@U?$equal_to@J@2@V?$allocator@U?$pair@$$CBJPAX@_STL@@@2@@_STL@@QBEIXZ
?supportsService@LinguProps@@UAAEABVOUString@rtl@@@Z
??0?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@QAE@PAVXPropertyChangeListener@beans@234@@Z
??0?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@QAE@XZ
??0FlushListener@linguistic@@QAE@PAVFlushable@1@@Z
??0Flushable@linguistic@@QAE@XZ
??0IPRCachedWord@linguistic@@QAE@ABVString@@PAV01@F@Z
??0IPRSpellCache@linguistic@@QAE@K@Z
??0XPropertyChangeListener@beans@star@sun@com@@QAE@XZ
??1?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@UAE@XZ
??1FlushListener@linguistic@@UAE@XZ
??1IPRCachedWord@linguistic@@QAE@XZ
??1IPRSpellCache@linguistic@@UAE@XZ
??4?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXDictionaryListEventListener@linguistic2@234@@Z
??4?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXPropertySet@beans@234@@Z
??4String@@QAEAAV0@ABV0@@Z
??8@YAEABVString@@0@Z
??9BaseReference@uno@star@sun@com@@QBAEABV01234@@Z
??C?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@QBAPAVXPropertySet@beans@234@XZ
??_7FlushListener@linguistic@@6BOWeakObject@cppu@@@
??_7FlushListener@linguistic@@6BXDictionaryListEventListener@linguistic2@star@sun@com@@@
??_7FlushListener@linguistic@@6BXPropertyChangeListener@beans@star@sun@com@@@
??_7FlushListener@linguistic@@6BXTypeProvider@lang@star@sun@com@@@
??_7Flushable@linguistic@@6B@
??_7IPRSpellCache@linguistic@@6B@
??_GFlushListener@linguistic@@UAEPAXI@Z
??_GIPRCachedWord@linguistic@@QAEPAXI@Z
??_GIPRSpellCache@linguistic@@UAEPAXI@Z
?AddWord@IPRSpellCache@linguistic@@QAEXABVString@@F@Z
?CheckWord@IPRSpellCache@linguistic@@QAEEABVString@@FE@Z
?Flush@IPRSpellCache@linguistic@@UAEXXZ
?GetBuffer@String@@QBEPBGXZ
?GetFollow@IPRCachedWord@linguistic@@QAEPAV12@XZ
?GetFound@IPRCachedWord@linguistic@@QAEKXZ
?GetLang@IPRCachedWord@linguistic@@QAEGXZ
?GetNext@IPRCachedWord@linguistic@@QAEPAV12@XZ
?GetPrev@IPRCachedWord@linguistic@@QAEPAV12@XZ
?GetWord@IPRCachedWord@linguistic@@QAEABVString@@XZ
?IncFound@IPRCachedWord@linguistic@@QAEXXZ
?SetDicList@FlushListener@linguistic@@QAEXAAV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?SetFlushObj@FlushListener@linguistic@@QAEXPAVFlushable@2@@Z
?SetFollow@IPRCachedWord@linguistic@@QAEXPAV12@@Z
?SetFound@IPRCachedWord@linguistic@@QAEXK@Z
?SetLang@IPRCachedWord@linguistic@@QAEXF@Z
?SetNext@IPRCachedWord@linguistic@@QAEXPAV12@@Z
?SetPrev@IPRCachedWord@linguistic@@QAEXPAV12@@Z
?SetPropSet@FlushListener@linguistic@@QAEXAAV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@@Z
?SetWord@IPRCachedWord@linguistic@@QAEXABVString@@@Z
?acquire@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBI@AAXXZ
?disposing@FlushListener@linguistic@@UAAXABUEventObject@lang@star@sun@com@@@Z
?disposing@FlushListener@linguistic@@W3AAXABUEventObject@lang@star@sun@com@@@Z
?getImplementationId@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?processDictionaryListEvent@FlushListener@linguistic@@UAAXABUDictionaryListEvent@linguistic2@star@sun@com@@@Z
?propertyChange@FlushListener@linguistic@@UAAXABUPropertyChangeEvent@beans@star@sun@com@@@Z
?queryInterface@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?release@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@UAAXXZ
?release@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@WBI@AAXXZ
?s_cd@?$WeakImplHelper2@VXDictionaryListEventListener@linguistic2@star@sun@com@@VXPropertyChangeListener@beans@345@@cppu@@0Uclass_data2@2@A
?set@?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDictionaryListEventListener@linguistic2@345@@Z
??0?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@QAE@XZ
??0?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@QAE@XZ
??0HyphenatedWord@linguistic@@QAE@ABVOUString@rtl@@FF0F@Z
??0Locale@lang@star@sun@com@@QAE@ABU01234@@Z
??0PossibleHyphens@linguistic@@QAE@ABVOUString@rtl@@F0ABV?$Sequence@F@uno@star@sun@com@@@Z
??0XHyphenatedWord@linguistic2@star@sun@com@@QAE@XZ
??0XPossibleHyphens@linguistic2@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@UAE@XZ
??1?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@UAE@XZ
??1HyphenatedWord@linguistic@@UAE@XZ
??1PossibleHyphens@linguistic@@UAE@XZ
??_7HyphenatedWord@linguistic@@6BOWeakObject@cppu@@@
??_7HyphenatedWord@linguistic@@6BXHyphenatedWord@linguistic2@star@sun@com@@@
??_7HyphenatedWord@linguistic@@6BXTypeProvider@lang@star@sun@com@@@
??_7PossibleHyphens@linguistic@@6BOWeakObject@cppu@@@
??_7PossibleHyphens@linguistic@@6BXPossibleHyphens@linguistic2@star@sun@com@@@
??_7PossibleHyphens@linguistic@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0CJ@NDACDJJF@com?4sun?4star?4linguistic2?4XHyphen@
??_C@_0CK@BFFIBCCK@com?4sun?4star?4linguistic2?4XPossib@
??_GHyphenatedWord@linguistic@@UAEPAXI@Z
??_GPossibleHyphens@linguistic@@UAEPAXI@Z
?acquire@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@2345@@Z
?getHyphenPos@HyphenatedWord@linguistic@@UAAFXZ
?getHyphenatedWord@HyphenatedWord@linguistic@@UAA?AVOUString@rtl@@XZ
?getHyphenationPos@HyphenatedWord@linguistic@@UAAFXZ
?getHyphenationPositions@PossibleHyphens@linguistic@@UAA?AV?$Sequence@F@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getLocale@HyphenatedWord@linguistic@@UAA?AULocale@lang@star@sun@com@@XZ
?getLocale@PossibleHyphens@linguistic@@UAA?AULocale@lang@star@sun@com@@XZ
?getPossibleHyphens@PossibleHyphens@linguistic@@UAA?AVOUString@rtl@@XZ
?getTypes@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getWord@HyphenatedWord@linguistic@@UAA?AVOUString@rtl@@XZ
?getWord@PossibleHyphens@linguistic@@UAA?AVOUString@rtl@@XZ
?isAlternativeSpelling@HyphenatedWord@linguistic@@UAAEXZ
?queryInterface@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?release@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?s_cd@?$WeakImplHelper1@VXHyphenatedWord@linguistic2@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_cd@?$WeakImplHelper1@VXPossibleHyphens@linguistic2@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_pType_com_sun_star_linguistic2_XHyphenatedWord@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XPossibleHyphens@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
??0?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXHyphenatedWord@linguistic2@234@@Z
??0?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@QAE@XZ
??0HyphSvcList@@QAE@GG@Z
??0HyphenatorDispatcher@@QAE@AAVLngSvcMgr@@@Z
??0LangSvcEntry_Hyph@@QAE@ABVOUString@rtl@@@Z
??0OUString@rtl@@QAE@PAU_rtl_uString@@@Z
??0OUStringBuffer@rtl@@QAE@J@Z
??0XHyphenator@linguistic2@star@sun@com@@QAE@XZ
??1?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@UAE@XZ
??1HyphSvcList@@QAE@XZ
??1HyphenatorDispatcher@@UAE@XZ
??1LangSvcEntry_Hyph@@QAE@XZ
??1OUStringBuffer@rtl@@QAE@XZ
??4?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXPossibleHyphens@linguistic2@234@@Z
??C?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXHyphenator@linguistic2@234@XZ
??C?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXPossibleHyphens@linguistic2@234@XZ
??C?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXSearchableDictionaryList@linguistic2@234@XZ
??_7HyphenatorDispatcher@@6B@
??_7HyphenatorDispatcher@@6BOWeakObject@cppu@@@
??_7HyphenatorDispatcher@@6BXHyphenator@linguistic2@star@sun@com@@@
??_7HyphenatorDispatcher@@6BXTypeProvider@lang@star@sun@com@@@
??_GHyphenatorDispatcher@@UAEPAXI@Z
??_GLangSvcEntry_Hyph@@QAEPAXI@Z
?ClearSvcList@HyphenatorDispatcher@@AAEXXZ
?First@HyphSvcList@@QAEPAVLangSvcEntry_Hyph@@XZ
?Get@HyphSvcList@@QBEPAVLangSvcEntry_Hyph@@K@Z
?GetDicList@HyphenatorDispatcher@@AAE?AV?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@XZ
?GetDspType@HyphenatorDispatcher@@UBE?AW4DspType@LinguDispatcher@@XZ
?GetKey@HyphSvcList@@QBEKPBVLangSvcEntry_Hyph@@@Z
?GetPropSet@HyphenatorDispatcher@@AAE?AV?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@XZ
?GetServiceList@HyphenatorDispatcher@@UBE?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABULocale@lang@456@@Z
?Insert@HyphSvcList@@QAEEKPAVLangSvcEntry_Hyph@@@Z
?Next@HyphSvcList@@QAEPAVLangSvcEntry_Hyph@@XZ
?Remove@HyphSvcList@@QAEPAVLangSvcEntry_Hyph@@K@Z
?SetServiceList@HyphenatorDispatcher@@UAEXABULocale@lang@star@sun@com@@ABV?$Sequence@VOUString@rtl@@@uno@456@@Z
?acquire@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?append@OUStringBuffer@rtl@@QAEAAV12@G@Z
?append@OUStringBuffer@rtl@@QAEAAV12@PBGJ@Z
?buildHyphWord@HyphenatorDispatcher@@AAE?AV?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@3456@FF@Z
?buildPossHyphens@HyphenatorDispatcher@@AAE?AV?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@3456@F@Z
?createPossibleHyphens@HyphenatorDispatcher@@UAA?AV?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@@Z
?getImplementationId@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getLength@OUStringBuffer@rtl@@QAEJXZ
?getLocales@HyphenatorDispatcher@@UAA?AV?$Sequence@ULocale@lang@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?hasLocale@HyphenatorDispatcher@@UAAEABULocale@lang@star@sun@com@@@Z
?hyphenate@HyphenatorDispatcher@@UAA?AV?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@FABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@@Z
?makeStringAndClear@OUStringBuffer@rtl@@QAE?AVOUString@2@XZ
?queryAlternativeSpelling@HyphenatorDispatcher@@UAA?AV?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@FABV?$Sequence@UPropertyValue@beans@star@sun@com@@@3456@@Z
?queryInterface@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?realloc@?$Sequence@F@uno@star@sun@com@@QAAXJ@Z
?release@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?s_cd@?$WeakImplHelper1@VXHyphenator@linguistic2@star@sun@com@@@cppu@@0Uclass_data1@2@A
?set@?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXPossibleHyphens@linguistic2@345@@Z
??0?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXDictionary@linguistic2@234@@Z
??0?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXDictionaryList@linguistic2@234@@Z
??0?$Reference@VXStorable@frame@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXTerminateListener@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@QAE@XZ
??0?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@QAE@XZ
??0ActDic@@QAE@ABV0@@Z
??0ActDic@@QAE@ABV?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
??0ActDicArray@@QAE@EE@Z
??0DicEvtListenerHelper@@QAE@ABV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
??0DicList@@QAE@XZ
??0DictionaryListEvent@linguistic2@star@sun@com@@QAE@ABV?$Reference@VXInterface@uno@star@sun@com@@@uno@234@ABFABV?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@6234@@Z
??0INetURLObject@@QAE@ABVString@@W4EncodeMechanism@0@G@Z
??0MyAppExitListener@DicList@@QAE@AAV1@@Z
??0SubString@INetURLObject@@QAE@GG@Z
??0XDictionaryEventListener@linguistic2@star@sun@com@@QAE@XZ
??0XDictionaryList@linguistic2@star@sun@com@@QAE@XZ
??0XSearchableDictionaryList@linguistic2@star@sun@com@@QAE@XZ
??1?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXStorable@frame@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@UAE@XZ
??1?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAE@XZ
??1ActDic@@QAE@XZ
??1ActDicArray@@QAE@XZ
??1DicEvtListenerHelper@@UAE@XZ
??1DicList@@UAE@XZ
??1DictionaryListEvent@linguistic2@star@sun@com@@QAE@XZ
??1INetURLObject@@QAE@XZ
??1MyAppExitListener@DicList@@UAE@XZ
??2@YAPAXIPAVDummyType@@@Z
??4?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXDictionaryEventListener@linguistic2@234@@Z
??4?$Reference@VXTerminateListener@frame@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXTerminateListener@frame@234@@Z
??4?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4DictionaryEvent@linguistic2@star@sun@com@@QAEAAU01234@ABU01234@@Z
??4EventObject@lang@star@sun@com@@QAEAAU01234@ABU01234@@Z
??4String@@QAEAAV0@PBG@Z
??9@YAEABVString@@0@Z
??AActDicArray@@QBEAAVActDic@@G@Z
??B?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??B?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??C?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXDictionary@linguistic2@234@XZ
??C?$Reference@VXStorable@frame@star@sun@com@@@uno@star@sun@com@@QBAPAVXStorable@frame@234@XZ
??_7DicEvtListenerHelper@@6BOWeakObject@cppu@@@
??_7DicEvtListenerHelper@@6BXDictionaryEventListener@linguistic2@star@sun@com@@@
??_7DicEvtListenerHelper@@6BXTypeProvider@lang@star@sun@com@@@
??_7DicList@@6BOWeakObject@cppu@@@
??_7DicList@@6BXComponent@lang@star@sun@com@@@
??_7DicList@@6BXSearchableDictionaryList@linguistic2@star@sun@com@@@
??_7DicList@@6BXServiceInfo@lang@star@sun@com@@@
??_7DicList@@6BXTypeProvider@lang@star@sun@com@@@
??_7MyAppExitListener@DicList@@6BOWeakObject@cppu@@@
??_7MyAppExitListener@DicList@@6BXTerminateListener@frame@star@sun@com@@@
??_7MyAppExitListener@DicList@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0BM@CFKGBMF@com?4sun?4star?4lingu2?4DicList?$AA@
??_C@_0BN@LOOEGCMG@com?4sun?4star?4frame?4XStorable?$AA@
??_C@_0CJ@MIAMCOAE@com?4sun?4star?4linguistic2?4Diction@
??_C@_0CK@EEHEOMKM@com?4sun?4star?4linguistic2?4XDictio@
??_C@_0DC@EPIGCCDG@com?4sun?4star?4linguistic2?4XDictio@
??_GActDic@@QAEPAXI@Z
??_GActDicArray@@QAEPAXI@Z
??_GDicEvtListenerHelper@@UAEPAXI@Z
??_GDicList@@UAEPAXI@Z
??_GMyAppExitListener@DicList@@UAEPAXI@Z
?AddDicListEvtListener@DicEvtListenerHelper@@QAEEABV?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@E@Z
?AtExit@MyAppExitListener@DicList@@UAEXXZ
?BeginCollectEvents@DicEvtListenerHelper@@QAEFXZ
?Copy@String@@QBE?AV1@GG@Z
?Count@ActDicArray@@QBEGXZ
?DicList_CreateInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
?DicList_getFactory@@YAPAXPBDPAVXMultiServiceFactory@lang@star@sun@com@@PAX@Z
?DicList_writeInfo@@YAEPAXPAVXRegistryKey@registry@star@sun@com@@@Z
?DisposeAndClear@DicEvtListenerHelper@@QAEXABUEventObject@lang@star@sun@com@@@Z
?ERRCODE_TOERROR@@YAKK@Z
?EndCollectEvents@DicEvtListenerHelper@@QAEFXZ
?FlushEvents@DicEvtListenerHelper@@QAEFXZ
?GetActiveDics@LinguOptions@@QBE?BV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?GetDicList@DicList@@AAEAAVActDicArray@@XZ
?GetError@SvStream@@QBEKXZ
?GetObject@ActDicArray@@QBEAAVActDic@@G@Z
?Insert@ActDicArray@@QAEXABVActDic@@G@Z
?Insert@ActDicArray@@QAEXPBVActDic@@GG@Z
?Remove@ActDicArray@@QAEXGG@Z
?RemoveDicListEvtListener@DicEvtListenerHelper@@QAEEABV?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?SaveDics@DicList@@QAEXXZ
?_CreateDicList@DicList@@AAEXXZ
?_ForEach@ActDicArray@@QAEXGGP6AEABVActDic@@PAX@Z1@Z
?_destroy@ActDicArray@@IAEXXZ
?_resize@ActDicArray@@IAEXI@Z
?acquire@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBM@AAXXZ
?addDictionary@DicList@@UAAEABV?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?addDictionaryListEventListener@DicList@@UAAEABV?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@E@Z
?addEventListener@DicList@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?beginCollectEvents@DicList@@UAAFXZ
?createDictionary@DicList@@UAA?AV?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@W4DictionaryType@linguistic2@456@0@Z
?dispose@DicList@@UAAXXZ
?disposing@DicEvtListenerHelper@@UAAXABUEventObject@lang@star@sun@com@@@Z
?endCollectEvents@DicList@@UAAFXZ
?flushEvents@DicList@@UAAFXZ
?getArray@?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAPAUDictionaryEvent@linguistic2@345@XZ
?getArray@?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Reference@VXDictionary@linguistic2@star@sun@com@@@2345@XZ
?getCount@DicList@@UAAFXZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBUDictionaryEvent@linguistic2@345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXStorable@frame@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@2345@@Z
?getDicPos@DicList@@AAEJABV?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?getDictionaries@DicList@@UAA?AV?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getDictionaryByName@DicList@@UAA?AV?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
?getImplementationId@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationName@DicList@@UAA?AVOUString@rtl@@XZ
?getImplementationName_Static@DicList@@SA?AVOUString@rtl@@XZ
?getLength@?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getLength@?$Sequence@V?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getSupportedServiceNames@DicList@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getSupportedServiceNames_Static@DicList@@SA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?iquery@?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXDictionary@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXDictionaryEntry@linguistic2@345@PAVXInterface@2345@@Z
?iquery@?$Reference@VXStorable@frame@star@sun@com@@@uno@star@sun@com@@CAPAVXStorable@frame@345@PAVXInterface@2345@@Z
?lcl_GetToken@@YAGAAVString@@ABV1@G1@Z
?processDictionaryEvent@DicEvtListenerHelper@@UAAXABUDictionaryEvent@linguistic2@star@sun@com@@@Z
?queryDictionaryEntry@DicList@@UAA?AV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@EE@Z
?queryInterface@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?realloc@?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z
?release@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAAXXZ
?release@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBM@AAXXZ
?removeDictionary@DicList@@UAAEABV?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?removeDictionaryListEventListener@DicList@@UAAEABV?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?removeEventListener@DicList@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?s_cd@?$WeakImplHelper1@VXDictionaryEventListener@linguistic2@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_cd@?$WeakImplHelper3@VXSearchableDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@0Uclass_data3@2@A
?s_pType@?$Sequence@UDictionaryEvent@linguistic2@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_frame_XStorable@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXStorable@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_DictionaryEvent@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDictionaryEvent@linguistic2@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XDictionaryEntry@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XDictionaryEventListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?searchForDictionaries@DicList@@AAEXAAVActDicArray@@ABVString@@@Z
?set@?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDictionary@linguistic2@345@@Z
?set@?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXDictionaryEventListener@linguistic2@345@@Z
?set@?$Reference@VXTerminateListener@frame@star@sun@com@@@uno@star@sun@com@@QAAEPAVXTerminateListener@frame@345@@Z
?supportsService@DicList@@UAAEABVOUString@rtl@@@Z
??0?$Reference@VXCommandEnvironment@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXDictionaryEntry@linguistic2@234@@Z
??0?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@J@Z
??0?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@PBV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@1234@J@Z
??0?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@QAE@XZ
??0?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@QAE@XZ
??0DicEntry@@QAE@ABVOUString@rtl@@E0@Z
??0DicEntry@@QAE@ABVOUString@rtl@@E@Z
??0DicEntry@@QAE@XZ
??0DictionaryEvent@linguistic2@star@sun@com@@QAE@XZ
??0DictionaryNeo@@QAE@ABVOUString@rtl@@FW4DictionaryType@linguistic2@star@sun@com@@0@Z
??0DictionaryNeo@@QAE@XZ
??0EventObject@lang@star@sun@com@@QAE@XZ
??0XDictionary1@linguistic2@star@sun@com@@QAE@XZ
??0XDictionary@linguistic2@star@sun@com@@QAE@XZ
??0XDictionaryEntry@linguistic2@star@sun@com@@QAE@XZ
??0XNamed@container@star@sun@com@@QAE@XZ
??0XStorable@frame@star@sun@com@@QAE@XZ
??1?$Reference@VXCommandEnvironment@ucb@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@UAE@XZ
??1?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@UAE@XZ
??1DicEntry@@UAE@XZ
??1DictionaryEvent@linguistic2@star@sun@com@@QAE@XZ
??1DictionaryNeo@@UAE@XZ
??4?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??B?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??B?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??C?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXDictionaryEventListener@linguistic2@234@XZ
??YByteString@@QAEAAV0@PBD@Z
??_7DicEntry@@6BOWeakObject@cppu@@@
??_7DicEntry@@6BXDictionaryEntry@linguistic2@star@sun@com@@@
??_7DicEntry@@6BXTypeProvider@lang@star@sun@com@@@
??_7DictionaryNeo@@6BOWeakObject@cppu@@@
??_7DictionaryNeo@@6BXDictionary1@linguistic2@star@sun@com@@@
??_7DictionaryNeo@@6BXDictionary@linguistic2@star@sun@com@@@
??_7DictionaryNeo@@6BXStorable@frame@star@sun@com@@@
??_7DictionaryNeo@@6BXTypeProvider@lang@star@sun@com@@@
??_GDicEntry@@UAEPAXI@Z
??_GDictionaryNeo@@UAEPAXI@Z
?DictionaryNeo_CreateInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
?GetBuffer@ByteString@@QBEPBDXZ
?GetDicExtension@@YA?BVString@@XZ
?GetDicVersion@@YAHPBD@Z
?IsEof@SvStream@@QBEEXZ
?Len@ByteString@@QBEGXZ
?Max@@YAHHH@Z
?acquire@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBM@AAXXZ
?add@DictionaryNeo@@UAAEABVOUString@rtl@@E0@Z
?add@DictionaryNeo@@W3AAEABVOUString@rtl@@E0@Z
?addDictionaryEventListener@DictionaryNeo@@UAAEABV?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?addDictionaryEventListener@DictionaryNeo@@W3AAEABV?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?addEntry@DictionaryNeo@@UAAEABV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?addEntry@DictionaryNeo@@W3AAEABV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?addEntry_Impl@DictionaryNeo@@AAEEV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@E@Z
?clear@DictionaryNeo@@UAAXXZ
?clear@DictionaryNeo@@W3AAXXZ
?cmpDicEntry@DictionaryNeo@@AAEHABVOUString@rtl@@0E@Z
?getArray@?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@2345@XZ
?getConstArray@?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAPBV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@2345@XZ
?getCount@DictionaryNeo@@UAAFXZ
?getCount@DictionaryNeo@@W3AAFXZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@2345@@Z
?getDictionaryType@DictionaryNeo@@UAA?AW4DictionaryType@linguistic2@star@sun@com@@XZ
?getDictionaryType@DictionaryNeo@@W3AA?AW4DictionaryType@linguistic2@star@sun@com@@XZ
?getDictionaryWord@DicEntry@@UAA?AVOUString@rtl@@XZ
?getEntries@DictionaryNeo@@UAA?AV?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getEntries@DictionaryNeo@@W3AA?AV?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getEntry@DictionaryNeo@@UAA?AV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
?getEntry@DictionaryNeo@@W3AA?AV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
?getImplementationId@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getLanguage@DictionaryNeo@@UAAFXZ
?getLength@?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getLocale@DictionaryNeo@@UAA?AULocale@lang@star@sun@com@@XZ
?getLocation@DictionaryNeo@@UAA?AVOUString@rtl@@XZ
?getName@DictionaryNeo@@UAA?AVOUString@rtl@@XZ
?getName@DictionaryNeo@@W3AA?AVOUString@rtl@@XZ
?getReplacementText@DicEntry@@UAA?AVOUString@rtl@@XZ
?getTypes@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?hasLocation@DictionaryNeo@@UAAEXZ
?indexOf@OUString@rtl@@QBEJABV12@J@Z
?iquery@?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXDictionaryEventListener@linguistic2@345@PAVXInterface@2345@@Z
?isActive@DictionaryNeo@@UAAEXZ
?isActive@DictionaryNeo@@W3AAEXZ
?isFull@DictionaryNeo@@UAAEXZ
?isFull@DictionaryNeo@@W3AAEXZ
?isNegative@DicEntry@@UAAEXZ
?isReadonly@DictionaryNeo@@UAAEXZ
?isReadonly_Impl@DictionaryNeo@@AAEEXZ
?isSorted@DictionaryNeo@@AAEEXZ
?launchEvent@DictionaryNeo@@AAEXFV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?lcl_SequenceRemoveElementAt@@YAXAAV?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@H@Z
?loadEntries@DictionaryNeo@@AAEKABVOUString@rtl@@@Z
?queryInterface@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?realloc@?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z
?release@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@UAAXXZ
?release@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@WBM@AAXXZ
?remove@DictionaryNeo@@UAAEABVOUString@rtl@@@Z
?remove@DictionaryNeo@@W3AAEABVOUString@rtl@@@Z
?removeDictionaryEventListener@DictionaryNeo@@UAAEABV?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?removeDictionaryEventListener@DictionaryNeo@@W3AAEABV?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@@Z
?s_cd@?$WeakImplHelper1@VXDictionaryEntry@linguistic2@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_cd@?$WeakImplHelper3@VXDictionary1@linguistic2@star@sun@com@@VXDictionary@2345@VXStorable@frame@345@@cppu@@0Uclass_data3@2@A
?s_pType@?$Sequence@V?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?saveEntries@DictionaryNeo@@AAEKABVOUString@rtl@@@Z
?seekEntry@DictionaryNeo@@AAEEABVOUString@rtl@@PAJE@Z
?setActive@DictionaryNeo@@UAAXE@Z
?setActive@DictionaryNeo@@W3AAXE@Z
?setLanguage@DictionaryNeo@@UAAXF@Z
?setLocale@DictionaryNeo@@UAAXABULocale@lang@star@sun@com@@@Z
?setName@DictionaryNeo@@UAAXABVOUString@rtl@@@Z
?setName@DictionaryNeo@@W3AAXABVOUString@rtl@@@Z
?splitDicFileWord@DicEntry@@AAEXABVOUString@rtl@@AAV23@1@Z
?store@DictionaryNeo@@UAAXXZ
?storeAsURL@DictionaryNeo@@UAAXABVOUString@rtl@@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@Z
?storeToURL@DictionaryNeo@@UAAXABVOUString@rtl@@ABV?$Sequence@UPropertyValue@beans@star@sun@com@@@uno@star@sun@com@@@Z
?DbgError@@YAXPBD0G@Z
?DbgGetData@@YAPAUDbgData@@XZ
?DbgIsAssert@@YAKXZ
?DbgIsErrorOut@@YAKXZ
?getLength@?$Sequence@V?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
??_C@_0CH@POINNAOP@o?3?2SRX644?2wntmsci8?2inc?2rtl?1ustri@
?Insert@ActDicArray@@QAEXPBV1@GGG@Z
?HasError@INetURLObject@@QBE_NXZ
??_C@_0CH@PAGKDIDO@o?3?2SRX645?2wntmsci8?2inc?2rtl?1ustri@
?getQuotationMarkEnd@LocaleDataWrapper@@QBEABVString@@XZ
?GetLocaleDataWrapper@linguistic@@YAAAVLocaleDataWrapper@@F@Z
??_C@_0CH@OANPDINN@o?3?2SRC680?2wntmsci8?2inc?2rtl?1ustri@
??0bad_alloc@std@@QAE@ABV01@@Z
??0bad_alloc@std@@QAE@PBD@Z
??1bad_alloc@std@@UAE@XZ
??_7bad_alloc@std@@6B@
??_C@_0P@GHFPNOJB@bad?5allocation?$AA@
??_Gbad_alloc@std@@UAEPAXI@Z
??_R0?AVbad_alloc@std@@@8
??_R0?AVexception@@@8
__CT??_R0?AVbad_alloc@std@@@8??0bad_alloc@std@@QAE@ABV01@@Z12
__CT??_R0?AVexception@@@8??0exception@@QAE@ABV0@@Z12
__CTA2?AVbad_alloc@std@@
_TI2?AVbad_alloc@std@@
?iquery@?$Reference@VXThesaurus@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDesktop@frame@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDictionary1@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXFastPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXPropertySet@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXHyphenator@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXServiceInfo@lang@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXStorable@frame@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?ClearEvents@DicEvtListenerHelper@@QAEXXZ
component_getFactory
component_getImplementationEnvironment
component_writeInfo
?IsReadOnly@linguistic@@YAEABVString@@PAE@Z
??0Exception@uno@star@sun@com@@QAE@ABV01234@@Z
??0Exception@uno@star@sun@com@@QAE@XZ
??0HHConvDic@@QAE@ABVString@@0@Z
??0IllegalArgumentException@lang@star@sun@com@@QAE@ABV01234@@Z
??0IllegalArgumentException@lang@star@sun@com@@QAE@XZ
??1Exception@uno@star@sun@com@@QAE@XZ
??1HHConvDic@@UAE@XZ
??1IllegalArgumentException@lang@star@sun@com@@QAE@XZ
??_7HHConvDic@@6BOWeakObject@cppu@@@
??_7HHConvDic@@6BXConversionDictionary@linguistic2@star@sun@com@@@
??_7HHConvDic@@6BXFlushable@util@star@sun@com@@@
??_7HHConvDic@@6BXServiceInfo@lang@star@sun@com@@@
??_7HHConvDic@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0BN@OMCOBJCE@com?4sun?4star?4util?4XFlushable?$AA@
??_C@_0BO@CILFMIAE@com?4sun?4star?4lingu2?4HHConvDic?$AA@
??_C@_0CP@PELDOHJD@com?4sun?4star?4linguistic2?4XConver@
??_GHHConvDic@@UAEPAXI@Z
??_R0?AVIllegalArgumentException@lang@star@sun@com@@@8
?TextIsAllScriptType@@YAEABVOUString@rtl@@F@Z
?acquire@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBM@AAXXZ
?addEntry@HHConvDic@@UAAXABVOUString@rtl@@0@Z
?checkScriptType@@YAFG@Z
?equalsAscii@OUString@rtl@@QBEEPBD@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushable@util@star@sun@com@@@2345@@Z
?getImplementationId@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationName@HHConvDic@@UAA?AVOUString@rtl@@XZ
?getImplementationName_Static@HHConvDic@@SA?AVOUString@rtl@@XZ
?getSupportedServiceNames@HHConvDic@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getSupportedServiceNames_Static@HHConvDic@@SA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?queryInterface@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?release@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@UAAXXZ
?release@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@WBM@AAXXZ
?s_cd@?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@0Uclass_data3@2@A
?s_pType_com_sun_star_linguistic2_XConversionDictionary@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_util_XFlushable@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushable@util@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?supportsService@HHConvDic@@UAAEABVOUString@rtl@@@Z
_TI2?AVIllegalArgumentException@lang@star@sun@com@@
??0?$Reference@VXExporter@document@star@sun@com@@@uno@star@sun@com@@QAE@PAVXExporter@document@234@@Z
??0?$Reference@VXFilter@document@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@PAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@1@PAV?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@1@@Z
??0?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@XZ
??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@ABU01@@Z
??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@PBU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@1@PBV?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@1@@Z
??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@XZ
??0?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@QAE@ABUStrLT@@ABV?$allocator@VOUString@rtl@@@1@@Z
??0?$_Rb_tree_base@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@ABV?$allocator@VOUString@rtl@@@1@@Z
??0?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@_STL@@QAE@PAU?$_Rb_tree_node@VOUString@rtl@@@1@@Z
??0?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ
??0?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@_STL@@QAE@ABU01@@Z
??0?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@_STL@@QAE@PAU?$_Rb_tree_node@VOUString@rtl@@@1@@Z
??0?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@VOUString@rtl@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@1@PAU?$_Rb_tree_node@VOUString@rtl@@@1@@Z
??0?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@_STL@@QAE@ABV01@@Z
??0?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@_STL@@QAE@ABV?$allocator@VOUString@rtl@@@1@@Z
??0?$allocator@VOUString@rtl@@@_STL@@QAE@XZ
??0?$pair@U?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@U12@@_STL@@QAE@ABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@1@0@Z
??0?$pair@U?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@1@AB_N@Z
??0?$pair@U?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@_STL@@_N@_STL@@QAE@ABU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@1@AB_N@Z
??0?$set@VOUString@rtl@@UStrLT@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ
??0ConvDicXMLDictionaryContext_Impl@@QAE@AAVConvDicXMLImport@@GABVOUString@rtl@@@Z
??0ConvDicXMLEntryTextContext_Impl@@QAE@AAVConvDicXMLImport@@GABVOUString@rtl@@AAVConvDicXMLDictionaryContext_Impl@@@Z
??0ConvDicXMLImportContext@@QAE@AAVConvDicXMLImport@@GABVOUString@rtl@@@Z
??0ConvDicXMLRightTextContext_Impl@@QAE@AAVConvDicXMLImport@@GABVOUString@rtl@@AAVConvDicXMLEntryTextContext_Impl@@@Z
??1?$Reference@VXExporter@document@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXFilter@document@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@QAE@XZ
??1?$_Rb_tree_base@VOUString@rtl@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ
??1?$_STLP_alloc_proxy@PAU?$_Rb_tree_node@VOUString@rtl@@@_STL@@U12@V?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@2@@_STL@@QAE@XZ
??1?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@VOUString@rtl@@@_STL@@QAE@XZ
??1?$set@VOUString@rtl@@UStrLT@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE@XZ
??1ConvDicXMLDictionaryContext_Impl@@UAE@XZ
??1ConvDicXMLEntryTextContext_Impl@@UAE@XZ
??1ConvDicXMLImportContext@@UAE@XZ
??1ConvDicXMLRightTextContext_Impl@@UAE@XZ
??8_Rb_tree_base_iterator@_STL@@QBE_NABU01@@Z
??9_Rb_tree_base_iterator@_STL@@QBE_NABU01@@Z
??9_STL@@YA_NABU?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@0@0@Z
??C?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@QBAPAVXAttributeList@sax@xml@234@XZ
??C?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@uno@star@sun@com@@QBAPAVXDocumentHandler@sax@xml@234@XZ
??C?$Reference@VXFilter@document@star@sun@com@@@uno@star@sun@com@@QBAPAVXFilter@document@234@XZ
??D?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QBEAAU?$pair@$$CBVOUString@rtl@@$$CBV12@@1@XZ
??D?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@_STL@@QBEABVOUString@rtl@@XZ
??E?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAEAAU01@XZ
??E?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@_STL@@QAEAAU01@XZ
??F?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@_STL@@QAEAAU01@XZ
??Mrtl@@YAEABVOUString@0@0@Z
??R?$_Identity@VOUString@rtl@@@_STL@@QBEABVOUString@rtl@@ABV23@@Z
??R?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@QBEABVOUString@rtl@@ABU?$pair@$$CBVOUString@rtl@@$$CBV12@@1@@Z
??R?$hash@$$CBVOUString@rtl@@@_STL@@QBEIABVOUString@rtl@@@Z
??RStrEQ@@QBE_NABVOUString@rtl@@0@Z
??RStrLT@@QBE_NABVOUString@rtl@@0@Z
??_7ConvDicXMLDictionaryContext_Impl@@6B@
??_7ConvDicXMLEntryTextContext_Impl@@6B@
??_7ConvDicXMLImportContext@@6B@
??_7ConvDicXMLRightTextContext_Impl@@6B@
??_C@_0BO@CNLGONIM@com?4sun?4star?4document?4XFilter?$AA@
??_GConvDicXMLDictionaryContext_Impl@@UAEPAXI@Z
??_GConvDicXMLEntryTextContext_Impl@@UAEPAXI@Z
??_GConvDicXMLImportContext@@UAEPAXI@Z
??_GConvDicXMLRightTextContext_Impl@@UAEPAXI@Z
??_GOUString@rtl@@QAEPAXI@Z
?Characters@ConvDicXMLImportContext@@UAEXABVOUString@rtl@@@Z
?Characters@ConvDicXMLRightTextContext_Impl@@UAEXABVOUString@rtl@@@Z
?CreateChildContext@ConvDicXMLDictionaryContext_Impl@@UAEPAVSvXMLImportContext@@GABVOUString@rtl@@ABV?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
?CreateChildContext@ConvDicXMLEntryTextContext_Impl@@UAEPAVSvXMLImportContext@@GABVOUString@rtl@@ABV?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
?CreateChildContext@ConvDicXMLImportContext@@UAEPAVSvXMLImportContext@@GABVOUString@rtl@@ABV?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
?CreateChildContext@ConvDicXMLRightTextContext_Impl@@UAEPAVSvXMLImportContext@@GABVOUString@rtl@@ABV?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
?CreateContext@ConvDicXMLImport@@UAEPAVSvXMLImportContext@@GABVOUString@rtl@@ABV?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
?EndElement@ConvDicXMLRightTextContext_Impl@@UAEXXZ
?Export@ConvDicXMLExport@@QAEEAAVSfxMedium@@@Z
?GetConvDicImport@ConvDicXMLImportContext@@QAEAAVConvDicXMLImport@@XZ
?GetDic@ConvDicXMLImport@@QAEPAVConvDic@@XZ
?GetDic@ConvDicXMLRightTextContext_Impl@@QAEPAVConvDic@@XZ
?GetDocHandler@SvXMLExport@@QAEABV?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@uno@star@sun@com@@XZ
?GetImport@SvXMLImportContext@@IAEAAVSvXMLImport@@XZ
?GetLeftText@ConvDicXMLEntryTextContext_Impl@@QBEABVOUString@rtl@@XZ
?GetLeftText@ConvDicXMLRightTextContext_Impl@@QBEABVOUString@rtl@@XZ
?GetNamespaceMap@SvXMLImport@@QAEAAVSvXMLNamespaceMap@@XZ
?GetRightText@ConvDicXMLRightTextContext_Impl@@QBEABVOUString@rtl@@XZ
?SetConversionType@ConvDicXMLImport@@QAEXF@Z
?SetLanguage@ConvDicXMLImport@@QAEXF@Z
?StartElement@ConvDicXMLDictionaryContext_Impl@@UAEXABV?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
?StartElement@ConvDicXMLEntryTextContext_Impl@@UAEXABV?$Reference@VXAttributeList@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
?_Construct@_STL@@YAXPAVOUString@rtl@@ABV23@@Z
?_Destroy@_STL@@YAXPAVOUString@rtl@@@Z
?_ExportContent@ConvDicXMLExport@@UAEXXZ
?_GetNamespaceMap@SvXMLExport@@IAEAAVSvXMLNamespaceMap@@XZ
?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@$$CBV12@@2@@Z
?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@@Z
?_M_bkt_num_key@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@ABEIABVOUString@rtl@@I@Z
?_M_create_node@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@IAEPAU?$_Rb_tree_node@VOUString@rtl@@@2@ABVOUString@rtl@@@Z
?_M_empty_initialize@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@AAEXXZ
?_M_erase@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@AAEXPAU?$_Rb_tree_node@VOUString@rtl@@@2@@Z
?_M_insert@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@AAE?AU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@2@PAU_Rb_tree_node_base@2@0ABVOUString@rtl@@0@Z
?_M_leftmost@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@IBEAAPAU?$_Rb_tree_node@VOUString@rtl@@@2@XZ
?_M_rightmost@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@IBEAAPAU?$_Rb_tree_node@VOUString@rtl@@@2@XZ
?_M_root@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@IBEAAPAU?$_Rb_tree_node@VOUString@rtl@@@2@XZ
?_M_skip_to_next@?$_Hashtable_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@XZ
?_S_color@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@KAAA_NPAU?$_Rb_tree_node@VOUString@rtl@@@2@@Z
?_S_key@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@KAABVOUString@rtl@@PAU?$_Rb_tree_node@VOUString@rtl@@@2@@Z
?_S_key@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@KAABVOUString@rtl@@PAU_Rb_tree_node_base@2@@Z
?_S_left@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@KAAAPAU?$_Rb_tree_node@VOUString@rtl@@@2@PAU32@@Z
?_S_parent@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@KAAAPAU?$_Rb_tree_node@VOUString@rtl@@@2@PAU32@@Z
?_S_right@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@KAAAPAU?$_Rb_tree_node@VOUString@rtl@@@2@PAU32@@Z
?_S_value@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@KAAAVOUString@rtl@@PAU?$_Rb_tree_node@VOUString@rtl@@@2@@Z
?allocate@?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@_STL@@QBEPAU?$_Rb_tree_node@VOUString@rtl@@@2@IPBX@Z
?begin@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@QAE?AU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@2@XZ
?begin@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@2@XZ
?begin@?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@XZ
?begin@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@XZ
?begin@?$set@VOUString@rtl@@UStrLT@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QBE?AU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@2@XZ
?bucket_count@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QBEIXZ
?clear@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@QAEXXZ
?deallocate@?$allocator@U?$_Rb_tree_node@VOUString@rtl@@@_STL@@@_STL@@QBEXPAU?$_Rb_tree_node@VOUString@rtl@@@2@I@Z
?end@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@QBE?AU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@2@XZ
?end@?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@XZ
?end@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@XZ
?end@?$set@VOUString@rtl@@UStrLT@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QBE?AU?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@2@XZ
?endDocument@ConvDicXMLImport@@UAAXXZ
?equal_range@?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAE?AU?$pair@U?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@U12@@2@ABVOUString@rtl@@@Z
?equal_range@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE?AU?$pair@U?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@U12@@2@ABVOUString@rtl@@@Z
?exportDoc@ConvDicXMLExport@@UAEKW4XMLTokenEnum@token@xmloff@@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilter@document@star@sun@com@@@2345@@Z
?getImplementationName@ConvDicXMLExport@@UAA?AVOUString@rtl@@XZ
?getImplementationName@ConvDicXMLImport@@UAA?AVOUString@rtl@@XZ
?hashCode@OUString@rtl@@QBEJXZ
?insert@?$set@VOUString@rtl@@UStrLT@@V?$allocator@VOUString@rtl@@@_STL@@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@VOUString@rtl@@U?$_Const_traits@VOUString@rtl@@@_STL@@@_STL@@_N@2@ABVOUString@rtl@@@Z
?insert_unique@?$_Rb_tree@VOUString@rtl@@V12@U?$_Identity@VOUString@rtl@@@_STL@@UStrLT@@V?$allocator@VOUString@rtl@@@4@@_STL@@QAE?AU?$pair@U?$_Rb_tree_iterator@VOUString@rtl@@U?$_Nonconst_traits@VOUString@rtl@@@_STL@@@_STL@@_N@2@ABVOUString@rtl@@@Z
?iquery@?$Reference@VXFilter@document@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?s_pType_com_sun_star_document_XFilter@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilter@document@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?startDocument@ConvDicXMLImport@@UAAXXZ
?trim@OUString@rtl@@QBE?AV12@XZ
??0?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXFlushable@util@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXNameContainer@container@star@sun@com@@@uno@star@sun@com@@QAE@ABV01234@@Z
??0?$Reference@VXNameContainer@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@QAE@XZ
??0?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@QAE@XZ
??0Any@uno@star@sun@com@@QAE@PBXABVType@1234@@Z
??0ConvDicList@@QAE@XZ
??0ConvDicNameContainer@@QAE@AAVConvDicList@@@Z
??0ElementExistException@container@star@sun@com@@QAE@ABV01234@@Z
??0ElementExistException@container@star@sun@com@@QAE@XZ
??0INetURLObject@@QAE@XZ
??0MyAppExitListener@ConvDicList@@QAE@AAV1@@Z
??0NoSuchElementException@container@star@sun@com@@QAE@ABV01234@@Z
??0NoSuchElementException@container@star@sun@com@@QAE@XZ
??0NoSupportException@lang@star@sun@com@@QAE@ABV01234@@Z
??0NoSupportException@lang@star@sun@com@@QAE@XZ
??0Type@uno@star@sun@com@@QAE@ABV01234@@Z
??0XConversionDictionaryList@linguistic2@star@sun@com@@QAE@XZ
??0XElementAccess@container@star@sun@com@@QAE@XZ
??0XNameAccess@container@star@sun@com@@QAE@XZ
??0XNameContainer@container@star@sun@com@@QAE@XZ
??0XNameReplace@container@star@sun@com@@QAE@XZ
??1?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXFlushable@util@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXNameContainer@container@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAE@XZ
??1?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAE@XZ
??1ConvDicList@@UAE@XZ
??1ConvDicNameContainer@@UAE@XZ
??1ElementExistException@container@star@sun@com@@QAE@XZ
??1MyAppExitListener@ConvDicList@@UAE@XZ
??1NoSuchElementException@container@star@sun@com@@QAE@XZ
??1NoSupportException@lang@star@sun@com@@QAE@XZ
??1Type@uno@star@sun@com@@QAE@XZ
??4?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXConversionDictionary@linguistic2@234@@Z
??4?$Reference@VXNameContainer@container@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@PAVXNameContainer@container@234@@Z
??8@YA_NABULocale@lang@star@sun@com@@0@Z
??C?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QBAPAVXConversionDictionary@linguistic2@234@XZ
??C?$Reference@VXFlushable@util@star@sun@com@@@uno@star@sun@com@@QBAPAVXFlushable@util@234@XZ
??_2uno@star@sun@com@@YAEABVAny@0123@AAV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@0123@@Z
??_3uno@star@sun@com@@YAXAAVAny@0123@ABV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@0123@@Z
??_7ConvDicList@@6BOWeakObject@cppu@@@
??_7ConvDicList@@6BXComponent@lang@star@sun@com@@@
??_7ConvDicList@@6BXConversionDictionaryList@linguistic2@star@sun@com@@@
??_7ConvDicList@@6BXServiceInfo@lang@star@sun@com@@@
??_7ConvDicList@@6BXTypeProvider@lang@star@sun@com@@@
??_7ConvDicNameContainer@@6BOWeakObject@cppu@@@
??_7ConvDicNameContainer@@6BXNameContainer@container@star@sun@com@@@
??_7ConvDicNameContainer@@6BXTypeProvider@lang@star@sun@com@@@
??_7MyAppExitListener@ConvDicList@@6BOWeakObject@cppu@@@
??_7MyAppExitListener@ConvDicList@@6BXTerminateListener@frame@star@sun@com@@@
??_7MyAppExitListener@ConvDicList@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0CA@NNHGIPP@com?4sun?4star?4lingu2?4ConvDicList?$AA@
??_C@_0CG@HGBFBAND@com?4sun?4star?4container?4XNameCont@
??_C@_0DD@LAKJCECL@com?4sun?4star?4linguistic2?4XConver@
??_GConvDicList@@UAEPAXI@Z
??_GConvDicNameContainer@@UAEPAXI@Z
??_GMyAppExitListener@ConvDicList@@UAEPAXI@Z
??_R0?AVCommandAbortedException@ucb@star@sun@com@@@8
??_R0?AVElementExistException@container@star@sun@com@@@8
??_R0?AVNoSuchElementException@container@star@sun@com@@@8
??_R0?AVNoSupportException@lang@star@sun@com@@@8
?AddConvDics@ConvDicNameContainer@@QAEXABVString@@0@Z
?Append@INetURLObject@@QAE_NABVString@@W4EncodeMechanism@1@G@Z
?AtExit@MyAppExitListener@ConvDicList@@UAEXXZ
?ConvDicList_CreateInstance@@YA?AV?$Reference@VXInterface@uno@star@sun@com@@@uno@star@sun@com@@ABV?$Reference@VXMultiServiceFactory@lang@star@sun@com@@@2345@@Z
?ConvDicList_getFactory@@YAPAXPBDPAVXMultiServiceFactory@lang@star@sun@com@@PAX@Z
?ConvDicList_writeInfo@@YAEPAXPAVXRegistryKey@registry@star@sun@com@@@Z
?FlushDics@ConvDicList@@QAEXXZ
?FlushDics@ConvDicNameContainer@@QBEXXZ
?GetByIndex@ConvDicNameContainer@@QAE?BV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@J@Z
?GetByName@ConvDicNameContainer@@QAE?AV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@@Z
?GetConvDicMainURL@@YA?AVString@@ABV1@0@Z
?GetCount@ConvDicNameContainer@@QBEJXZ
?GetIndexByName_Impl@ConvDicNameContainer@@AAEJABVOUString@rtl@@@Z
?GetMainURL@INetURLObject@@QBE?AVString@@W4DecodeMechanism@1@G@Z
?GetNameContainer@ConvDicList@@AAEAAVConvDicNameContainer@@XZ
?GetProtocol@INetURLObject@@QBE?AW4INetProtocol@@XZ
?SetSmartProtocol@INetURLObject@@QAEXW4INetProtocol@@@Z
?SetSmartURL@INetURLObject@@QAE_NABVString@@W4EncodeMechanism@1@GW4FSysStyle@1@@Z
?acquire@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBM@AAXXZ
?addEventListener@ConvDicList@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?addNewDictionary@ConvDicList@@UAA?AV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@ABVOUString@rtl@@ABULocale@lang@456@F@Z
?decode@INetURLObject@@SA?AVString@@ABV2@DW4DecodeMechanism@1@G@Z
?dispose@ConvDicList@@UAAXXZ
?getArray@?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAPAV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@2345@XZ
?getByName@ConvDicNameContainer@@UAA?AVAny@uno@star@sun@com@@ABVOUString@rtl@@@Z
?getConstArray@?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAPBV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@2345@XZ
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConversionDictionaryList@linguistic2@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameContainer@container@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@2345@@Z
?getDictionaryContainer@ConvDicList@@UAA?AV?$Reference@VXNameContainer@container@star@sun@com@@@uno@star@sun@com@@XZ
?getElementNames@ConvDicNameContainer@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getElementType@ConvDicNameContainer@@UAA?AVType@uno@star@sun@com@@XZ
?getEscapePrefix@INetURLObject@@ABEDXZ
?getEscapePrefix@INetURLObject@@CADW4INetProtocol@@@Z
?getImplementationId@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationName@ConvDicList@@UAA?AVOUString@rtl@@XZ
?getImplementationName_Static@ConvDicList@@SA?AVOUString@rtl@@XZ
?getLength@?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QBAJXZ
?getSupportedServiceNames@ConvDicList@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getSupportedServiceNames_Static@ConvDicList@@SA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?hasByName@ConvDicNameContainer@@UAAEABVOUString@rtl@@@Z
?hasElements@ConvDicNameContainer@@UAAEXZ
?insertByName@ConvDicNameContainer@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
?iquery@?$Reference@VXFlushable@util@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABE@Z
?makeAny@uno@star@sun@com@@YA?AVAny@1234@ABV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@1234@@Z
?queryConversions@ConvDicList@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABVOUString@rtl@@JJABULocale@lang@456@FW4ConversionDirection@linguistic2@456@J@Z
?queryInterface@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryMaxCharCount@ConvDicList@@UAAFABULocale@lang@star@sun@com@@FW4ConversionDirection@linguistic2@456@@Z
?realloc@?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@QAAXJ@Z
?release@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@UAAXXZ
?release@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@UAAXXZ
?release@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@WBM@AAXXZ
?removeByName@ConvDicNameContainer@@UAAXABVOUString@rtl@@@Z
?removeEventListener@ConvDicList@@UAAXABV?$Reference@VXEventListener@lang@star@sun@com@@@uno@star@sun@com@@@Z
?replaceByName@ConvDicNameContainer@@UAAXABVOUString@rtl@@ABVAny@uno@star@sun@com@@@Z
?s_cd@?$WeakImplHelper1@VXNameContainer@container@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_cd@?$WeakImplHelper3@VXConversionDictionaryList@linguistic2@star@sun@com@@VXComponent@lang@345@VXServiceInfo@7345@@cppu@@0Uclass_data3@2@A
?s_pType@?$Sequence@V?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@@uno@star@sun@com@@2PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_container_XNameContainer@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameContainer@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_linguistic2_XConversionDictionaryList@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConversionDictionaryList@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?set@?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@uno@star@sun@com@@QAAEPAVXConversionDictionary@linguistic2@345@@Z
?set@?$Reference@VXNameContainer@container@star@sun@com@@@uno@star@sun@com@@QAAEPAVXNameContainer@container@345@@Z
?supportsService@ConvDicList@@UAAEABVOUString@rtl@@@Z
_TI2?AVElementExistException@container@star@sun@com@@
_TI2?AVNoSuchElementException@container@star@sun@com@@
_TI2?AVNoSupportException@lang@star@sun@com@@
??0?$Reference@VXActiveDataSource@io@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXActiveDataSource@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXFilter@document@star@sun@com@@@uno@star@sun@com@@QAE@PAVXFilter@document@234@@Z
??0?$Reference@VXFlushListener@util@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInterface@1234@W4UnoReference_Query@1234@@Z
??0?$Reference@VXFlushable@util@star@sun@com@@@uno@star@sun@com@@QAE@PAVXFlushable@util@234@@Z
??0?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@PAVXInputStream@io@234@@Z
??0?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??0?$Reference@VXOutputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@PAVXOutputStream@io@234@@Z
??0?$Reference@VXParser@sax@xml@star@sun@com@@@uno@star@sun@com@@QAE@ABVBaseReference@1234@W4UnoReference_Query@1234@@Z
??0?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@QAE@XZ
??0?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@QAE@XZ
??0?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@ABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@1@@Z
??0?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@2@@_STL@@QAE@ABV?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@1@I@Z
??0?$allocator@PAX@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@1@@Z
??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@_STL@@QAE@ABV01@@Z
??0?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@_STL@@QAE@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@1@@Z
??0?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@QAE@XZ
??0?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAE@XZ
??0?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@IABU?$hash@$$CBVOUString@rtl@@@1@ABUStrEQ@@ABV?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@1@@Z
??0?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@QAE@ABU01@@Z
??0?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@QAE@ABVOUString@rtl@@0@Z
??0ConvDic@@QAE@ABVString@@FF0@Z
??0ConvDicXMLExport@@QAE@AAVConvDic@@ABVOUString@rtl@@AAV?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@uno@star@sun@com@@@Z
??0ConvDicXMLImport@@QAE@PAVConvDic@@ABVOUString@rtl@@@Z
??0InputSource@sax@xml@star@sun@com@@QAE@XZ
??0OOutputStreamWrapper@utl@@QAE@AAVSvStream@@@Z
??0XConversionDictionary@linguistic2@star@sun@com@@QAE@XZ
??0XFlushable@util@star@sun@com@@QAE@XZ
??0XOutputStream@io@star@sun@com@@QAE@XZ
??1?$Reference@VXActiveDataSource@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXFlushListener@util@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXOutputStream@io@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$Reference@VXParser@sax@xml@star@sun@com@@@uno@star@sun@com@@QAE@XZ
??1?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAE@XZ
??1?$WeakImplHelper3@VXConversionDictionary@linguistic2@star@sun@com@@VXFlushable@util@345@VXServiceInfo@lang@345@@cppu@@UAE@XZ
??1?$_STLP_alloc_proxy@IU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@V?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@2@@_STL@@QAE@XZ
??1?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@_STL@@QAE@XZ
??1?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@QAE@XZ
??1?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAE@XZ
??1?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE@XZ
??1?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@QAE@XZ
??1ConvDic@@UAE@XZ
??1ConvDicXMLExport@@UAE@XZ
??1ConvDicXMLImport@@UAE@XZ
??1InputSource@sax@xml@star@sun@com@@QAE@XZ
??1OOutputStreamWrapper@utl@@UAE@XZ
??4?$Reference@VXActiveDataSource@io@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??4?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAAAAV01234@ABV01234@@Z
??8_STL@@YA_NABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@0@0@Z
??B?$Reference@VXFlushListener@util@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??B?$Reference@VXFlushable@util@star@sun@com@@@uno@star@sun@com@@QBAABV?$Reference@VXInterface@uno@star@sun@com@@@1234@XZ
??C?$Reference@VXActiveDataSource@io@star@sun@com@@@uno@star@sun@com@@QBAPAVXActiveDataSource@io@234@XZ
??C?$Reference@VXFlushListener@util@star@sun@com@@@uno@star@sun@com@@QBAPAVXFlushListener@util@234@XZ
??C?$Reference@VXParser@sax@xml@star@sun@com@@@uno@star@sun@com@@QBAPAVXParser@sax@xml@234@XZ
??_7ConvDic@@6BOWeakObject@cppu@@@
??_7ConvDic@@6BXConversionDictionary@linguistic2@star@sun@com@@@
??_7ConvDic@@6BXFlushable@util@star@sun@com@@@
??_7ConvDic@@6BXServiceInfo@lang@star@sun@com@@@
??_7ConvDic@@6BXTypeProvider@lang@star@sun@com@@@
??_7ConvDicXMLExport@@6BOWeakObject@cppu@@@
??_7ConvDicXMLExport@@6BXExporter@document@star@sun@com@@@
??_7ConvDicXMLExport@@6BXFilter@document@star@sun@com@@@
??_7ConvDicXMLExport@@6BXInitialization@lang@star@sun@com@@@
??_7ConvDicXMLExport@@6BXNamed@container@star@sun@com@@@
??_7ConvDicXMLExport@@6BXServiceInfo@lang@star@sun@com@@@
??_7ConvDicXMLExport@@6BXTypeProvider@lang@star@sun@com@@@
??_7ConvDicXMLExport@@6BXUnoTunnel@lang@star@sun@com@@@
??_7ConvDicXMLImport@@6BOWeakObject@cppu@@@
??_7ConvDicXMLImport@@6BXExtendedDocumentHandler@sax@xml@star@sun@com@@@
??_7ConvDicXMLImport@@6BXFilter@document@star@sun@com@@@
??_7ConvDicXMLImport@@6BXImporter@document@star@sun@com@@@
??_7ConvDicXMLImport@@6BXInitialization@lang@star@sun@com@@@
??_7ConvDicXMLImport@@6BXServiceInfo@lang@star@sun@com@@@
??_7ConvDicXMLImport@@6BXTypeProvider@lang@star@sun@com@@@
??_7ConvDicXMLImport@@6BXUnoTunnel@lang@star@sun@com@@@
??_7OOutputStreamWrapper@utl@@6BOWeakObject@cppu@@@
??_7OOutputStreamWrapper@utl@@6BXOutputStream@io@star@sun@com@@@
??_7OOutputStreamWrapper@utl@@6BXTypeProvider@lang@star@sun@com@@@
??_C@_0BM@HKCKDLMM@com?4sun?4star?4lingu2?4ConvDic?$AA@
??_C@_0BN@IHDFEJFO@com?4sun?4star?4xml?4sax?4XParser?$AA@
??_C@_0BN@IOEAJMLF@com?4sun?4star?4lang?4XUnoTunnel?$AA@
??_C@_0BO@CBPBINAK@com?4sun?4star?4container?4XNamed?$AA@
??_C@_0BO@MALNNFNO@com?4sun?4star?4io?4XOutputStream?$AA@
??_C@_0CA@HPKPKHAM@com?4sun?4star?4document?4XImporter?$AA@
??_C@_0CA@KNMAGLFH@com?4sun?4star?4document?4XExporter?$AA@
??_C@_0CB@DAOKCJOA@com?4sun?4star?4util?4XFlushListener@
??_C@_0CC@FKPJKCAC@com?4sun?4star?4lang?4XInitializatio@
??_C@_0CC@PAPGJOHO@com?4sun?4star?4io?4XActiveDataSourc@
??_C@_0CG@LJCBPPBK@com?4sun?4star?4xml?4sax?4XDocumentHa@
??_C@_0CO@HJNBOBEP@com?4sun?4star?4xml?4sax?4XExtendedDo@
??_G?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@QAEPAXI@Z
??_GConvDic@@UAEPAXI@Z
??_GConvDicXMLExport@@UAEPAXI@Z
??_GConvDicXMLImport@@UAEPAXI@Z
??_GOOutputStreamWrapper@utl@@UAEPAXI@Z
??_R0?AVIOException@io@star@sun@com@@@8
??_R0?AVSAXException@sax@xml@star@sun@com@@@8
??_R0?AVSAXParseException@sax@xml@star@sun@com@@@8
?AddEntry@ConvDic@@QAEXABVOUString@rtl@@0@Z
?GetConversionType@ConvDicXMLImport@@QBEFXZ
?GetEntry@ConvDic@@IAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@AAV?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@3@ABVOUString@rtl@@1@Z
?GetLanguage@ConvDicXMLImport@@QBEFXZ
?GetSuccess@ConvDicXMLImport@@QBEEXZ
?HasEntry@ConvDic@@QAEEABVOUString@rtl@@0@Z
?IsConvDic@@YAEABVString@@AAF1@Z
?Load@ConvDic@@IAEXXZ
?ReadThroughDic@@YAXABVString@@AAVConvDicXMLImport@@@Z
?RemoveEntry@ConvDic@@QAEXABVOUString@rtl@@0@Z
?Save@ConvDic@@IAEXXZ
?_Construct@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@$$CBV12@@1@ABU21@@Z
?_Destroy@_STL@@YAXPAU?$pair@$$CBVOUString@rtl@@$$CBV12@@1@@Z
?_ExportAutoStyles@ConvDicXMLExport@@UAEXXZ
?_ExportMasterStyles@ConvDicXMLExport@@UAEXXZ
?_M_bkt_num@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@ABEIABU?$pair@$$CBVOUString@rtl@@$$CBV12@@2@I@Z
?_M_delete_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@AAEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@Z
?_M_initialize_buckets@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@AAEXI@Z
?_M_new_node@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@AAEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@ABU?$pair@$$CBVOUString@rtl@@$$CBV12@@2@@Z
?_M_next_size@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@ABEII@Z
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBM@AAXXZ
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCA@AAXXZ
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCE@AAXXZ
?acquire@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCI@AAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@UAAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBA@AAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBE@AAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBI@AAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBM@AAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCA@AAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCE@AAXXZ
?acquire@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCI@AAXXZ
?acquire@OOutputStreamWrapper@utl@@UAAXXZ
?acquire@OOutputStreamWrapper@utl@@WBA@AAXXZ
?acquire@OOutputStreamWrapper@utl@@WBE@AAXXZ
?addEntry@ConvDic@@UAAXABVOUString@rtl@@0@Z
?addFlushListener@ConvDic@@UAAXABV?$Reference@VXFlushListener@util@star@sun@com@@@uno@star@sun@com@@@Z
?allocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@_STL@@QBEPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@IPBX@Z
?clear@?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAEXXZ
?clear@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAEXXZ
?clear@ConvDic@@UAAXXZ
?deallocate@?$allocator@U?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@_STL@@@_STL@@QBEXPAU?$_Hashtable_node@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@I@Z
?erase@?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAEXU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@@Z
?erase@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAEXABU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Const_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@@Z
?flush@ConvDic@@UAAXXZ
?getConversionEntries@ConvDic@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@W4ConversionDirection@linguistic2@456@@Z
?getConversionType@ConvDic@@UAAFXZ
?getConversions@ConvDic@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@ABVOUString@rtl@@JJW4ConversionDirection@linguistic2@456@J@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXActiveDataSource@io@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExporter@document@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedDocumentHandler@sax@xml@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushListener@util@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXImporter@document@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNamed@container@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXOutputStream@io@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXParser@sax@xml@star@sun@com@@@2345@@Z
?getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXUnoTunnel@lang@star@sun@com@@@2345@@Z
?getImplementationId@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationId@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@UAA?AV?$Sequence@C@uno@star@sun@com@@XZ
?getImplementationName@ConvDic@@UAA?AVOUString@rtl@@XZ
?getImplementationName_Static@ConvDic@@SA?AVOUString@rtl@@XZ
?getLocale@ConvDic@@UAA?AULocale@lang@star@sun@com@@XZ
?getMaxCharCount@ConvDic@@UAAFW4ConversionDirection@linguistic2@star@sun@com@@@Z
?getName@ConvDic@@UAA?AVOUString@rtl@@XZ
?getSupportedServiceNames@ConvDic@@UAA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getSupportedServiceNames_Static@ConvDic@@SA?AV?$Sequence@VOUString@rtl@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?getTypes@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@UAA?AV?$Sequence@VType@uno@star@sun@com@@@uno@star@sun@com@@XZ
?insert@?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@ABU?$pair@$$CBVOUString@rtl@@$$CBV12@@2@@Z
?insert_equal@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@ABU?$pair@$$CBVOUString@rtl@@$$CBV12@@2@@Z
?insert_equal_noresize@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAE?AU?$_Ht_iterator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@U?$_Nonconst_traits@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@2@ABU?$pair@$$CBVOUString@rtl@@$$CBV12@@2@@Z
?iquery@?$Reference@VXActiveDataSource@io@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXFlushListener@util@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?iquery@?$Reference@VXParser@sax@xml@star@sun@com@@@uno@star@sun@com@@CAPAVXInterface@2345@PAV62345@@Z
?isActive@ConvDic@@UAAEXZ
?queryInterface@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBM@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCI@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@OOutputStreamWrapper@utl@@UAA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@OOutputStreamWrapper@utl@@WBA@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?queryInterface@OOutputStreamWrapper@utl@@WBE@AA?AVAny@uno@star@sun@com@@ABVType@4567@@Z
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@UAAXXZ
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WBM@AAXXZ
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCA@AAXXZ
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCE@AAXXZ
?release@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@WCI@AAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@UAAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBA@AAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBE@AAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBI@AAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WBM@AAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCA@AAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCE@AAXXZ
?release@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@WCI@AAXXZ
?release@OOutputStreamWrapper@utl@@UAAXXZ
?release@OOutputStreamWrapper@utl@@WBA@AAXXZ
?release@OOutputStreamWrapper@utl@@WBE@AAXXZ
?removeEntry@ConvDic@@UAAXABVOUString@rtl@@0@Z
?removeFlushListener@ConvDic@@UAAXABV?$Reference@VXFlushListener@util@star@sun@com@@@uno@star@sun@com@@@Z
?resize@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QAEXI@Z
?s_cd@?$WeakImplHelper1@VXOutputStream@io@star@sun@com@@@cppu@@0Uclass_data1@2@A
?s_cd@?$WeakImplHelper6@VXExtendedDocumentHandler@sax@xml@star@sun@com@@VXServiceInfo@lang@456@VXInitialization@8456@VXImporter@document@456@VXFilter@document@456@VXUnoTunnel@8456@@cppu@@0Uclass_data6@2@A
?s_cd@?$WeakImplHelper6@VXFilter@document@star@sun@com@@VXServiceInfo@lang@345@VXExporter@2345@VXInitialization@7345@VXNamed@container@345@VXUnoTunnel@7345@@cppu@@0Uclass_data6@2@A
?s_pType_com_sun_star_container_XNamed@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNamed@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_document_XExporter@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExporter@document@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_document_XImporter@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXImporter@document@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_io_XActiveDataSource@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXActiveDataSource@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_io_XOutputStream@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXOutputStream@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_lang_XInitialization@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_lang_XUnoTunnel@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXUnoTunnel@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_util_XFlushListener@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushListener@util@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_xml_sax_XDocumentHandler@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_xml_sax_XExtendedDocumentHandler@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedDocumentHandler@sax@xml@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?s_pType_com_sun_star_xml_sax_XParser@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXParser@sax@xml@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?set@?$Reference@VXActiveDataSource@io@star@sun@com@@@uno@star@sun@com@@QAAEPAVXActiveDataSource@io@345@@Z
?set@?$Reference@VXInputStream@io@star@sun@com@@@uno@star@sun@com@@QAAEPAVXInputStream@io@345@@Z
?setActive@ConvDic@@UAAXE@Z
?size@?$hash_multimap@$$CBVOUString@rtl@@$$CBV12@U?$hash@$$CBVOUString@rtl@@@_STL@@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@4@@_STL@@QBEIXZ
?size@?$hashtable@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@$$CBVOUString@rtl@@U?$hash@$$CBVOUString@rtl@@@2@U?$_Select1st@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@UStrEQ@@V?$allocator@U?$pair@$$CBVOUString@rtl@@$$CBV12@@_STL@@@2@@_STL@@QBEIXZ
?supportsService@ConvDic@@UAAEABVOUString@rtl@@@Z
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBULocale@lang@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXMeaning@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXThesaurus@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTypeProvider@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellAlternatives@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryList@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceEventBroadcaster@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellChecker1@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSpellChecker@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDesktop@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionary1@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionary@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFastPropertySet@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSearchableDictionaryList@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXTerminateListener@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUPropertyValue@beans@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXAvailableLocales@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXComponent@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXContentEnumerationAccess@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryListEventListener@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXHyphenator@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceEventListener@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXLinguServiceManager@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXServiceInfo@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSingleServiceFactory@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXSupportedLocales@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyAccess@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertyChangeListener@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPropertySetInfo@beans@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXHyphenatedWord@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXPossibleHyphens@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConversionDictionary@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushable@util@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBUDictionaryEvent@linguistic2@456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryEntry@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDictionaryEventListener@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXStorable@frame@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFilter@document@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXConversionDictionaryList@linguistic2@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNameContainer@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXActiveDataSource@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXDocumentHandler@sax@xml@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExporter@document@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXExtendedDocumentHandler@sax@xml@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXFlushListener@util@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXImporter@document@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXInitialization@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXNamed@container@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXOutputStream@io@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXParser@sax@xml@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A
?the_type@?1??getCppuType@@YAABVType@uno@star@sun@com@@PBV?$Reference@VXUnoTunnel@lang@star@sun@com@@@3456@@Z@4PAU_typelib_TypeDescriptionReference@@A