public class android.text.AutoGrowArray$IntArray
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.text.AutoGrowArray$IntArray
  super_class: java.lang.Object
{
  private int[] mValues;
    descriptor: [I
    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$IntArray this
         0: .line 169
            aload 0 /* this */
            bipush 10
            invokespecial android.text.AutoGrowArray$IntArray.<init>:(I)V
         1: .line 170
            return
        end local 0 // android.text.AutoGrowArray$IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/text/AutoGrowArray$IntArray;

  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$IntArray 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$IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/AutoGrowArray$IntArray;
    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$IntArray this
        start local 1 // int newSize
         0: .line 189
            iload 1 /* newSize */
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mValues:[I
            arraylength
            if_icmple 2
         1: .line 190
            aload 0 /* this */
            iload 1 /* newSize */
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mSize:I
            isub
            invokevirtual android.text.AutoGrowArray$IntArray.ensureCapacity:(I)V
         2: .line 192
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newSize */
            putfield android.text.AutoGrowArray$IntArray.mSize:I
         3: .line 193
            return
        end local 1 // int newSize
        end local 0 // android.text.AutoGrowArray$IntArray this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Landroid/text/AutoGrowArray$IntArray;
            0    4     1  newSize  I
    MethodParameters:
         Name  Flags
      newSize  

  public void append(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // android.text.AutoGrowArray$IntArray this
        start local 1 // int value
         0: .line 199
            aload 0 /* this */
            iconst_1
            invokevirtual android.text.AutoGrowArray$IntArray.ensureCapacity:(I)V
         1: .line 200
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mValues:[I
            aload 0 /* this */
            dup
            getfield android.text.AutoGrowArray$IntArray.mSize:I
            dup_x1
            iconst_1
            iadd
            putfield android.text.AutoGrowArray$IntArray.mSize:I
            iload 1 /* value */
            iastore
         2: .line 201
            return
        end local 1 // int value
        end local 0 // android.text.AutoGrowArray$IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Landroid/text/AutoGrowArray$IntArray;
            0    3     1  value  I
    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$IntArray this
        start local 1 // int count
         0: .line 207
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mSize:I
            iload 1 /* count */
            iadd
            istore 2 /* requestedSize */
        start local 2 // int requestedSize
         1: .line 208
            iload 2 /* requestedSize */
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mValues:[I
            arraylength
            if_icmplt 6
         2: .line 209
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mSize:I
            iload 2 /* requestedSize */
            invokestatic android.text.AutoGrowArray.computeNewCapacity:(II)I
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 210
            iload 3 /* newCapacity */
            invokestatic com.android.internal.util.ArrayUtils.newUnpaddedIntArray:(I)[I
            astore 4 /* newValues */
        start local 4 // int[] newValues
         4: .line 211
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mValues:[I
            iconst_0
            aload 4 /* newValues */
            iconst_0
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 212
            aload 0 /* this */
            aload 4 /* newValues */
            putfield android.text.AutoGrowArray$IntArray.mValues:[I
        end local 4 // int[] newValues
        end local 3 // int newCapacity
         6: .line 214
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int requestedSize
        end local 1 // int count
        end local 0 // android.text.AutoGrowArray$IntArray this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Landroid/text/AutoGrowArray$IntArray;
            0    7     1          count  I
            1    7     2  requestedSize  I
            3    6     3    newCapacity  I
            4    6     4      newValues  [I
    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$IntArray this
         0: .line 220
            aload 0 /* this */
            iconst_0
            putfield android.text.AutoGrowArray$IntArray.mSize:I
         1: .line 221
            return
        end local 0 // android.text.AutoGrowArray$IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/text/AutoGrowArray$IntArray;

  public void clearWithReleasingLargeArray();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.text.AutoGrowArray$IntArray this
         0: .line 230
            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$IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/AutoGrowArray$IntArray;

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

  public void set(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.text.AutoGrowArray$IntArray this
        start local 1 // int index
        start local 2 // int value
         0: .line 245
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mValues:[I
            iload 1 /* index */
            iload 2 /* value */
            iastore
         1: .line 246
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // android.text.AutoGrowArray$IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/text/AutoGrowArray$IntArray;
            0    2     1  index  I
            0    2     2  value  I
    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$IntArray this
         0: .line 252
            aload 0 /* this */
            getfield android.text.AutoGrowArray$IntArray.mSize:I
            ireturn
        end local 0 // android.text.AutoGrowArray$IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/text/AutoGrowArray$IntArray;

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