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

  private int[] mValues;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

  private void <init>(int[], int);
    descriptor: ([II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // android.util.IntArray this
        start local 1 // int[] array
        start local 2 // int size
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            aload 1 /* array */
            putfield android.util.IntArray.mValues:[I
         2: .line 37
            aload 0 /* this */
            iload 2 /* size */
            iconst_0
            aload 1 /* array */
            arraylength
            ldc "size"
            invokestatic com.android.internal.util.Preconditions.checkArgumentInRange:(IIILjava/lang/String;)I
            putfield android.util.IntArray.mSize:I
         3: .line 38
            return
        end local 2 // int size
        end local 1 // int[] array
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/util/IntArray;
            0    4     1  array  [I
            0    4     2   size  I
    MethodParameters:
       Name  Flags
      array  
      size   

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

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.IntArray 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\tThe constructor ArrayIndexOutOfBoundsException(int, int) is undefined\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/IntArray;
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public static android.util.IntArray wrap(int[]);
    descriptor: ([I)Landroid/util/IntArray;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int[] array
         0: .line 63
            new android.util.IntArray
            dup
            aload 0 /* array */
            aload 0 /* array */
            arraylength
            invokespecial android.util.IntArray.<init>:([II)V
            areturn
        end local 0 // int[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [I
    MethodParameters:
       Name  Flags
      array  

  public static android.util.IntArray fromArray(int[], int);
    descriptor: ([II)Landroid/util/IntArray;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int[] array
        start local 1 // int size
         0: .line 70
            aload 0 /* array */
            iload 1 /* size */
            invokestatic java.util.Arrays.copyOf:([II)[I
            invokestatic android.util.IntArray.wrap:([I)Landroid/util/IntArray;
            areturn
        end local 1 // int size
        end local 0 // int[] array
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  array  [I
            0    1     1   size  I
    MethodParameters:
       Name  Flags
      array  
      size   

  public void resize(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // int newSize
         0: .line 79
            iload 1 /* newSize */
            invokestatic com.android.internal.util.Preconditions.checkArgumentNonnegative:(I)I
            pop
         1: .line 80
            iload 1 /* newSize */
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            arraylength
            if_icmpgt 4
         2: .line 81
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* newSize */
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            arraylength
            iconst_0
            invokestatic java.util.Arrays.fill:([IIII)V
         3: .line 82
            goto 5
         4: .line 83
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newSize */
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            isub
            invokevirtual android.util.IntArray.ensureCapacity:(I)V
         5: .line 85
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newSize */
            putfield android.util.IntArray.mSize:I
         6: .line 86
            return
        end local 1 // int newSize
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Landroid/util/IntArray;
            0    7     1  newSize  I
    MethodParameters:
         Name  Flags
      newSize  

  public void add(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // int value
         0: .line 92
            aload 0 /* this */
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            iload 1 /* value */
            invokevirtual android.util.IntArray.add:(II)V
         1: .line 93
            return
        end local 1 // int value
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/util/IntArray;
            0    2     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public void add(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // android.util.IntArray this
        start local 1 // int index
        start local 2 // int value
         0: .line 102
            aload 0 /* this */
            iconst_1
            invokevirtual android.util.IntArray.ensureCapacity:(I)V
         1: .line 103
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            iload 1 /* index */
            isub
            istore 3 /* rightSegment */
        start local 3 // int rightSegment
         2: .line 104
            aload 0 /* this */
            dup
            getfield android.util.IntArray.mSize:I
            iconst_1
            iadd
            putfield android.util.IntArray.mSize:I
         3: .line 105
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual android.util.IntArray.checkBounds:(I)V
         4: .line 107
            iload 3 /* rightSegment */
            ifeq 6
         5: .line 109
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* index */
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* index */
            iconst_1
            iadd
            iload 3 /* rightSegment */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 112
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* index */
            iload 2 /* value */
            iastore
         7: .line 113
            return
        end local 3 // int rightSegment
        end local 2 // int value
        end local 1 // int index
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0          this  Landroid/util/IntArray;
            0    8     1         index  I
            0    8     2         value  I
            2    8     3  rightSegment  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public int binarySearch(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // int value
         0: .line 130
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            iload 1 /* value */
            invokestatic android.util.ContainerHelpers.binarySearch:([III)I
            ireturn
        end local 1 // int value
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Landroid/util/IntArray;
            0    1     1  value  I
    MethodParameters:
       Name  Flags
      value  

  public void addAll(android.util.IntArray);
    descriptor: (Landroid/util/IntArray;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // android.util.IntArray values
         0: .line 137
            aload 1 /* values */
            getfield android.util.IntArray.mSize:I
            istore 2 /* count */
        start local 2 // int count
         1: .line 138
            aload 0 /* this */
            iload 2 /* count */
            invokevirtual android.util.IntArray.ensureCapacity:(I)V
         2: .line 140
            aload 1 /* values */
            getfield android.util.IntArray.mValues:[I
            iconst_0
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            iload 2 /* count */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 141
            aload 0 /* this */
            dup
            getfield android.util.IntArray.mSize:I
            iload 2 /* count */
            iadd
            putfield android.util.IntArray.mSize:I
         4: .line 142
            return
        end local 2 // int count
        end local 1 // android.util.IntArray values
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Landroid/util/IntArray;
            0    5     1  values  Landroid/util/IntArray;
            1    5     2   count  I
    MethodParameters:
        Name  Flags
      values  

  private void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // int count
         0: .line 148
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            istore 2 /* currentSize */
        start local 2 // int currentSize
         1: .line 149
            iload 2 /* currentSize */
            iload 1 /* count */
            iadd
            istore 3 /* minCapacity */
        start local 3 // int minCapacity
         2: .line 150
            iload 3 /* minCapacity */
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            arraylength
            if_icmplt 13
         3: .line 151
            iload 2 /* currentSize */
            iload 2 /* currentSize */
            bipush 6
            if_icmpge 5
         4: .line 152
            bipush 12
            goto 6
      StackMap locals: android.util.IntArray int int int
      StackMap stack: int
         5: iload 2 /* currentSize */
            iconst_1
            ishr
         6: .line 151
      StackMap locals: android.util.IntArray int int int
      StackMap stack: int int
            iadd
            istore 4 /* targetCap */
        start local 4 // int targetCap
         7: .line 153
            iload 4 /* targetCap */
            iload 3 /* minCapacity */
            if_icmple 8
            iload 4 /* targetCap */
            goto 9
      StackMap locals: int
      StackMap stack:
         8: iload 3 /* minCapacity */
      StackMap locals:
      StackMap stack: int
         9: istore 5 /* newCapacity */
        start local 5 // int newCapacity
        10: .line 154
            iload 5 /* newCapacity */
            invokestatic com.android.internal.util.ArrayUtils.newUnpaddedIntArray:(I)[I
            astore 6 /* newValues */
        start local 6 // int[] newValues
        11: .line 155
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iconst_0
            aload 6 /* newValues */
            iconst_0
            iload 2 /* currentSize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 156
            aload 0 /* this */
            aload 6 /* newValues */
            putfield android.util.IntArray.mValues:[I
        end local 6 // int[] newValues
        end local 5 // int newCapacity
        end local 4 // int targetCap
        13: .line 158
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int minCapacity
        end local 2 // int currentSize
        end local 1 // int count
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Landroid/util/IntArray;
            0   14     1        count  I
            1   14     2  currentSize  I
            2   14     3  minCapacity  I
            7   13     4    targetCap  I
           10   13     5  newCapacity  I
           11   13     6    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.util.IntArray this
         0: .line 164
            aload 0 /* this */
            iconst_0
            putfield android.util.IntArray.mSize:I
         1: .line 165
            return
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/util/IntArray;

  public android.util.IntArray clone();
    descriptor: ()Landroid/util/IntArray;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // android.util.IntArray this
         0: .line 169
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast android.util.IntArray
            astore 1 /* clone */
        start local 1 // android.util.IntArray clone
         1: .line 170
            aload 1 /* clone */
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            invokevirtual int[].clone:()Ljava/lang/Object;
            checkcast int[]
            putfield android.util.IntArray.mValues:[I
         2: .line 171
            aload 1 /* clone */
            areturn
        end local 1 // android.util.IntArray clone
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Landroid/util/IntArray;
            1    3     1  clone  Landroid/util/IntArray;
    Exceptions:
      throws java.lang.CloneNotSupportedException

  public int get(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // int index
         0: .line 178
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual android.util.IntArray.checkBounds:(I)V
         1: .line 179
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* index */
            iaload
            ireturn
        end local 1 // int index
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/util/IntArray;
            0    2     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.util.IntArray this
        start local 1 // int index
        start local 2 // int value
         0: .line 186
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual android.util.IntArray.checkBounds:(I)V
         1: .line 187
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* index */
            iload 2 /* value */
            iastore
         2: .line 188
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Landroid/util/IntArray;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public int indexOf(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // int value
         0: .line 195
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            istore 2 /* n */
        start local 2 // int n
         1: .line 196
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 6
         3: .line 197
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 3 /* i */
            iaload
            iload 1 /* value */
            if_icmpne 5
         4: .line 198
            iload 3 /* i */
            ireturn
         5: .line 196
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* n */
            if_icmplt 3
        end local 3 // int i
         7: .line 201
            iconst_m1
            ireturn
        end local 2 // int n
        end local 1 // int value
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Landroid/util/IntArray;
            0    8     1  value  I
            1    8     2      n  I
            2    7     3      i  I
    MethodParameters:
       Name  Flags
      value  

  public void remove(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // android.util.IntArray this
        start local 1 // int index
         0: .line 208
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual android.util.IntArray.checkBounds:(I)V
         1: .line 209
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            iload 1 /* index */
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            iload 1 /* index */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 210
            aload 0 /* this */
            dup
            getfield android.util.IntArray.mSize:I
            iconst_1
            isub
            putfield android.util.IntArray.mSize:I
         3: .line 211
            return
        end local 1 // int index
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/util/IntArray;
            0    4     1  index  I
    MethodParameters:
       Name  Flags
      index  

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

  public int[] toArray();
    descriptor: ()[I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.util.IntArray this
         0: .line 224
            aload 0 /* this */
            getfield android.util.IntArray.mValues:[I
            aload 0 /* this */
            getfield android.util.IntArray.mSize:I
            invokestatic java.util.Arrays.copyOf:([II)[I
            areturn
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/IntArray;

  private void checkBounds(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.IntArray this
         0: .line 229
            new java.lang.Error
            dup
            ldc "Unresolved compilation problem: \n\tThe constructor ArrayIndexOutOfBoundsException(int, int) is undefined\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.util.IntArray this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/IntArray;
    MethodParameters:
       Name  Flags
      index  

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual android.util.IntArray.clone:()Landroid/util/IntArray;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "IntArray.java"