public class com.android.gallery3d.util.IntArray
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.android.gallery3d.util.IntArray
  super_class: java.lang.Object
{
  private static final int INIT_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 8

  private int[] mData;
    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 // com.android.gallery3d.util.IntArray this
         0: .line 19
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 22
            aload 0 /* this */
            bipush 8
            newarray 10
            putfield com.android.gallery3d.util.IntArray.mData:[I
         2: .line 23
            aload 0 /* this */
            iconst_0
            putfield com.android.gallery3d.util.IntArray.mSize:I
         3: .line 19
            return
        end local 0 // com.android.gallery3d.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/android/gallery3d/util/IntArray;

  public void add(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.android.gallery3d.util.IntArray this
        start local 1 // int value
         0: .line 26
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mData:[I
            arraylength
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            if_icmpne 4
         1: .line 27
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            iadd
            newarray 10
            astore 2 /* temp */
        start local 2 // int[] temp
         2: .line 28
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mData:[I
            iconst_0
            aload 2 /* temp */
            iconst_0
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 29
            aload 0 /* this */
            aload 2 /* temp */
            putfield com.android.gallery3d.util.IntArray.mData:[I
        end local 2 // int[] temp
         4: .line 31
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mData:[I
            aload 0 /* this */
            dup
            getfield com.android.gallery3d.util.IntArray.mSize:I
            dup_x1
            iconst_1
            iadd
            putfield com.android.gallery3d.util.IntArray.mSize:I
            iload 1 /* value */
            iastore
         5: .line 32
            return
        end local 1 // int value
        end local 0 // com.android.gallery3d.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/android/gallery3d/util/IntArray;
            0    6     1  value  I
            2    4     2   temp  [I
    MethodParameters:
       Name  Flags
      value  

  public int removeLast();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.android.gallery3d.util.IntArray this
         0: .line 35
            aload 0 /* this */
            dup
            getfield com.android.gallery3d.util.IntArray.mSize:I
            iconst_1
            isub
            putfield com.android.gallery3d.util.IntArray.mSize:I
         1: .line 36
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mData:[I
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            iaload
            ireturn
        end local 0 // com.android.gallery3d.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/android/gallery3d/util/IntArray;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.android.gallery3d.util.IntArray this
         0: .line 40
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            ireturn
        end local 0 // com.android.gallery3d.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/gallery3d/util/IntArray;

  public int[] toArray(int[]);
    descriptor: ([I)[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // com.android.gallery3d.util.IntArray this
        start local 1 // int[] result
         0: .line 45
            aload 1 /* result */
            ifnull 1
            aload 1 /* result */
            arraylength
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            if_icmpge 2
         1: .line 46
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            newarray 10
            astore 1 /* result */
         2: .line 48
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mData:[I
            iconst_0
            aload 1 /* result */
            iconst_0
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mSize:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 49
            aload 1 /* result */
            areturn
        end local 1 // int[] result
        end local 0 // com.android.gallery3d.util.IntArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/android/gallery3d/util/IntArray;
            0    4     1  result  [I
    MethodParameters:
        Name  Flags
      result  

  public int[] getInternalArray();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.android.gallery3d.util.IntArray this
         0: .line 53
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mData:[I
            areturn
        end local 0 // com.android.gallery3d.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/android/gallery3d/util/IntArray;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.android.gallery3d.util.IntArray this
         0: .line 57
            aload 0 /* this */
            iconst_0
            putfield com.android.gallery3d.util.IntArray.mSize:I
         1: .line 58
            aload 0 /* this */
            getfield com.android.gallery3d.util.IntArray.mData:[I
            arraylength
            bipush 8
            if_icmpeq 2
            aload 0 /* this */
            bipush 8
            newarray 10
            putfield com.android.gallery3d.util.IntArray.mData:[I
         2: .line 59
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.android.gallery3d.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/android/gallery3d/util/IntArray;
}
SourceFile: "IntArray.java"