public class android.view.inputmethod.BaseInputConnection implements android.view.inputmethod.InputConnection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.view.inputmethod.BaseInputConnection
  super_class: java.lang.Object
{
  private static final boolean DEBUG;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final java.lang.String TAG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "BaseInputConnection"

  static final java.lang.Object COMPOSING;
    descriptor: Ljava/lang/Object;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  protected final android.view.inputmethod.InputMethodManager mIMM;
    descriptor: Landroid/view/inputmethod/InputMethodManager;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  final android.view.View mTargetView;
    descriptor: Landroid/view/View;
    flags: (0x0010) ACC_FINAL

  final boolean mDummyMode;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  private java.lang.Object[] mDefaultComposingSpans;
    descriptor: [Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE

  android.text.Editable mEditable;
    descriptor: Landroid/text/Editable;
    flags: (0x0000) 

  android.view.KeyCharacterMap mKeyCharacterMap;
    descriptor: Landroid/view/KeyCharacterMap;
    flags: (0x0000) 

  private static int INVALID_INDEX;
    descriptor: I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 52
            new android.view.inputmethod.ComposingText
            dup
            invokespecial android.view.inputmethod.ComposingText.<init>:()V
            putstatic android.view.inputmethod.BaseInputConnection.COMPOSING:Ljava/lang/Object;
         1: .line 268
            iconst_m1
            putstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(android.view.inputmethod.InputMethodManager, boolean);
    descriptor: (Landroid/view/inputmethod/InputMethodManager;Z)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // android.view.inputmethod.InputMethodManager mgr
        start local 2 // boolean fullEditor
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 65
            aload 0 /* this */
            aload 1 /* mgr */
            putfield android.view.inputmethod.BaseInputConnection.mIMM:Landroid/view/inputmethod/InputMethodManager;
         2: .line 66
            aload 0 /* this */
            aconst_null
            putfield android.view.inputmethod.BaseInputConnection.mTargetView:Landroid/view/View;
         3: .line 67
            aload 0 /* this */
            iload 2 /* fullEditor */
            ifeq 4
            iconst_0
            goto 5
      StackMap locals: android.view.inputmethod.BaseInputConnection android.view.inputmethod.InputMethodManager int
      StackMap stack: android.view.inputmethod.BaseInputConnection
         4: iconst_1
      StackMap locals: android.view.inputmethod.BaseInputConnection android.view.inputmethod.InputMethodManager int
      StackMap stack: android.view.inputmethod.BaseInputConnection int
         5: putfield android.view.inputmethod.BaseInputConnection.mDummyMode:Z
         6: .line 68
            return
        end local 2 // boolean fullEditor
        end local 1 // android.view.inputmethod.InputMethodManager mgr
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Landroid/view/inputmethod/BaseInputConnection;
            0    7     1         mgr  Landroid/view/inputmethod/InputMethodManager;
            0    7     2  fullEditor  Z
    MethodParameters:
            Name  Flags
      mgr         
      fullEditor  

  public void <init>(android.view.View, boolean);
    descriptor: (Landroid/view/View;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // android.view.View targetView
        start local 2 // boolean fullEditor
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 71
            aload 0 /* this */
            aload 1 /* targetView */
            invokevirtual android.view.View.getContext:()Landroid/content/Context;
         2: .line 72
            ldc "input_method"
         3: .line 71
            invokevirtual android.content.Context.getSystemService:(Ljava/lang/String;)Ljava/lang/Object;
            checkcast android.view.inputmethod.InputMethodManager
            putfield android.view.inputmethod.BaseInputConnection.mIMM:Landroid/view/inputmethod/InputMethodManager;
         4: .line 73
            aload 0 /* this */
            aload 1 /* targetView */
            putfield android.view.inputmethod.BaseInputConnection.mTargetView:Landroid/view/View;
         5: .line 74
            aload 0 /* this */
            iload 2 /* fullEditor */
            ifeq 6
            iconst_0
            goto 7
      StackMap locals: android.view.inputmethod.BaseInputConnection android.view.View int
      StackMap stack: android.view.inputmethod.BaseInputConnection
         6: iconst_1
      StackMap locals: android.view.inputmethod.BaseInputConnection android.view.View int
      StackMap stack: android.view.inputmethod.BaseInputConnection int
         7: putfield android.view.inputmethod.BaseInputConnection.mDummyMode:Z
         8: .line 75
            return
        end local 2 // boolean fullEditor
        end local 1 // android.view.View targetView
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Landroid/view/inputmethod/BaseInputConnection;
            0    9     1  targetView  Landroid/view/View;
            0    9     2  fullEditor  Z
    MethodParameters:
            Name  Flags
      targetView  
      fullEditor  

  public static final void removeComposingSpans(android.text.Spannable);
    descriptor: (Landroid/text/Spannable;)V
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // android.text.Spannable text
         0: .line 78
            aload 0 /* text */
            getstatic android.view.inputmethod.BaseInputConnection.COMPOSING:Ljava/lang/Object;
            invokeinterface android.text.Spannable.removeSpan:(Ljava/lang/Object;)V
         1: .line 79
            aload 0 /* text */
            iconst_0
            aload 0 /* text */
            invokeinterface android.text.Spannable.length:()I
            ldc Ljava/lang/Object;
            invokeinterface android.text.Spannable.getSpans:(IILjava/lang/Class;)[Ljava/lang/Object;
            astore 1 /* sps */
        start local 1 // java.lang.Object[] sps
         2: .line 80
            aload 1 /* sps */
            ifnull 10
         3: .line 81
            aload 1 /* sps */
            arraylength
            iconst_1
            isub
            istore 2 /* i */
        start local 2 // int i
         4: goto 9
         5: .line 82
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            aload 1 /* sps */
            iload 2 /* i */
            aaload
            astore 3 /* o */
        start local 3 // java.lang.Object o
         6: .line 83
            aload 0 /* text */
            aload 3 /* o */
            invokeinterface android.text.Spannable.getSpanFlags:(Ljava/lang/Object;)I
            sipush 256
            iand
            ifeq 8
         7: .line 84
            aload 0 /* text */
            aload 3 /* o */
            invokeinterface android.text.Spannable.removeSpan:(Ljava/lang/Object;)V
        end local 3 // java.lang.Object o
         8: .line 81
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ -1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            ifge 5
        end local 2 // int i
        10: .line 88
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.Object[] sps
        end local 0 // android.text.Spannable text
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  text  Landroid/text/Spannable;
            2   11     1   sps  [Ljava/lang/Object;
            4   10     2     i  I
            6    8     3     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      text  

  public static void setComposingSpans(android.text.Spannable);
    descriptor: (Landroid/text/Spannable;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.text.Spannable text
         0: .line 91
            aload 0 /* text */
            iconst_0
            aload 0 /* text */
            invokeinterface android.text.Spannable.length:()I
            invokestatic android.view.inputmethod.BaseInputConnection.setComposingSpans:(Landroid/text/Spannable;II)V
         1: .line 92
            return
        end local 0 // android.text.Spannable text
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  text  Landroid/text/Spannable;
    MethodParameters:
      Name  Flags
      text  

  public static void setComposingSpans(android.text.Spannable, int, int);
    descriptor: (Landroid/text/Spannable;II)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=3
        start local 0 // android.text.Spannable text
        start local 1 // int start
        start local 2 // int end
         0: .line 96
            aload 0 /* text */
            iload 1 /* start */
            iload 2 /* end */
            ldc Ljava/lang/Object;
            invokeinterface android.text.Spannable.getSpans:(IILjava/lang/Class;)[Ljava/lang/Object;
            astore 3 /* sps */
        start local 3 // java.lang.Object[] sps
         1: .line 97
            aload 3 /* sps */
            ifnull 21
         2: .line 98
            aload 3 /* sps */
            arraylength
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         3: goto 20
         4: .line 99
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            aload 3 /* sps */
            iload 4 /* i */
            aaload
            astore 5 /* o */
        start local 5 // java.lang.Object o
         5: .line 100
            aload 5 /* o */
            getstatic android.view.inputmethod.BaseInputConnection.COMPOSING:Ljava/lang/Object;
            if_acmpne 8
         6: .line 101
            aload 0 /* text */
            aload 5 /* o */
            invokeinterface android.text.Spannable.removeSpan:(Ljava/lang/Object;)V
         7: .line 102
            goto 19
         8: .line 105
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* text */
            aload 5 /* o */
            invokeinterface android.text.Spannable.getSpanFlags:(Ljava/lang/Object;)I
            istore 6 /* fl */
        start local 6 // int fl
         9: .line 106
            iload 6 /* fl */
            sipush 307
            iand
        10: .line 107
            sipush 289
        11: .line 106
            if_icmpeq 19
        12: .line 108
            aload 0 /* text */
            aload 5 /* o */
            aload 0 /* text */
            aload 5 /* o */
            invokeinterface android.text.Spannable.getSpanStart:(Ljava/lang/Object;)I
            aload 0 /* text */
            aload 5 /* o */
            invokeinterface android.text.Spannable.getSpanEnd:(Ljava/lang/Object;)I
        13: .line 109
            iload 6 /* fl */
            bipush -52
            iand
        14: .line 110
            sipush 256
        15: .line 109
            ior
        16: .line 111
            bipush 33
        17: .line 109
            ior
        18: .line 108
            invokeinterface android.text.Spannable.setSpan:(Ljava/lang/Object;III)V
        end local 6 // int fl
        end local 5 // java.lang.Object o
        19: .line 98
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
        20: iload 4 /* i */
            ifge 4
        end local 4 // int i
        21: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* text */
            getstatic android.view.inputmethod.BaseInputConnection.COMPOSING:Ljava/lang/Object;
            iload 1 /* start */
            iload 2 /* end */
        22: .line 117
            sipush 289
        23: .line 116
            invokeinterface android.text.Spannable.setSpan:(Ljava/lang/Object;III)V
        24: .line 118
            return
        end local 3 // java.lang.Object[] sps
        end local 2 // int end
        end local 1 // int start
        end local 0 // android.text.Spannable text
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   25     0   text  Landroid/text/Spannable;
            0   25     1  start  I
            0   25     2    end  I
            1   25     3    sps  [Ljava/lang/Object;
            3   21     4      i  I
            5   19     5      o  Ljava/lang/Object;
            9   19     6     fl  I
    MethodParameters:
       Name  Flags
      text   
      start  
      end    

  public static int getComposingSpanStart(android.text.Spannable);
    descriptor: (Landroid/text/Spannable;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.text.Spannable text
         0: .line 121
            aload 0 /* text */
            getstatic android.view.inputmethod.BaseInputConnection.COMPOSING:Ljava/lang/Object;
            invokeinterface android.text.Spannable.getSpanStart:(Ljava/lang/Object;)I
            ireturn
        end local 0 // android.text.Spannable text
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  text  Landroid/text/Spannable;
    MethodParameters:
      Name  Flags
      text  

  public static int getComposingSpanEnd(android.text.Spannable);
    descriptor: (Landroid/text/Spannable;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.text.Spannable text
         0: .line 125
            aload 0 /* text */
            getstatic android.view.inputmethod.BaseInputConnection.COMPOSING:Ljava/lang/Object;
            invokeinterface android.text.Spannable.getSpanEnd:(Ljava/lang/Object;)I
            ireturn
        end local 0 // android.text.Spannable text
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  text  Landroid/text/Spannable;
    MethodParameters:
      Name  Flags
      text  

  public android.text.Editable getEditable();
    descriptor: ()Landroid/text/Editable;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 135
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mEditable:Landroid/text/Editable;
            ifnonnull 3
         1: .line 136
            aload 0 /* this */
            invokestatic android.text.Editable$Factory.getInstance:()Landroid/text/Editable$Factory;
            ldc ""
            invokevirtual android.text.Editable$Factory.newEditable:(Ljava/lang/CharSequence;)Landroid/text/Editable;
            putfield android.view.inputmethod.BaseInputConnection.mEditable:Landroid/text/Editable;
         2: .line 137
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mEditable:Landroid/text/Editable;
            iconst_0
            invokestatic android.text.Selection.setSelection:(Landroid/text/Spannable;I)V
         3: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mEditable:Landroid/text/Editable;
            areturn
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/view/inputmethod/BaseInputConnection;

  public boolean beginBatchEdit();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 146
            iconst_0
            ireturn
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/inputmethod/BaseInputConnection;

  public boolean endBatchEdit();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 153
            iconst_0
            ireturn
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/inputmethod/BaseInputConnection;

  public void closeConnection();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 161
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.finishComposingText:()Z
            pop
         1: .line 162
            return
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/view/inputmethod/BaseInputConnection;

  public boolean clearMetaKeyStates(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int states
         0: .line 170
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 2 /* content */
        start local 2 // android.text.Editable content
         1: .line 171
            aload 2 /* content */
            ifnonnull 2
            iconst_0
            ireturn
         2: .line 172
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 2 /* content */
            iload 1 /* states */
            invokestatic android.text.method.MetaKeyKeyListener.clearMetaKeyState:(Landroid/text/Editable;I)V
         3: .line 173
            iconst_1
            ireturn
        end local 2 // android.text.Editable content
        end local 1 // int states
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0    4     1   states  I
            1    4     2  content  Landroid/text/Editable;
    MethodParameters:
        Name  Flags
      states  

  public boolean commitCompletion(android.view.inputmethod.CompletionInfo);
    descriptor: (Landroid/view/inputmethod/CompletionInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // android.view.inputmethod.CompletionInfo text
         0: .line 180
            iconst_0
            ireturn
        end local 1 // android.view.inputmethod.CompletionInfo text
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1  text  Landroid/view/inputmethod/CompletionInfo;
    MethodParameters:
      Name  Flags
      text  

  public boolean commitCorrection(android.view.inputmethod.CorrectionInfo);
    descriptor: (Landroid/view/inputmethod/CorrectionInfo;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // android.view.inputmethod.CorrectionInfo correctionInfo
         0: .line 187
            iconst_0
            ireturn
        end local 1 // android.view.inputmethod.CorrectionInfo correctionInfo
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0            this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1  correctionInfo  Landroid/view/inputmethod/CorrectionInfo;
    MethodParameters:
                Name  Flags
      correctionInfo  

  public boolean commitText(java.lang.CharSequence, int);
    descriptor: (Ljava/lang/CharSequence;I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // java.lang.CharSequence text
        start local 2 // int newCursorPosition
         0: .line 197
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* newCursorPosition */
            iconst_0
            invokevirtual android.view.inputmethod.BaseInputConnection.replaceText:(Ljava/lang/CharSequence;IZ)V
         1: .line 198
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.sendCurrentText:()V
         2: .line 199
            iconst_1
            ireturn
        end local 2 // int newCursorPosition
        end local 1 // java.lang.CharSequence text
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    3     0               this  Landroid/view/inputmethod/BaseInputConnection;
            0    3     1               text  Ljava/lang/CharSequence;
            0    3     2  newCursorPosition  I
    MethodParameters:
                   Name  Flags
      text               
      newCursorPosition  

  public boolean deleteSurroundingText(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=10, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int beforeLength
        start local 2 // int afterLength
         0: .line 218
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 3 /* content */
        start local 3 // android.text.Editable content
         1: .line 219
            aload 3 /* content */
            ifnonnull 2
            iconst_0
            ireturn
         2: .line 221
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.beginBatchEdit:()Z
            pop
         3: .line 223
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionStart:(Ljava/lang/CharSequence;)I
            istore 4 /* a */
        start local 4 // int a
         4: .line 224
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionEnd:(Ljava/lang/CharSequence;)I
            istore 5 /* b */
        start local 5 // int b
         5: .line 226
            iload 4 /* a */
            iload 5 /* b */
            if_icmple 9
         6: .line 227
            iload 4 /* a */
            istore 6 /* tmp */
        start local 6 // int tmp
         7: .line 228
            iload 5 /* b */
            istore 4 /* a */
         8: .line 229
            iload 6 /* tmp */
            istore 5 /* b */
        end local 6 // int tmp
         9: .line 233
      StackMap locals: int int
      StackMap stack:
            aload 3 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.getComposingSpanStart:(Landroid/text/Spannable;)I
            istore 6 /* ca */
        start local 6 // int ca
        10: .line 234
            aload 3 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.getComposingSpanEnd:(Landroid/text/Spannable;)I
            istore 7 /* cb */
        start local 7 // int cb
        11: .line 235
            iload 7 /* cb */
            iload 6 /* ca */
            if_icmpge 15
        12: .line 236
            iload 6 /* ca */
            istore 8 /* tmp */
        start local 8 // int tmp
        13: .line 237
            iload 7 /* cb */
            istore 6 /* ca */
        14: .line 238
            iload 8 /* tmp */
            istore 7 /* cb */
        end local 8 // int tmp
        15: .line 240
      StackMap locals: int int
      StackMap stack:
            iload 6 /* ca */
            iconst_m1
            if_icmpeq 18
            iload 7 /* cb */
            iconst_m1
            if_icmpeq 18
        16: .line 241
            iload 6 /* ca */
            iload 4 /* a */
            if_icmpge 17
            iload 6 /* ca */
            istore 4 /* a */
        17: .line 242
      StackMap locals:
      StackMap stack:
            iload 7 /* cb */
            iload 5 /* b */
            if_icmple 18
            iload 7 /* cb */
            istore 5 /* b */
        18: .line 245
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 8 /* deleted */
        start local 8 // int deleted
        19: .line 247
            iload 1 /* beforeLength */
            ifle 24
        20: .line 248
            iload 4 /* a */
            iload 1 /* beforeLength */
            isub
            istore 9 /* start */
        start local 9 // int start
        21: .line 249
            iload 9 /* start */
            ifge 22
            iconst_0
            istore 9 /* start */
        22: .line 250
      StackMap locals: int int
      StackMap stack:
            aload 3 /* content */
            iload 9 /* start */
            iload 4 /* a */
            invokeinterface android.text.Editable.delete:(II)Landroid/text/Editable;
            pop
        23: .line 251
            iload 4 /* a */
            iload 9 /* start */
            isub
            istore 8 /* deleted */
        end local 9 // int start
        24: .line 254
      StackMap locals:
      StackMap stack:
            iload 2 /* afterLength */
            ifle 29
        25: .line 255
            iload 5 /* b */
            iload 8 /* deleted */
            isub
            istore 5 /* b */
        26: .line 257
            iload 5 /* b */
            iload 2 /* afterLength */
            iadd
            istore 9 /* end */
        start local 9 // int end
        27: .line 258
            iload 9 /* end */
            aload 3 /* content */
            invokeinterface android.text.Editable.length:()I
            if_icmple 28
            aload 3 /* content */
            invokeinterface android.text.Editable.length:()I
            istore 9 /* end */
        28: .line 260
      StackMap locals: int
      StackMap stack:
            aload 3 /* content */
            iload 5 /* b */
            iload 9 /* end */
            invokeinterface android.text.Editable.delete:(II)Landroid/text/Editable;
            pop
        end local 9 // int end
        29: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.endBatchEdit:()Z
            pop
        30: .line 265
            iconst_1
            ireturn
        end local 8 // int deleted
        end local 7 // int cb
        end local 6 // int ca
        end local 5 // int b
        end local 4 // int a
        end local 3 // android.text.Editable content
        end local 2 // int afterLength
        end local 1 // int beforeLength
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   31     0          this  Landroid/view/inputmethod/BaseInputConnection;
            0   31     1  beforeLength  I
            0   31     2   afterLength  I
            1   31     3       content  Landroid/text/Editable;
            4   31     4             a  I
            5   31     5             b  I
            7    9     6           tmp  I
           10   31     6            ca  I
           11   31     7            cb  I
           13   15     8           tmp  I
           19   31     8       deleted  I
           21   24     9         start  I
           27   29     9           end  I
    MethodParameters:
              Name  Flags
      beforeLength  
      afterLength   

  private static int findIndexBackward(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=8, args_size=3
        start local 0 // java.lang.CharSequence cs
        start local 1 // int from
        start local 2 // int numCodePoints
         0: .line 271
            iload 1 /* from */
            istore 3 /* currentIndex */
        start local 3 // int currentIndex
         1: .line 272
            iconst_0
            istore 4 /* waitingHighSurrogate */
        start local 4 // boolean waitingHighSurrogate
         2: .line 273
            aload 0 /* cs */
            invokeinterface java.lang.CharSequence.length:()I
            istore 5 /* N */
        start local 5 // int N
         3: .line 274
            iload 3 /* currentIndex */
            iflt 4
            iload 5 /* N */
            iload 3 /* currentIndex */
            if_icmpge 5
         4: .line 275
      StackMap locals: int int int
      StackMap stack:
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
         5: .line 277
      StackMap locals:
      StackMap stack:
            iload 2 /* numCodePoints */
            ifge 7
         6: .line 278
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
         7: .line 280
      StackMap locals:
      StackMap stack:
            iload 2 /* numCodePoints */
            istore 6 /* remainingCodePoints */
        start local 6 // int remainingCodePoints
         8: .line 282
      StackMap locals: int
      StackMap stack:
            iload 6 /* remainingCodePoints */
            ifne 10
         9: .line 283
            iload 3 /* currentIndex */
            ireturn
        10: .line 286
      StackMap locals:
      StackMap stack:
            iinc 3 /* currentIndex */ -1
        11: .line 287
            iload 3 /* currentIndex */
            ifge 15
        12: .line 288
            iload 4 /* waitingHighSurrogate */
            ifeq 14
        13: .line 289
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
        14: .line 291
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        15: .line 293
      StackMap locals:
      StackMap stack:
            aload 0 /* cs */
            iload 3 /* currentIndex */
            invokeinterface java.lang.CharSequence.charAt:(I)C
            istore 7 /* c */
        start local 7 // char c
        16: .line 294
            iload 4 /* waitingHighSurrogate */
            ifeq 22
        17: .line 295
            iload 7 /* c */
            invokestatic java.lang.Character.isHighSurrogate:(C)Z
            ifne 19
        18: .line 296
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
        19: .line 298
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 4 /* waitingHighSurrogate */
        20: .line 299
            iinc 6 /* remainingCodePoints */ -1
        21: .line 300
            goto 8
        22: .line 302
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            invokestatic java.lang.Character.isSurrogate:(C)Z
            ifne 25
        23: .line 303
            iinc 6 /* remainingCodePoints */ -1
        24: .line 304
            goto 8
        25: .line 306
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            invokestatic java.lang.Character.isHighSurrogate:(C)Z
            ifeq 27
        26: .line 307
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
        27: .line 309
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 4 /* waitingHighSurrogate */
        end local 7 // char c
        28: .line 281
            goto 8
        end local 6 // int remainingCodePoints
        end local 5 // int N
        end local 4 // boolean waitingHighSurrogate
        end local 3 // int currentIndex
        end local 2 // int numCodePoints
        end local 1 // int from
        end local 0 // java.lang.CharSequence cs
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   29     0                    cs  Ljava/lang/CharSequence;
            0   29     1                  from  I
            0   29     2         numCodePoints  I
            1   29     3          currentIndex  I
            2   29     4  waitingHighSurrogate  Z
            3   29     5                     N  I
            8   29     6   remainingCodePoints  I
           16   28     7                     c  C
    MethodParameters:
               Name  Flags
      cs             final
      from           final
      numCodePoints  final

  private static int findIndexForward(java.lang.CharSequence, int, int);
    descriptor: (Ljava/lang/CharSequence;II)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=8, args_size=3
        start local 0 // java.lang.CharSequence cs
        start local 1 // int from
        start local 2 // int numCodePoints
         0: .line 315
            iload 1 /* from */
            istore 3 /* currentIndex */
        start local 3 // int currentIndex
         1: .line 316
            iconst_0
            istore 4 /* waitingLowSurrogate */
        start local 4 // boolean waitingLowSurrogate
         2: .line 317
            aload 0 /* cs */
            invokeinterface java.lang.CharSequence.length:()I
            istore 5 /* N */
        start local 5 // int N
         3: .line 318
            iload 3 /* currentIndex */
            iflt 4
            iload 5 /* N */
            iload 3 /* currentIndex */
            if_icmpge 5
         4: .line 319
      StackMap locals: int int int
      StackMap stack:
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
         5: .line 321
      StackMap locals:
      StackMap stack:
            iload 2 /* numCodePoints */
            ifge 7
         6: .line 322
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
         7: .line 324
      StackMap locals:
      StackMap stack:
            iload 2 /* numCodePoints */
            istore 6 /* remainingCodePoints */
        start local 6 // int remainingCodePoints
         8: .line 327
      StackMap locals: int
      StackMap stack:
            iload 6 /* remainingCodePoints */
            ifne 10
         9: .line 328
            iload 3 /* currentIndex */
            ireturn
        10: .line 331
      StackMap locals:
      StackMap stack:
            iload 3 /* currentIndex */
            iload 5 /* N */
            if_icmplt 14
        11: .line 332
            iload 4 /* waitingLowSurrogate */
            ifeq 13
        12: .line 333
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
        13: .line 335
      StackMap locals:
      StackMap stack:
            iload 5 /* N */
            ireturn
        14: .line 337
      StackMap locals:
      StackMap stack:
            aload 0 /* cs */
            iload 3 /* currentIndex */
            invokeinterface java.lang.CharSequence.charAt:(I)C
            istore 7 /* c */
        start local 7 // char c
        15: .line 338
            iload 4 /* waitingLowSurrogate */
            ifeq 22
        16: .line 339
            iload 7 /* c */
            invokestatic java.lang.Character.isLowSurrogate:(C)Z
            ifne 18
        17: .line 340
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
        18: .line 342
      StackMap locals: int
      StackMap stack:
            iinc 6 /* remainingCodePoints */ -1
        19: .line 343
            iconst_0
            istore 4 /* waitingLowSurrogate */
        20: .line 344
            iinc 3 /* currentIndex */ 1
        21: .line 345
            goto 8
        22: .line 347
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            invokestatic java.lang.Character.isSurrogate:(C)Z
            ifne 26
        23: .line 348
            iinc 6 /* remainingCodePoints */ -1
        24: .line 349
            iinc 3 /* currentIndex */ 1
        25: .line 350
            goto 8
        26: .line 352
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            invokestatic java.lang.Character.isLowSurrogate:(C)Z
            ifeq 28
        27: .line 353
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            ireturn
        28: .line 355
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 4 /* waitingLowSurrogate */
        29: .line 356
            iinc 3 /* currentIndex */ 1
        end local 7 // char c
        30: .line 326
            goto 8
        end local 6 // int remainingCodePoints
        end local 5 // int N
        end local 4 // boolean waitingLowSurrogate
        end local 3 // int currentIndex
        end local 2 // int numCodePoints
        end local 1 // int from
        end local 0 // java.lang.CharSequence cs
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   31     0                   cs  Ljava/lang/CharSequence;
            0   31     1                 from  I
            0   31     2        numCodePoints  I
            1   31     3         currentIndex  I
            2   31     4  waitingLowSurrogate  Z
            3   31     5                    N  I
            8   31     6  remainingCodePoints  I
           15   30     7                    c  C
    MethodParameters:
               Name  Flags
      cs             final
      from           final
      numCodePoints  final

  public boolean deleteSurroundingTextInCodePoints(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=12, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int beforeLength
        start local 2 // int afterLength
         0: .line 375
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 3 /* content */
        start local 3 // android.text.Editable content
         1: .line 376
            aload 3 /* content */
            ifnonnull 2
            iconst_0
            ireturn
         2: .line 378
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.beginBatchEdit:()Z
            pop
         3: .line 380
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionStart:(Ljava/lang/CharSequence;)I
            istore 4 /* a */
        start local 4 // int a
         4: .line 381
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionEnd:(Ljava/lang/CharSequence;)I
            istore 5 /* b */
        start local 5 // int b
         5: .line 383
            iload 4 /* a */
            iload 5 /* b */
            if_icmple 9
         6: .line 384
            iload 4 /* a */
            istore 6 /* tmp */
        start local 6 // int tmp
         7: .line 385
            iload 5 /* b */
            istore 4 /* a */
         8: .line 386
            iload 6 /* tmp */
            istore 5 /* b */
        end local 6 // int tmp
         9: .line 390
      StackMap locals: int int
      StackMap stack:
            aload 3 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.getComposingSpanStart:(Landroid/text/Spannable;)I
            istore 6 /* ca */
        start local 6 // int ca
        10: .line 391
            aload 3 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.getComposingSpanEnd:(Landroid/text/Spannable;)I
            istore 7 /* cb */
        start local 7 // int cb
        11: .line 392
            iload 7 /* cb */
            iload 6 /* ca */
            if_icmpge 15
        12: .line 393
            iload 6 /* ca */
            istore 8 /* tmp */
        start local 8 // int tmp
        13: .line 394
            iload 7 /* cb */
            istore 6 /* ca */
        14: .line 395
            iload 8 /* tmp */
            istore 7 /* cb */
        end local 8 // int tmp
        15: .line 397
      StackMap locals: int int
      StackMap stack:
            iload 6 /* ca */
            iconst_m1
            if_icmpeq 18
            iload 7 /* cb */
            iconst_m1
            if_icmpeq 18
        16: .line 398
            iload 6 /* ca */
            iload 4 /* a */
            if_icmpge 17
            iload 6 /* ca */
            istore 4 /* a */
        17: .line 399
      StackMap locals:
      StackMap stack:
            iload 7 /* cb */
            iload 5 /* b */
            if_icmple 18
            iload 7 /* cb */
            istore 5 /* b */
        18: .line 402
      StackMap locals:
      StackMap stack:
            iload 4 /* a */
            iflt 29
            iload 5 /* b */
            iflt 29
        19: .line 403
            aload 3 /* content */
            iload 4 /* a */
            iload 1 /* beforeLength */
            iconst_0
            invokestatic java.lang.Math.max:(II)I
            invokestatic android.view.inputmethod.BaseInputConnection.findIndexBackward:(Ljava/lang/CharSequence;II)I
            istore 8 /* start */
        start local 8 // int start
        20: .line 404
            iload 8 /* start */
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            if_icmpeq 29
        21: .line 405
            aload 3 /* content */
            iload 5 /* b */
            iload 2 /* afterLength */
            iconst_0
            invokestatic java.lang.Math.max:(II)I
            invokestatic android.view.inputmethod.BaseInputConnection.findIndexForward:(Ljava/lang/CharSequence;II)I
            istore 9 /* end */
        start local 9 // int end
        22: .line 406
            iload 9 /* end */
            getstatic android.view.inputmethod.BaseInputConnection.INVALID_INDEX:I
            if_icmpeq 29
        23: .line 407
            iload 4 /* a */
            iload 8 /* start */
            isub
            istore 10 /* numDeleteBefore */
        start local 10 // int numDeleteBefore
        24: .line 408
            iload 10 /* numDeleteBefore */
            ifle 26
        25: .line 409
            aload 3 /* content */
            iload 8 /* start */
            iload 4 /* a */
            invokeinterface android.text.Editable.delete:(II)Landroid/text/Editable;
            pop
        26: .line 411
      StackMap locals: int int int
      StackMap stack:
            iload 9 /* end */
            iload 5 /* b */
            isub
            istore 11 /* numDeleteAfter */
        start local 11 // int numDeleteAfter
        27: .line 412
            iload 11 /* numDeleteAfter */
            ifle 29
        28: .line 413
            aload 3 /* content */
            iload 5 /* b */
            iload 10 /* numDeleteBefore */
            isub
            iload 9 /* end */
            iload 10 /* numDeleteBefore */
            isub
            invokeinterface android.text.Editable.delete:(II)Landroid/text/Editable;
            pop
        end local 11 // int numDeleteAfter
        end local 10 // int numDeleteBefore
        end local 9 // int end
        end local 8 // int start
        29: .line 424
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.endBatchEdit:()Z
            pop
        30: .line 426
            iconst_1
            ireturn
        end local 7 // int cb
        end local 6 // int ca
        end local 5 // int b
        end local 4 // int a
        end local 3 // android.text.Editable content
        end local 2 // int afterLength
        end local 1 // int beforeLength
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   31     0             this  Landroid/view/inputmethod/BaseInputConnection;
            0   31     1     beforeLength  I
            0   31     2      afterLength  I
            1   31     3          content  Landroid/text/Editable;
            4   31     4                a  I
            5   31     5                b  I
            7    9     6              tmp  I
           10   31     6               ca  I
           11   31     7               cb  I
           13   15     8              tmp  I
           20   29     8            start  I
           22   29     9              end  I
           24   29    10  numDeleteBefore  I
           27   29    11   numDeleteAfter  I
    MethodParameters:
              Name  Flags
      beforeLength  
      afterLength   

  public boolean finishComposingText();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 436
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 1 /* content */
        start local 1 // android.text.Editable content
         1: .line 437
            aload 1 /* content */
            ifnull 6
         2: .line 438
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.beginBatchEdit:()Z
            pop
         3: .line 439
            aload 1 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.removeComposingSpans:(Landroid/text/Spannable;)V
         4: .line 441
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.sendCurrentText:()V
         5: .line 442
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.endBatchEdit:()Z
            pop
         6: .line 444
      StackMap locals: android.text.Editable
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // android.text.Editable content
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Landroid/view/inputmethod/BaseInputConnection;
            1    7     1  content  Landroid/text/Editable;

  public int getCursorCapsMode(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int reqModes
         0: .line 453
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDummyMode:Z
            ifeq 1
            iconst_0
            ireturn
         1: .line 455
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 2 /* content */
        start local 2 // android.text.Editable content
         2: .line 456
            aload 2 /* content */
            ifnonnull 3
            iconst_0
            ireturn
         3: .line 458
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 2 /* content */
            invokestatic android.text.Selection.getSelectionStart:(Ljava/lang/CharSequence;)I
            istore 3 /* a */
        start local 3 // int a
         4: .line 459
            aload 2 /* content */
            invokestatic android.text.Selection.getSelectionEnd:(Ljava/lang/CharSequence;)I
            istore 4 /* b */
        start local 4 // int b
         5: .line 461
            iload 3 /* a */
            iload 4 /* b */
            if_icmple 9
         6: .line 462
            iload 3 /* a */
            istore 5 /* tmp */
        start local 5 // int tmp
         7: .line 463
            iload 4 /* b */
            istore 3 /* a */
         8: .line 464
            iload 5 /* tmp */
            istore 4 /* b */
        end local 5 // int tmp
         9: .line 467
      StackMap locals: int int
      StackMap stack:
            aload 2 /* content */
            iload 3 /* a */
            iload 1 /* reqModes */
            invokestatic android.text.TextUtils.getCapsMode:(Ljava/lang/CharSequence;II)I
            ireturn
        end local 4 // int b
        end local 3 // int a
        end local 2 // android.text.Editable content
        end local 1 // int reqModes
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Landroid/view/inputmethod/BaseInputConnection;
            0   10     1  reqModes  I
            2   10     2   content  Landroid/text/Editable;
            4   10     3         a  I
            5   10     4         b  I
            7    9     5       tmp  I
    MethodParameters:
          Name  Flags
      reqModes  

  public android.view.inputmethod.ExtractedText getExtractedText(android.view.inputmethod.ExtractedTextRequest, int);
    descriptor: (Landroid/view/inputmethod/ExtractedTextRequest;I)Landroid/view/inputmethod/ExtractedText;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // android.view.inputmethod.ExtractedTextRequest request
        start local 2 // int flags
         0: .line 474
            aconst_null
            areturn
        end local 2 // int flags
        end local 1 // android.view.inputmethod.ExtractedTextRequest request
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1  request  Landroid/view/inputmethod/ExtractedTextRequest;
            0    1     2    flags  I
    MethodParameters:
         Name  Flags
      request  
      flags    

  public java.lang.CharSequence getTextBeforeCursor(int, int);
    descriptor: (II)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int length
        start local 2 // int flags
         0: .line 482
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 3 /* content */
        start local 3 // android.text.Editable content
         1: .line 483
            aload 3 /* content */
            ifnonnull 2
            aconst_null
            areturn
         2: .line 485
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionStart:(Ljava/lang/CharSequence;)I
            istore 4 /* a */
        start local 4 // int a
         3: .line 486
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionEnd:(Ljava/lang/CharSequence;)I
            istore 5 /* b */
        start local 5 // int b
         4: .line 488
            iload 4 /* a */
            iload 5 /* b */
            if_icmple 8
         5: .line 489
            iload 4 /* a */
            istore 6 /* tmp */
        start local 6 // int tmp
         6: .line 490
            iload 5 /* b */
            istore 4 /* a */
         7: .line 491
            iload 6 /* tmp */
            istore 5 /* b */
        end local 6 // int tmp
         8: .line 494
      StackMap locals: int int
      StackMap stack:
            iload 4 /* a */
            ifgt 10
         9: .line 495
            ldc ""
            areturn
        10: .line 498
      StackMap locals:
      StackMap stack:
            iload 1 /* length */
            iload 4 /* a */
            if_icmple 12
        11: .line 499
            iload 4 /* a */
            istore 1 /* length */
        12: .line 502
      StackMap locals:
      StackMap stack:
            iload 2 /* flags */
            iconst_1
            iand
            ifeq 14
        13: .line 503
            aload 3 /* content */
            iload 4 /* a */
            iload 1 /* length */
            isub
            iload 4 /* a */
            invokeinterface android.text.Editable.subSequence:(II)Ljava/lang/CharSequence;
            areturn
        14: .line 505
      StackMap locals:
      StackMap stack:
            aload 3 /* content */
            iload 4 /* a */
            iload 1 /* length */
            isub
            iload 4 /* a */
            invokestatic android.text.TextUtils.substring:(Ljava/lang/CharSequence;II)Ljava/lang/String;
            areturn
        end local 5 // int b
        end local 4 // int a
        end local 3 // android.text.Editable content
        end local 2 // int flags
        end local 1 // int length
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0   15     1   length  I
            0   15     2    flags  I
            1   15     3  content  Landroid/text/Editable;
            3   15     4        a  I
            4   15     5        b  I
            6    8     6      tmp  I
    MethodParameters:
        Name  Flags
      length  
      flags   

  public java.lang.CharSequence getSelectedText(int);
    descriptor: (I)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int flags
         0: .line 513
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 2 /* content */
        start local 2 // android.text.Editable content
         1: .line 514
            aload 2 /* content */
            ifnonnull 2
            aconst_null
            areturn
         2: .line 516
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 2 /* content */
            invokestatic android.text.Selection.getSelectionStart:(Ljava/lang/CharSequence;)I
            istore 3 /* a */
        start local 3 // int a
         3: .line 517
            aload 2 /* content */
            invokestatic android.text.Selection.getSelectionEnd:(Ljava/lang/CharSequence;)I
            istore 4 /* b */
        start local 4 // int b
         4: .line 519
            iload 3 /* a */
            iload 4 /* b */
            if_icmple 8
         5: .line 520
            iload 3 /* a */
            istore 5 /* tmp */
        start local 5 // int tmp
         6: .line 521
            iload 4 /* b */
            istore 3 /* a */
         7: .line 522
            iload 5 /* tmp */
            istore 4 /* b */
        end local 5 // int tmp
         8: .line 525
      StackMap locals: int int
      StackMap stack:
            iload 3 /* a */
            iload 4 /* b */
            if_icmpeq 9
            iload 3 /* a */
            ifge 10
      StackMap locals:
      StackMap stack:
         9: aconst_null
            areturn
        10: .line 527
      StackMap locals:
      StackMap stack:
            iload 1 /* flags */
            iconst_1
            iand
            ifeq 12
        11: .line 528
            aload 2 /* content */
            iload 3 /* a */
            iload 4 /* b */
            invokeinterface android.text.Editable.subSequence:(II)Ljava/lang/CharSequence;
            areturn
        12: .line 530
      StackMap locals:
      StackMap stack:
            aload 2 /* content */
            iload 3 /* a */
            iload 4 /* b */
            invokestatic android.text.TextUtils.substring:(Ljava/lang/CharSequence;II)Ljava/lang/String;
            areturn
        end local 4 // int b
        end local 3 // int a
        end local 2 // android.text.Editable content
        end local 1 // int flags
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0   13     1    flags  I
            1   13     2  content  Landroid/text/Editable;
            3   13     3        a  I
            4   13     4        b  I
            6    8     5      tmp  I
    MethodParameters:
       Name  Flags
      flags  

  public java.lang.CharSequence getTextAfterCursor(int, int);
    descriptor: (II)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int length
        start local 2 // int flags
         0: .line 538
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 3 /* content */
        start local 3 // android.text.Editable content
         1: .line 539
            aload 3 /* content */
            ifnonnull 2
            aconst_null
            areturn
         2: .line 541
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionStart:(Ljava/lang/CharSequence;)I
            istore 4 /* a */
        start local 4 // int a
         3: .line 542
            aload 3 /* content */
            invokestatic android.text.Selection.getSelectionEnd:(Ljava/lang/CharSequence;)I
            istore 5 /* b */
        start local 5 // int b
         4: .line 544
            iload 4 /* a */
            iload 5 /* b */
            if_icmple 8
         5: .line 545
            iload 4 /* a */
            istore 6 /* tmp */
        start local 6 // int tmp
         6: .line 546
            iload 5 /* b */
            istore 4 /* a */
         7: .line 547
            iload 6 /* tmp */
            istore 5 /* b */
        end local 6 // int tmp
         8: .line 551
      StackMap locals: int int
      StackMap stack:
            iload 5 /* b */
            ifge 10
         9: .line 552
            iconst_0
            istore 5 /* b */
        10: .line 555
      StackMap locals:
      StackMap stack:
            iload 5 /* b */
            iload 1 /* length */
            iadd
            aload 3 /* content */
            invokeinterface android.text.Editable.length:()I
            if_icmple 12
        11: .line 556
            aload 3 /* content */
            invokeinterface android.text.Editable.length:()I
            iload 5 /* b */
            isub
            istore 1 /* length */
        12: .line 560
      StackMap locals:
      StackMap stack:
            iload 2 /* flags */
            iconst_1
            iand
            ifeq 14
        13: .line 561
            aload 3 /* content */
            iload 5 /* b */
            iload 5 /* b */
            iload 1 /* length */
            iadd
            invokeinterface android.text.Editable.subSequence:(II)Ljava/lang/CharSequence;
            areturn
        14: .line 563
      StackMap locals:
      StackMap stack:
            aload 3 /* content */
            iload 5 /* b */
            iload 5 /* b */
            iload 1 /* length */
            iadd
            invokestatic android.text.TextUtils.substring:(Ljava/lang/CharSequence;II)Ljava/lang/String;
            areturn
        end local 5 // int b
        end local 4 // int a
        end local 3 // android.text.Editable content
        end local 2 // int flags
        end local 1 // int length
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0   15     1   length  I
            0   15     2    flags  I
            1   15     3  content  Landroid/text/Editable;
            3   15     4        a  I
            4   15     5        b  I
            6    8     6      tmp  I
    MethodParameters:
        Name  Flags
      length  
      flags   

  public boolean performEditorAction(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=14, locals=4, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int actionCode
         0: .line 570
            invokestatic android.os.SystemClock.uptimeMillis:()J
            lstore 2 /* eventTime */
        start local 2 // long eventTime
         1: .line 571
            aload 0 /* this */
            new android.view.KeyEvent
            dup
            lload 2 /* eventTime */
            lload 2 /* eventTime */
         2: .line 572
            iconst_0
            bipush 66
            iconst_0
            iconst_0
         3: .line 573
            iconst_m1
            iconst_0
         4: .line 574
            bipush 22
            invokespecial android.view.KeyEvent.<init>:(JJIIIIIII)V
         5: .line 571
            invokevirtual android.view.inputmethod.BaseInputConnection.sendKeyEvent:(Landroid/view/KeyEvent;)Z
            pop
         6: .line 576
            aload 0 /* this */
            new android.view.KeyEvent
            dup
            invokestatic android.os.SystemClock.uptimeMillis:()J
            lload 2 /* eventTime */
         7: .line 577
            iconst_1
            bipush 66
            iconst_0
            iconst_0
         8: .line 578
            iconst_m1
            iconst_0
         9: .line 579
            bipush 22
            invokespecial android.view.KeyEvent.<init>:(JJIIIIIII)V
        10: .line 576
            invokevirtual android.view.inputmethod.BaseInputConnection.sendKeyEvent:(Landroid/view/KeyEvent;)Z
            pop
        11: .line 581
            iconst_1
            ireturn
        end local 2 // long eventTime
        end local 1 // int actionCode
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Landroid/view/inputmethod/BaseInputConnection;
            0   12     1  actionCode  I
            1   12     2   eventTime  J
    MethodParameters:
            Name  Flags
      actionCode  

  public boolean performContextMenuAction(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int id
         0: .line 588
            iconst_0
            ireturn
        end local 1 // int id
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1    id  I
    MethodParameters:
      Name  Flags
      id    

  public boolean performPrivateCommand(java.lang.String, android.os.Bundle);
    descriptor: (Ljava/lang/String;Landroid/os/Bundle;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // java.lang.String action
        start local 2 // android.os.Bundle data
         0: .line 595
            iconst_0
            ireturn
        end local 2 // android.os.Bundle data
        end local 1 // java.lang.String action
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1  action  Ljava/lang/String;
            0    1     2    data  Landroid/os/Bundle;
    MethodParameters:
        Name  Flags
      action  
      data    

  public boolean requestCursorUpdates(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int cursorUpdateMode
         0: .line 602
            iconst_0
            ireturn
        end local 1 // int cursorUpdateMode
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1  cursorUpdateMode  I
    MethodParameters:
                  Name  Flags
      cursorUpdateMode  

  public android.os.Handler getHandler();
    descriptor: ()Landroid/os/Handler;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 606
            aconst_null
            areturn
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/inputmethod/BaseInputConnection;

  public boolean setComposingText(java.lang.CharSequence, int);
    descriptor: (Ljava/lang/CharSequence;I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // java.lang.CharSequence text
        start local 2 // int newCursorPosition
         0: .line 616
            aload 0 /* this */
            aload 1 /* text */
            iload 2 /* newCursorPosition */
            iconst_1
            invokevirtual android.view.inputmethod.BaseInputConnection.replaceText:(Ljava/lang/CharSequence;IZ)V
         1: .line 617
            iconst_1
            ireturn
        end local 2 // int newCursorPosition
        end local 1 // java.lang.CharSequence text
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    2     0               this  Landroid/view/inputmethod/BaseInputConnection;
            0    2     1               text  Ljava/lang/CharSequence;
            0    2     2  newCursorPosition  I
    MethodParameters:
                   Name  Flags
      text               
      newCursorPosition  

  public boolean setComposingRegion(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int start
        start local 2 // int end
         0: .line 621
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 3 /* content */
        start local 3 // android.text.Editable content
         1: .line 622
            aload 3 /* content */
            ifnull 29
         2: .line 623
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.beginBatchEdit:()Z
            pop
         3: .line 624
            aload 3 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.removeComposingSpans:(Landroid/text/Spannable;)V
         4: .line 625
            iload 1 /* start */
            istore 4 /* a */
        start local 4 // int a
         5: .line 626
            iload 2 /* end */
            istore 5 /* b */
        start local 5 // int b
         6: .line 627
            iload 4 /* a */
            iload 5 /* b */
            if_icmple 10
         7: .line 628
            iload 4 /* a */
            istore 6 /* tmp */
        start local 6 // int tmp
         8: .line 629
            iload 5 /* b */
            istore 4 /* a */
         9: .line 630
            iload 6 /* tmp */
            istore 5 /* b */
        end local 6 // int tmp
        10: .line 633
      StackMap locals: android.text.Editable int int
      StackMap stack:
            aload 3 /* content */
            invokeinterface android.text.Editable.length:()I
            istore 6 /* length */
        start local 6 // int length
        11: .line 634
            iload 4 /* a */
            ifge 12
            iconst_0
            istore 4 /* a */
        12: .line 635
      StackMap locals: int
      StackMap stack:
            iload 5 /* b */
            ifge 13
            iconst_0
            istore 5 /* b */
        13: .line 636
      StackMap locals:
      StackMap stack:
            iload 4 /* a */
            iload 6 /* length */
            if_icmple 14
            iload 6 /* length */
            istore 4 /* a */
        14: .line 637
      StackMap locals:
      StackMap stack:
            iload 5 /* b */
            iload 6 /* length */
            if_icmple 15
            iload 6 /* length */
            istore 5 /* b */
        15: .line 639
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.ensureDefaultComposingSpans:()V
        16: .line 640
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDefaultComposingSpans:[Ljava/lang/Object;
            ifnull 24
        17: .line 641
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        18: goto 23
        19: .line 642
      StackMap locals: int
      StackMap stack:
            aload 3 /* content */
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDefaultComposingSpans:[Ljava/lang/Object;
            iload 7 /* i */
            aaload
            iload 4 /* a */
            iload 5 /* b */
        20: .line 643
            sipush 289
        21: .line 642
            invokeinterface android.text.Editable.setSpan:(Ljava/lang/Object;III)V
        22: .line 641
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        23: iload 7 /* i */
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDefaultComposingSpans:[Ljava/lang/Object;
            arraylength
            if_icmplt 19
        end local 7 // int i
        24: .line 647
      StackMap locals:
      StackMap stack:
            aload 3 /* content */
            getstatic android.view.inputmethod.BaseInputConnection.COMPOSING:Ljava/lang/Object;
            iload 4 /* a */
            iload 5 /* b */
        25: .line 648
            sipush 289
        26: .line 647
            invokeinterface android.text.Editable.setSpan:(Ljava/lang/Object;III)V
        27: .line 651
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.sendCurrentText:()V
        28: .line 652
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.endBatchEdit:()Z
            pop
        end local 6 // int length
        end local 5 // int b
        end local 4 // int a
        29: .line 654
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // android.text.Editable content
        end local 2 // int end
        end local 1 // int start
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   30     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0   30     1    start  I
            0   30     2      end  I
            1   30     3  content  Landroid/text/Editable;
            5   29     4        a  I
            6   29     5        b  I
            8   10     6      tmp  I
           11   29     6   length  I
           18   24     7        i  I
    MethodParameters:
       Name  Flags
      start  
      end    

  public boolean setSelection(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // int start
        start local 2 // int end
         0: .line 663
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 3 /* content */
        start local 3 // android.text.Editable content
         1: .line 664
            aload 3 /* content */
            ifnonnull 2
            iconst_0
            ireturn
         2: .line 665
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 3 /* content */
            invokeinterface android.text.Editable.length:()I
            istore 4 /* len */
        start local 4 // int len
         3: .line 666
            iload 1 /* start */
            iload 4 /* len */
            if_icmpgt 4
            iload 2 /* end */
            iload 4 /* len */
            if_icmpgt 4
            iload 1 /* start */
            iflt 4
            iload 2 /* end */
            ifge 5
         4: .line 671
      StackMap locals: int
      StackMap stack:
            iconst_1
            ireturn
         5: .line 673
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            iload 2 /* end */
            if_icmpne 10
            aload 3 /* content */
         6: .line 674
            sipush 2048
         7: .line 673
            invokestatic android.text.method.MetaKeyKeyListener.getMetaState:(Ljava/lang/CharSequence;I)I
            ifeq 10
         8: .line 677
            aload 3 /* content */
            iload 1 /* start */
            invokestatic android.text.Selection.extendSelection:(Landroid/text/Spannable;I)V
         9: .line 678
            goto 11
        10: .line 679
      StackMap locals:
      StackMap stack:
            aload 3 /* content */
            iload 1 /* start */
            iload 2 /* end */
            invokestatic android.text.Selection.setSelection:(Landroid/text/Spannable;II)V
        11: .line 681
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 4 // int len
        end local 3 // android.text.Editable content
        end local 2 // int end
        end local 1 // int start
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0   12     1    start  I
            0   12     2      end  I
            1   12     3  content  Landroid/text/Editable;
            3   12     4      len  I
    MethodParameters:
       Name  Flags
      start  
      end    

  public boolean sendKeyEvent(android.view.KeyEvent);
    descriptor: (Landroid/view/KeyEvent;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // android.view.KeyEvent event
         0: .line 689
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mIMM:Landroid/view/inputmethod/InputMethodManager;
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mTargetView:Landroid/view/View;
            aload 1 /* event */
            invokevirtual android.view.inputmethod.InputMethodManager.dispatchKeyEventFromInputMethod:(Landroid/view/View;Landroid/view/KeyEvent;)V
         1: .line 690
            iconst_0
            ireturn
        end local 1 // android.view.KeyEvent event
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/view/inputmethod/BaseInputConnection;
            0    2     1  event  Landroid/view/KeyEvent;
    MethodParameters:
       Name  Flags
      event  

  public boolean reportFullscreenMode(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // boolean enabled
         0: .line 697
            iconst_1
            ireturn
        end local 1 // boolean enabled
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1  enabled  Z
    MethodParameters:
         Name  Flags
      enabled  

  private void sendCurrentText();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 701
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDummyMode:Z
            ifne 2
         1: .line 702
            return
         2: .line 705
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 1 /* content */
        start local 1 // android.text.Editable content
         3: .line 706
            aload 1 /* content */
            ifnull 26
         4: .line 707
            aload 1 /* content */
            invokeinterface android.text.Editable.length:()I
            istore 2 /* N */
        start local 2 // int N
         5: .line 708
            iload 2 /* N */
            ifne 7
         6: .line 709
            return
         7: .line 711
      StackMap locals: android.text.Editable int
      StackMap stack:
            iload 2 /* N */
            iconst_1
            if_icmpne 21
         8: .line 714
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mKeyCharacterMap:Landroid/view/KeyCharacterMap;
            ifnonnull 10
         9: .line 715
            aload 0 /* this */
            iconst_m1
            invokestatic android.view.KeyCharacterMap.load:(I)Landroid/view/KeyCharacterMap;
            putfield android.view.inputmethod.BaseInputConnection.mKeyCharacterMap:Landroid/view/KeyCharacterMap;
        10: .line 717
      StackMap locals:
      StackMap stack:
            iconst_1
            newarray 5
            astore 3 /* chars */
        start local 3 // char[] chars
        11: .line 718
            aload 1 /* content */
            iconst_0
            iconst_1
            aload 3 /* chars */
            iconst_0
            invokeinterface android.text.Editable.getChars:(II[CI)V
        12: .line 719
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mKeyCharacterMap:Landroid/view/KeyCharacterMap;
            aload 3 /* chars */
            invokevirtual android.view.KeyCharacterMap.getEvents:([C)[Landroid/view/KeyEvent;
            astore 4 /* events */
        start local 4 // android.view.KeyEvent[] events
        13: .line 720
            aload 4 /* events */
            ifnull 21
        14: .line 721
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        15: goto 18
        16: .line 723
      StackMap locals: char[] android.view.KeyEvent[] int
      StackMap stack:
            aload 0 /* this */
            aload 4 /* events */
            iload 5 /* i */
            aaload
            invokevirtual android.view.inputmethod.BaseInputConnection.sendKeyEvent:(Landroid/view/KeyEvent;)Z
            pop
        17: .line 721
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 5 /* i */
            aload 4 /* events */
            arraylength
            if_icmplt 16
        end local 5 // int i
        19: .line 725
            aload 1 /* content */
            invokeinterface android.text.Editable.clear:()V
        20: .line 726
            return
        end local 4 // android.view.KeyEvent[] events
        end local 3 // char[] chars
        21: .line 732
      StackMap locals:
      StackMap stack:
            new android.view.KeyEvent
            dup
            invokestatic android.os.SystemClock.uptimeMillis:()J
        22: .line 733
            aload 1 /* content */
            invokeinterface android.text.Editable.toString:()Ljava/lang/String;
            iconst_m1
            iconst_0
        23: .line 732
            invokespecial android.view.KeyEvent.<init>:(JLjava/lang/String;II)V
            astore 3 /* event */
        start local 3 // android.view.KeyEvent event
        24: .line 734
            aload 0 /* this */
            aload 3 /* event */
            invokevirtual android.view.inputmethod.BaseInputConnection.sendKeyEvent:(Landroid/view/KeyEvent;)Z
            pop
        25: .line 735
            aload 1 /* content */
            invokeinterface android.text.Editable.clear:()V
        end local 3 // android.view.KeyEvent event
        end local 2 // int N
        26: .line 737
      StackMap locals:
      StackMap stack:
            return
        end local 1 // android.text.Editable content
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   27     0     this  Landroid/view/inputmethod/BaseInputConnection;
            3   27     1  content  Landroid/text/Editable;
            5   26     2        N  I
           11   21     3    chars  [C
           13   21     4   events  [Landroid/view/KeyEvent;
           15   19     5        i  I
           24   26     3    event  Landroid/view/KeyEvent;

  private void ensureDefaultComposingSpans();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.view.inputmethod.BaseInputConnection this
         0: .line 752
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tcom.android.internal.R.attr cannot be resolved to a variable\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/view/inputmethod/BaseInputConnection;

  private void replaceText(java.lang.CharSequence, int, boolean);
    descriptor: (Ljava/lang/CharSequence;IZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=9, args_size=4
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // java.lang.CharSequence text
        start local 2 // int newCursorPosition
        start local 3 // boolean composing
         0: .line 766
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.getEditable:()Landroid/text/Editable;
            astore 4 /* content */
        start local 4 // android.text.Editable content
         1: .line 767
            aload 4 /* content */
            ifnonnull 3
         2: .line 768
            return
         3: .line 771
      StackMap locals: android.text.Editable
      StackMap stack:
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.beginBatchEdit:()Z
            pop
         4: .line 774
            aload 4 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.getComposingSpanStart:(Landroid/text/Spannable;)I
            istore 5 /* a */
        start local 5 // int a
         5: .line 775
            aload 4 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.getComposingSpanEnd:(Landroid/text/Spannable;)I
            istore 6 /* b */
        start local 6 // int b
         6: .line 779
            iload 6 /* b */
            iload 5 /* a */
            if_icmpge 10
         7: .line 780
            iload 5 /* a */
            istore 7 /* tmp */
        start local 7 // int tmp
         8: .line 781
            iload 6 /* b */
            istore 5 /* a */
         9: .line 782
            iload 7 /* tmp */
            istore 6 /* b */
        end local 7 // int tmp
        10: .line 785
      StackMap locals: int int
      StackMap stack:
            iload 5 /* a */
            iconst_m1
            if_icmpeq 13
            iload 6 /* b */
            iconst_m1
            if_icmpeq 13
        11: .line 786
            aload 4 /* content */
            invokestatic android.view.inputmethod.BaseInputConnection.removeComposingSpans:(Landroid/text/Spannable;)V
        12: .line 787
            goto 21
        13: .line 788
      StackMap locals:
      StackMap stack:
            aload 4 /* content */
            invokestatic android.text.Selection.getSelectionStart:(Ljava/lang/CharSequence;)I
            istore 5 /* a */
        14: .line 789
            aload 4 /* content */
            invokestatic android.text.Selection.getSelectionEnd:(Ljava/lang/CharSequence;)I
            istore 6 /* b */
        15: .line 790
            iload 5 /* a */
            ifge 16
            iconst_0
            istore 5 /* a */
        16: .line 791
      StackMap locals:
      StackMap stack:
            iload 6 /* b */
            ifge 17
            iconst_0
            istore 6 /* b */
        17: .line 792
      StackMap locals:
      StackMap stack:
            iload 6 /* b */
            iload 5 /* a */
            if_icmpge 21
        18: .line 793
            iload 5 /* a */
            istore 7 /* tmp */
        start local 7 // int tmp
        19: .line 794
            iload 6 /* b */
            istore 5 /* a */
        20: .line 795
            iload 7 /* tmp */
            istore 6 /* b */
        end local 7 // int tmp
        21: .line 799
      StackMap locals:
      StackMap stack:
            iload 3 /* composing */
            ifeq 38
        22: .line 800
            aconst_null
            astore 7 /* sp */
        start local 7 // android.text.Spannable sp
        23: .line 801
            aload 1 /* text */
            instanceof android.text.Spannable
            ifne 36
        24: .line 802
            new android.text.SpannableStringBuilder
            dup
            aload 1 /* text */
            invokespecial android.text.SpannableStringBuilder.<init>:(Ljava/lang/CharSequence;)V
            astore 7 /* sp */
        25: .line 803
            aload 7 /* sp */
            astore 1 /* text */
        26: .line 804
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.ensureDefaultComposingSpans:()V
        27: .line 805
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDefaultComposingSpans:[Ljava/lang/Object;
            ifnull 37
        28: .line 806
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        29: goto 34
        30: .line 807
      StackMap locals: android.text.Spannable int
      StackMap stack:
            aload 7 /* sp */
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDefaultComposingSpans:[Ljava/lang/Object;
            iload 8 /* i */
            aaload
            iconst_0
            aload 7 /* sp */
            invokeinterface android.text.Spannable.length:()I
        31: .line 808
            sipush 289
        32: .line 807
            invokeinterface android.text.Spannable.setSpan:(Ljava/lang/Object;III)V
        33: .line 806
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        34: iload 8 /* i */
            aload 0 /* this */
            getfield android.view.inputmethod.BaseInputConnection.mDefaultComposingSpans:[Ljava/lang/Object;
            arraylength
            if_icmplt 30
        end local 8 // int i
        35: .line 811
            goto 37
        36: .line 812
      StackMap locals:
      StackMap stack:
            aload 1 /* text */
            checkcast android.text.Spannable
            astore 7 /* sp */
        37: .line 814
      StackMap locals:
      StackMap stack:
            aload 7 /* sp */
            invokestatic android.view.inputmethod.BaseInputConnection.setComposingSpans:(Landroid/text/Spannable;)V
        end local 7 // android.text.Spannable sp
        38: .line 833
      StackMap locals:
      StackMap stack:
            iload 2 /* newCursorPosition */
            ifle 41
        39: .line 834
            iload 2 /* newCursorPosition */
            iload 6 /* b */
            iconst_1
            isub
            iadd
            istore 2 /* newCursorPosition */
        40: .line 835
            goto 42
        41: .line 836
      StackMap locals:
      StackMap stack:
            iload 2 /* newCursorPosition */
            iload 5 /* a */
            iadd
            istore 2 /* newCursorPosition */
        42: .line 838
      StackMap locals:
      StackMap stack:
            iload 2 /* newCursorPosition */
            ifge 43
            iconst_0
            istore 2 /* newCursorPosition */
        43: .line 839
      StackMap locals:
      StackMap stack:
            iload 2 /* newCursorPosition */
            aload 4 /* content */
            invokeinterface android.text.Editable.length:()I
            if_icmple 45
        44: .line 840
            aload 4 /* content */
            invokeinterface android.text.Editable.length:()I
            istore 2 /* newCursorPosition */
        45: .line 841
      StackMap locals:
      StackMap stack:
            aload 4 /* content */
            iload 2 /* newCursorPosition */
            invokestatic android.text.Selection.setSelection:(Landroid/text/Spannable;I)V
        46: .line 843
            aload 4 /* content */
            iload 5 /* a */
            iload 6 /* b */
            aload 1 /* text */
            invokeinterface android.text.Editable.replace:(IILjava/lang/CharSequence;)Landroid/text/Editable;
            pop
        47: .line 851
            aload 0 /* this */
            invokevirtual android.view.inputmethod.BaseInputConnection.endBatchEdit:()Z
            pop
        48: .line 852
            return
        end local 6 // int b
        end local 5 // int a
        end local 4 // android.text.Editable content
        end local 3 // boolean composing
        end local 2 // int newCursorPosition
        end local 1 // java.lang.CharSequence text
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   49     0               this  Landroid/view/inputmethod/BaseInputConnection;
            0   49     1               text  Ljava/lang/CharSequence;
            0   49     2  newCursorPosition  I
            0   49     3          composing  Z
            1   49     4            content  Landroid/text/Editable;
            5   49     5                  a  I
            6   49     6                  b  I
            8   10     7                tmp  I
           19   21     7                tmp  I
           23   38     7                 sp  Landroid/text/Spannable;
           29   35     8                  i  I
    MethodParameters:
                   Name  Flags
      text               
      newCursorPosition  
      composing          

  public boolean commitContent(android.view.inputmethod.InputContentInfo, int, android.os.Bundle);
    descriptor: (Landroid/view/inputmethod/InputContentInfo;ILandroid/os/Bundle;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // android.view.inputmethod.BaseInputConnection this
        start local 1 // android.view.inputmethod.InputContentInfo inputContentInfo
        start local 2 // int flags
        start local 3 // android.os.Bundle opts
         0: .line 858
            iconst_0
            ireturn
        end local 3 // android.os.Bundle opts
        end local 2 // int flags
        end local 1 // android.view.inputmethod.InputContentInfo inputContentInfo
        end local 0 // android.view.inputmethod.BaseInputConnection this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Landroid/view/inputmethod/BaseInputConnection;
            0    1     1  inputContentInfo  Landroid/view/inputmethod/InputContentInfo;
            0    1     2             flags  I
            0    1     3              opts  Landroid/os/Bundle;
    MethodParameters:
                  Name  Flags
      inputContentInfo  
      flags             
      opts              
}
SourceFile: "BaseInputConnection.java"
InnerClasses:
  public Factory = android.text.Editable$Factory of android.text.Editable