public class android.text.AutoGrowArray$ByteArray
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.text.AutoGrowArray$ByteArray
  super_class: java.lang.Object
{
  private byte[] mValues;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.text.AutoGrowArray$ByteArray this
         0: .line 60
            aload 0 /* this */
            bipush 10
            invokespecial android.text.AutoGrowArray$ByteArray.<init>:(I)V
         1: .line 61
            return
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/text/AutoGrowArray$ByteArray;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.text.AutoGrowArray$ByteArray this
         0: .line 24
            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\tEmptyArray cannot be resolved to a variable\n\tEmptyArray cannot be resolved to a variable\n\tEmptyArray cannot be resolved to a variable\n\tEmptyArray cannot be resolved to a variable\n\tEmptyArray cannot be resolved to a variable\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/AutoGrowArray$ByteArray;
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void resize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.text.AutoGrowArray$ByteArray this
        start local 1 // int newSize
         0: .line 80
            iload 1 /* newSize */
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mValues:[B
            arraylength
            if_icmple 2
         1: .line 81
            aload 0 /* this */
            iload 1 /* newSize */
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mSize:I
            isub
            invokevirtual android.text.AutoGrowArray$ByteArray.ensureCapacity:(I)V
         2: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newSize */
            putfield android.text.AutoGrowArray$ByteArray.mSize:I
         3: .line 84
            return
        end local 1 // int newSize
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Landroid/text/AutoGrowArray$ByteArray;
            0    4     1  newSize  I
    MethodParameters:
         Name  Flags
      newSize  

  public void append(byte);
    descriptor: (B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.text.AutoGrowArray$ByteArray this
        start local 1 // byte value
         0: .line 90
            aload 0 /* this */
            iconst_1
            invokevirtual android.text.AutoGrowArray$ByteArray.ensureCapacity:(I)V
         1: .line 91
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mValues:[B
            aload 0 /* this */
            dup
            getfield android.text.AutoGrowArray$ByteArray.mSize:I
            dup_x1
            iconst_1
            iadd
            putfield android.text.AutoGrowArray$ByteArray.mSize:I
            iload 1 /* value */
            bastore
         2: .line 92
            return
        end local 1 // byte value
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Landroid/text/AutoGrowArray$ByteArray;
            0    3     1  value  B
    MethodParameters:
       Name  Flags
      value  

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // android.text.AutoGrowArray$ByteArray this
        start local 1 // int count
         0: .line 98
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mSize:I
            iload 1 /* count */
            iadd
            istore 2 /* requestedSize */
        start local 2 // int requestedSize
         1: .line 99
            iload 2 /* requestedSize */
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mValues:[B
            arraylength
            if_icmplt 6
         2: .line 100
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mSize:I
            iload 2 /* requestedSize */
            invokestatic android.text.AutoGrowArray.computeNewCapacity:(II)I
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 101
            iload 3 /* newCapacity */
            invokestatic com.android.internal.util.ArrayUtils.newUnpaddedByteArray:(I)[B
            astore 4 /* newValues */
        start local 4 // byte[] newValues
         4: .line 102
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mValues:[B
            iconst_0
            aload 4 /* newValues */
            iconst_0
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 103
            aload 0 /* this */
            aload 4 /* newValues */
            putfield android.text.AutoGrowArray$ByteArray.mValues:[B
        end local 4 // byte[] newValues
        end local 3 // int newCapacity
         6: .line 105
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int requestedSize
        end local 1 // int count
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Landroid/text/AutoGrowArray$ByteArray;
            0    7     1          count  I
            1    7     2  requestedSize  I
            3    6     3    newCapacity  I
            4    6     4      newValues  [B
    MethodParameters:
       Name  Flags
      count  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.text.AutoGrowArray$ByteArray this
         0: .line 111
            aload 0 /* this */
            iconst_0
            putfield android.text.AutoGrowArray$ByteArray.mSize:I
         1: .line 112
            return
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/text/AutoGrowArray$ByteArray;

  public void clearWithReleasingLargeArray();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.text.AutoGrowArray$ByteArray this
         0: .line 121
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tEmptyArray cannot be resolved to a variable\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/AutoGrowArray$ByteArray;

  public byte get(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.text.AutoGrowArray$ByteArray this
        start local 1 // int index
         0: .line 129
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mValues:[B
            iload 1 /* index */
            baload
            ireturn
        end local 1 // int index
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Landroid/text/AutoGrowArray$ByteArray;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public void set(int, byte);
    descriptor: (IB)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.text.AutoGrowArray$ByteArray this
        start local 1 // int index
        start local 2 // byte value
         0: .line 136
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mValues:[B
            iload 1 /* index */
            iload 2 /* value */
            bastore
         1: .line 137
            return
        end local 2 // byte value
        end local 1 // int index
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/text/AutoGrowArray$ByteArray;
            0    2     1  index  I
            0    2     2  value  B
    MethodParameters:
       Name  Flags
      index  
      value  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.AutoGrowArray$ByteArray this
         0: .line 143
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mSize:I
            ireturn
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/AutoGrowArray$ByteArray;

  public byte[] getRawArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.text.AutoGrowArray$ByteArray this
         0: .line 153
            aload 0 /* this */
            getfield android.text.AutoGrowArray$ByteArray.mValues:[B
            areturn
        end local 0 // android.text.AutoGrowArray$ByteArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/AutoGrowArray$ByteArray;
}
SourceFile: "AutoGrowArray.java"
NestHost: android.text.AutoGrowArray
InnerClasses:
  public ByteArray = android.text.AutoGrowArray$ByteArray of android.text.AutoGrowArray