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
|
Classfile out_android/Debug/gen/content/jni/android/view/MotionEvent.class
Last modified Feb 27, 2014; size 13369 bytes
MD5 checksum 3718d77a994cb8aceb7b35c5df3c4dd1
Compiled from "MotionEvent.java"
public final class android.view.MotionEvent extends android.view.InputEvent implements android.os.Parcelable
SourceFile: "MotionEvent.java"
InnerClasses:
public static final #10= #9 of #6; //PointerProperties=class android/view/MotionEvent$PointerProperties of class android/view/MotionEvent
public static final #13= #12 of #6; //PointerCoords=class android/view/MotionEvent$PointerCoords of class android/view/MotionEvent
public static #150= #149 of #8; //Creator=class android/os/Parcelable$Creator of class android/os/Parcelable
minor version: 0
major version: 49
flags: ACC_PUBLIC, ACC_FINAL, ACC_SUPER
Constant pool:
#1 = Methodref #7.#293 // android/view/InputEvent."<init>":()V
#2 = Class #294 // java/lang/RuntimeException
#3 = String #295 // Stub!
#4 = Methodref #2.#296 // java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
#5 = Fieldref #6.#297 // android/view/MotionEvent.CREATOR:Landroid/os/Parcelable$Creator;
#6 = Class #298 // android/view/MotionEvent
#7 = Class #299 // android/view/InputEvent
#8 = Class #300 // android/os/Parcelable
#9 = Class #301 // android/view/MotionEvent$PointerProperties
#10 = Utf8 PointerProperties
#11 = Utf8 InnerClasses
#12 = Class #302 // android/view/MotionEvent$PointerCoords
#13 = Utf8 PointerCoords
#14 = Utf8 INVALID_POINTER_ID
#15 = Utf8 I
#16 = Utf8 ConstantValue
#17 = Integer -1
#18 = Utf8 ACTION_MASK
#19 = Integer 255
#20 = Utf8 ACTION_DOWN
#21 = Integer 0
#22 = Utf8 ACTION_UP
#23 = Integer 1
#24 = Utf8 ACTION_MOVE
#25 = Integer 2
#26 = Utf8 ACTION_CANCEL
#27 = Integer 3
#28 = Utf8 ACTION_OUTSIDE
#29 = Integer 4
#30 = Utf8 ACTION_POINTER_DOWN
#31 = Integer 5
#32 = Utf8 ACTION_POINTER_UP
#33 = Integer 6
#34 = Utf8 ACTION_HOVER_MOVE
#35 = Integer 7
#36 = Utf8 ACTION_SCROLL
#37 = Integer 8
#38 = Utf8 ACTION_HOVER_ENTER
#39 = Integer 9
#40 = Utf8 ACTION_HOVER_EXIT
#41 = Integer 10
#42 = Utf8 ACTION_POINTER_INDEX_MASK
#43 = Integer 65280
#44 = Utf8 ACTION_POINTER_INDEX_SHIFT
#45 = Utf8 ACTION_POINTER_1_DOWN
#46 = Utf8 Deprecated
#47 = Utf8 RuntimeVisibleAnnotations
#48 = Utf8 Ljava/lang/Deprecated;
#49 = Utf8 ACTION_POINTER_2_DOWN
#50 = Integer 261
#51 = Utf8 ACTION_POINTER_3_DOWN
#52 = Integer 517
#53 = Utf8 ACTION_POINTER_1_UP
#54 = Utf8 ACTION_POINTER_2_UP
#55 = Integer 262
#56 = Utf8 ACTION_POINTER_3_UP
#57 = Integer 518
#58 = Utf8 ACTION_POINTER_ID_MASK
#59 = Utf8 ACTION_POINTER_ID_SHIFT
#60 = Utf8 FLAG_WINDOW_IS_OBSCURED
#61 = Utf8 EDGE_TOP
#62 = Utf8 EDGE_BOTTOM
#63 = Utf8 EDGE_LEFT
#64 = Utf8 EDGE_RIGHT
#65 = Utf8 AXIS_X
#66 = Utf8 AXIS_Y
#67 = Utf8 AXIS_PRESSURE
#68 = Utf8 AXIS_SIZE
#69 = Utf8 AXIS_TOUCH_MAJOR
#70 = Utf8 AXIS_TOUCH_MINOR
#71 = Utf8 AXIS_TOOL_MAJOR
#72 = Utf8 AXIS_TOOL_MINOR
#73 = Utf8 AXIS_ORIENTATION
#74 = Utf8 AXIS_VSCROLL
#75 = Utf8 AXIS_HSCROLL
#76 = Utf8 AXIS_Z
#77 = Integer 11
#78 = Utf8 AXIS_RX
#79 = Integer 12
#80 = Utf8 AXIS_RY
#81 = Integer 13
#82 = Utf8 AXIS_RZ
#83 = Integer 14
#84 = Utf8 AXIS_HAT_X
#85 = Integer 15
#86 = Utf8 AXIS_HAT_Y
#87 = Integer 16
#88 = Utf8 AXIS_LTRIGGER
#89 = Integer 17
#90 = Utf8 AXIS_RTRIGGER
#91 = Integer 18
#92 = Utf8 AXIS_THROTTLE
#93 = Integer 19
#94 = Utf8 AXIS_RUDDER
#95 = Integer 20
#96 = Utf8 AXIS_WHEEL
#97 = Integer 21
#98 = Utf8 AXIS_GAS
#99 = Integer 22
#100 = Utf8 AXIS_BRAKE
#101 = Integer 23
#102 = Utf8 AXIS_DISTANCE
#103 = Integer 24
#104 = Utf8 AXIS_TILT
#105 = Integer 25
#106 = Utf8 AXIS_GENERIC_1
#107 = Integer 32
#108 = Utf8 AXIS_GENERIC_2
#109 = Integer 33
#110 = Utf8 AXIS_GENERIC_3
#111 = Integer 34
#112 = Utf8 AXIS_GENERIC_4
#113 = Integer 35
#114 = Utf8 AXIS_GENERIC_5
#115 = Integer 36
#116 = Utf8 AXIS_GENERIC_6
#117 = Integer 37
#118 = Utf8 AXIS_GENERIC_7
#119 = Integer 38
#120 = Utf8 AXIS_GENERIC_8
#121 = Integer 39
#122 = Utf8 AXIS_GENERIC_9
#123 = Integer 40
#124 = Utf8 AXIS_GENERIC_10
#125 = Integer 41
#126 = Utf8 AXIS_GENERIC_11
#127 = Integer 42
#128 = Utf8 AXIS_GENERIC_12
#129 = Integer 43
#130 = Utf8 AXIS_GENERIC_13
#131 = Integer 44
#132 = Utf8 AXIS_GENERIC_14
#133 = Integer 45
#134 = Utf8 AXIS_GENERIC_15
#135 = Integer 46
#136 = Utf8 AXIS_GENERIC_16
#137 = Integer 47
#138 = Utf8 BUTTON_PRIMARY
#139 = Utf8 BUTTON_SECONDARY
#140 = Utf8 BUTTON_TERTIARY
#141 = Utf8 BUTTON_BACK
#142 = Utf8 BUTTON_FORWARD
#143 = Utf8 TOOL_TYPE_UNKNOWN
#144 = Utf8 TOOL_TYPE_FINGER
#145 = Utf8 TOOL_TYPE_STYLUS
#146 = Utf8 TOOL_TYPE_MOUSE
#147 = Utf8 TOOL_TYPE_ERASER
#148 = Utf8 CREATOR
#149 = Class #303 // android/os/Parcelable$Creator
#150 = Utf8 Creator
#151 = Utf8 Landroid/os/Parcelable$Creator;
#152 = Utf8 Signature
#153 = Utf8 Landroid/os/Parcelable$Creator<Landroid/view/MotionEvent;>;
#154 = Utf8 <init>
#155 = Utf8 ()V
#156 = Utf8 Code
#157 = Utf8 LineNumberTable
#158 = Utf8 LocalVariableTable
#159 = Utf8 this
#160 = Utf8 Landroid/view/MotionEvent;
#161 = Utf8 finalize
#162 = Utf8 Exceptions
#163 = Class #304 // java/lang/Throwable
#164 = Utf8 obtain
#165 = Utf8 (JJII[Landroid/view/MotionEvent$PointerProperties;[Landroid/view/MotionEvent$PointerCoords;IIFFIIII)Landroid/view/MotionEvent;
#166 = Utf8 downTime
#167 = Utf8 J
#168 = Utf8 eventTime
#169 = Utf8 action
#170 = Utf8 pointerCount
#171 = Utf8 pointerProperties
#172 = Utf8 [Landroid/view/MotionEvent$PointerProperties;
#173 = Utf8 pointerCoords
#174 = Utf8 [Landroid/view/MotionEvent$PointerCoords;
#175 = Utf8 metaState
#176 = Utf8 buttonState
#177 = Utf8 xPrecision
#178 = Utf8 F
#179 = Utf8 yPrecision
#180 = Utf8 deviceId
#181 = Utf8 edgeFlags
#182 = Utf8 source
#183 = Utf8 flags
#184 = Utf8 (JJII[I[Landroid/view/MotionEvent$PointerCoords;IFFIIII)Landroid/view/MotionEvent;
#185 = Utf8 pointerIds
#186 = Utf8 [I
#187 = Utf8 (JJIFFFFIFFII)Landroid/view/MotionEvent;
#188 = Utf8 x
#189 = Utf8 y
#190 = Utf8 pressure
#191 = Utf8 size
#192 = Utf8 (JJIIFFFFIFFII)Landroid/view/MotionEvent;
#193 = Utf8 (JJIFFI)Landroid/view/MotionEvent;
#194 = Utf8 (Landroid/view/MotionEvent;)Landroid/view/MotionEvent;
#195 = Utf8 other
#196 = Utf8 obtainNoHistory
#197 = Utf8 recycle
#198 = Utf8 getDeviceId
#199 = Utf8 ()I
#200 = Utf8 getSource
#201 = Utf8 setSource
#202 = Utf8 (I)V
#203 = Utf8 getAction
#204 = Utf8 getActionMasked
#205 = Utf8 getActionIndex
#206 = Utf8 getFlags
#207 = Utf8 getDownTime
#208 = Utf8 ()J
#209 = Utf8 getEventTime
#210 = Utf8 getX
#211 = Utf8 ()F
#212 = Utf8 getY
#213 = Utf8 getPressure
#214 = Utf8 getSize
#215 = Utf8 getTouchMajor
#216 = Utf8 getTouchMinor
#217 = Utf8 getToolMajor
#218 = Utf8 getToolMinor
#219 = Utf8 getOrientation
#220 = Utf8 getAxisValue
#221 = Utf8 (I)F
#222 = Utf8 axis
#223 = Utf8 getPointerCount
#224 = Utf8 getPointerId
#225 = Utf8 (I)I
#226 = Utf8 pointerIndex
#227 = Utf8 getToolType
#228 = Utf8 findPointerIndex
#229 = Utf8 pointerId
#230 = Utf8 (II)F
#231 = Utf8 getPointerCoords
#232 = Utf8 (ILandroid/view/MotionEvent$PointerCoords;)V
#233 = Utf8 outPointerCoords
#234 = Utf8 Landroid/view/MotionEvent$PointerCoords;
#235 = Utf8 getPointerProperties
#236 = Utf8 (ILandroid/view/MotionEvent$PointerProperties;)V
#237 = Utf8 outPointerProperties
#238 = Utf8 Landroid/view/MotionEvent$PointerProperties;
#239 = Utf8 getMetaState
#240 = Utf8 getButtonState
#241 = Utf8 getRawX
#242 = Utf8 getRawY
#243 = Utf8 getXPrecision
#244 = Utf8 getYPrecision
#245 = Utf8 getHistorySize
#246 = Utf8 getHistoricalEventTime
#247 = Utf8 (I)J
#248 = Utf8 pos
#249 = Utf8 getHistoricalX
#250 = Utf8 getHistoricalY
#251 = Utf8 getHistoricalPressure
#252 = Utf8 getHistoricalSize
#253 = Utf8 getHistoricalTouchMajor
#254 = Utf8 getHistoricalTouchMinor
#255 = Utf8 getHistoricalToolMajor
#256 = Utf8 getHistoricalToolMinor
#257 = Utf8 getHistoricalOrientation
#258 = Utf8 getHistoricalAxisValue
#259 = Utf8 (III)F
#260 = Utf8 getHistoricalPointerCoords
#261 = Utf8 (IILandroid/view/MotionEvent$PointerCoords;)V
#262 = Utf8 getEdgeFlags
#263 = Utf8 setEdgeFlags
#264 = Utf8 setAction
#265 = Utf8 offsetLocation
#266 = Utf8 (FF)V
#267 = Utf8 deltaX
#268 = Utf8 deltaY
#269 = Utf8 setLocation
#270 = Utf8 transform
#271 = Utf8 (Landroid/graphics/Matrix;)V
#272 = Utf8 matrix
#273 = Utf8 Landroid/graphics/Matrix;
#274 = Utf8 addBatch
#275 = Utf8 (JFFFFI)V
#276 = Utf8 (J[Landroid/view/MotionEvent$PointerCoords;I)V
#277 = Utf8 toString
#278 = Utf8 ()Ljava/lang/String;
#279 = Utf8 actionToString
#280 = Utf8 (I)Ljava/lang/String;
#281 = Utf8 axisToString
#282 = Utf8 axisFromString
#283 = Utf8 (Ljava/lang/String;)I
#284 = Utf8 symbolicName
#285 = Utf8 Ljava/lang/String;
#286 = Utf8 writeToParcel
#287 = Utf8 (Landroid/os/Parcel;I)V
#288 = Utf8 out
#289 = Utf8 Landroid/os/Parcel;
#290 = Utf8 <clinit>
#291 = Utf8 SourceFile
#292 = Utf8 MotionEvent.java
#293 = NameAndType #154:#155 // "<init>":()V
#294 = Utf8 java/lang/RuntimeException
#295 = Utf8 Stub!
#296 = NameAndType #154:#305 // "<init>":(Ljava/lang/String;)V
#297 = NameAndType #148:#151 // CREATOR:Landroid/os/Parcelable$Creator;
#298 = Utf8 android/view/MotionEvent
#299 = Utf8 android/view/InputEvent
#300 = Utf8 android/os/Parcelable
#301 = Utf8 android/view/MotionEvent$PointerProperties
#302 = Utf8 android/view/MotionEvent$PointerCoords
#303 = Utf8 android/os/Parcelable$Creator
#304 = Utf8 java/lang/Throwable
#305 = Utf8 (Ljava/lang/String;)V
{
public static final int INVALID_POINTER_ID;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int -1
public static final int ACTION_MASK;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 255
public static final int ACTION_DOWN;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 0
public static final int ACTION_UP;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 1
public static final int ACTION_MOVE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 2
public static final int ACTION_CANCEL;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 3
public static final int ACTION_OUTSIDE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 4
public static final int ACTION_POINTER_DOWN;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 5
public static final int ACTION_POINTER_UP;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 6
public static final int ACTION_HOVER_MOVE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 7
public static final int ACTION_SCROLL;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 8
public static final int ACTION_HOVER_ENTER;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 9
public static final int ACTION_HOVER_EXIT;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 10
public static final int ACTION_POINTER_INDEX_MASK;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 65280
public static final int ACTION_POINTER_INDEX_SHIFT;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 8
public static final int ACTION_POINTER_1_DOWN;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 5
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int ACTION_POINTER_2_DOWN;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 261
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int ACTION_POINTER_3_DOWN;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 517
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int ACTION_POINTER_1_UP;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 6
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int ACTION_POINTER_2_UP;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 262
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int ACTION_POINTER_3_UP;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 518
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int ACTION_POINTER_ID_MASK;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 65280
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int ACTION_POINTER_ID_SHIFT;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 8
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static final int FLAG_WINDOW_IS_OBSCURED;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 1
public static final int EDGE_TOP;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 1
public static final int EDGE_BOTTOM;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 2
public static final int EDGE_LEFT;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 4
public static final int EDGE_RIGHT;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 8
public static final int AXIS_X;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 0
public static final int AXIS_Y;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 1
public static final int AXIS_PRESSURE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 2
public static final int AXIS_SIZE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 3
public static final int AXIS_TOUCH_MAJOR;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 4
public static final int AXIS_TOUCH_MINOR;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 5
public static final int AXIS_TOOL_MAJOR;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 6
public static final int AXIS_TOOL_MINOR;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 7
public static final int AXIS_ORIENTATION;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 8
public static final int AXIS_VSCROLL;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 9
public static final int AXIS_HSCROLL;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 10
public static final int AXIS_Z;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 11
public static final int AXIS_RX;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 12
public static final int AXIS_RY;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 13
public static final int AXIS_RZ;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 14
public static final int AXIS_HAT_X;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 15
public static final int AXIS_HAT_Y;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 16
public static final int AXIS_LTRIGGER;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 17
public static final int AXIS_RTRIGGER;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 18
public static final int AXIS_THROTTLE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 19
public static final int AXIS_RUDDER;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 20
public static final int AXIS_WHEEL;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 21
public static final int AXIS_GAS;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 22
public static final int AXIS_BRAKE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 23
public static final int AXIS_DISTANCE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 24
public static final int AXIS_TILT;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 25
public static final int AXIS_GENERIC_1;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 32
public static final int AXIS_GENERIC_2;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 33
public static final int AXIS_GENERIC_3;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 34
public static final int AXIS_GENERIC_4;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 35
public static final int AXIS_GENERIC_5;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 36
public static final int AXIS_GENERIC_6;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 37
public static final int AXIS_GENERIC_7;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 38
public static final int AXIS_GENERIC_8;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 39
public static final int AXIS_GENERIC_9;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 40
public static final int AXIS_GENERIC_10;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 41
public static final int AXIS_GENERIC_11;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 42
public static final int AXIS_GENERIC_12;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 43
public static final int AXIS_GENERIC_13;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 44
public static final int AXIS_GENERIC_14;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 45
public static final int AXIS_GENERIC_15;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 46
public static final int AXIS_GENERIC_16;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 47
public static final int BUTTON_PRIMARY;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 1
public static final int BUTTON_SECONDARY;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 2
public static final int BUTTON_TERTIARY;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 4
public static final int BUTTON_BACK;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 8
public static final int BUTTON_FORWARD;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 16
public static final int TOOL_TYPE_UNKNOWN;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 0
public static final int TOOL_TYPE_FINGER;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 1
public static final int TOOL_TYPE_STYLUS;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 2
public static final int TOOL_TYPE_MOUSE;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 3
public static final int TOOL_TYPE_ERASER;
Signature: I
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
ConstantValue: int 4
public static final android.os.Parcelable$Creator<android.view.MotionEvent> CREATOR;
Signature: Landroid/os/Parcelable$Creator;
flags: ACC_PUBLIC, ACC_STATIC, ACC_FINAL
Signature: #153 // Landroid/os/Parcelable$Creator<Landroid/view/MotionEvent;>;
android.view.MotionEvent();
Signature: ()V
flags:
Code:
stack=3, locals=1, args_size=1
0: aload_0
1: invokespecial #1 // Method android/view/InputEvent."<init>":()V
4: new #2 // class java/lang/RuntimeException
7: dup
8: ldc #3 // String Stub!
10: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
13: athrow
LineNumberTable:
line 35: 0
LocalVariableTable:
Start Length Slot Name Signature
0 14 0 this Landroid/view/MotionEvent;
protected void finalize() throws java.lang.Throwable;
Signature: ()V
flags: ACC_PROTECTED
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 36: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
Exceptions:
throws java.lang.Throwable
public static android.view.MotionEvent obtain(long, long, int, int, android.view.MotionEvent$PointerProperties[], android.view.MotionEvent$PointerCoords[], int, int, float, float, int, int, int, int);
Signature: (JJII[Landroid/view/MotionEvent$PointerProperties;[Landroid/view/MotionEvent$PointerCoords;IIFFIIII)Landroid/view/MotionEvent;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=16, args_size=14
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 37: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 downTime J
0 10 2 eventTime J
0 10 4 action I
0 10 5 pointerCount I
0 10 6 pointerProperties [Landroid/view/MotionEvent$PointerProperties;
0 10 7 pointerCoords [Landroid/view/MotionEvent$PointerCoords;
0 10 8 metaState I
0 10 9 buttonState I
0 10 10 xPrecision F
0 10 11 yPrecision F
0 10 12 deviceId I
0 10 13 edgeFlags I
0 10 14 source I
0 10 15 flags I
public static android.view.MotionEvent obtain(long, long, int, int, int[], android.view.MotionEvent$PointerCoords[], int, float, float, int, int, int, int);
Signature: (JJII[I[Landroid/view/MotionEvent$PointerCoords;IFFIIII)Landroid/view/MotionEvent;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=15, args_size=13
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 39: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 downTime J
0 10 2 eventTime J
0 10 4 action I
0 10 5 pointerCount I
0 10 6 pointerIds [I
0 10 7 pointerCoords [Landroid/view/MotionEvent$PointerCoords;
0 10 8 metaState I
0 10 9 xPrecision F
0 10 10 yPrecision F
0 10 11 deviceId I
0 10 12 edgeFlags I
0 10 13 source I
0 10 14 flags I
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static android.view.MotionEvent obtain(long, long, int, float, float, float, float, int, float, float, int, int);
Signature: (JJIFFFFIFFII)Landroid/view/MotionEvent;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=14, args_size=12
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 40: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 downTime J
0 10 2 eventTime J
0 10 4 action I
0 10 5 x F
0 10 6 y F
0 10 7 pressure F
0 10 8 size F
0 10 9 metaState I
0 10 10 xPrecision F
0 10 11 yPrecision F
0 10 12 deviceId I
0 10 13 edgeFlags I
public static android.view.MotionEvent obtain(long, long, int, int, float, float, float, float, int, float, float, int, int);
Signature: (JJIIFFFFIFFII)Landroid/view/MotionEvent;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=15, args_size=13
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 42: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 downTime J
0 10 2 eventTime J
0 10 4 action I
0 10 5 pointerCount I
0 10 6 x F
0 10 7 y F
0 10 8 pressure F
0 10 9 size F
0 10 10 metaState I
0 10 11 xPrecision F
0 10 12 yPrecision F
0 10 13 deviceId I
0 10 14 edgeFlags I
Deprecated: true
RuntimeVisibleAnnotations:
0: #48()
public static android.view.MotionEvent obtain(long, long, int, float, float, int);
Signature: (JJIFFI)Landroid/view/MotionEvent;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=8, args_size=6
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 43: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 downTime J
0 10 2 eventTime J
0 10 4 action I
0 10 5 x F
0 10 6 y F
0 10 7 metaState I
public static android.view.MotionEvent obtain(android.view.MotionEvent);
Signature: (Landroid/view/MotionEvent;)Landroid/view/MotionEvent;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 44: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 other Landroid/view/MotionEvent;
public static android.view.MotionEvent obtainNoHistory(android.view.MotionEvent);
Signature: (Landroid/view/MotionEvent;)Landroid/view/MotionEvent;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 45: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 other Landroid/view/MotionEvent;
public final void recycle();
Signature: ()V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 46: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getDeviceId();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 47: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getSource();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 48: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final void setSource(int);
Signature: (I)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 49: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 source I
public final int getAction();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 50: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getActionMasked();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 51: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getActionIndex();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 52: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getFlags();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 53: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final long getDownTime();
Signature: ()J
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 54: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final long getEventTime();
Signature: ()J
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 55: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getX();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 56: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getY();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 57: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getPressure();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 58: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getSize();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 59: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getTouchMajor();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 60: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getTouchMinor();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 61: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getToolMajor();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 62: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getToolMinor();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 63: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getOrientation();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 64: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getAxisValue(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 65: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 axis I
public final int getPointerCount();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 66: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getPointerId(int);
Signature: (I)I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 67: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final int getToolType(int);
Signature: (I)I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 68: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final int findPointerIndex(int);
Signature: (I)I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 69: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerId I
public final float getX(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 70: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getY(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 71: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getPressure(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 72: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getSize(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 73: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getTouchMajor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 74: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getTouchMinor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 75: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getToolMajor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 76: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getToolMinor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 77: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getOrientation(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 78: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
public final float getAxisValue(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 79: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 axis I
0 10 2 pointerIndex I
public final void getPointerCoords(int, android.view.MotionEvent$PointerCoords);
Signature: (ILandroid/view/MotionEvent$PointerCoords;)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 80: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 outPointerCoords Landroid/view/MotionEvent$PointerCoords;
public final void getPointerProperties(int, android.view.MotionEvent$PointerProperties);
Signature: (ILandroid/view/MotionEvent$PointerProperties;)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 81: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 outPointerProperties Landroid/view/MotionEvent$PointerProperties;
public final int getMetaState();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 82: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getButtonState();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 83: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getRawX();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 84: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getRawY();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 85: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getXPrecision();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 86: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final float getYPrecision();
Signature: ()F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 87: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final int getHistorySize();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 88: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final long getHistoricalEventTime(int);
Signature: (I)J
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 89: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalX(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 90: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalY(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 91: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalPressure(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 92: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalSize(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 93: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalTouchMajor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 94: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalTouchMinor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 95: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalToolMajor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 96: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalToolMinor(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 97: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalOrientation(int);
Signature: (I)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 98: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pos I
public final float getHistoricalAxisValue(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 99: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 axis I
0 10 2 pos I
public final float getHistoricalX(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 100: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalY(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 101: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalPressure(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 102: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalSize(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 103: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalTouchMajor(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 104: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalTouchMinor(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 105: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalToolMajor(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 106: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalToolMinor(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 107: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalOrientation(int, int);
Signature: (II)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 108: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
public final float getHistoricalAxisValue(int, int, int);
Signature: (III)F
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=4, args_size=4
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 109: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 axis I
0 10 2 pointerIndex I
0 10 3 pos I
public final void getHistoricalPointerCoords(int, int, android.view.MotionEvent$PointerCoords);
Signature: (IILandroid/view/MotionEvent$PointerCoords;)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=4, args_size=4
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 110: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 pointerIndex I
0 10 2 pos I
0 10 3 outPointerCoords Landroid/view/MotionEvent$PointerCoords;
public final int getEdgeFlags();
Signature: ()I
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 111: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public final void setEdgeFlags(int);
Signature: (I)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 112: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 flags I
public final void setAction(int);
Signature: (I)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 113: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 action I
public final void offsetLocation(float, float);
Signature: (FF)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 114: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 deltaX F
0 10 2 deltaY F
public final void setLocation(float, float);
Signature: (FF)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 115: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 x F
0 10 2 y F
public final void transform(android.graphics.Matrix);
Signature: (Landroid/graphics/Matrix;)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=2, args_size=2
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 116: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 matrix Landroid/graphics/Matrix;
public final void addBatch(long, float, float, float, float, int);
Signature: (JFFFFI)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=8, args_size=7
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 117: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 eventTime J
0 10 3 x F
0 10 4 y F
0 10 5 pressure F
0 10 6 size F
0 10 7 metaState I
public final void addBatch(long, android.view.MotionEvent$PointerCoords[], int);
Signature: (J[Landroid/view/MotionEvent$PointerCoords;I)V
flags: ACC_PUBLIC, ACC_FINAL
Code:
stack=3, locals=5, args_size=4
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 118: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 eventTime J
0 10 3 pointerCoords [Landroid/view/MotionEvent$PointerCoords;
0 10 4 metaState I
public java.lang.String toString();
Signature: ()Ljava/lang/String;
flags: ACC_PUBLIC
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 119: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
public static java.lang.String actionToString(int);
Signature: (I)Ljava/lang/String;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 120: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 action I
public static java.lang.String axisToString(int);
Signature: (I)Ljava/lang/String;
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 121: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 axis I
public static int axisFromString(java.lang.String);
Signature: (Ljava/lang/String;)I
flags: ACC_PUBLIC, ACC_STATIC
Code:
stack=3, locals=1, args_size=1
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 122: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 symbolicName Ljava/lang/String;
public void writeToParcel(android.os.Parcel, int);
Signature: (Landroid/os/Parcel;I)V
flags: ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
0: new #2 // class java/lang/RuntimeException
3: dup
4: ldc #3 // String Stub!
6: invokespecial #4 // Method java/lang/RuntimeException."<init>":(Ljava/lang/String;)V
9: athrow
LineNumberTable:
line 123: 0
LocalVariableTable:
Start Length Slot Name Signature
0 10 0 this Landroid/view/MotionEvent;
0 10 1 out Landroid/os/Parcel;
0 10 2 flags I
static {};
Signature: ()V
flags: ACC_STATIC
Code:
stack=1, locals=0, args_size=0
0: aconst_null
1: putstatic #5 // Field CREATOR:Landroid/os/Parcelable$Creator;
4: return
LineNumberTable:
line 213: 0
}
|