File: testMotionEvent.javap

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

{
public static final int INVALID_POINTER_ID;
  Signature: I
  Constant value: int -1

public static final int ACTION_MASK;
  Signature: I
  Constant value: int 255

public static final int ACTION_DOWN;
  Signature: I
  Constant value: int 0

public static final int ACTION_UP;
  Signature: I
  Constant value: int 1

public static final int ACTION_MOVE;
  Signature: I
  Constant value: int 2

public static final int ACTION_CANCEL;
  Signature: I
  Constant value: int 3

public static final int ACTION_OUTSIDE;
  Signature: I
  Constant value: int 4

public static final int ACTION_POINTER_DOWN;
  Signature: I
  Constant value: int 5

public static final int ACTION_POINTER_UP;
  Signature: I
  Constant value: int 6

public static final int ACTION_HOVER_MOVE;
  Signature: I
  Constant value: int 7

public static final int ACTION_SCROLL;
  Signature: I
  Constant value: int 8

public static final int ACTION_HOVER_ENTER;
  Signature: I
  Constant value: int 9

public static final int ACTION_HOVER_EXIT;
  Signature: I
  Constant value: int 10

public static final int ACTION_POINTER_INDEX_MASK;
  Signature: I
  Constant value: int 65280

public static final int ACTION_POINTER_INDEX_SHIFT;
  Signature: I
  Constant value: int 8

public static final int ACTION_POINTER_1_DOWN;
  Signature: I
  Constant value: int 5Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int ACTION_POINTER_2_DOWN;
  Signature: I
  Constant value: int 261Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int ACTION_POINTER_3_DOWN;
  Signature: I
  Constant value: int 517Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int ACTION_POINTER_1_UP;
  Signature: I
  Constant value: int 6Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int ACTION_POINTER_2_UP;
  Signature: I
  Constant value: int 262Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int ACTION_POINTER_3_UP;
  Signature: I
  Constant value: int 518Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int ACTION_POINTER_ID_MASK;
  Signature: I
  Constant value: int 65280Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int ACTION_POINTER_ID_SHIFT;
  Signature: I
  Constant value: int 8Deprecated: true
  RuntimeVisibleAnnotations: length = 0x6
   00 01 00 30 00 00


public static final int FLAG_WINDOW_IS_OBSCURED;
  Signature: I
  Constant value: int 1

public static final int EDGE_TOP;
  Signature: I
  Constant value: int 1

public static final int EDGE_BOTTOM;
  Signature: I
  Constant value: int 2

public static final int EDGE_LEFT;
  Signature: I
  Constant value: int 4

public static final int EDGE_RIGHT;
  Signature: I
  Constant value: int 8

public static final int AXIS_X;
  Signature: I
  Constant value: int 0

public static final int AXIS_Y;
  Signature: I
  Constant value: int 1

public static final int AXIS_PRESSURE;
  Signature: I
  Constant value: int 2

public static final int AXIS_SIZE;
  Signature: I
  Constant value: int 3

public static final int AXIS_TOUCH_MAJOR;
  Signature: I
  Constant value: int 4

public static final int AXIS_TOUCH_MINOR;
  Signature: I
  Constant value: int 5

public static final int AXIS_TOOL_MAJOR;
  Signature: I
  Constant value: int 6

public static final int AXIS_TOOL_MINOR;
  Signature: I
  Constant value: int 7

public static final int AXIS_ORIENTATION;
  Signature: I
  Constant value: int 8

public static final int AXIS_VSCROLL;
  Signature: I
  Constant value: int 9

public static final int AXIS_HSCROLL;
  Signature: I
  Constant value: int 10

public static final int AXIS_Z;
  Signature: I
  Constant value: int 11

public static final int AXIS_RX;
  Signature: I
  Constant value: int 12

public static final int AXIS_RY;
  Signature: I
  Constant value: int 13

public static final int AXIS_RZ;
  Signature: I
  Constant value: int 14

public static final int AXIS_HAT_X;
  Signature: I
  Constant value: int 15

public static final int AXIS_HAT_Y;
  Signature: I
  Constant value: int 16

public static final int AXIS_LTRIGGER;
  Signature: I
  Constant value: int 17

public static final int AXIS_RTRIGGER;
  Signature: I
  Constant value: int 18

public static final int AXIS_THROTTLE;
  Signature: I
  Constant value: int 19

public static final int AXIS_RUDDER;
  Signature: I
  Constant value: int 20

public static final int AXIS_WHEEL;
  Signature: I
  Constant value: int 21

public static final int AXIS_GAS;
  Signature: I
  Constant value: int 22

public static final int AXIS_BRAKE;
  Signature: I
  Constant value: int 23

public static final int AXIS_DISTANCE;
  Signature: I
  Constant value: int 24

public static final int AXIS_TILT;
  Signature: I
  Constant value: int 25

public static final int AXIS_GENERIC_1;
  Signature: I
  Constant value: int 32

public static final int AXIS_GENERIC_2;
  Signature: I
  Constant value: int 33

public static final int AXIS_GENERIC_3;
  Signature: I
  Constant value: int 34

public static final int AXIS_GENERIC_4;
  Signature: I
  Constant value: int 35

public static final int AXIS_GENERIC_5;
  Signature: I
  Constant value: int 36

public static final int AXIS_GENERIC_6;
  Signature: I
  Constant value: int 37

public static final int AXIS_GENERIC_7;
  Signature: I
  Constant value: int 38

public static final int AXIS_GENERIC_8;
  Signature: I
  Constant value: int 39

public static final int AXIS_GENERIC_9;
  Signature: I
  Constant value: int 40

public static final int AXIS_GENERIC_10;
  Signature: I
  Constant value: int 41

public static final int AXIS_GENERIC_11;
  Signature: I
  Constant value: int 42

public static final int AXIS_GENERIC_12;
  Signature: I
  Constant value: int 43

public static final int AXIS_GENERIC_13;
  Signature: I
  Constant value: int 44

public static final int AXIS_GENERIC_14;
  Signature: I
  Constant value: int 45

public static final int AXIS_GENERIC_15;
  Signature: I
  Constant value: int 46

public static final int AXIS_GENERIC_16;
  Signature: I
  Constant value: int 47

public static final int BUTTON_PRIMARY;
  Signature: I
  Constant value: int 1

public static final int BUTTON_SECONDARY;
  Signature: I
  Constant value: int 2

public static final int BUTTON_TERTIARY;
  Signature: I
  Constant value: int 4

public static final int BUTTON_BACK;
  Signature: I
  Constant value: int 8

public static final int BUTTON_FORWARD;
  Signature: I
  Constant value: int 16

public static final int TOOL_TYPE_UNKNOWN;
  Signature: I
  Constant value: int 0

public static final int TOOL_TYPE_FINGER;
  Signature: I
  Constant value: int 1

public static final int TOOL_TYPE_STYLUS;
  Signature: I
  Constant value: int 2

public static final int TOOL_TYPE_MOUSE;
  Signature: I
  Constant value: int 3

public static final int TOOL_TYPE_ERASER;
  Signature: I
  Constant value: int 4

public static final android.os.Parcelable$Creator CREATOR;
  Signature: Landroid/os/Parcelable$Creator;
  Signature: length = 0x2
   00 FFFFFF99


android.view.MotionEvent();
  Signature: ()V
  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
  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;
  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;
  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: length = 0x6
   00 01 00 30 00 00

public static android.view.MotionEvent obtain(long, long, int, float, float, float, float, int, float, float, int, int);
  Signature: (JJIFFFFIFFII)Landroid/view/MotionEvent;
  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;
  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: length = 0x6
   00 01 00 30 00 00

public static android.view.MotionEvent obtain(long, long, int, float, float, int);
  Signature: (JJIFFI)Landroid/view/MotionEvent;
  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;
  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;
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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
  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;
  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;
  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;
  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
  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
  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
  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


}