public class android.view.GestureDetector
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.view.GestureDetector
  super_class: java.lang.Object
{
  private int mTouchSlopSquare;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mDoubleTapTouchSlopSquare;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mDoubleTapSlopSquare;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mMinimumFlingVelocity;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mMaximumFlingVelocity;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private static final int LONGPRESS_TIMEOUT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int TAP_TIMEOUT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int DOUBLE_TAP_TIMEOUT;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int DOUBLE_TAP_MIN_TIME;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int SHOW_PRESS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int LONG_PRESS;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final int TAP;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private final android.os.Handler mHandler;
    descriptor: Landroid/os/Handler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final android.view.GestureDetector$OnGestureListener mListener;
    descriptor: Landroid/view/GestureDetector$OnGestureListener;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private android.view.GestureDetector$OnDoubleTapListener mDoubleTapListener;
    descriptor: Landroid/view/GestureDetector$OnDoubleTapListener;
    flags: (0x0002) ACC_PRIVATE

  private android.view.GestureDetector$OnContextClickListener mContextClickListener;
    descriptor: Landroid/view/GestureDetector$OnContextClickListener;
    flags: (0x0002) ACC_PRIVATE

  private boolean mStillDown;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mDeferConfirmSingleTap;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mInLongPress;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mInContextClick;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mAlwaysInTapRegion;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mAlwaysInBiggerTapRegion;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mIgnoreNextUpEvent;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private android.view.MotionEvent mCurrentDownEvent;
    descriptor: Landroid/view/MotionEvent;
    flags: (0x0002) ACC_PRIVATE

  private android.view.MotionEvent mPreviousUpEvent;
    descriptor: Landroid/view/MotionEvent;
    flags: (0x0002) ACC_PRIVATE

  private boolean mIsDoubleTapping;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private float mLastFocusX;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float mLastFocusY;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float mDownFocusX;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private float mDownFocusY;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private boolean mIsLongpressEnabled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private android.view.VelocityTracker mVelocityTracker;
    descriptor: Landroid/view/VelocityTracker;
    flags: (0x0002) ACC_PRIVATE

  private final android.view.InputEventConsistencyVerifier mInputEventConsistencyVerifier;
    descriptor: Landroid/view/InputEventConsistencyVerifier;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 225
            invokestatic android.view.ViewConfiguration.getLongPressTimeout:()I
            putstatic android.view.GestureDetector.LONGPRESS_TIMEOUT:I
         1: .line 226
            invokestatic android.view.ViewConfiguration.getTapTimeout:()I
            putstatic android.view.GestureDetector.TAP_TIMEOUT:I
         2: .line 227
            invokestatic android.view.ViewConfiguration.getDoubleTapTimeout:()I
            putstatic android.view.GestureDetector.DOUBLE_TAP_TIMEOUT:I
         3: .line 228
            invokestatic android.view.ViewConfiguration.getDoubleTapMinTime:()I
            putstatic android.view.GestureDetector.DOUBLE_TAP_MIN_TIME:I
         4: .line 233
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(android.view.GestureDetector$OnGestureListener, android.os.Handler);
    descriptor: (Landroid/view/GestureDetector$OnGestureListener;Landroid/os/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.view.GestureDetector this
        start local 1 // android.view.GestureDetector$OnGestureListener listener
        start local 2 // android.os.Handler handler
         0: .line 330
            aload 0 /* this */
            aconst_null
            aload 1 /* listener */
            aload 2 /* handler */
            invokespecial android.view.GestureDetector.<init>:(Landroid/content/Context;Landroid/view/GestureDetector$OnGestureListener;Landroid/os/Handler;)V
         1: .line 331
            return
        end local 2 // android.os.Handler handler
        end local 1 // android.view.GestureDetector$OnGestureListener listener
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/view/GestureDetector;
            0    2     1  listener  Landroid/view/GestureDetector$OnGestureListener;
            0    2     2   handler  Landroid/os/Handler;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
          Name  Flags
      listener  
      handler   

  public void <init>(android.view.GestureDetector$OnGestureListener);
    descriptor: (Landroid/view/GestureDetector$OnGestureListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // android.view.GestureDetector this
        start local 1 // android.view.GestureDetector$OnGestureListener listener
         0: .line 348
            aload 0 /* this */
            aconst_null
            aload 1 /* listener */
            aconst_null
            invokespecial android.view.GestureDetector.<init>:(Landroid/content/Context;Landroid/view/GestureDetector$OnGestureListener;Landroid/os/Handler;)V
         1: .line 349
            return
        end local 1 // android.view.GestureDetector$OnGestureListener listener
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/view/GestureDetector;
            0    2     1  listener  Landroid/view/GestureDetector$OnGestureListener;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()
    MethodParameters:
          Name  Flags
      listener  

  public void <init>(android.content.Context, android.view.GestureDetector$OnGestureListener);
    descriptor: (Landroid/content/Context;Landroid/view/GestureDetector$OnGestureListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.view.GestureDetector this
        start local 1 // android.content.Context context
        start local 2 // android.view.GestureDetector$OnGestureListener listener
         0: .line 363
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* listener */
            aconst_null
            invokespecial android.view.GestureDetector.<init>:(Landroid/content/Context;Landroid/view/GestureDetector$OnGestureListener;Landroid/os/Handler;)V
         1: .line 364
            return
        end local 2 // android.view.GestureDetector$OnGestureListener listener
        end local 1 // android.content.Context context
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/view/GestureDetector;
            0    2     1   context  Landroid/content/Context;
            0    2     2  listener  Landroid/view/GestureDetector$OnGestureListener;
    MethodParameters:
          Name  Flags
      context   
      listener  

  public void <init>(android.content.Context, android.view.GestureDetector$OnGestureListener, android.os.Handler);
    descriptor: (Landroid/content/Context;Landroid/view/GestureDetector$OnGestureListener;Landroid/os/Handler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // android.view.GestureDetector this
        start local 1 // android.content.Context context
        start local 2 // android.view.GestureDetector$OnGestureListener listener
        start local 3 // android.os.Handler handler
         0: .line 378
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 272
            aload 0 /* this */
         2: .line 273
            invokestatic android.view.InputEventConsistencyVerifier.isInstrumentationEnabled:()Z
            ifeq 4
         3: .line 274
            new android.view.InputEventConsistencyVerifier
            dup
            aload 0 /* this */
            iconst_0
            invokespecial android.view.InputEventConsistencyVerifier.<init>:(Ljava/lang/Object;I)V
            goto 5
      StackMap locals: android.view.GestureDetector android.content.Context android.view.GestureDetector$OnGestureListener android.os.Handler
      StackMap stack: android.view.GestureDetector
         4: aconst_null
      StackMap locals: android.view.GestureDetector android.content.Context android.view.GestureDetector$OnGestureListener android.os.Handler
      StackMap stack: android.view.GestureDetector android.view.InputEventConsistencyVerifier
         5: putfield android.view.GestureDetector.mInputEventConsistencyVerifier:Landroid/view/InputEventConsistencyVerifier;
         6: .line 379
            aload 3 /* handler */
            ifnull 9
         7: .line 380
            aload 0 /* this */
            new android.view.GestureDetector$GestureHandler
            dup
            aload 0 /* this */
            aload 3 /* handler */
            invokespecial android.view.GestureDetector$GestureHandler.<init>:(Landroid/view/GestureDetector;Landroid/os/Handler;)V
            putfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
         8: .line 381
            goto 10
         9: .line 382
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new android.view.GestureDetector$GestureHandler
            dup
            aload 0 /* this */
            invokespecial android.view.GestureDetector$GestureHandler.<init>:(Landroid/view/GestureDetector;)V
            putfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
        10: .line 384
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* listener */
            putfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
        11: .line 385
            aload 2 /* listener */
            instanceof android.view.GestureDetector$OnDoubleTapListener
            ifeq 13
        12: .line 386
            aload 0 /* this */
            aload 2 /* listener */
            checkcast android.view.GestureDetector$OnDoubleTapListener
            invokevirtual android.view.GestureDetector.setOnDoubleTapListener:(Landroid/view/GestureDetector$OnDoubleTapListener;)V
        13: .line 388
      StackMap locals:
      StackMap stack:
            aload 2 /* listener */
            instanceof android.view.GestureDetector$OnContextClickListener
            ifeq 15
        14: .line 389
            aload 0 /* this */
            aload 2 /* listener */
            checkcast android.view.GestureDetector$OnContextClickListener
            invokevirtual android.view.GestureDetector.setContextClickListener:(Landroid/view/GestureDetector$OnContextClickListener;)V
        15: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual android.view.GestureDetector.init:(Landroid/content/Context;)V
        16: .line 392
            return
        end local 3 // android.os.Handler handler
        end local 2 // android.view.GestureDetector$OnGestureListener listener
        end local 1 // android.content.Context context
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Landroid/view/GestureDetector;
            0   17     1   context  Landroid/content/Context;
            0   17     2  listener  Landroid/view/GestureDetector$OnGestureListener;
            0   17     3   handler  Landroid/os/Handler;
    MethodParameters:
          Name  Flags
      context   
      listener  
      handler   

  public void <init>(android.content.Context, android.view.GestureDetector$OnGestureListener, android.os.Handler, boolean);
    descriptor: (Landroid/content/Context;Landroid/view/GestureDetector$OnGestureListener;Landroid/os/Handler;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // android.view.GestureDetector this
        start local 1 // android.content.Context context
        start local 2 // android.view.GestureDetector$OnGestureListener listener
        start local 3 // android.os.Handler handler
        start local 4 // boolean unused
         0: .line 409
            aload 0 /* this */
            aload 1 /* context */
            aload 2 /* listener */
            aload 3 /* handler */
            invokespecial android.view.GestureDetector.<init>:(Landroid/content/Context;Landroid/view/GestureDetector$OnGestureListener;Landroid/os/Handler;)V
         1: .line 410
            return
        end local 4 // boolean unused
        end local 3 // android.os.Handler handler
        end local 2 // android.view.GestureDetector$OnGestureListener listener
        end local 1 // android.content.Context context
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/view/GestureDetector;
            0    2     1   context  Landroid/content/Context;
            0    2     2  listener  Landroid/view/GestureDetector$OnGestureListener;
            0    2     3   handler  Landroid/os/Handler;
            0    2     4    unused  Z
    MethodParameters:
          Name  Flags
      context   
      listener  
      handler   
      unused    

  private void init(android.content.Context);
    descriptor: (Landroid/content/Context;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // android.view.GestureDetector this
        start local 1 // android.content.Context context
         0: .line 413
            aload 0 /* this */
            getfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
            ifnonnull 2
         1: .line 414
            new java.lang.NullPointerException
            dup
            ldc "OnGestureListener must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 416
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mIsLongpressEnabled:Z
         3: .line 420
            aload 1 /* context */
            ifnonnull 10
         4: .line 422
            invokestatic android.view.ViewConfiguration.getTouchSlop:()I
            istore 2 /* touchSlop */
        start local 2 // int touchSlop
         5: .line 423
            iload 2 /* touchSlop */
            istore 4 /* doubleTapTouchSlop */
        start local 4 // int doubleTapTouchSlop
         6: .line 424
            invokestatic android.view.ViewConfiguration.getDoubleTapSlop:()I
            istore 3 /* doubleTapSlop */
        start local 3 // int doubleTapSlop
         7: .line 426
            aload 0 /* this */
            invokestatic android.view.ViewConfiguration.getMinimumFlingVelocity:()I
            putfield android.view.GestureDetector.mMinimumFlingVelocity:I
         8: .line 427
            aload 0 /* this */
            invokestatic android.view.ViewConfiguration.getMaximumFlingVelocity:()I
            putfield android.view.GestureDetector.mMaximumFlingVelocity:I
         9: .line 428
            goto 16
        end local 4 // int doubleTapTouchSlop
        end local 3 // int doubleTapSlop
        end local 2 // int touchSlop
        10: .line 429
      StackMap locals:
      StackMap stack:
            aload 1 /* context */
            invokestatic android.view.ViewConfiguration.get:(Landroid/content/Context;)Landroid/view/ViewConfiguration;
            astore 5 /* configuration */
        start local 5 // android.view.ViewConfiguration configuration
        11: .line 430
            aload 5 /* configuration */
            invokevirtual android.view.ViewConfiguration.getScaledTouchSlop:()I
            istore 2 /* touchSlop */
        start local 2 // int touchSlop
        12: .line 431
            aload 5 /* configuration */
            invokevirtual android.view.ViewConfiguration.getScaledDoubleTapTouchSlop:()I
            istore 4 /* doubleTapTouchSlop */
        start local 4 // int doubleTapTouchSlop
        13: .line 432
            aload 5 /* configuration */
            invokevirtual android.view.ViewConfiguration.getScaledDoubleTapSlop:()I
            istore 3 /* doubleTapSlop */
        start local 3 // int doubleTapSlop
        14: .line 433
            aload 0 /* this */
            aload 5 /* configuration */
            invokevirtual android.view.ViewConfiguration.getScaledMinimumFlingVelocity:()I
            putfield android.view.GestureDetector.mMinimumFlingVelocity:I
        15: .line 434
            aload 0 /* this */
            aload 5 /* configuration */
            invokevirtual android.view.ViewConfiguration.getScaledMaximumFlingVelocity:()I
            putfield android.view.GestureDetector.mMaximumFlingVelocity:I
        end local 5 // android.view.ViewConfiguration configuration
        16: .line 436
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* touchSlop */
            iload 2 /* touchSlop */
            imul
            putfield android.view.GestureDetector.mTouchSlopSquare:I
        17: .line 437
            aload 0 /* this */
            iload 4 /* doubleTapTouchSlop */
            iload 4 /* doubleTapTouchSlop */
            imul
            putfield android.view.GestureDetector.mDoubleTapTouchSlopSquare:I
        18: .line 438
            aload 0 /* this */
            iload 3 /* doubleTapSlop */
            iload 3 /* doubleTapSlop */
            imul
            putfield android.view.GestureDetector.mDoubleTapSlopSquare:I
        19: .line 439
            return
        end local 4 // int doubleTapTouchSlop
        end local 3 // int doubleTapSlop
        end local 2 // int touchSlop
        end local 1 // android.content.Context context
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   20     0                this  Landroid/view/GestureDetector;
            0   20     1             context  Landroid/content/Context;
            5   10     2           touchSlop  I
           12   20     2           touchSlop  I
            7   10     3       doubleTapSlop  I
           14   20     3       doubleTapSlop  I
            6   10     4  doubleTapTouchSlop  I
           13   20     4  doubleTapTouchSlop  I
           11   16     5       configuration  Landroid/view/ViewConfiguration;
    MethodParameters:
         Name  Flags
      context  

  public void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener);
    descriptor: (Landroid/view/GestureDetector$OnDoubleTapListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.view.GestureDetector this
        start local 1 // android.view.GestureDetector$OnDoubleTapListener onDoubleTapListener
         0: .line 449
            aload 0 /* this */
            aload 1 /* onDoubleTapListener */
            putfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
         1: .line 450
            return
        end local 1 // android.view.GestureDetector$OnDoubleTapListener onDoubleTapListener
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    2     0                 this  Landroid/view/GestureDetector;
            0    2     1  onDoubleTapListener  Landroid/view/GestureDetector$OnDoubleTapListener;
    MethodParameters:
                     Name  Flags
      onDoubleTapListener  

  public void setContextClickListener(android.view.GestureDetector$OnContextClickListener);
    descriptor: (Landroid/view/GestureDetector$OnContextClickListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.view.GestureDetector this
        start local 1 // android.view.GestureDetector$OnContextClickListener onContextClickListener
         0: .line 459
            aload 0 /* this */
            aload 1 /* onContextClickListener */
            putfield android.view.GestureDetector.mContextClickListener:Landroid/view/GestureDetector$OnContextClickListener;
         1: .line 460
            return
        end local 1 // android.view.GestureDetector$OnContextClickListener onContextClickListener
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    2     0                    this  Landroid/view/GestureDetector;
            0    2     1  onContextClickListener  Landroid/view/GestureDetector$OnContextClickListener;
    MethodParameters:
                        Name  Flags
      onContextClickListener  

  public void setIsLongpressEnabled(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.view.GestureDetector this
        start local 1 // boolean isLongpressEnabled
         0: .line 472
            aload 0 /* this */
            iload 1 /* isLongpressEnabled */
            putfield android.view.GestureDetector.mIsLongpressEnabled:Z
         1: .line 473
            return
        end local 1 // boolean isLongpressEnabled
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Landroid/view/GestureDetector;
            0    2     1  isLongpressEnabled  Z
    MethodParameters:
                    Name  Flags
      isLongpressEnabled  

  public boolean isLongpressEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.view.GestureDetector this
         0: .line 479
            aload 0 /* this */
            getfield android.view.GestureDetector.mIsLongpressEnabled:Z
            ireturn
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/GestureDetector;

  public boolean onTouchEvent(android.view.MotionEvent);
    descriptor: (Landroid/view/MotionEvent;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=24, args_size=2
        start local 0 // android.view.GestureDetector this
        start local 1 // android.view.MotionEvent ev
         0: .line 491
            aload 0 /* this */
            getfield android.view.GestureDetector.mInputEventConsistencyVerifier:Landroid/view/InputEventConsistencyVerifier;
            ifnull 2
         1: .line 492
            aload 0 /* this */
            getfield android.view.GestureDetector.mInputEventConsistencyVerifier:Landroid/view/InputEventConsistencyVerifier;
            aload 1 /* ev */
            iconst_0
            invokevirtual android.view.InputEventConsistencyVerifier.onTouchEvent:(Landroid/view/MotionEvent;I)V
         2: .line 495
      StackMap locals:
      StackMap stack:
            aload 1 /* ev */
            invokevirtual android.view.MotionEvent.getAction:()I
            istore 2 /* action */
        start local 2 // int action
         3: .line 497
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            ifnonnull 5
         4: .line 498
            aload 0 /* this */
            invokestatic android.view.VelocityTracker.obtain:()Landroid/view/VelocityTracker;
            putfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
         5: .line 500
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            aload 1 /* ev */
            invokevirtual android.view.VelocityTracker.addMovement:(Landroid/view/MotionEvent;)V
         6: .line 503
            iload 2 /* action */
            sipush 255
            iand
            bipush 6
            if_icmpne 7
            iconst_1
            goto 8
      StackMap locals:
      StackMap stack:
         7: iconst_0
         8: .line 502
      StackMap locals:
      StackMap stack: int
            istore 3 /* pointerUp */
        start local 3 // boolean pointerUp
         9: .line 504
            iload 3 /* pointerUp */
            ifeq 10
            aload 1 /* ev */
            invokevirtual android.view.MotionEvent.getActionIndex:()I
            goto 11
      StackMap locals: int
      StackMap stack:
        10: iconst_m1
      StackMap locals:
      StackMap stack: int
        11: istore 4 /* skipIndex */
        start local 4 // int skipIndex
        12: .line 506
            aload 1 /* ev */
            invokevirtual android.view.MotionEvent.getFlags:()I
            bipush 8
            iand
            ifeq 13
            iconst_1
            goto 14
      StackMap locals: int
      StackMap stack:
        13: iconst_0
        14: .line 505
      StackMap locals:
      StackMap stack: int
            istore 5 /* isGeneratedGesture */
        start local 5 // boolean isGeneratedGesture
        15: .line 509
            fconst_0
            fstore 6 /* sumX */
        start local 6 // float sumX
        16: fconst_0
            fstore 7 /* sumY */
        start local 7 // float sumY
        17: .line 510
            aload 1 /* ev */
            invokevirtual android.view.MotionEvent.getPointerCount:()I
            istore 8 /* count */
        start local 8 // int count
        18: .line 511
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        19: goto 24
        20: .line 512
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int
      StackMap stack:
            iload 4 /* skipIndex */
            iload 9 /* i */
            if_icmpne 21
            goto 23
        21: .line 513
      StackMap locals:
      StackMap stack:
            fload 6 /* sumX */
            aload 1 /* ev */
            iload 9 /* i */
            invokevirtual android.view.MotionEvent.getX:(I)F
            fadd
            fstore 6 /* sumX */
        22: .line 514
            fload 7 /* sumY */
            aload 1 /* ev */
            iload 9 /* i */
            invokevirtual android.view.MotionEvent.getY:(I)F
            fadd
            fstore 7 /* sumY */
        23: .line 511
      StackMap locals:
      StackMap stack:
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 9 /* i */
            iload 8 /* count */
            if_icmplt 20
        end local 9 // int i
        25: .line 516
            iload 3 /* pointerUp */
            ifeq 26
            iload 8 /* count */
            iconst_1
            isub
            goto 27
      StackMap locals:
      StackMap stack:
        26: iload 8 /* count */
      StackMap locals:
      StackMap stack: int
        27: istore 9 /* div */
        start local 9 // int div
        28: .line 517
            fload 6 /* sumX */
            iload 9 /* div */
            i2f
            fdiv
            fstore 10 /* focusX */
        start local 10 // float focusX
        29: .line 518
            fload 7 /* sumY */
            iload 9 /* div */
            i2f
            fdiv
            fstore 11 /* focusY */
        start local 11 // float focusY
        30: .line 520
            iconst_0
            istore 12 /* handled */
        start local 12 // boolean handled
        31: .line 522
            iload 2 /* action */
            sipush 255
            iand
            tableswitch { // 0 - 6
                    0: 56
                    1: 120
                    2: 87
                    3: 155
                    4: 156
                    5: 32
                    6: 36
              default: 156
          }
        32: .line 524
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            fload 10 /* focusX */
            dup_x1
            putfield android.view.GestureDetector.mLastFocusX:F
            putfield android.view.GestureDetector.mDownFocusX:F
        33: .line 525
            aload 0 /* this */
            aload 0 /* this */
            fload 11 /* focusY */
            dup_x1
            putfield android.view.GestureDetector.mLastFocusY:F
            putfield android.view.GestureDetector.mDownFocusY:F
        34: .line 527
            aload 0 /* this */
            invokevirtual android.view.GestureDetector.cancelTaps:()V
        35: .line 528
            goto 156
        36: .line 531
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            fload 10 /* focusX */
            dup_x1
            putfield android.view.GestureDetector.mLastFocusX:F
            putfield android.view.GestureDetector.mDownFocusX:F
        37: .line 532
            aload 0 /* this */
            aload 0 /* this */
            fload 11 /* focusY */
            dup_x1
            putfield android.view.GestureDetector.mLastFocusY:F
            putfield android.view.GestureDetector.mDownFocusY:F
        38: .line 536
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            sipush 1000
            aload 0 /* this */
            getfield android.view.GestureDetector.mMaximumFlingVelocity:I
            i2f
            invokevirtual android.view.VelocityTracker.computeCurrentVelocity:(IF)V
        39: .line 537
            aload 1 /* ev */
            invokevirtual android.view.MotionEvent.getActionIndex:()I
            istore 13 /* upIndex */
        start local 13 // int upIndex
        40: .line 538
            aload 1 /* ev */
            iload 13 /* upIndex */
            invokevirtual android.view.MotionEvent.getPointerId:(I)I
            istore 14 /* id1 */
        start local 14 // int id1
        41: .line 539
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            iload 14 /* id1 */
            invokevirtual android.view.VelocityTracker.getXVelocity:(I)F
            fstore 15 /* x1 */
        start local 15 // float x1
        42: .line 540
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            iload 14 /* id1 */
            invokevirtual android.view.VelocityTracker.getYVelocity:(I)F
            fstore 16 /* y1 */
        start local 16 // float y1
        43: .line 541
            iconst_0
            istore 17 /* i */
        start local 17 // int i
        44: goto 54
        45: .line 542
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int int int float float int
      StackMap stack:
            iload 17 /* i */
            iload 13 /* upIndex */
            if_icmpne 46
            goto 53
        46: .line 544
      StackMap locals:
      StackMap stack:
            aload 1 /* ev */
            iload 17 /* i */
            invokevirtual android.view.MotionEvent.getPointerId:(I)I
            istore 18 /* id2 */
        start local 18 // int id2
        47: .line 545
            fload 15 /* x1 */
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            iload 18 /* id2 */
            invokevirtual android.view.VelocityTracker.getXVelocity:(I)F
            fmul
            fstore 19 /* x */
        start local 19 // float x
        48: .line 546
            fload 16 /* y1 */
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            iload 18 /* id2 */
            invokevirtual android.view.VelocityTracker.getYVelocity:(I)F
            fmul
            fstore 20 /* y */
        start local 20 // float y
        49: .line 548
            fload 19 /* x */
            fload 20 /* y */
            fadd
            fstore 21 /* dot */
        start local 21 // float dot
        50: .line 549
            fload 21 /* dot */
            fconst_0
            fcmpg
            ifge 53
        51: .line 550
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            invokevirtual android.view.VelocityTracker.clear:()V
        52: .line 551
            goto 156
        end local 21 // float dot
        end local 20 // float y
        end local 19 // float x
        end local 18 // int id2
        53: .line 541
      StackMap locals:
      StackMap stack:
            iinc 17 /* i */ 1
      StackMap locals:
      StackMap stack:
        54: iload 17 /* i */
            iload 8 /* count */
            if_icmplt 45
        end local 17 // int i
        55: .line 554
            goto 156
        end local 16 // float y1
        end local 15 // float x1
        end local 14 // int id1
        end local 13 // int upIndex
        56: .line 557
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
            ifnull 67
        57: .line 558
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.hasMessages:(I)Z
            istore 17 /* hadTapMessage */
        start local 17 // boolean hadTapMessage
        58: .line 559
            iload 17 /* hadTapMessage */
            ifeq 59
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.removeMessages:(I)V
        59: .line 560
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int top top top top int
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            ifnull 66
            aload 0 /* this */
            getfield android.view.GestureDetector.mPreviousUpEvent:Landroid/view/MotionEvent;
            ifnull 66
        60: .line 561
            iload 17 /* hadTapMessage */
            ifeq 66
        61: .line 562
            aload 0 /* this */
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            aload 0 /* this */
            getfield android.view.GestureDetector.mPreviousUpEvent:Landroid/view/MotionEvent;
            aload 1 /* ev */
            invokevirtual android.view.GestureDetector.isConsideredDoubleTap:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;Landroid/view/MotionEvent;)Z
            ifeq 66
        62: .line 564
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mIsDoubleTapping:Z
        63: .line 566
            iload 12 /* handled */
            aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            invokeinterface android.view.GestureDetector$OnDoubleTapListener.onDoubleTap:(Landroid/view/MotionEvent;)Z
            ior
            istore 12 /* handled */
        64: .line 568
            iload 12 /* handled */
            aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
            aload 1 /* ev */
            invokeinterface android.view.GestureDetector$OnDoubleTapListener.onDoubleTapEvent:(Landroid/view/MotionEvent;)Z
            ior
            istore 12 /* handled */
        65: .line 569
            goto 67
        66: .line 571
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            getstatic android.view.GestureDetector.DOUBLE_TAP_TIMEOUT:I
            i2l
            invokevirtual android.os.Handler.sendEmptyMessageDelayed:(IJ)Z
            pop
        end local 17 // boolean hadTapMessage
        67: .line 575
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            fload 10 /* focusX */
            dup_x1
            putfield android.view.GestureDetector.mLastFocusX:F
            putfield android.view.GestureDetector.mDownFocusX:F
        68: .line 576
            aload 0 /* this */
            aload 0 /* this */
            fload 11 /* focusY */
            dup_x1
            putfield android.view.GestureDetector.mLastFocusY:F
            putfield android.view.GestureDetector.mDownFocusY:F
        69: .line 577
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            ifnull 71
        70: .line 578
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            invokevirtual android.view.MotionEvent.recycle:()V
        71: .line 580
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* ev */
            invokestatic android.view.MotionEvent.obtain:(Landroid/view/MotionEvent;)Landroid/view/MotionEvent;
            putfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
        72: .line 581
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mAlwaysInTapRegion:Z
        73: .line 582
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mAlwaysInBiggerTapRegion:Z
        74: .line 583
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mStillDown:Z
        75: .line 584
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mInLongPress:Z
        76: .line 585
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mDeferConfirmSingleTap:Z
        77: .line 587
            aload 0 /* this */
            getfield android.view.GestureDetector.mIsLongpressEnabled:Z
            ifeq 82
        78: .line 588
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_2
            invokevirtual android.os.Handler.removeMessages:(I)V
        79: .line 589
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_2
        80: .line 590
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            invokevirtual android.view.MotionEvent.getDownTime:()J
            getstatic android.view.GestureDetector.LONGPRESS_TIMEOUT:I
            i2l
            ladd
        81: .line 589
            invokevirtual android.os.Handler.sendEmptyMessageAtTime:(IJ)Z
            pop
        82: .line 592
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_1
        83: .line 593
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            invokevirtual android.view.MotionEvent.getDownTime:()J
            getstatic android.view.GestureDetector.TAP_TIMEOUT:I
            i2l
            ladd
        84: .line 592
            invokevirtual android.os.Handler.sendEmptyMessageAtTime:(IJ)Z
            pop
        85: .line 594
            iload 12 /* handled */
            aload 0 /* this */
            getfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
            aload 1 /* ev */
            invokeinterface android.view.GestureDetector$OnGestureListener.onDown:(Landroid/view/MotionEvent;)Z
            ior
            istore 12 /* handled */
        86: .line 595
            goto 156
        87: .line 598
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mInLongPress:Z
            ifne 156
            aload 0 /* this */
            getfield android.view.GestureDetector.mInContextClick:Z
            ifeq 89
        88: .line 599
            goto 156
        89: .line 601
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mLastFocusX:F
            fload 10 /* focusX */
            fsub
            fstore 17 /* scrollX */
        start local 17 // float scrollX
        90: .line 602
            aload 0 /* this */
            getfield android.view.GestureDetector.mLastFocusY:F
            fload 11 /* focusY */
            fsub
            fstore 18 /* scrollY */
        start local 18 // float scrollY
        91: .line 603
            aload 0 /* this */
            getfield android.view.GestureDetector.mIsDoubleTapping:Z
            ifeq 94
        92: .line 605
            iload 12 /* handled */
            aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
            aload 1 /* ev */
            invokeinterface android.view.GestureDetector$OnDoubleTapListener.onDoubleTapEvent:(Landroid/view/MotionEvent;)Z
            ior
            istore 12 /* handled */
        93: .line 606
            goto 156
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int top top top top float float
      StackMap stack:
        94: aload 0 /* this */
            getfield android.view.GestureDetector.mAlwaysInTapRegion:Z
            ifeq 115
        95: .line 607
            fload 10 /* focusX */
            aload 0 /* this */
            getfield android.view.GestureDetector.mDownFocusX:F
            fsub
            f2i
            istore 19 /* deltaX */
        start local 19 // int deltaX
        96: .line 608
            fload 11 /* focusY */
            aload 0 /* this */
            getfield android.view.GestureDetector.mDownFocusY:F
            fsub
            f2i
            istore 20 /* deltaY */
        start local 20 // int deltaY
        97: .line 609
            iload 19 /* deltaX */
            iload 19 /* deltaX */
            imul
            iload 20 /* deltaY */
            iload 20 /* deltaY */
            imul
            iadd
            istore 21 /* distance */
        start local 21 // int distance
        98: .line 610
            iload 5 /* isGeneratedGesture */
            ifeq 99
            iconst_0
            goto 100
      StackMap locals: int int int
      StackMap stack:
        99: aload 0 /* this */
            getfield android.view.GestureDetector.mTouchSlopSquare:I
      StackMap locals:
      StackMap stack: int
       100: istore 22 /* slopSquare */
        start local 22 // int slopSquare
       101: .line 611
            iload 21 /* distance */
            iload 22 /* slopSquare */
            if_icmple 109
       102: .line 612
            aload 0 /* this */
            getfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            aload 1 /* ev */
            fload 17 /* scrollX */
            fload 18 /* scrollY */
            invokeinterface android.view.GestureDetector$OnGestureListener.onScroll:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z
            istore 12 /* handled */
       103: .line 613
            aload 0 /* this */
            fload 10 /* focusX */
            putfield android.view.GestureDetector.mLastFocusX:F
       104: .line 614
            aload 0 /* this */
            fload 11 /* focusY */
            putfield android.view.GestureDetector.mLastFocusY:F
       105: .line 615
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mAlwaysInTapRegion:Z
       106: .line 616
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.removeMessages:(I)V
       107: .line 617
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_1
            invokevirtual android.os.Handler.removeMessages:(I)V
       108: .line 618
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_2
            invokevirtual android.os.Handler.removeMessages:(I)V
       109: .line 620
      StackMap locals: int
      StackMap stack:
            iload 5 /* isGeneratedGesture */
            ifeq 110
            iconst_0
            goto 111
      StackMap locals:
      StackMap stack:
       110: aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapTouchSlopSquare:I
      StackMap locals:
      StackMap stack: int
       111: istore 23 /* doubleTapSlopSquare */
        start local 23 // int doubleTapSlopSquare
       112: .line 621
            iload 21 /* distance */
            iload 23 /* doubleTapSlopSquare */
            if_icmple 156
       113: .line 622
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mAlwaysInBiggerTapRegion:Z
        end local 23 // int doubleTapSlopSquare
        end local 22 // int slopSquare
        end local 21 // int distance
        end local 20 // int deltaY
        end local 19 // int deltaX
       114: .line 624
            goto 156
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int top top top top float float
      StackMap stack:
       115: fload 17 /* scrollX */
            invokestatic java.lang.Math.abs:(F)F
            fconst_1
            fcmpl
            ifge 116
            fload 18 /* scrollY */
            invokestatic java.lang.Math.abs:(F)F
            fconst_1
            fcmpl
            iflt 156
       116: .line 625
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            aload 1 /* ev */
            fload 17 /* scrollX */
            fload 18 /* scrollY */
            invokeinterface android.view.GestureDetector$OnGestureListener.onScroll:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z
            istore 12 /* handled */
       117: .line 626
            aload 0 /* this */
            fload 10 /* focusX */
            putfield android.view.GestureDetector.mLastFocusX:F
       118: .line 627
            aload 0 /* this */
            fload 11 /* focusY */
            putfield android.view.GestureDetector.mLastFocusY:F
       119: .line 629
            goto 156
        end local 18 // float scrollY
        end local 17 // float scrollX
       120: .line 632
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mStillDown:Z
       121: .line 633
            aload 1 /* ev */
            invokestatic android.view.MotionEvent.obtain:(Landroid/view/MotionEvent;)Landroid/view/MotionEvent;
            astore 19 /* currentUpEvent */
        start local 19 // android.view.MotionEvent currentUpEvent
       122: .line 634
            aload 0 /* this */
            getfield android.view.GestureDetector.mIsDoubleTapping:Z
            ifeq 125
       123: .line 636
            iload 12 /* handled */
            aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
            aload 1 /* ev */
            invokeinterface android.view.GestureDetector$OnDoubleTapListener.onDoubleTapEvent:(Landroid/view/MotionEvent;)Z
            ior
            istore 12 /* handled */
       124: .line 637
            goto 143
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int top top top top top top android.view.MotionEvent
      StackMap stack:
       125: aload 0 /* this */
            getfield android.view.GestureDetector.mInLongPress:Z
            ifeq 129
       126: .line 638
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.removeMessages:(I)V
       127: .line 639
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mInLongPress:Z
       128: .line 640
            goto 143
      StackMap locals:
      StackMap stack:
       129: aload 0 /* this */
            getfield android.view.GestureDetector.mAlwaysInTapRegion:Z
            ifeq 134
            aload 0 /* this */
            getfield android.view.GestureDetector.mIgnoreNextUpEvent:Z
            ifne 134
       130: .line 641
            aload 0 /* this */
            getfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
            aload 1 /* ev */
            invokeinterface android.view.GestureDetector$OnGestureListener.onSingleTapUp:(Landroid/view/MotionEvent;)Z
            istore 12 /* handled */
       131: .line 642
            aload 0 /* this */
            getfield android.view.GestureDetector.mDeferConfirmSingleTap:Z
            ifeq 143
            aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
            ifnull 143
       132: .line 643
            aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapListener:Landroid/view/GestureDetector$OnDoubleTapListener;
            aload 1 /* ev */
            invokeinterface android.view.GestureDetector$OnDoubleTapListener.onSingleTapConfirmed:(Landroid/view/MotionEvent;)Z
            pop
       133: .line 645
            goto 143
      StackMap locals:
      StackMap stack:
       134: aload 0 /* this */
            getfield android.view.GestureDetector.mIgnoreNextUpEvent:Z
            ifne 143
       135: .line 648
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            astore 20 /* velocityTracker */
        start local 20 // android.view.VelocityTracker velocityTracker
       136: .line 649
            aload 1 /* ev */
            iconst_0
            invokevirtual android.view.MotionEvent.getPointerId:(I)I
            istore 21 /* pointerId */
        start local 21 // int pointerId
       137: .line 650
            aload 20 /* velocityTracker */
            sipush 1000
            aload 0 /* this */
            getfield android.view.GestureDetector.mMaximumFlingVelocity:I
            i2f
            invokevirtual android.view.VelocityTracker.computeCurrentVelocity:(IF)V
       138: .line 651
            aload 20 /* velocityTracker */
            iload 21 /* pointerId */
            invokevirtual android.view.VelocityTracker.getYVelocity:(I)F
            fstore 22 /* velocityY */
        start local 22 // float velocityY
       139: .line 652
            aload 20 /* velocityTracker */
            iload 21 /* pointerId */
            invokevirtual android.view.VelocityTracker.getXVelocity:(I)F
            fstore 23 /* velocityX */
        start local 23 // float velocityX
       140: .line 654
            fload 22 /* velocityY */
            invokestatic java.lang.Math.abs:(F)F
            aload 0 /* this */
            getfield android.view.GestureDetector.mMinimumFlingVelocity:I
            i2f
            fcmpl
            ifgt 142
       141: .line 655
            fload 23 /* velocityX */
            invokestatic java.lang.Math.abs:(F)F
            aload 0 /* this */
            getfield android.view.GestureDetector.mMinimumFlingVelocity:I
            i2f
            fcmpl
            ifle 143
       142: .line 656
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int top top top top top top android.view.MotionEvent android.view.VelocityTracker int float float
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            aload 1 /* ev */
            fload 23 /* velocityX */
            fload 22 /* velocityY */
            invokeinterface android.view.GestureDetector$OnGestureListener.onFling:(Landroid/view/MotionEvent;Landroid/view/MotionEvent;FF)Z
            istore 12 /* handled */
        end local 23 // float velocityX
        end local 22 // float velocityY
        end local 21 // int pointerId
        end local 20 // android.view.VelocityTracker velocityTracker
       143: .line 659
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int top top top top top top android.view.MotionEvent
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mPreviousUpEvent:Landroid/view/MotionEvent;
            ifnull 145
       144: .line 660
            aload 0 /* this */
            getfield android.view.GestureDetector.mPreviousUpEvent:Landroid/view/MotionEvent;
            invokevirtual android.view.MotionEvent.recycle:()V
       145: .line 663
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 19 /* currentUpEvent */
            putfield android.view.GestureDetector.mPreviousUpEvent:Landroid/view/MotionEvent;
       146: .line 664
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            ifnull 149
       147: .line 667
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            invokevirtual android.view.VelocityTracker.recycle:()V
       148: .line 668
            aload 0 /* this */
            aconst_null
            putfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
       149: .line 670
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mIsDoubleTapping:Z
       150: .line 671
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mDeferConfirmSingleTap:Z
       151: .line 672
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mIgnoreNextUpEvent:Z
       152: .line 673
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_1
            invokevirtual android.os.Handler.removeMessages:(I)V
       153: .line 674
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_2
            invokevirtual android.os.Handler.removeMessages:(I)V
       154: .line 675
            goto 156
        end local 19 // android.view.MotionEvent currentUpEvent
       155: .line 678
      StackMap locals: android.view.GestureDetector android.view.MotionEvent int int int int float float int int float float int
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.GestureDetector.cancel:()V
       156: .line 682
      StackMap locals:
      StackMap stack:
            iload 12 /* handled */
            ifne 158
            aload 0 /* this */
            getfield android.view.GestureDetector.mInputEventConsistencyVerifier:Landroid/view/InputEventConsistencyVerifier;
            ifnull 158
       157: .line 683
            aload 0 /* this */
            getfield android.view.GestureDetector.mInputEventConsistencyVerifier:Landroid/view/InputEventConsistencyVerifier;
            aload 1 /* ev */
            iconst_0
            invokevirtual android.view.InputEventConsistencyVerifier.onUnhandledEvent:(Landroid/view/InputEvent;I)V
       158: .line 685
      StackMap locals:
      StackMap stack:
            iload 12 /* handled */
            ireturn
        end local 12 // boolean handled
        end local 11 // float focusY
        end local 10 // float focusX
        end local 9 // int div
        end local 8 // int count
        end local 7 // float sumY
        end local 6 // float sumX
        end local 5 // boolean isGeneratedGesture
        end local 4 // int skipIndex
        end local 3 // boolean pointerUp
        end local 2 // int action
        end local 1 // android.view.MotionEvent ev
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0  159     0                 this  Landroid/view/GestureDetector;
            0  159     1                   ev  Landroid/view/MotionEvent;
            3  159     2               action  I
            9  159     3            pointerUp  Z
           12  159     4            skipIndex  I
           15  159     5   isGeneratedGesture  Z
           16  159     6                 sumX  F
           17  159     7                 sumY  F
           18  159     8                count  I
           19   25     9                    i  I
           28  159     9                  div  I
           29  159    10               focusX  F
           30  159    11               focusY  F
           31  159    12              handled  Z
           40   56    13              upIndex  I
           41   56    14                  id1  I
           42   56    15                   x1  F
           43   56    16                   y1  F
           44   55    17                    i  I
           47   53    18                  id2  I
           48   53    19                    x  F
           49   53    20                    y  F
           50   53    21                  dot  F
           58   67    17        hadTapMessage  Z
           90  120    17              scrollX  F
           91  120    18              scrollY  F
           96  114    19               deltaX  I
           97  114    20               deltaY  I
           98  114    21             distance  I
          101  114    22           slopSquare  I
          112  114    23  doubleTapSlopSquare  I
          122  155    19       currentUpEvent  Landroid/view/MotionEvent;
          136  143    20      velocityTracker  Landroid/view/VelocityTracker;
          137  143    21            pointerId  I
          139  143    22            velocityY  F
          140  143    23            velocityX  F
    MethodParameters:
      Name  Flags
      ev    

  public boolean onGenericMotionEvent(android.view.MotionEvent);
    descriptor: (Landroid/view/MotionEvent;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // android.view.GestureDetector this
        start local 1 // android.view.MotionEvent ev
         0: .line 697
            aload 0 /* this */
            getfield android.view.GestureDetector.mInputEventConsistencyVerifier:Landroid/view/InputEventConsistencyVerifier;
            ifnull 2
         1: .line 698
            aload 0 /* this */
            getfield android.view.GestureDetector.mInputEventConsistencyVerifier:Landroid/view/InputEventConsistencyVerifier;
            aload 1 /* ev */
            iconst_0
            invokevirtual android.view.InputEventConsistencyVerifier.onGenericMotionEvent:(Landroid/view/MotionEvent;I)V
         2: .line 701
      StackMap locals:
      StackMap stack:
            aload 1 /* ev */
            invokevirtual android.view.MotionEvent.getActionButton:()I
            istore 2 /* actionButton */
        start local 2 // int actionButton
         3: .line 702
            aload 1 /* ev */
            invokevirtual android.view.MotionEvent.getActionMasked:()I
            tableswitch { // 11 - 12
                   11: 4
                   12: 12
              default: 16
          }
         4: .line 704
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mContextClickListener:Landroid/view/GestureDetector$OnContextClickListener;
            ifnull 16
            aload 0 /* this */
            getfield android.view.GestureDetector.mInContextClick:Z
            ifne 16
            aload 0 /* this */
            getfield android.view.GestureDetector.mInLongPress:Z
            ifne 16
         5: .line 705
            iload 2 /* actionButton */
            bipush 32
            if_icmpeq 7
         6: .line 706
            iload 2 /* actionButton */
            iconst_2
            if_icmpne 16
         7: .line 707
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mContextClickListener:Landroid/view/GestureDetector$OnContextClickListener;
            aload 1 /* ev */
            invokeinterface android.view.GestureDetector$OnContextClickListener.onContextClick:(Landroid/view/MotionEvent;)Z
            ifeq 16
         8: .line 708
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mInContextClick:Z
         9: .line 709
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_2
            invokevirtual android.os.Handler.removeMessages:(I)V
        10: .line 710
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.removeMessages:(I)V
        11: .line 711
            iconst_1
            ireturn
        12: .line 717
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.GestureDetector.mInContextClick:Z
            ifeq 16
            iload 2 /* actionButton */
            bipush 32
            if_icmpeq 14
        13: .line 718
            iload 2 /* actionButton */
            iconst_2
            if_icmpne 16
        14: .line 719
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mInContextClick:Z
        15: .line 720
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mIgnoreNextUpEvent:Z
        16: .line 724
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int actionButton
        end local 1 // android.view.MotionEvent ev
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   17     0          this  Landroid/view/GestureDetector;
            0   17     1            ev  Landroid/view/MotionEvent;
            3   17     2  actionButton  I
    MethodParameters:
      Name  Flags
      ev    

  private void cancel();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.view.GestureDetector this
         0: .line 728
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_1
            invokevirtual android.os.Handler.removeMessages:(I)V
         1: .line 729
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_2
            invokevirtual android.os.Handler.removeMessages:(I)V
         2: .line 730
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.removeMessages:(I)V
         3: .line 731
            aload 0 /* this */
            getfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
            invokevirtual android.view.VelocityTracker.recycle:()V
         4: .line 732
            aload 0 /* this */
            aconst_null
            putfield android.view.GestureDetector.mVelocityTracker:Landroid/view/VelocityTracker;
         5: .line 733
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mIsDoubleTapping:Z
         6: .line 734
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mStillDown:Z
         7: .line 735
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mAlwaysInTapRegion:Z
         8: .line 736
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mAlwaysInBiggerTapRegion:Z
         9: .line 737
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mDeferConfirmSingleTap:Z
        10: .line 738
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mInLongPress:Z
        11: .line 739
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mInContextClick:Z
        12: .line 740
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mIgnoreNextUpEvent:Z
        13: .line 741
            return
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Landroid/view/GestureDetector;

  private void cancelTaps();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.view.GestureDetector this
         0: .line 744
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_1
            invokevirtual android.os.Handler.removeMessages:(I)V
         1: .line 745
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_2
            invokevirtual android.os.Handler.removeMessages:(I)V
         2: .line 746
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.removeMessages:(I)V
         3: .line 747
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mIsDoubleTapping:Z
         4: .line 748
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mAlwaysInTapRegion:Z
         5: .line 749
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mAlwaysInBiggerTapRegion:Z
         6: .line 750
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mDeferConfirmSingleTap:Z
         7: .line 751
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mInLongPress:Z
         8: .line 752
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mInContextClick:Z
         9: .line 753
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mIgnoreNextUpEvent:Z
        10: .line 754
            return
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Landroid/view/GestureDetector;

  private boolean isConsideredDoubleTap(android.view.MotionEvent, android.view.MotionEvent, android.view.MotionEvent);
    descriptor: (Landroid/view/MotionEvent;Landroid/view/MotionEvent;Landroid/view/MotionEvent;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=10, args_size=4
        start local 0 // android.view.GestureDetector this
        start local 1 // android.view.MotionEvent firstDown
        start local 2 // android.view.MotionEvent firstUp
        start local 3 // android.view.MotionEvent secondDown
         0: .line 758
            aload 0 /* this */
            getfield android.view.GestureDetector.mAlwaysInBiggerTapRegion:Z
            ifne 2
         1: .line 759
            iconst_0
            ireturn
         2: .line 762
      StackMap locals:
      StackMap stack:
            aload 3 /* secondDown */
            invokevirtual android.view.MotionEvent.getEventTime:()J
            aload 2 /* firstUp */
            invokevirtual android.view.MotionEvent.getEventTime:()J
            lsub
            lstore 4 /* deltaTime */
        start local 4 // long deltaTime
         3: .line 763
            lload 4 /* deltaTime */
            getstatic android.view.GestureDetector.DOUBLE_TAP_TIMEOUT:I
            i2l
            lcmp
            ifgt 4
            lload 4 /* deltaTime */
            getstatic android.view.GestureDetector.DOUBLE_TAP_MIN_TIME:I
            i2l
            lcmp
            ifge 5
         4: .line 764
      StackMap locals: long
      StackMap stack:
            iconst_0
            ireturn
         5: .line 767
      StackMap locals:
      StackMap stack:
            aload 1 /* firstDown */
            invokevirtual android.view.MotionEvent.getX:()F
            f2i
            aload 3 /* secondDown */
            invokevirtual android.view.MotionEvent.getX:()F
            f2i
            isub
            istore 6 /* deltaX */
        start local 6 // int deltaX
         6: .line 768
            aload 1 /* firstDown */
            invokevirtual android.view.MotionEvent.getY:()F
            f2i
            aload 3 /* secondDown */
            invokevirtual android.view.MotionEvent.getY:()F
            f2i
            isub
            istore 7 /* deltaY */
        start local 7 // int deltaY
         7: .line 770
            aload 1 /* firstDown */
            invokevirtual android.view.MotionEvent.getFlags:()I
            bipush 8
            iand
            ifeq 8
            iconst_1
            goto 9
      StackMap locals: int int
      StackMap stack:
         8: iconst_0
         9: .line 769
      StackMap locals:
      StackMap stack: int
            istore 8 /* isGeneratedGesture */
        start local 8 // boolean isGeneratedGesture
        10: .line 771
            iload 8 /* isGeneratedGesture */
            ifeq 11
            iconst_0
            goto 12
      StackMap locals: int
      StackMap stack:
        11: aload 0 /* this */
            getfield android.view.GestureDetector.mDoubleTapSlopSquare:I
      StackMap locals:
      StackMap stack: int
        12: istore 9 /* slopSquare */
        start local 9 // int slopSquare
        13: .line 772
            iload 6 /* deltaX */
            iload 6 /* deltaX */
            imul
            iload 7 /* deltaY */
            iload 7 /* deltaY */
            imul
            iadd
            iload 9 /* slopSquare */
            if_icmpge 14
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
        14: iconst_0
            ireturn
        end local 9 // int slopSquare
        end local 8 // boolean isGeneratedGesture
        end local 7 // int deltaY
        end local 6 // int deltaX
        end local 4 // long deltaTime
        end local 3 // android.view.MotionEvent secondDown
        end local 2 // android.view.MotionEvent firstUp
        end local 1 // android.view.MotionEvent firstDown
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   15     0                this  Landroid/view/GestureDetector;
            0   15     1           firstDown  Landroid/view/MotionEvent;
            0   15     2             firstUp  Landroid/view/MotionEvent;
            0   15     3          secondDown  Landroid/view/MotionEvent;
            3   15     4           deltaTime  J
            6   15     6              deltaX  I
            7   15     7              deltaY  I
           10   15     8  isGeneratedGesture  Z
           13   15     9          slopSquare  I
    MethodParameters:
            Name  Flags
      firstDown   
      firstUp     
      secondDown  

  private void dispatchLongPress();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.view.GestureDetector this
         0: .line 776
            aload 0 /* this */
            getfield android.view.GestureDetector.mHandler:Landroid/os/Handler;
            iconst_3
            invokevirtual android.os.Handler.removeMessages:(I)V
         1: .line 777
            aload 0 /* this */
            iconst_0
            putfield android.view.GestureDetector.mDeferConfirmSingleTap:Z
         2: .line 778
            aload 0 /* this */
            iconst_1
            putfield android.view.GestureDetector.mInLongPress:Z
         3: .line 779
            aload 0 /* this */
            getfield android.view.GestureDetector.mListener:Landroid/view/GestureDetector$OnGestureListener;
            aload 0 /* this */
            getfield android.view.GestureDetector.mCurrentDownEvent:Landroid/view/MotionEvent;
            invokeinterface android.view.GestureDetector$OnGestureListener.onLongPress:(Landroid/view/MotionEvent;)V
         4: .line 780
            return
        end local 0 // android.view.GestureDetector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/view/GestureDetector;
}
SourceFile: "GestureDetector.java"
NestMembers:
  android.view.GestureDetector$GestureHandler  android.view.GestureDetector$OnContextClickListener  android.view.GestureDetector$OnDoubleTapListener  android.view.GestureDetector$OnGestureListener  android.view.GestureDetector$SimpleOnGestureListener
InnerClasses:
  private GestureHandler = android.view.GestureDetector$GestureHandler of android.view.GestureDetector
  public abstract OnContextClickListener = android.view.GestureDetector$OnContextClickListener of android.view.GestureDetector
  public abstract OnDoubleTapListener = android.view.GestureDetector$OnDoubleTapListener of android.view.GestureDetector
  public abstract OnGestureListener = android.view.GestureDetector$OnGestureListener of android.view.GestureDetector
  public SimpleOnGestureListener = android.view.GestureDetector$SimpleOnGestureListener of android.view.GestureDetector