class android.text.PackedObjectVector<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: android.text.PackedObjectVector
  super_class: java.lang.Object
{
  private int mColumns;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.text.PackedObjectVector this
         0: .line 22
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \n\tThe import libcore.util cannot be resolved\n\tEmptyArray cannot be resolved to a variable\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/PackedObjectVector<TE;>;
    MethodParameters:
         Name  Flags
      columns  

  public E getValue(int, );
    descriptor: (II)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // android.text.PackedObjectVector this
        start local 1 // int row
        start local 2 // int column
         0: .line 48
            iload 1 /* row */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            if_icmplt 2
         1: .line 49
            iload 1 /* row */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            istore 1 /* row */
         2: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iload 1 /* row */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 2 /* column */
            iadd
            aaload
            astore 3 /* value */
        start local 3 // java.lang.Object value
         3: .line 53
            aload 3 /* value */
            areturn
        end local 3 // java.lang.Object value
        end local 2 // int column
        end local 1 // int row
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/text/PackedObjectVector<TE;>;
            0    4     1     row  I
            0    4     2  column  I
            3    4     3   value  Ljava/lang/Object;
    Signature: (II)TE;
    MethodParameters:
        Name  Flags
      row     
      column  

  public void setValue(int, int, );
    descriptor: (IILjava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // android.text.PackedObjectVector this
        start local 1 // int row
        start local 2 // int column
        start local 3 // java.lang.Object value
         0: .line 59
            iload 1 /* row */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            if_icmplt 2
         1: .line 60
            iload 1 /* row */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            istore 1 /* row */
         2: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iload 1 /* row */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 2 /* column */
            iadd
            aload 3 /* value */
            aastore
         3: .line 63
            return
        end local 3 // java.lang.Object value
        end local 2 // int column
        end local 1 // int row
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Landroid/text/PackedObjectVector<TE;>;
            0    4     1     row  I
            0    4     2  column  I
            0    4     3   value  TE;
    Signature: (IITE;)V
    MethodParameters:
        Name  Flags
      row     
      column  
      value   

  public void insertAt(int, );
    descriptor: (I[Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // android.text.PackedObjectVector this
        start local 1 // int row
        start local 2 // java.lang.Object[] values
         0: .line 68
            aload 0 /* this */
            iload 1 /* row */
            invokevirtual android.text.PackedObjectVector.moveRowGapTo:(I)V
         1: .line 70
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            ifne 3
         2: .line 71
            aload 0 /* this */
            invokevirtual android.text.PackedObjectVector.growBuffer:()V
         3: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield android.text.PackedObjectVector.mRowGapStart:I
            iconst_1
            iadd
            putfield android.text.PackedObjectVector.mRowGapStart:I
         4: .line 74
            aload 0 /* this */
            dup
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iconst_1
            isub
            putfield android.text.PackedObjectVector.mRowGapLength:I
         5: .line 76
            aload 2 /* values */
            ifnonnull 12
         6: .line 77
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 10
         8: .line 78
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* row */
            iload 3 /* i */
            aconst_null
            invokevirtual android.text.PackedObjectVector.setValue:(IILjava/lang/Object;)V
         9: .line 77
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            if_icmplt 8
        end local 3 // int i
        11: .line 78
            goto 17
        12: .line 80
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        13: goto 16
        14: .line 81
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* row */
            iload 3 /* i */
            aload 2 /* values */
            iload 3 /* i */
            aaload
            invokevirtual android.text.PackedObjectVector.setValue:(IILjava/lang/Object;)V
        15: .line 80
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            if_icmplt 14
        end local 3 // int i
        17: .line 82
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.Object[] values
        end local 1 // int row
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Landroid/text/PackedObjectVector<TE;>;
            0   18     1     row  I
            0   18     2  values  [Ljava/lang/Object;
            7   11     3       i  I
           13   17     3       i  I
    Signature: (I[TE;)V
    MethodParameters:
        Name  Flags
      row     
      values  

  public void deleteAt(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.text.PackedObjectVector this
        start local 1 // int row
        start local 2 // int count
         0: .line 87
            aload 0 /* this */
            iload 1 /* row */
            iload 2 /* count */
            iadd
            invokevirtual android.text.PackedObjectVector.moveRowGapTo:(I)V
         1: .line 89
            aload 0 /* this */
            dup
            getfield android.text.PackedObjectVector.mRowGapStart:I
            iload 2 /* count */
            isub
            putfield android.text.PackedObjectVector.mRowGapStart:I
         2: .line 90
            aload 0 /* this */
            dup
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iload 2 /* count */
            iadd
            putfield android.text.PackedObjectVector.mRowGapLength:I
         3: .line 92
            aload 0 /* this */
            invokevirtual android.text.PackedObjectVector.size:()I
            pop
         4: .line 97
            return
        end local 2 // int count
        end local 1 // int row
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Landroid/text/PackedObjectVector<TE;>;
            0    5     1    row  I
            0    5     2  count  I
    MethodParameters:
       Name  Flags
      row    
      count  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.text.PackedObjectVector this
         0: .line 102
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRows:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            isub
            ireturn
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/PackedObjectVector<TE;>;

  public int width();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.PackedObjectVector this
         0: .line 108
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            ireturn
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/PackedObjectVector<TE;>;

  private void growBuffer();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // android.text.PackedObjectVector this
         0: .line 115
            aload 0 /* this */
            invokevirtual android.text.PackedObjectVector.size:()I
            invokestatic com.android.internal.util.GrowingArrayUtils.growSize:(I)I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
         1: .line 114
            invokestatic com.android.internal.util.ArrayUtils.newUnpaddedObjectArray:(I)[Ljava/lang/Object;
            astore 1 /* newvalues */
        start local 1 // java.lang.Object[] newvalues
         2: .line 116
            aload 1 /* newvalues */
            arraylength
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            idiv
            istore 2 /* newsize */
        start local 2 // int newsize
         3: .line 117
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRows:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            isub
            istore 3 /* after */
        start local 3 // int after
         4: .line 119
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iconst_0
            aload 1 /* newvalues */
            iconst_0
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            imul
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 120
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRows:I
            iload 3 /* after */
            isub
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            aload 1 /* newvalues */
            iload 2 /* newsize */
            iload 3 /* after */
            isub
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 3 /* after */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 122
            aload 0 /* this */
            dup
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iload 2 /* newsize */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRows:I
            isub
            iadd
            putfield android.text.PackedObjectVector.mRowGapLength:I
         7: .line 123
            aload 0 /* this */
            iload 2 /* newsize */
            putfield android.text.PackedObjectVector.mRows:I
         8: .line 124
            aload 0 /* this */
            aload 1 /* newvalues */
            putfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
         9: .line 125
            return
        end local 3 // int after
        end local 2 // int newsize
        end local 1 // java.lang.Object[] newvalues
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Landroid/text/PackedObjectVector<TE;>;
            2   10     1  newvalues  [Ljava/lang/Object;
            3   10     2    newsize  I
            4   10     3      after  I

  private void moveRowGapTo(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // android.text.PackedObjectVector this
        start local 1 // int where
         0: .line 130
            iload 1 /* where */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            if_icmpne 2
         1: .line 131
            return
         2: .line 133
      StackMap locals:
      StackMap stack:
            iload 1 /* where */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            if_icmple 16
         3: .line 135
            iload 1 /* where */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            isub
            istore 2 /* moving */
        start local 2 // int moving
         4: .line 137
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            istore 3 /* i */
        start local 3 // int i
         5: goto 14
         6: .line 139
      StackMap locals: int int
      StackMap stack:
            iload 3 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            isub
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            iadd
            istore 4 /* destrow */
        start local 4 // int destrow
         7: .line 141
            iconst_0
            istore 5 /* j */
        start local 5 // int j
         8: goto 12
         9: .line 143
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iload 3 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 5 /* j */
            iadd
            aaload
            astore 6 /* val */
        start local 6 // java.lang.Object val
        10: .line 145
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iload 4 /* destrow */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 5 /* j */
            iadd
            aload 6 /* val */
            aastore
        end local 6 // java.lang.Object val
        11: .line 141
            iinc 5 /* j */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* j */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            if_icmplt 9
        end local 5 // int j
        end local 4 // int destrow
        13: .line 137
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 3 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            iload 2 /* moving */
            iadd
            if_icmplt 6
        end local 3 // int i
        end local 2 // int moving
        15: .line 148
            goto 28
        16: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            iload 1 /* where */
            isub
            istore 2 /* moving */
        start local 2 // int moving
        17: .line 153
            iload 1 /* where */
            iload 2 /* moving */
            iadd
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
        18: goto 27
        19: .line 155
      StackMap locals: int int
      StackMap stack:
            iload 3 /* i */
            iload 1 /* where */
            isub
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            iadd
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            iload 2 /* moving */
            isub
            istore 4 /* destrow */
        start local 4 // int destrow
        20: .line 157
            iconst_0
            istore 5 /* j */
        start local 5 // int j
        21: goto 25
        22: .line 159
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iload 3 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 5 /* j */
            iadd
            aaload
            astore 6 /* val */
        start local 6 // java.lang.Object val
        23: .line 161
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iload 4 /* destrow */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 5 /* j */
            iadd
            aload 6 /* val */
            aastore
        end local 6 // java.lang.Object val
        24: .line 157
            iinc 5 /* j */ 1
      StackMap locals:
      StackMap stack:
        25: iload 5 /* j */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            if_icmplt 22
        end local 5 // int j
        end local 4 // int destrow
        26: .line 153
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
        27: iload 3 /* i */
            iload 1 /* where */
            if_icmpge 19
        end local 3 // int i
        end local 2 // int moving
        28: .line 166
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* where */
            putfield android.text.PackedObjectVector.mRowGapStart:I
        29: .line 167
            return
        end local 1 // int where
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   30     0     this  Landroid/text/PackedObjectVector<TE;>;
            0   30     1    where  I
            4   15     2   moving  I
            5   15     3        i  I
            7   13     4  destrow  I
            8   13     5        j  I
           10   11     6      val  Ljava/lang/Object;
           17   28     2   moving  I
           18   28     3        i  I
           20   26     4  destrow  I
           21   26     5        j  I
           23   24     6      val  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      where  

  public void dump();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // android.text.PackedObjectVector this
         0: .line 172
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         1: goto 12
         2: .line 174
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 2 /* j */
        start local 2 // int j
         3: goto 9
         4: .line 176
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mValues:[Ljava/lang/Object;
            iload 1 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            imul
            iload 2 /* j */
            iadd
            aaload
            astore 3 /* val */
        start local 3 // java.lang.Object val
         5: .line 178
            iload 1 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            if_icmplt 6
            iload 1 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapStart:I
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRowGapLength:I
            iadd
            if_icmplt 7
         6: .line 179
      StackMap locals: java.lang.Object
      StackMap stack:
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 3 /* val */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
            goto 8
         7: .line 181
      StackMap locals:
      StackMap stack:
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            ldc "("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* val */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ") "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        end local 3 // java.lang.Object val
         8: .line 174
      StackMap locals:
      StackMap stack:
            iinc 2 /* j */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* j */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mColumns:I
            if_icmplt 4
        end local 2 // int j
        10: .line 184
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc " << \n"
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        11: .line 172
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 1 /* i */
            aload 0 /* this */
            getfield android.text.PackedObjectVector.mRows:I
            if_icmplt 2
        end local 1 // int i
        13: .line 187
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "-----\n\n"
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
        14: .line 188
            return
        end local 0 // android.text.PackedObjectVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Landroid/text/PackedObjectVector<TE;>;
            1   13     1     i  I
            3   10     2     j  I
            5    8     3   val  Ljava/lang/Object;
}
Signature: <E:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "PackedObjectVector.java"