demangle-expected 44.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606
# This file holds test cases for the demangler.
# Each test consists of three lines in succession.
# The first line is arguments to pass to the test filter program.
# The second line is the mangled string.
# The third line is the expected output.
# A line starting with `#' is ignore.
# However blank lines in this file are NOT ignored.
#
--format=gnu
AddAlignment__9ivTSolverUiP12ivInteractorP7ivTGlue
ivTSolver::AddAlignment(unsigned int, ivInteractor *, ivTGlue *)
#
--format=gnu
ArrowheadIntersects__9ArrowLineP9ArrowheadR6BoxObjP7Graphic
ArrowLine::ArrowheadIntersects(Arrowhead *, BoxObj &, Graphic *)
#
--format=gnu
AtEnd__13ivRubberGroup
ivRubberGroup::AtEnd(void)
#
--format=gnu
BgFilter__9ivTSolverP12ivInteractor
ivTSolver::BgFilter(ivInteractor *)
#
--format=gnu
Check__6UArrayi
UArray::Check(int)
#
--format=gnu
CoreConstDecls__8TextCodeR7ostream
TextCode::CoreConstDecls(ostream &)
#
--format=gnu
Detach__8StateVarP12StateVarView
StateVar::Detach(StateVarView *)
#
--format=gnu
Done__9ComponentG8Iterator
Component::Done(Iterator)
#
--format=gnu
Effect__11RelateManipR7ivEvent
RelateManip::Effect(ivEvent &)
#
--format=gnu
FindFixed__FRP4CNetP4CNet
FindFixed(CNet *&, CNet *)
#
--format=gnu
Fix48_abort__FR8twolongs
Fix48_abort(twolongs &)
#
--format=gnu
GetBarInfo__15iv2_6_VScrollerP13ivPerspectiveRiT2
iv2_6_VScroller::GetBarInfo(ivPerspective *, int &, int &)
#
--format=gnu
GetBgColor__C9ivPainter
ivPainter::GetBgColor(void) const
#
--format=gnu
InsertBody__15H_PullrightMenuii
H_PullrightMenu::InsertBody(int, int)
#
--format=gnu
InsertCharacter__9TextManipc
TextManip::InsertCharacter(char)
#
--format=gnu
InsertToplevel__7ivWorldP12ivInteractorT1
ivWorld::InsertToplevel(ivInteractor *, ivInteractor *)
#
--format=gnu
InsertToplevel__7ivWorldP12ivInteractorT1iiUi
ivWorld::InsertToplevel(ivInteractor *, ivInteractor *, int, int, unsigned int)
#
--format=gnu
IsAGroup__FP11GraphicViewP11GraphicComp
IsAGroup(GraphicView *, GraphicComp *)
#
--format=gnu
IsA__10ButtonCodeUl
ButtonCode::IsA(unsigned long)
#
--format=gnu
ReadName__FR7istreamPc
ReadName(istream &, char *)
#
--format=gnu
Redraw__13StringBrowseriiii
StringBrowser::Redraw(int, int, int, int)
#
--format=gnu
Rotate__13ivTransformerf
ivTransformer::Rotate(float)
#
--format=gnu
Rotated__C13ivTransformerf
ivTransformer::Rotated(float) const
#
--format=gnu
Round__Ff
Round(float)
#
--format=gnu
SetExport__16MemberSharedNameUi
MemberSharedName::SetExport(unsigned int)
#
--format=gnu
Set__14ivControlState13ControlStatusUi
ivControlState::Set(ControlStatus, unsigned int)
#
--format=gnu
Set__5DFacePcii
DFace::Set(char *, int, int)
#
--format=gnu
VConvert__9ivTSolverP12ivInteractorRP8TElementT2
ivTSolver::VConvert(ivInteractor *, TElement *&, TElement *&)
#
--format=gnu
VConvert__9ivTSolverP7ivTGlueRP8TElement
ivTSolver::VConvert(ivTGlue *, TElement *&)
#
--format=gnu
VOrder__9ivTSolverUiRP12ivInteractorT2
ivTSolver::VOrder(unsigned int, ivInteractor *&, ivInteractor *&)
#
--format=gnu
_10PageButton$__both
PageButton::__both
#
--format=gnu
_3RNG$singleMantissa
RNG::singleMantissa
#
--format=gnu
_5IComp$_release
IComp::_release
#
--format=gnu
_$_10BitmapComp
BitmapComp::~BitmapComp(void)
#
--format=gnu
_$_9__io_defs
__io_defs::~__io_defs(void)
#
--format=gnu
_$_Q23foo3bar
foo::bar::~bar(void)
#
--format=gnu
_$_Q33foo3bar4bell
foo::bar::bell::~bell(void)
#
--format=gnu
__10ivTelltaleiP7ivGlyph
ivTelltale::ivTelltale(int, ivGlyph *)
#
--format=gnu
__10ivViewportiP12ivInteractorUi
ivViewport::ivViewport(int, ivInteractor *, unsigned int)
#
--format=gnu
__10ostrstream
ostrstream::ostrstream(void)
#
--format=gnu
__10ostrstreamPcii
ostrstream::ostrstream(char *, int, int)
#
--format=gnu
__11BitmapTablei
BitmapTable::BitmapTable(int)
#
--format=gnu
__12ViewportCodeP12ViewportComp
ViewportCode::ViewportCode(ViewportComp *)
#
--format=gnu
__12iv2_6_Borderii
iv2_6_Border::iv2_6_Border(int, int)
#
--format=gnu
__12ivBreak_Listl
ivBreak_List::ivBreak_List(long)
#
--format=gnu
__14iv2_6_MenuItemiP12ivInteractor
iv2_6_MenuItem::iv2_6_MenuItem(int, ivInteractor *)
#
--format=gnu
__20DisplayList_IteratorR11DisplayList
DisplayList_Iterator::DisplayList_Iterator(DisplayList &)
#
--format=gnu
__3fooRT0
foo::foo(foo &)
#
--format=gnu
__3fooiN31
foo::foo(int, int, int, int)
#
--format=gnu
__3fooiRT0iT2iT2
foo::foo(int, foo &, int, foo &, int, foo &)
#
--format=gnu
__6KeyMapPT0
KeyMap::KeyMap(KeyMap *)
#
--format=gnu
__8ArrowCmdP6EditorUiUi
ArrowCmd::ArrowCmd(Editor *, unsigned int, unsigned int)
#
--format=gnu
__9F_EllipseiiiiP7Graphic
F_Ellipse::F_Ellipse(int, int, int, int, Graphic *)
#
--format=gnu
__9FrameDataP9FrameCompi
FrameData::FrameData(FrameComp *, int)
#
--format=gnu
__9HVGraphicP9CanvasVarP7Graphic
HVGraphic::HVGraphic(CanvasVar *, Graphic *)
#
--format=gnu
__Q23foo3bar
foo::bar::bar(void)
#
--format=gnu
__Q33foo3bar4bell
foo::bar::bell::bell(void)
#
--format=gnu
__aa__3fooRT0
foo::operator&&(foo &)
#
--format=gnu
__aad__3fooRT0
foo::operator&=(foo &)
#
--format=gnu
__ad__3fooRT0
foo::operator&(foo &)
#
--format=gnu
__adv__3fooRT0
foo::operator/=(foo &)
#
--format=gnu
__aer__3fooRT0
foo::operator^=(foo &)
#
--format=gnu
__als__3fooRT0
foo::operator<<=(foo &)
#
--format=gnu
__amd__3fooRT0
foo::operator%=(foo &)
#
--format=gnu
__ami__3fooRT0
foo::operator-=(foo &)
#
--format=gnu
__aml__3FixRT0
Fix::operator*=(Fix &)
#
--format=gnu
__aml__5Fix16i
Fix16::operator*=(int)
#
--format=gnu
__aml__5Fix32RT0
Fix32::operator*=(Fix32 &)
#
--format=gnu
__aor__3fooRT0
foo::operator|=(foo &)
#
--format=gnu
__apl__3fooRT0
foo::operator+=(foo &)
#
--format=gnu
__ars__3fooRT0
foo::operator>>=(foo &)
#
--format=gnu
__as__3fooRT0
foo::operator=(foo &)
#
--format=gnu
__cl__3fooRT0
foo::operator()(foo &)
#
--format=gnu
__cl__6Normal
Normal::operator()(void)
#
--format=gnu
__cl__6Stringii
String::operator()(int, int)
#
--format=gnu
__cm__3fooRT0
foo::operator, (foo &)
#
--format=gnu
__co__3foo
foo::operator~(void)
#
--format=gnu
__dl__3fooPv
foo::operator delete(void *)
#
--format=gnu
__dv__3fooRT0
foo::operator/(foo &)
#
--format=gnu
__eq__3fooRT0
foo::operator==(foo &)
#
--format=gnu
__er__3fooRT0
foo::operator^(foo &)
#
--format=gnu
__ge__3fooRT0
foo::operator>=(foo &)
#
--format=gnu
__gt__3fooRT0
foo::operator>(foo &)
#
--format=gnu
__le__3fooRT0
foo::operator<=(foo &)
#
--format=gnu
__ls__3fooRT0
foo::operator<<(foo &)
#
--format=gnu
__ls__FR7ostreamPFR3ios_R3ios
operator<<(ostream &, ios &(*)(ios &))
#
--format=gnu
__ls__FR7ostreamR3Fix
operator<<(ostream &, Fix &)
#
--format=gnu
__lt__3fooRT0
foo::operator<(foo &)
#
--format=gnu
__md__3fooRT0
foo::operator%(foo &)
#
--format=gnu
__mi__3fooRT0
foo::operator-(foo &)
#
--format=gnu
__ml__3fooRT0
foo::operator*(foo &)
#
--format=gnu
__mm__3fooi
foo::operator--(int)
#
--format=gnu
__ne__3fooRT0
foo::operator!=(foo &)
#
--format=gnu
__nt__3foo
foo::operator!(void)
#
--format=gnu
__nw__3fooi
foo::operator new(int)
#
--format=gnu
__oo__3fooRT0
foo::operator||(foo &)
#
--format=gnu
__opPc__3foo
foo::operator char *(void)
#
--format=gnu
__opi__3foo
foo::operator int(void)
#
--format=gnu
__or__3fooRT0
foo::operator|(foo &)
#
--format=gnu
__pl__3fooRT0
foo::operator+(foo &)
#
--format=gnu
__pp__3fooi
foo::operator++(int)
#
--format=gnu
__rf__3foo
foo::operator->(void)
#
--format=gnu
__rm__3fooRT0
foo::operator->*(foo &)
#
--format=gnu
__rs__3fooRT0
foo::operator>>(foo &)
#
--format=gnu
_new_Fix__FUs
_new_Fix(unsigned short)
#
--format=gnu
_vt.foo
foo virtual table
#
--format=gnu
_vt.foo.bar
foo::bar virtual table
#
--format=gnu
_vt$foo
foo virtual table
#
--format=gnu
_vt$foo$bar
foo::bar virtual table
#
--format=gnu
append__7ivGlyphPT0
ivGlyph::append(ivGlyph *)
#
--format=gnu
clearok__FP7_win_sti
clearok(_win_st *, int)
#
--format=gnu
complexfunc2__FPFPc_i
complexfunc2(int (*)(char *))
#
--format=gnu
complexfunc3__FPFPFPl_s_i
complexfunc3(int (*)(short (*)(long *)))
#
--format=gnu
complexfunc4__FPFPFPc_s_i
complexfunc4(int (*)(short (*)(char *)))
#
--format=gnu
complexfunc5__FPFPc_PFl_i
complexfunc5(int (*(*)(char *))(long))
#
--format=gnu
complexfunc6__FPFPi_PFl_i
complexfunc6(int (*(*)(int *))(long))
#
--format=gnu
complexfunc7__FPFPFPc_i_PFl_i
complexfunc7(int (*(*)(int (*)(char *)))(long))
#
--format=gnu
foo__FiN30
foo(int, int, int, int)
#
--format=gnu
foo__FiR3fooiT1iT1
foo(int, foo &, int, foo &, int, foo &)
#
--format=gnu
foo___3barl
bar::foo_(long)
#
--format=gnu
insert__15ivClippingStacklRP8_XRegion
ivClippingStack::insert(long, _XRegion *&)
#
--format=gnu
insert__16ChooserInfo_ListlR11ChooserInfo
ChooserInfo_List::insert(long, ChooserInfo &)
#
--format=gnu
insert__17FontFamilyRepListlRP15ivFontFamilyRep
FontFamilyRepList::insert(long, ivFontFamilyRep *&)
#
--format=gnu
leaveok__FP7_win_stc
leaveok(_win_st *, char)
#
--format=gnu
left_mover__C7ivMFKitP12ivAdjustableP7ivStyle
ivMFKit::left_mover(ivAdjustable *, ivStyle *) const
#
--format=gnu
overload1arg__FSc
overload1arg(signed char)
#
--format=gnu
overload1arg__FUc
overload1arg(unsigned char)
#
--format=gnu
overload1arg__FUi
overload1arg(unsigned int)
#
--format=gnu
overload1arg__FUl
overload1arg(unsigned long)
#
--format=gnu
overload1arg__FUs
overload1arg(unsigned short)
#
--format=gnu
overload1arg__Fc
overload1arg(char)
#
--format=gnu
overload1arg__Fd
overload1arg(double)
#
--format=gnu
overload1arg__Ff
overload1arg(float)
#
--format=gnu
overload1arg__Fi
overload1arg(int)
#
--format=gnu
overload1arg__Fl
overload1arg(long)
#
--format=gnu
overload1arg__Fs
overload1arg(short)
#
--format=gnu
overload1arg__Fv
overload1arg(void)
#
--format=gnu
overloadargs__Fi
overloadargs(int)
#
--format=gnu
overloadargs__Fii
overloadargs(int, int)
#
--format=gnu
overloadargs__Fiii
overloadargs(int, int, int)
#
--format=gnu
overloadargs__Fiiii
overloadargs(int, int, int, int)
#
--format=gnu
overloadargs__Fiiiii
overloadargs(int, int, int, int, int)
#
--format=gnu
overloadargs__Fiiiiii
overloadargs(int, int, int, int, int, int)
#
--format=gnu
overloadargs__Fiiiiiii
overloadargs(int, int, int, int, int, int, int)
#
--format=gnu
overloadargs__Fiiiiiiii
overloadargs(int, int, int, int, int, int, int, int)
#
--format=gnu
overloadargs__Fiiiiiiiii
overloadargs(int, int, int, int, int, int, int, int, int)
#
--format=gnu
overloadargs__Fiiiiiiiiii
overloadargs(int, int, int, int, int, int, int, int, int, int)
#
--format=gnu
overloadargs__Fiiiiiiiiiii
overloadargs(int, int, int, int, int, int, int, int, int, int, int)
#
--format=gnu
poke__8ivRasterUlUlffff
ivRaster::poke(unsigned long, unsigned long, float, float, float, float)
#
--format=gnu
polar__Fdd
polar(double, double)
#
--format=gnu
scale__13ivTransformerff
ivTransformer::scale(float, float)
#
--format=gnu
sgetn__7filebufPci
filebuf::sgetn(char *, int)
#
--format=gnu
shift__FP5_FrepiT0
shift(_Frep *, int, _Frep *)
#
--format=gnu
test__C6BitSeti
BitSet::test(int) const
#
--format=gnu
test__C6BitSetii
BitSet::test(int, int) const
#
--format=gnu
text_source__8Documentl
Document::text_source(long)
#
--format=gnu
variance__6Erlangd
Erlang::variance(double)
#
--format=gnu
view__14DocumentViewerP8ItemViewP11TabularItem
DocumentViewer::view(ItemView *, TabularItem *)
#
--format=gnu
xy_extents__11ivExtensionffff
ivExtension::xy_extents(float, float, float, float)
#
--format=gnu
zero__8osMemoryPvUi
osMemory::zero(void *, unsigned int)
#
--format=gnu
_2T4$N
T4::N
#
--format=gnu
_Q22T42t1$N
T4::t1::N
#
--format=gnu
get__2T1
T1::get(void)
#
--format=gnu
get__Q22T11a
T1::a::get(void)
#
--format=gnu
get__Q32T11a1b
T1::a::b::get(void)
#
--format=gnu
get__Q42T11a1b1c
T1::a::b::c::get(void)
#
--format=gnu
get__Q52T11a1b1c1d
T1::a::b::c::d::get(void)
#
--format=gnu
put__2T1i
T1::put(int)
#
--format=gnu
put__Q22T11ai
T1::a::put(int)
#
--format=gnu
put__Q32T11a1bi
T1::a::b::put(int)
#
--format=gnu
put__Q42T11a1b1ci
T1::a::b::c::put(int)
#
--format=gnu
put__Q52T11a1b1c1di
T1::a::b::c::d::put(int)
#
--format=gnu
bar__3fooPv
foo::bar(void *)
#
--format=gnu
bar__C3fooPv
foo::bar(void *) const
#
--format=gnu
__eq__3fooRT0
foo::operator==(foo &)
#
--format=gnu
__eq__C3fooR3foo
foo::operator==(foo &) const
#
--format=gnu
elem__t6vector1Zdi
vector<double>::elem(int)
#
--format=gnu
elem__t6vector1Zii
vector<int>::elem(int)
#
--format=gnu
__t6vector1Zdi
vector<double>::vector(int)
#
--format=gnu
__t6vector1Zii
vector<int>::vector(int)
#
--format=gnu
_$_t6vector1Zdi
vector<double>::~vector(int)
#
--format=gnu
_$_t6vector1Zii
vector<int>::~vector(int)
#
--format=gnu
__nw__t2T11ZcUi
T1<char>::operator new(unsigned int)
#
--format=gnu
__nw__t2T11Z1tUi
T1<t>::operator new(unsigned int)
#
--format=gnu
__dl__t2T11ZcPv
T1<char>::operator delete(void *)
#
--format=gnu
__dl__t2T11Z1tPv
T1<t>::operator delete(void *)
#
--format=gnu
__t2T11Zci
T1<char>::T1(int)
#
--format=gnu
__t2T11Zc
T1<char>::T1(void)
#
--format=gnu
__t2T11Z1ti
T1<t>::T1(int)
#
--format=gnu
__t2T11Z1t
T1<t>::T1(void)
#
--format=gnu
__Q2t4List1Z10VHDLEntity3Pix
List<VHDLEntity>::Pix::Pix(void)
#
--format=gnu
__Q2t4List1Z10VHDLEntity3PixPQ2t4List1Z10VHDLEntity7element
List<VHDLEntity>::Pix::Pix(List<VHDLEntity>::element *)
#
--format=gnu
__Q2t4List1Z10VHDLEntity3PixRCQ2t4List1Z10VHDLEntity3Pix
List<VHDLEntity>::Pix::Pix(List<VHDLEntity>::Pix const &)
#
--format=gnu
__Q2t4List1Z10VHDLEntity7elementRC10VHDLEntityPT0
List<VHDLEntity>::element::element(VHDLEntity const &, List<VHDLEntity>::element *)
#
--format=gnu
__Q2t4List1Z10VHDLEntity7elementRCQ2t4List1Z10VHDLEntity7element
List<VHDLEntity>::element::element(List<VHDLEntity>::element const &)
#
--format=gnu
__cl__C11VHDLLibraryGt4PixX3Z11VHDLLibraryZ14VHDLLibraryRepZt4List1Z10VHDLEntity
VHDLLibrary::operator()(PixX<VHDLLibrary, VHDLLibraryRep, List<VHDLEntity> >) const
#
--format=gnu
__cl__Ct4List1Z10VHDLEntityRCQ2t4List1Z10VHDLEntity3Pix
List<VHDLEntity>::operator()(List<VHDLEntity>::Pix const &) const
#
--format=gnu
__ne__FPvRCQ2t4List1Z10VHDLEntity3Pix
operator!=(void *, List<VHDLEntity>::Pix const &)
#
--format=gnu
__ne__FPvRCt4PixX3Z11VHDLLibraryZ14VHDLLibraryRepZt4List1Z10VHDLEntity
operator!=(void *, PixX<VHDLLibrary, VHDLLibraryRep, List<VHDLEntity> > const &)
#
--format=gnu
__t4List1Z10VHDLEntityRCt4List1Z10VHDLEntity
List<VHDLEntity>::List(List<VHDLEntity> const &)
#
--format=gnu
__t4PixX3Z11VHDLLibraryZ14VHDLLibraryRepZt4List1Z10VHDLEntity
PixX<VHDLLibrary, VHDLLibraryRep, List<VHDLEntity> >::PixX(void)
#
--format=gnu
__t4PixX3Z11VHDLLibraryZ14VHDLLibraryRepZt4List1Z10VHDLEntityP14VHDLLibraryRepGQ2t4List1Z10VHDLEntity3Pix
PixX<VHDLLibrary, VHDLLibraryRep, List<VHDLEntity> >::PixX(VHDLLibraryRep *, List<VHDLEntity>::Pix)
#
--format=gnu
__t4PixX3Z11VHDLLibraryZ14VHDLLibraryRepZt4List1Z10VHDLEntityRCt4PixX3Z11VHDLLibraryZ14VHDLLibraryRepZt4List1Z10VHDLEntity
PixX<VHDLLibrary, VHDLLibraryRep, List<VHDLEntity> >::PixX(PixX<VHDLLibrary, VHDLLibraryRep, List<VHDLEntity> > const &)
#
--format=gnu
nextE__C11VHDLLibraryRt4PixX3Z11VHDLLibraryZ14VHDLLibraryRepZt4List1Z10VHDLEntity
VHDLLibrary::nextE(PixX<VHDLLibrary, VHDLLibraryRep, List<VHDLEntity> > &) const
#
--format=gnu
next__Ct4List1Z10VHDLEntityRQ2t4List1Z10VHDLEntity3Pix
List<VHDLEntity>::next(List<VHDLEntity>::Pix &) const
#
--format=gnu
_GLOBAL_$D$set
global destructors keyed to set
#
--format=gnu
_GLOBAL_$I$set
global constructors keyed to set
#
--format=gnu
__as__t5ListS1ZUiRCt5ListS1ZUi
ListS<unsigned int>::operator=(ListS<unsigned int> const &)
#
--format=gnu
__cl__Ct5ListS1ZUiRCQ2t5ListS1ZUi3Vix
ListS<unsigned int>::operator()(ListS<unsigned int>::Vix const &) const
#
--format=gnu
__cl__Ct5SetLS1ZUiRCQ2t5SetLS1ZUi3Vix
SetLS<unsigned int>::operator()(SetLS<unsigned int>::Vix const &) const
#
--format=gnu
__t10ListS_link1ZUiRCUiPT0
ListS_link<unsigned int>::ListS_link(unsigned int const &, ListS_link<unsigned int> *)
#
--format=gnu
__t10ListS_link1ZUiRCt10ListS_link1ZUi
ListS_link<unsigned int>::ListS_link(ListS_link<unsigned int> const &)
#
--format=gnu
__t5ListS1ZUiRCt5ListS1ZUi
ListS<unsigned int>::ListS(ListS<unsigned int> const &)
#
--format=gnu
next__Ct5ListS1ZUiRQ2t5ListS1ZUi3Vix
ListS<unsigned int>::next(ListS<unsigned int>::Vix &) const
#
--format=gnu
__ne__FPvRCQ2t5SetLS1ZUi3Vix
operator!=(void *, SetLS<unsigned int>::Vix const &)
#
--format=gnu
__t8ListElem1Z5LabelRt4List1Z5Label
ListElem<Label>::ListElem(List<Label> &)
#
--format=gnu
__t8BDDHookV1ZPcRCPc
BDDHookV<char *>::BDDHookV(char *const &)
#
--format=gnu
_vt$t8BDDHookV1ZPc
BDDHookV<char *> virtual table
#
--format=gnu
__ne__FPvRCQ211BDDFunction4VixB
operator!=(void *, BDDFunction::VixB const &)
#
--format=gnu
__eq__FPvRCQ211BDDFunction4VixB
operator==(void *, BDDFunction::VixB const &)
#
--format=gnu
relativeId__CQ36T_phi210T_preserve8FPC_nextRCQ26T_phi210T_preserveRC10Parameters
T_phi2::T_preserve::FPC_next::relativeId(T_phi2::T_preserve const &, Parameters const &) const
#
--format=lucid
WS__FR7istream
WS(istream &)
#
--format=lucid
__aa__3fooFR3foo
foo::operator&&(foo &)
#
--format=lucid
__aad__3fooFR3foo
foo::operator&=(foo &)
#
--format=lucid
__ad__3fooFR3foo
foo::operator&(foo &)
#
--format=lucid
__adv__3fooFR3foo
foo::operator/=(foo &)
#
--format=lucid
__adv__7complexF7complex
complex::operator/=(complex)
#
--format=lucid
__aer__3fooFR3foo
foo::operator^=(foo &)
#
--format=lucid
__als__3fooFR3foo
foo::operator<<=(foo &)
#
--format=lucid
__amd__3fooFR3foo
foo::operator%=(foo &)
#
--format=lucid
__ami__3fooFR3foo
foo::operator-=(foo &)
#
--format=lucid
__amu__3fooFR3foo
foo::operator*=(foo &)
#
--format=lucid
__amu__7complexF7complex
complex::operator*=(complex)
#
--format=lucid
__aor__3fooFR3foo
foo::operator|=(foo &)
#
--format=lucid
__apl__3fooFR3foo
foo::operator+=(foo &)
#
--format=lucid
__ars__3fooFR3foo
foo::operator>>=(foo &)
#
--format=lucid
__as__18istream_withassignFP9streambuf
istream_withassign::operator=(streambuf *)
#
--format=lucid
__as__18istream_withassignFR7istream
istream_withassign::operator=(istream &)
#
--format=lucid
__as__3fooFR3foo
foo::operator=(foo &)
#
--format=lucid
__as__3iosFR3ios
ios::operator=(ios &)
#
--format=lucid
__cl__3fooFR3foo
foo::operator()(foo &)
#
--format=lucid
__cm__3fooFR3foo
foo::operator, (foo &)
#
--format=lucid
__co__3fooFv
foo::operator~(void)
#
--format=lucid
__ct__10istrstreamFPc
istrstream::istrstream(char *)
#
--format=lucid
__ct__10istrstreamFPci
istrstream::istrstream(char *, int)
#
--format=lucid
__ct__10ostrstreamFPciT2
ostrstream::ostrstream(char *, int, int)
#
--format=lucid
__ct__10ostrstreamFv
ostrstream::ostrstream(void)
#
--format=lucid
__ct__10smanip_intFPFR3iosi_R3iosi
smanip_int::smanip_int(ios &(*)(ios &, int), int)
#
--format=lucid
__ct__11fstreambaseFi
fstreambase::fstreambase(int)
#
--format=lucid
__ct__11fstreambaseFiPcT1
fstreambase::fstreambase(int, char *, int)
#
--format=lucid
__ct__11fstreambaseFv
fstreambase::fstreambase(void)
#
--format=lucid
__ct__11smanip_longFPFR3iosl_R3iosl
smanip_long::smanip_long(ios &(*)(ios &, long), long)
#
--format=lucid
__ct__11stdiostreamFP4FILE
stdiostream::stdiostream(FILE *)
#
--format=lucid
__ct__12strstreambufFPFl_PvPFPv_v
strstreambuf::strstreambuf(void *(*)(long), void (*)(void *))
#
--format=lucid
__ct__12strstreambufFPUciT1
strstreambuf::strstreambuf(unsigned char *, int, unsigned char *)
#
--format=lucid
__ct__12strstreambufFPciT1
strstreambuf::strstreambuf(char *, int, char *)
#
--format=lucid
__ct__12strstreambufFi
strstreambuf::strstreambuf(int)
#
--format=lucid
__ct__12strstreambufFv
strstreambuf::strstreambuf(void)
#
--format=lucid
__ct__13strstreambaseFPciT1
strstreambase::strstreambase(char *, int, char *)
#
--format=lucid
__ct__3fooFR3foo
foo::foo(foo &)
#
--format=lucid
__ct__3fooFi
foo::foo(int)
#
--format=lucid
__ct__3fooFiN31
foo::foo(int, int, int, int)
#
--format=lucid
__ct__3fooFiR3fooT1T2T1T2
foo::foo(int, foo &, int, foo &, int, foo &)
#
--format=lucid
__ct__3iosFP9streambuf
ios::ios(streambuf *)
#
--format=lucid
__ct__7filebufFiPcT1
filebuf::filebuf(int, char *, int)
#
--format=lucid
__ct__7fstreamFiPcT1
fstream::fstream(int, char *, int)
#
--format=lucid
__ct__7istreamFP9streambuf
istream::istream(streambuf *)
#
--format=lucid
__ct__7istreamFP9streambufiP7ostream
istream::istream(streambuf *, int, ostream *)
#
--format=lucid
__ct__7istreamFiPcT1
istream::istream(int, char *, int)
#
--format=lucid
__ct__7istreamFiT1P7ostream
istream::istream(int, int, ostream *)
#
--format=lucid
__ct__7ostreamFP9streambuf
ostream::ostream(streambuf *)
#
--format=lucid
__ct__7ostreamFiPc
ostream::ostream(int, char *)
#
--format=lucid
__ct__8ifstreamFiPcT1
ifstream::ifstream(int, char *, int)
#
--format=lucid
__ct__Q23foo3barFv
foo::bar::bar(void)
#
--format=lucid
__ct__Q33foo3bar4bellFv
foo::bar::bell::bell(void)
#
--format=lucid
__dl__3fooSFPv
foo::operator delete(void *) static
#
--format=lucid
__dl__FPv
operator delete(void *)
#
--format=lucid
__dt__10istrstreamFv
istrstream::~istrstream(void)
#
--format=lucid
__dt__Q23foo3barFv
foo::bar::~bar(void)
#
--format=lucid
__dt__Q33foo3bar4bellFv
foo::bar::bell::~bell(void)
#
--format=lucid
__dv__3fooFR3foo
foo::operator/(foo &)
#
--format=lucid
__dv__F7complexT1
operator/(complex, complex)
#
--format=lucid
__eq__3fooFR3foo
foo::operator==(foo &)
#
--format=lucid
__er__3fooFR3foo
foo::operator^(foo &)
#
--format=lucid
__ge__3fooFR3foo
foo::operator>=(foo &)
#
--format=lucid
__gt__3fooFR3foo
foo::operator>(foo &)
#
--format=lucid
__le__3fooFR3foo
foo::operator<=(foo &)
#
--format=lucid
__ls__3fooFR3foo
foo::operator<<(foo &)
#
--format=lucid
__ls__7ostreamFP9streambuf
ostream::operator<<(streambuf *)
#
--format=lucid
__ls__7ostreamFPFR3ios_R3ios
ostream::operator<<(ios &(*)(ios &))
#
--format=lucid
__ls__7ostreamFPv
ostream::operator<<(void *)
#
--format=lucid
__ls__7ostreamFUi
ostream::operator<<(unsigned int)
#
--format=lucid
__ls__7ostreamFUl
ostream::operator<<(unsigned long)
#
--format=lucid
__ls__7ostreamFd
ostream::operator<<(double)
#
--format=lucid
__ls__7ostreamFf
ostream::operator<<(float)
#
--format=lucid
__ls__7ostreamFi
ostream::operator<<(int)
#
--format=lucid
__ls__7ostreamFl
ostream::operator<<(long)
#
--format=lucid
__ls__FR7ostream7complex
operator<<(ostream &, complex)
#
--format=lucid
__lt__3fooFR3foo
foo::operator<(foo &)
#
--format=lucid
__md__3fooFR3foo
foo::operator%(foo &)
#
--format=lucid
__mi__3fooFR3foo
foo::operator-(foo &)
#
--format=lucid
__ml__3fooFR3foo
foo::operator*(foo &)
#
--format=lucid
__ml__F7complexT1
operator*(complex, complex)
#
--format=lucid
__mm__3fooFi
foo::operator--(int)
#
--format=lucid
__ne__3fooFR3foo
foo::operator!=(foo &)
#
--format=lucid
__nt__3fooFv
foo::operator!(void)
#
--format=lucid
__nw__3fooSFi
foo::operator new(int) static
#
--format=lucid
__nw__FUi
operator new(unsigned int)
#
--format=lucid
__nw__FUiPv
operator new(unsigned int, void *)
#
--format=lucid
__oo__3fooFR3foo
foo::operator||(foo &)
#
--format=lucid
__opPc__3fooFv
foo::operator char *(void)
#
--format=lucid
__opi__3fooFv
foo::operator int(void)
#
--format=lucid
__or__3fooFR3foo
foo::operator|(foo &)
#
--format=lucid
__pl__3fooFR3foo
foo::operator+(foo &)
#
--format=lucid
__pp__3fooFi
foo::operator++(int)
#
--format=lucid
__pt__3fooFv
foo::operator->(void)
#
--format=lucid
__rm__3fooFR3foo
foo::operator->*(foo &)
#
--format=lucid
__rs__3fooFR3foo
foo::operator>>(foo &)
#
--format=lucid
__rs__7istreamFP9streambuf
istream::operator>>(streambuf *)
#
--format=lucid
__rs__7istreamFPFR3ios_R3ios
istream::operator>>(ios &(*)(ios &))
#
--format=lucid
__rs__7istreamFPFR7istream_R7istream
istream::operator>>(istream &(*)(istream &))
#
--format=lucid
__rs__7istreamFPUc
istream::operator>>(unsigned char *)
#
--format=lucid
__rs__7istreamFPc
istream::operator>>(char *)
#
--format=lucid
__rs__7istreamFRUi
istream::operator>>(unsigned int &)
#
--format=lucid
__rs__7istreamFRUl
istream::operator>>(unsigned long &)
#
--format=lucid
__rs__7istreamFRUs
istream::operator>>(unsigned short &)
#
--format=lucid
__rs__7istreamFRd
istream::operator>>(double &)
#
--format=lucid
__rs__7istreamFRf
istream::operator>>(float &)
#
--format=lucid
__rs__7istreamFRi
istream::operator>>(int &)
#
--format=lucid
__rs__7istreamFRl
istream::operator>>(long &)
#
--format=lucid
__rs__7istreamFRs
istream::operator>>(short &)
#
--format=lucid
__rs__FR7istreamR7complex
operator>>(istream &, complex &)
#
--format=lucid
__vtbl__10istrstream
istrstream virtual table
#
--format=lucid
__vtbl__17ostream__iostream__19iostream_withassign
iostream_withassign::ostream__iostream virtual table
#
--format=lucid
__vtbl__3ios
ios virtual table
#
--format=lucid
__vtbl__3ios__13strstreambase
strstreambase::ios virtual table
#
--format=lucid
abs__F7complex
abs(complex)
#
--format=lucid
allocate__9streambufFv
streambuf::allocate(void)
#
--format=lucid
attach__11fstreambaseFi
fstreambase::attach(int)
#
--format=lucid
bitalloc__3iosSFv
ios::bitalloc(void) static
#
--format=lucid
chr__FiT1
chr(int, int)
#
--format=lucid
complex_error__FR11c_exception
complex_error(c_exception &)
#
--format=lucid
complexfunc2__FPFPc_i
complexfunc2(int (*)(char *))
#
--format=lucid
complexfunc3__FPFPFPl_s_i
complexfunc3(int (*)(short (*)(long *)))
#
--format=lucid
complexfunc4__FPFPFPc_s_i
complexfunc4(int (*)(short (*)(char *)))
#
--format=lucid
complexfunc5__FPFPc_PFl_i
complexfunc5(int (*(*)(char *))(long))
#
--format=lucid
complexfunc6__FPFPi_PFl_i
complexfunc6(int (*(*)(int *))(long))
#
--format=lucid
complexfunc7__FPFPFPc_i_PFl_i
complexfunc7(int (*(*)(int (*)(char *)))(long))
#
--format=lucid
complicated_put__7ostreamFc
ostream::complicated_put(char)
#
--format=lucid
conv10__FlPc
conv10(long, char *)
#
--format=lucid
conv16__FUlPc
conv16(unsigned long, char *)
#
--format=lucid
dec__FR3ios
dec(ios &)
#
--format=lucid
dec__Fli
dec(long, int)
#
--format=lucid
dofield__FP7ostreamPciT2T3
dofield(ostream *, char *, int, char *, int)
#
--format=lucid
flags__3iosFl
ios::flags(long)
#
--format=lucid
flags__3iosFv
ios::flags(void)
#
--format=lucid
foo__FiN31
foo(int, int, int, int)
#
--format=lucid
foo__FiR3fooT1T2T1T2
foo(int, foo &, int, foo &, int, foo &)
#
--format=lucid
foo___3barFl
bar::foo_(long)
#
--format=lucid
get__7istreamFPcic
istream::get(char *, int, char)
#
--format=lucid
get__7istreamFR9streambufc
istream::get(streambuf &, char)
#
--format=lucid
get_complicated__7istreamFRUc
istream::get_complicated(unsigned char &)
#
--format=lucid
get_complicated__7istreamFRc
istream::get_complicated(char &)
#
--format=lucid
getline__7istreamFPUcic
istream::getline(unsigned char *, int, char)
#
--format=lucid
getline__7istreamFPcic
istream::getline(char *, int, char)
#
--format=lucid
ignore__7istreamFiT1
istream::ignore(int, int)
#
--format=lucid
init__12strstreambufFPciT1
strstreambuf::init(char *, int, char *)
#
--format=lucid
init__3iosFP9streambuf
ios::init(streambuf *)
#
--format=lucid
initcount__13Iostream_init
Iostream_init::initcount
#
--format=lucid
ipfx__7istreamFi
istream::ipfx(int)
#
--format=lucid
ls_complicated__7ostreamFUc
ostream::ls_complicated(unsigned char)
#
--format=lucid
ls_complicated__7ostreamFc
ostream::ls_complicated(char)
#
--format=lucid
overload1arg__FSc
overload1arg(signed char)
#
--format=lucid
overload1arg__FUc
overload1arg(unsigned char)
#
--format=lucid
overload1arg__FUi
overload1arg(unsigned int)
#
--format=lucid
overload1arg__FUl
overload1arg(unsigned long)
#
--format=lucid
overload1arg__FUs
overload1arg(unsigned short)
#
--format=lucid
overload1arg__Fc
overload1arg(char)
#
--format=lucid
overload1arg__Fd
overload1arg(double)
#
--format=lucid
overload1arg__Ff
overload1arg(float)
#
--format=lucid
overload1arg__Fi
overload1arg(int)
#
--format=lucid
overload1arg__Fl
overload1arg(long)
#
--format=lucid
overload1arg__Fs
overload1arg(short)
#
--format=lucid
overload1arg__Fv
overload1arg(void)
#
--format=lucid
overloadargs__FiN21
overloadargs(int, int, int)
#
--format=lucid
overloadargs__FiN31
overloadargs(int, int, int, int)
#
--format=lucid
overloadargs__FiN41
overloadargs(int, int, int, int, int)
#
--format=lucid
overloadargs__FiN51
overloadargs(int, int, int, int, int, int)
#
--format=lucid
overloadargs__FiN61
overloadargs(int, int, int, int, int, int, int)
#
--format=lucid
overloadargs__FiN71
overloadargs(int, int, int, int, int, int, int, int)
#
--format=lucid
overloadargs__FiN81
overloadargs(int, int, int, int, int, int, int, int, int)
#
--format=lucid
overloadargs__FiN91
overloadargs(int, int, int, int, int, int, int, int, int, int)
#
--format=lucid
overloadargs__FiN91N11
overloadargs(int, int, int, int, int, int, int, int, int, int, int)
#
--format=lucid
overloadargs__FiT1
overloadargs(int, int)
#
--format=lucid
polar__FdT1
polar(double, double)
#
--format=lucid
pow__F7complexT1
pow(complex, complex)
#
--format=lucid
pow__F7complexd
pow(complex, double)
#
--format=lucid
pow__F7complexi
pow(complex, int)
#
--format=lucid
pow__Fd7complex
pow(double, complex)
#
--format=lucid
pstart__FPciT2
pstart(char *, int, int)
#
--format=lucid
put__7ostreamFc
ostream::put(char)
#
--format=lucid
read__7istreamFPci
istream::read(char *, int)
#
--format=lucid
resetiosflags__FR3iosl
resetiosflags(ios &, long)
#
--format=lucid
restore_errno__FRi
restore_errno(int &)
#
--format=lucid
rs_complicated__7istreamFRUc
istream::rs_complicated(unsigned char &)
#
--format=lucid
rs_complicated__7istreamFRc
istream::rs_complicated(char &)
#
--format=lucid
seekg__7istreamFl8seek_dir
istream::seekg(long, seek_dir)
#
--format=lucid
seekoff__12strstreambufFl8seek_diri
strstreambuf::seekoff(long, seek_dir, int)
#
--format=lucid
seekoff__9streambufFlQ2_3ios12ios_seek_diri
streambuf::seekoff(long, ios::ios_seek_dir, int)
#
--format=lucid
seekpos__9streambufFli
streambuf::seekpos(long, int)
#
--format=lucid
set_new_handler__FPFv_v
set_new_handler(void (*)(void))
#
--format=lucid
setb__9streambufFPcT1i
streambuf::setb(char *, char *, int)
#
--format=lucid
setb__FR3iosi
setb(ios &, int)
#
--format=lucid
setbuf__11fstreambaseFPci
fstreambase::setbuf(char *, int)
#
--format=lucid
setbuf__9streambufFPUci
streambuf::setbuf(unsigned char *, int)
#
--format=lucid
setbuf__9streambufFPciT2
streambuf::setbuf(char *, int, int)
#
--format=lucid
setf__3iosFlT1
ios::setf(long, long)
#
--format=lucid
setfill__FR3iosi
setfill(ios &, int)
#
--format=lucid
setg__9streambufFPcN21
streambuf::setg(char *, char *, char *)
#
--format=lucid
setp__9streambufFPcT1
streambuf::setp(char *, char *)
#
--format=lucid
tie__3iosFP7ostream
ios::tie(ostream *)
#
--format=lucid
uconv10__FUlPc
uconv10(unsigned long, char *)
#
--format=lucid
xget__7istreamFPc
istream::xget(char *)
#
--format=lucid
xsgetn__9streambufFPci
streambuf::xsgetn(char *, int)
#
--format=arm
__dt__21T5__pt__11_PFiPPdPv_iFv
T5<int (*)(int, double **, void *)>::~T5(void)
#
--format=arm
__ct__1cFi
c::c(int)
#
--format=arm
__dt__11T5__pt__2_iFv
T5<int>::~T5(void)
#
--format=arm
__dt__11T5__pt__2_cFv
T5<char>::~T5(void)
#
--format=arm
__ct__2T2Fi
T2::T2(int)
#
--format=arm
__dt__2T1Fv
T1::~T1(void)
#
--format=arm
__dt__12T5__pt__3_1xFv
T5<x>::~T5(void)
#
--format=arm
__dt__17T5__pt__8_PFcPv_iFv
T5<int (*)(char, void *)>::~T5(void)
#
--format=arm
__ct__21T5__pt__11_PFiPPdPv_iFi
T5<int (*)(int, double **, void *)>::T5(int)
#
--format=arm
__amd__FR2T2i
operator%=(T2 &, int)
#
--format=arm
__adv__FR2T2i
operator/=(T2 &, int)
#
--format=arm
__amu__FR2T2i
operator*=(T2 &, int)
#
--format=arm
__ami__FR2T2i
operator-=(T2 &, int)
#
--format=arm
__apl__FR2T2i
operator+=(T2 &, int)
#
--format=arm
__nw__2T1SFUi
T1::operator new(unsigned int) static
#
--format=arm
__dl__2T1SFPv
T1::operator delete(void *) static
#
--format=arm
put__2T7SFi
T7::put(int) static
#
--format=arm
__dl__12T5__pt__3_1xSFPv
T5<x>::operator delete(void *) static
#
--format=arm
h__FUc
h(unsigned char)
#
--format=arm
f__Fic
f(int, char)
#
--format=arm
h__FUi
h(unsigned int)
#
--format=arm
h__Fci
h(char, int)
#
--format=arm
h__FUl
h(unsigned long)
#
--format=arm
h__Fcl
h(char, long)
#
--format=arm
h__FUs
h(unsigned short)
#
--format=arm
h__Fcs
h(char, short)
#
--format=arm
X__12T5__pt__3_1x
T5<x>::X
#
--format=arm
__ct__11T5__pt__2_iFi
T5<int>::T5(int)
#
--format=arm
__ct__11T5__pt__2_cFi
T5<char>::T5(int)
#
--format=arm
h__FcT1
h(char, char)
#
--format=arm
f__Ficd
f(int, char, double)
#
--format=arm
__dl__17T5__pt__8_PFcPv_iSFPv
T5<int (*)(char, void *)>::operator delete(void *) static
#
--format=arm
X__17T5__pt__8_PFcPv_i
T5<int (*)(char, void *)>::X
#
--format=arm
__ct__12T5__pt__3_1xFi
T5<x>::T5(int)
#
--format=arm
__dl__21T5__pt__11_PFiPPdPv_iSFPv
T5<int (*)(int, double **, void *)>::operator delete(void *) static
#
--format=arm
__std__foo
global destructors keyed to foo
#
--format=arm
__sti__bar
global constructors keyed to bar
#
--format=arm
f__FicdPcPFci_v
f(int, char, double, char *, void (*)(char, int))
#
--format=arm
f__FicdPcPFic_v
f(int, char, double, char *, void (*)(int, char))
#
--format=arm
get__2T7SFv
T7::get(void) static
#
--format=arm
X__21T5__pt__11_PFiPPdPv_i
T5<int (*)(int, double **, void *)>::X
#
--format=arm
__dl__11T5__pt__2_iSFPv
T5<int>::operator delete(void *) static
#
--format=arm
__dl__11T5__pt__2_cSFPv
T5<char>::operator delete(void *) static
#
--format=arm
h__Fc
h(char)
#
--format=arm
h__Fd
h(double)
#
--format=arm
h__Ff
h(float)
#
--format=arm
h__Fi
h(int)
#
--format=arm
f__Fi
f(int)
#
--format=arm
h__Fl
h(long)
#
--format=arm
h__Fs
h(short)
#
--format=arm
X__11T5__pt__2_c
T5<char>::X
#
--format=arm
X__11T5__pt__2_i
T5<int>::X
#
--format=arm
__ct__17T5__pt__8_PFcPv_iFi
T5<int (*)(char, void *)>::T5(int)
#
--format=arm
f__FicdPc
f(int, char, double, char *)
#
--format=arm
__nw__FUi
operator new(unsigned int)
#
--format=arm
__ct__Q3_2T11a1bSFi
T1::a::b::b(int) static
#
--format=arm
__dt__Q3_2T11a1bSFi
T1::a::b::~b(int) static
#
--format=arm
put__Q3_2T11a1bSFi
T1::a::b::put(int) static
#
--format=arm
get__Q2_2T11aSFv
T1::a::get(void) static
#
--format=arm
put__2T1SFi
T1::put(int) static
#
--format=arm
put__Q5_2T11a1b1c1dSFi
T1::a::b::c::d::put(int) static
#
--format=arm
get__Q4_2T11a1b1cSFv
T1::a::b::c::get(void) static
#
--format=arm
put__Q2_2T11aSFi
T1::a::put(int) static
#
--format=arm
put__Q4_2T11a1b1cSFi
T1::a::b::c::put(int) static
#
--format=arm
get__Q3_2T11a1bSFv
T1::a::b::get(void) static
#
--format=arm
get__2T1SFv
T1::get(void) static
#
--format=arm
get__Q5_2T11a1b1c1dSFv
T1::a::b::c::d::get(void) static
#
--format=arm
__dt__11T1__pt__2_cFv
T1<char>::~T1(void)
#
--format=arm
__dt__12T1__pt__3_1tFv
T1<t>::~T1(void)
#
--format=arm
__dl__12T1__pt__3_1tSFPv
T1<t>::operator delete(void *) static
#
--format=arm
__ct__11T1__pt__2_cFi
T1<char>::T1(int)
#
--format=arm
__ct__11T1__pt__2_cFv
T1<char>::T1(void)
#
--format=arm
__ct__12T1__pt__3_1tFi
T1<t>::T1(int)
#
--format=arm
__ct__12T1__pt__3_1tFv
T1<t>::T1(void)
#
--format=arm
__dl__11T1__pt__2_cSFPv
T1<char>::operator delete(void *) static
#
--format=arm
bar__3fooFPv
foo::bar(void *)
#
--format=arm
bar__3fooCFPv
foo::bar(void *) const
#
--format=arm
__eq__3fooFR3foo
foo::operator==(foo &)
#
--format=arm
__eq__3fooCFR3foo
foo::operator==(foo &) const
#
--format=arm
elem__15vector__pt__2_dFi
vector<double>::elem(int)
#
--format=arm
elem__15vector__pt__2_iFi
vector<int>::elem(int)
#
--format=arm
__ct__15vector__pt__2_dFi
vector<double>::vector(int)
#
--format=arm
__ct__15vector__pt__2_iFi
vector<int>::vector(int)
#
--format=arm
__ct__25DListNode__pt__9_R6RLabelFR6RLabelP25DListNode__pt__9_R6RLabelT2
DListNode<RLabel &>::DListNode(RLabel &, DListNode<RLabel &> *, DListNode<RLabel &> *)
#
--format=arm
bar__3fooFiT16FooBar
foo::bar(int, int, FooBar)
#
--format=arm
bar__3fooFPiN51PdN37PcN211T1iN215
foo::bar(int *, int *, int *, int *, int *, int *, double *, double *, double *, double *, char *, char *, char *, int *, int, int, int)
#
--format=hp
__amd__FR2T2i
operator%=(T2 &, int)
#
--format=hp
__adv__FR2T2i
operator/=(T2 &, int)
#
--format=hp
__amu__FR2T2i
operator*=(T2 &, int)
#
--format=hp
__ami__FR2T2i
operator-=(T2 &, int)
#
--format=hp
__apl__FR2T2i
operator+=(T2 &, int)
#
--format=hp
__nw__2T1SFUi
T1::operator new(unsigned int) static
#
--format=hp
__dl__2T1SFPv
T1::operator delete(void *) static
#
--format=hp
put__2T7SFi
T7::put(int) static
#
--format=hp
h__FUc
h(unsigned char)
#
--format=hp
f__Fic
f(int, char)
#
--format=hp
h__FUi
h(unsigned int)
#
--format=hp
h__Fci
h(char, int)
#
--format=hp
h__FUl
h(unsigned long)
#
--format=hp
h__Fcl
h(char, long)
#
--format=hp
h__FUs
h(unsigned short)
#
--format=hp
h__Fcs
h(char, short)
#
--format=hp
h__FcT1
h(char, char)
#
--format=hp
f__Ficd
f(int, char, double)
#
--format=hp
f__FicdPcPFci_v
f(int, char, double, char *, void (*)(char, int))
#
--format=hp
f__FicdPcPFic_v
f(int, char, double, char *, void (*)(int, char))
#
--format=hp
get__2T7SFv
T7::get(void) static
#
--format=hp
h__Fc
h(char)
#
--format=hp
h__Fd
h(double)
#
--format=hp
h__Ff
h(float)
#
--format=hp
h__Fi
h(int)
#
--format=hp
f__Fi
f(int)
#
--format=hp
h__Fl
h(long)
#
--format=hp
h__Fs
h(short)
#
--format=hp
f__FicdPc
f(int, char, double, char *)
#
--format=hp
__nw__FUi
operator new(unsigned int)
#
--format=hp
__ct__Q3_2T11a1bSFi
T1::a::b::b(int) static
#
--format=hp
__dt__Q3_2T11a1bSFi
T1::a::b::~b(int) static
#
--format=hp
put__Q3_2T11a1bSFi
T1::a::b::put(int) static
#
--format=hp
get__Q2_2T11aSFv
T1::a::get(void) static
#
--format=hp
put__2T1SFi
T1::put(int) static
#
--format=hp
put__Q5_2T11a1b1c1dSFi
T1::a::b::c::d::put(int) static
#
--format=hp
get__Q4_2T11a1b1cSFv
T1::a::b::c::get(void) static
#
--format=hp
put__Q2_2T11aSFi
T1::a::put(int) static
#
--format=hp
put__Q4_2T11a1b1cSFi
T1::a::b::c::put(int) static
#
--format=hp
get__Q3_2T11a1bSFv
T1::a::b::get(void) static
#
--format=hp
get__2T1SFv
T1::get(void) static
#
--format=hp
get__Q5_2T11a1b1c1dSFv
T1::a::b::c::d::get(void) static
#
--format=hp
bar__3fooFPv
foo::bar(void *)
#
--format=hp
bar__3fooCFPv
foo::bar(void *) const
#
--format=hp
__eq__3fooFR3foo
foo::operator==(foo &)
#
--format=hp
__eq__3fooCFR3foo
foo::operator==(foo &) const
#
--format=hp
bar__3fooFiT16FooBar
foo::bar(int, int, FooBar)
#
--format=hp
bar__3fooFPiN51PdN37PcN211T1iN215
foo::bar(int *, int *, int *, int *, int *, int *, double *, double *, double *, double *, char *, char *, char *, int *, int, int, int)
#
--format=hp
__dt__2T5XTPFiPPdPv_i__Fv
T5<int (*)(int, double **, void *)>::~T5(void)
#
--format=hp
__ct__1cFi
c::c(int)
#
--format=hp
__dt__2T5XTi__Fv
T5<int>::~T5(void)
#
--format=hp
__dt__2T5XTc__Fv
T5<char>::~T5(void)
#
--format=hp
__ct__2T2Fi
T2::T2(int)
#
--format=hp
__dt__2T1Fv
T1::~T1(void)
#
--format=hp
__dt__2T5XT1x__Fv
T5<x>::~T5(void)
#
--format=hp
__dt__2T5XTPFcPv_i__Fv
T5<int (*)(char, void *)>::~T5(void)
#
--format=hp
__ct__2T5XTPFiPPdPv_i__Fi
T5<int (*)(int, double **, void *)>::T5(int)
#
--format=hp
__dl__2T5XT1x__SFPv
T5<x>::operator delete(void *) static
#
--format=hp
X__2T5XT1x
T5<x>::X
#
--format=hp
__ct__2T5XTi__Fi
T5<int>::T5(int)
#
--format=hp
__ct__2T5XTc__Fi
T5<char>::T5(int)
#
--format=hp
__dl__2T5XTPFcPv_i__SFPv
T5<int (*)(char, void *)>::operator delete(void *) static
#
--format=hp
X__2T5XTPFcPv_i
T5<int (*)(char, void *)>::X
#
--format=hp
__ct__2T5XT1x__Fi
T5<x>::T5(int)
#
--format=hp
__dl__2T5XTPFiPPdPv_i__SFPv
T5<int (*)(int, double **, void *)>::operator delete(void *) static
#
--format=hp
X__2T5XTPFiPPdPv_i
T5<int (*)(int, double **, void *)>::X
#
--format=hp
__dl__2T5XTi__SFPv
T5<int>::operator delete(void *) static
#
--format=hp
__dl__2T5XTc__SFPv
T5<char>::operator delete(void *) static
#
--format=hp
X__2T5XTc
T5<char>::X
#
--format=hp
X__2T5XTi
T5<int>::X
#
--format=hp
__ct__2T5XTPFcPv_i__Fi
T5<int (*)(char, void *)>::T5(int)
#
--format=hp
__dt__2T1XTc__Fv
T1<char>::~T1(void)
#
--format=hp
__dt__2T1XT1t__Fv
T1<t>::~T1(void)
#
--format=hp
__dl__2T1XT1t__SFPv
T1<t>::operator delete(void *) static
#
--format=hp
__ct__2T1XTc__Fi
T1<char>::T1(int)
#
--format=hp
__ct__2T1XTc__Fv
T1<char>::T1(void)
#
--format=hp
__ct__2T1XT1t__Fi
T1<t>::T1(int)
#
--format=hp
__ct__2T1XT1t__Fv
T1<t>::T1(void)
#
--format=hp
__dl__2T1XTc__SFPv
T1<char>::operator delete(void *) static
#
--format=hp
elem__6vectorXTd__Fi
vector<double>::elem(int)
#
--format=hp
elem__6vectorXTi__Fi
vector<int>::elem(int)
#
--format=hp
__ct__6vectorXTd__Fi
vector<double>::vector(int)
#
--format=hp
__ct__6vectorXTi__Fi
vector<int>::vector(int)
#
--format=hp
__ct__9DListNodeXTR6RLabel__FR6RLabelP9DListNodeXTR6RLabel_T2
DListNode<RLabel &>::DListNode(RLabel &, DListNode<RLabel &> *, DListNode<RLabel &> *)
#
--format=hp
elem__6vectorXTiUP34__Fi
vector<int,34U>::elem(int)
#
--format=hp
elem__6vectorXUP2701Td__Fi
vector<2701U,double>::elem(int)
#
--format=hp
elem__6vectorXTiSP334__Fi
vector<int,334>::elem(int)
#
--format=hp
elem__6vectorXTiSN67__Fi
vector<int,-67>::elem(int)
#
--format=hp
elem__6vectorXTiSM__SCFPPd
vector<int,-2147483648>::elem(double **) static const
#
--format=hp
elem__6vectorXTiSN67UP4000TRs__Fi
vector<int,-67,4000U,short &>::elem(int)
#
--format=hp
elem__6vectorXTiSN67TRdTFPv_i__Fi
vector<int,-67,double &,int (void *)>::elem(int)
#
--format=hp
X__6vectorXTiSN67TdTPvUP5TRs
vector<int,-67,double,void *,5U,short &>::X
#
--format=hp
elem__6vectorXTiA3foo__Fi
vector<int,&foo>::elem(int)
#
--format=hp
elem__6vectorXTiA3fooTPvA5Label__FiPPvT2
vector<int,&foo,void *,&Label>::elem(int, void **, void **)
#
--format=hp
elem__6vectorXTiSN42A3foo__Fi
vector<int,-42,&foo>::elem(int)
#
--format=hp
__ct__2T5XTPFcPv_i__Fi_2
T5<int (*)(char, void *)>::T5(int)
#
--format=hp
__ct__2T5XTPFcPv_i__Fi_19
T5<int (*)(char, void *)>::T5(int)
#
--format=hp
f__FicdPcPFci_v_34
f(int, char, double, char *, void (*)(char, int))
#
--format=hp
spec__13Spec<#1,#1.*>XTiTPi_FPi
Spec<int,int *>::spec(int *)
#
--format=hp
spec__16Spec<#1,#1.&,#1>XTiTRiTi_FPi
Spec<int,int &,int>::spec(int *)
#
--format=hp
add__XTc_FcT1
add<char>(char, char)
#
--format=hp
add__XTcSP9A5label_FcPPlT1
add<char,9,&label>(char, long **, char)
#
--format=hp
add__XTPfTFPd_f_FcT1
add<float *,float (double *)>(char, char)
#
--format=hp
unLink__12basic_stringXTcT18string_char_traitsXTc_T9allocator_Fv
basic_string<char,string_char_traits<char>,allocator>::unLink(void)
#
# A regression test with no args.  This used to cause a segv.

_Utf390_1__1_9223372036854775807__9223372036854775
_Utf390_1__1_9223372036854775807__9223372036854775
#
--format=gnu
call__H1Z4Test_RX01_t1C2ZX01PMX01FPX01i_vQ2X016output
C<Test, Test::output> call<Test>(Test &)
#
--format=gnu
fn__FPQ21n1cPMQ21n1cFPQ21n1c_i
fn(n::c *, int (n::c::*)(n::c *))
#
--format=gnu
f__FGt3Bar1i2G1i
f(Bar<2>, i)
#
--format=gnu
f__FGt3Bar1i21i
f(Bar<21>, int)
#
--format=gnu
f__FGt3Bar1i2G4XY_t
f(Bar<2>, XY_t)
#
--format=gnu
foo__H1Zt2TA2ZRCiZt2NA1Ui9_X01_i
int foo<TA<int const &, NA<9> > >(TA<int const &, NA<9> >)
#
--format=gnu
foo__H1Zt2TA2ZcZt2NA1Ui20_X01_i
int foo<TA<char, NA<20> > >(TA<char, NA<20> >)
#
--format=gnu
foo__H1Zt2TA2ZiZt8N___A___1Ui99_X01_i
int foo<TA<int, N___A___<99> > >(TA<int, N___A___<99> >)
#
--format=gnu
foo__H1Zt2TA2ZRCiZt2NA1im1_X01_i
int foo<TA<int const &, NA<-1> > >(TA<int const &, NA<-1> >)
#
--format=gnu
foo__H1Zt2TA2ZRCiZt2NA1im9_X01_i
int foo<TA<int const &, NA<-9> > >(TA<int const &, NA<-9> >)
#
--format=gnu
foo__H1Zt2TA2ZcZt2NA1i_m20__X01_i
int foo<TA<char, NA<-20> > >(TA<char, NA<-20> >)
#
--format=gnu
foo__H1Zt2TA2ZcZt2NA1im1_X01_i
int foo<TA<char, NA<-1> > >(TA<char, NA<-1> >)
#
--format=gnu
foo__H1Zt2TA2ZiZt4N__A1im9_X01_i
int foo<TA<int, N__A<-9> > >(TA<int, N__A<-9> >)
#
--format=gnu
foo__H1Zt2TA2ZiZt4N__A1i_m99__X01_i
int foo<TA<int, N__A<-99> > >(TA<int, N__A<-99> >)
#
--format=gnu
__opi__t2TA2ZiZt4N__A1i9
TA<int, N__A<9> >::operator int(void)
#
--format=gnu
__opi__t2TA2ZiZt8N___A___1i_m99_
TA<int, N___A___<-99> >::operator int(void)
#
--format=gnu
foo___bar__baz_____H1Zt2TA2ZiZt8N___A___1i99_X01_i
int foo___bar__baz___<TA<int, N___A___<99> > >(TA<int, N___A___<99> >)
#
--format=gnu
foo__bar___foobar_____t2TA2ZiZt8N___A___1i_m99_
TA<int, N___A___<-99> >::foo__bar___foobar___(void)
#
--format=gnu
foo__bar___foobar_____t2TA2ZiZt4N__A1i9
TA<int, N__A<9> >::foo__bar___foobar___(void)
#
--format=gnu
__tfP8sockaddr
sockaddr * type_info function
#
--format=gnu
__tfPQ25libcwt16option_event_tct1Z12burst_app_ct
libcw::option_event_tct<burst_app_ct> * type_info function
#
--format=gnu
__tiP8sockaddr
sockaddr * type_info node
#
--format=gnu
__tiPQ25libcwt16option_event_tct1Z12burst_app_ct
libcw::option_event_tct<burst_app_ct> * type_info node
#
--format=gnu
_27_GLOBAL_.N.__12burst_app_ct.app_instance
{anonymous}::app_instance
#
--format=gnu
_26_GLOBAL_$N$_tmp_n.iilg4Gya$app_instance
{anonymous}::app_instance
#
--format=java
_ZN4java3awt10ScrollPane7addImplEPNS0_9ComponentEPNS_4lang6ObjectEi
java.awt.ScrollPane.addImpl(java.awt.Component, java.lang.Object, int)
#
--format=java
_ZN4java3awt4geom15AffineTransform9getMatrixEP6JArrayIdE
java.awt.geom.AffineTransform.getMatrix(double[])
#
--format=java
_ZN23Mangle$Inner$InnerInner3fooEP6JArrayIPS0_IiEEdPS0_IPS0_IPS0_IPS0_IPN4java4lang6StringEEEEEPS0_IPS0_IPN6MangleEEE
Mangle$Inner$InnerInner.foo(int[][], double, java.lang.String[][][][], Mangle[][])
#
--format=java
_ZN6JArray1tEP6JArrayIPS_E
JArray.t(JArray[])
#
--format=java
_ZN4Prim1iEibcdfwPN4java4lang6StringEsx
Prim.i(int, boolean, byte, double, float, char, java.lang.String, short, long)
#
--format=java
_ZN4java4util14Map__U24_Entry11class__U24_E
java.util.Map$Entry.class$
#
--format=hp
_Utf58_0_1__1_2147483647__2147483648
_Utf58_0_1__1_2147483647__2147483648
#
--format=gnu-v3
St9bad_alloc
std::bad_alloc
# 
# This caused an infinite loop.
# We still don't demangle this correctly, but at least we don't hang.
--format=auto
__CPR212____ct__Q3_3std141list__tm__128_Q2_3edm41THandle__tm__26_Q2_4emid15EMparticleChunkQ2_3std68allocator__tm__51_Q2_3edmJ37J14const_iteratorFRCQ3_3std18list__tm__7_Z1ZZ2Z8iterator
_Z1ZZ2Z::__CPR212____ct__Q3_3std141list__tm__128_Q2_3edm41THandle__tm__26_Q2_4emid15EMparticleChunkQ2_3std68allocator__tm__51_Q2_3edmJ37J14const_iteratorFRCQ3_3std18list__tm(iterator)