public final class android.util.ArrayMap<K, V> implements java.util.Map<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: android.util.ArrayMap
  super_class: java.lang.Object
{
  private static final boolean DEBUG;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final java.lang.String TAG;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "ArrayMap"

  private static final boolean CONCURRENT_MODIFICATION_EXCEPTIONS;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final int BASE_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 4

  private static final int CACHE_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  static final int[] EMPTY_IMMUTABLE_INTS;
    descriptor: [I
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  public static final android.util.ArrayMap EMPTY;
    descriptor: Landroid/util/ArrayMap;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  static java.lang.Object[] mBaseCache;
    descriptor: [Ljava/lang/Object;
    flags: (0x0008) ACC_STATIC

  static int mBaseCacheSize;
    descriptor: I
    flags: (0x0008) ACC_STATIC

  static java.lang.Object[] mTwiceBaseCache;
    descriptor: [Ljava/lang/Object;
    flags: (0x0008) ACC_STATIC

  static int mTwiceBaseCacheSize;
    descriptor: I
    flags: (0x0008) ACC_STATIC

  final boolean mIdentityHashCode;
    descriptor: Z
    flags: (0x0010) ACC_FINAL

  int[] mHashes;
    descriptor: [I
    flags: (0x0000) 

  java.lang.Object[] mArray;
    descriptor: [Ljava/lang/Object;
    flags: (0x0000) 

  int mSize;
    descriptor: I
    flags: (0x0000) 

  android.util.MapCollections<K, V> mCollections;
    descriptor: Landroid/util/MapCollections;
    flags: (0x0000) 
    Signature: Landroid/util/MapCollections<TK;TV;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 78
            iconst_0
            newarray 10
            putstatic android.util.ArrayMap.EMPTY_IMMUTABLE_INTS:[I
         1: .line 83
            new android.util.ArrayMap
            dup
            iconst_m1
            invokespecial android.util.ArrayMap.<init>:(I)V
            putstatic android.util.ArrayMap.EMPTY:Landroid/util/ArrayMap;
         2: .line 94
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private static int binarySearchHashes(int[], int, int);
    descriptor: ([III)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // int[] hashes
        start local 1 // int N
        start local 2 // int hash
         0: .line 104
            aload 0 /* hashes */
            iload 1 /* N */
            iload 2 /* hash */
            invokestatic android.util.ContainerHelpers.binarySearch:([III)I
         1: ireturn
         2: .line 105
      StackMap locals:
      StackMap stack: java.lang.ArrayIndexOutOfBoundsException
            astore 3 /* e */
        start local 3 // java.lang.ArrayIndexOutOfBoundsException e
         3: .line 107
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        end local 3 // java.lang.ArrayIndexOutOfBoundsException e
        end local 2 // int hash
        end local 1 // int N
        end local 0 // int[] hashes
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0  hashes  [I
            0    4     1       N  I
            0    4     2    hash  I
            3    4     3       e  Ljava/lang/ArrayIndexOutOfBoundsException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.ArrayIndexOutOfBoundsException
    MethodParameters:
        Name  Flags
      hashes  
      N       
      hash    

  int indexOf(java.lang.Object, int);
    descriptor: (Ljava/lang/Object;I)I
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object key
        start local 2 // int hash
         0: .line 115
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            istore 3 /* N */
        start local 3 // int N
         1: .line 118
            iload 3 /* N */
            ifne 3
         2: .line 119
            iconst_m1
            ireturn
         3: .line 122
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 3 /* N */
            iload 2 /* hash */
            invokestatic android.util.ArrayMap.binarySearchHashes:([III)I
            istore 4 /* index */
        start local 4 // int index
         4: .line 125
            iload 4 /* index */
            ifge 6
         5: .line 126
            iload 4 /* index */
            ireturn
         6: .line 130
      StackMap locals: int
      StackMap stack:
            aload 1 /* key */
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 4 /* index */
            iconst_1
            ishl
            aaload
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         7: .line 131
            iload 4 /* index */
            ireturn
         8: .line 136
      StackMap locals:
      StackMap stack:
            iload 4 /* index */
            iconst_1
            iadd
            istore 5 /* end */
        start local 5 // int end
         9: goto 12
        10: .line 137
      StackMap locals: int
      StackMap stack:
            aload 1 /* key */
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 5 /* end */
            iconst_1
            ishl
            aaload
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 11
            iload 5 /* end */
            ireturn
        11: .line 136
      StackMap locals:
      StackMap stack:
            iinc 5 /* end */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* end */
            iload 3 /* N */
            if_icmpge 13
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 5 /* end */
            iaload
            iload 2 /* hash */
            if_icmpeq 10
        13: .line 141
      StackMap locals:
      StackMap stack:
            iload 4 /* index */
            iconst_1
            isub
            istore 6 /* i */
        start local 6 // int i
        14: goto 17
        15: .line 142
      StackMap locals: int
      StackMap stack:
            aload 1 /* key */
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 6 /* i */
            iconst_1
            ishl
            aaload
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 16
            iload 6 /* i */
            ireturn
        16: .line 141
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ -1
      StackMap locals:
      StackMap stack:
        17: iload 6 /* i */
            iflt 18
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 6 /* i */
            iaload
            iload 2 /* hash */
            if_icmpeq 15
        end local 6 // int i
        18: .line 149
      StackMap locals:
      StackMap stack:
            iload 5 /* end */
            iconst_m1
            ixor
            ireturn
        end local 5 // int end
        end local 4 // int index
        end local 3 // int N
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0   19     1    key  Ljava/lang/Object;
            0   19     2   hash  I
            1   19     3      N  I
            4   19     4  index  I
            9   19     5    end  I
           14   18     6      i  I
    MethodParameters:
      Name  Flags
      key   
      hash  

  int indexOfNull();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 153
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            istore 1 /* N */
        start local 1 // int N
         1: .line 156
            iload 1 /* N */
            ifne 3
         2: .line 157
            iconst_m1
            ireturn
         3: .line 160
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 1 /* N */
            iconst_0
            invokestatic android.util.ArrayMap.binarySearchHashes:([III)I
            istore 2 /* index */
        start local 2 // int index
         4: .line 163
            iload 2 /* index */
            ifge 6
         5: .line 164
            iload 2 /* index */
            ireturn
         6: .line 168
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 2 /* index */
            iconst_1
            ishl
            aaload
            ifnonnull 8
         7: .line 169
            iload 2 /* index */
            ireturn
         8: .line 174
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            iconst_1
            iadd
            istore 3 /* end */
        start local 3 // int end
         9: goto 12
        10: .line 175
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 3 /* end */
            iconst_1
            ishl
            aaload
            ifnonnull 11
            iload 3 /* end */
            ireturn
        11: .line 174
      StackMap locals:
      StackMap stack:
            iinc 3 /* end */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* end */
            iload 1 /* N */
            if_icmpge 13
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 3 /* end */
            iaload
            ifeq 10
        13: .line 179
      StackMap locals:
      StackMap stack:
            iload 2 /* index */
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
        14: goto 17
        15: .line 180
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 4 /* i */
            iconst_1
            ishl
            aaload
            ifnonnull 16
            iload 4 /* i */
            ireturn
        16: .line 179
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
        17: iload 4 /* i */
            iflt 18
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 4 /* i */
            iaload
            ifeq 15
        end local 4 // int i
        18: .line 187
      StackMap locals:
      StackMap stack:
            iload 3 /* end */
            iconst_m1
            ixor
            ireturn
        end local 3 // int end
        end local 2 // int index
        end local 1 // int N
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   19     0   this  Landroid/util/ArrayMap<TK;TV;>;
            1   19     1      N  I
            4   19     2  index  I
            9   19     3    end  I
           14   18     4      i  I

  private void allocArrays(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // int size
         0: .line 191
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            getstatic android.util.ArrayMap.EMPTY_IMMUTABLE_INTS:[I
            if_acmpne 2
         1: .line 192
            new java.lang.UnsupportedOperationException
            dup
            ldc "ArrayMap is immutable"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 194
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            bipush 8
            if_icmpne 17
         3: .line 195
            ldc Landroid/util/ArrayMap;
            dup
            astore 2
            monitorenter
         4: .line 196
            getstatic android.util.ArrayMap.mTwiceBaseCache:[Ljava/lang/Object;
            ifnull 13
         5: .line 197
            getstatic android.util.ArrayMap.mTwiceBaseCache:[Ljava/lang/Object;
            astore 3 /* array */
        start local 3 // java.lang.Object[] array
         6: .line 198
            aload 0 /* this */
            aload 3 /* array */
            putfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
         7: .line 199
            aload 3 /* array */
            iconst_0
            aaload
            checkcast java.lang.Object[]
            putstatic android.util.ArrayMap.mTwiceBaseCache:[Ljava/lang/Object;
         8: .line 200
            aload 0 /* this */
            aload 3 /* array */
            iconst_1
            aaload
            checkcast int[]
            putfield android.util.ArrayMap.mHashes:[I
         9: .line 201
            aload 3 /* array */
            iconst_0
            aload 3 /* array */
            iconst_1
            aconst_null
            dup_x2
            aastore
            aastore
        10: .line 202
            getstatic android.util.ArrayMap.mTwiceBaseCacheSize:I
            iconst_1
            isub
            putstatic android.util.ArrayMap.mTwiceBaseCacheSize:I
        11: .line 205
            aload 2
            monitorexit
        12: return
        end local 3 // java.lang.Object[] array
        13: .line 195
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 2
            monitorexit
        14: goto 32
      StackMap locals:
      StackMap stack: java.lang.Throwable
        15: aload 2
            monitorexit
        16: athrow
        17: .line 208
      StackMap locals:
      StackMap stack:
            iload 1 /* size */
            iconst_4
            if_icmpne 32
        18: .line 209
            ldc Landroid/util/ArrayMap;
            dup
            astore 2
            monitorenter
        19: .line 210
            getstatic android.util.ArrayMap.mBaseCache:[Ljava/lang/Object;
            ifnull 28
        20: .line 211
            getstatic android.util.ArrayMap.mBaseCache:[Ljava/lang/Object;
            astore 3 /* array */
        start local 3 // java.lang.Object[] array
        21: .line 212
            aload 0 /* this */
            aload 3 /* array */
            putfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
        22: .line 213
            aload 3 /* array */
            iconst_0
            aaload
            checkcast java.lang.Object[]
            putstatic android.util.ArrayMap.mBaseCache:[Ljava/lang/Object;
        23: .line 214
            aload 0 /* this */
            aload 3 /* array */
            iconst_1
            aaload
            checkcast int[]
            putfield android.util.ArrayMap.mHashes:[I
        24: .line 215
            aload 3 /* array */
            iconst_0
            aload 3 /* array */
            iconst_1
            aconst_null
            dup_x2
            aastore
            aastore
        25: .line 216
            getstatic android.util.ArrayMap.mBaseCacheSize:I
            iconst_1
            isub
            putstatic android.util.ArrayMap.mBaseCacheSize:I
        26: .line 219
            aload 2
            monitorexit
        27: return
        end local 3 // java.lang.Object[] array
        28: .line 209
      StackMap locals: java.lang.Class
      StackMap stack:
            aload 2
            monitorexit
        29: goto 32
      StackMap locals:
      StackMap stack: java.lang.Throwable
        30: aload 2
            monitorexit
        31: athrow
        32: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* size */
            newarray 10
            putfield android.util.ArrayMap.mHashes:[I
        33: .line 225
            aload 0 /* this */
            iload 1 /* size */
            iconst_1
            ishl
            anewarray java.lang.Object
            putfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
        34: .line 226
            return
        end local 1 // int size
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   35     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0   35     1   size  I
            6   13     3  array  [Ljava/lang/Object;
           21   28     3  array  [Ljava/lang/Object;
      Exception table:
        from    to  target  type
           4    12      15  any
          13    14      15  any
          15    16      15  any
          19    27      30  any
          28    29      30  any
          30    31      30  any
    MethodParameters:
      Name  Flags
      size  final

  private static void freeArrays(int[], java.lang.Object[], int);
    descriptor: ([I[Ljava/lang/Object;I)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // int[] hashes
        start local 1 // java.lang.Object[] array
        start local 2 // int size
         0: .line 229
            aload 0 /* hashes */
            arraylength
            bipush 8
            if_icmpne 16
         1: .line 230
            ldc Landroid/util/ArrayMap;
            dup
            astore 3
            monitorenter
         2: .line 231
            getstatic android.util.ArrayMap.mTwiceBaseCacheSize:I
            bipush 10
            if_icmpge 12
         3: .line 232
            aload 1 /* array */
            iconst_0
            getstatic android.util.ArrayMap.mTwiceBaseCache:[Ljava/lang/Object;
            aastore
         4: .line 233
            aload 1 /* array */
            iconst_1
            aload 0 /* hashes */
            aastore
         5: .line 234
            iload 2 /* size */
            iconst_1
            ishl
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         6: goto 9
         7: .line 235
      StackMap locals: java.lang.Class int
      StackMap stack:
            aload 1 /* array */
            iload 4 /* i */
            aconst_null
            aastore
         8: .line 234
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            iconst_2
            if_icmpge 7
        end local 4 // int i
        10: .line 237
            aload 1 /* array */
            putstatic android.util.ArrayMap.mTwiceBaseCache:[Ljava/lang/Object;
        11: .line 238
            getstatic android.util.ArrayMap.mTwiceBaseCacheSize:I
            iconst_1
            iadd
            putstatic android.util.ArrayMap.mTwiceBaseCacheSize:I
        12: .line 230
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
        13: goto 32
      StackMap locals:
      StackMap stack: java.lang.Throwable
        14: aload 3
            monitorexit
        15: athrow
        16: .line 243
      StackMap locals:
      StackMap stack:
            aload 0 /* hashes */
            arraylength
            iconst_4
            if_icmpne 32
        17: .line 244
            ldc Landroid/util/ArrayMap;
            dup
            astore 3
            monitorenter
        18: .line 245
            getstatic android.util.ArrayMap.mBaseCacheSize:I
            bipush 10
            if_icmpge 28
        19: .line 246
            aload 1 /* array */
            iconst_0
            getstatic android.util.ArrayMap.mBaseCache:[Ljava/lang/Object;
            aastore
        20: .line 247
            aload 1 /* array */
            iconst_1
            aload 0 /* hashes */
            aastore
        21: .line 248
            iload 2 /* size */
            iconst_1
            ishl
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
        22: goto 25
        23: .line 249
      StackMap locals: java.lang.Class int
      StackMap stack:
            aload 1 /* array */
            iload 4 /* i */
            aconst_null
            aastore
        24: .line 248
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
        25: iload 4 /* i */
            iconst_2
            if_icmpge 23
        end local 4 // int i
        26: .line 251
            aload 1 /* array */
            putstatic android.util.ArrayMap.mBaseCache:[Ljava/lang/Object;
        27: .line 252
            getstatic android.util.ArrayMap.mBaseCacheSize:I
            iconst_1
            iadd
            putstatic android.util.ArrayMap.mBaseCacheSize:I
        28: .line 244
      StackMap locals:
      StackMap stack:
            aload 3
            monitorexit
        29: goto 32
      StackMap locals:
      StackMap stack: java.lang.Throwable
        30: aload 3
            monitorexit
        31: athrow
        32: .line 258
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int size
        end local 1 // java.lang.Object[] array
        end local 0 // int[] hashes
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   33     0  hashes  [I
            0   33     1   array  [Ljava/lang/Object;
            0   33     2    size  I
            6   10     4       i  I
           22   26     4       i  I
      Exception table:
        from    to  target  type
           2    13      14  any
          14    15      14  any
          18    29      30  any
          30    31      30  any
    MethodParameters:
        Name  Flags
      hashes  final
      array   final
      size    final

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 265
            aload 0 /* this */
            iconst_0
            iconst_0
            invokespecial android.util.ArrayMap.<init>:(IZ)V
         1: .line 266
            return
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/util/ArrayMap<TK;TV;>;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // int capacity
         0: .line 272
            aload 0 /* this */
            iload 1 /* capacity */
            iconst_0
            invokespecial android.util.ArrayMap.<init>:(IZ)V
         1: .line 273
            return
        end local 1 // int capacity
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Landroid/util/ArrayMap<TK;TV;>;
            0    2     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public void <init>(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // android.util.ArrayMap this
         0: .line 19
            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\tEmptyArray cannot be resolved to a variable\n"
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/ArrayMap<TK;TV;>;
    MethodParameters:
                  Name  Flags
      capacity          
      identityHashCode  

  public void <init>(android.util.ArrayMap<K, V>);
    descriptor: (Landroid/util/ArrayMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // android.util.ArrayMap map
         0: .line 298
            aload 0 /* this */
            invokespecial android.util.ArrayMap.<init>:()V
         1: .line 299
            aload 1 /* map */
            ifnull 3
         2: .line 300
            aload 0 /* this */
            aload 1 /* map */
            invokevirtual android.util.ArrayMap.putAll:(Landroid/util/ArrayMap;)V
         3: .line 302
      StackMap locals: android.util.ArrayMap android.util.ArrayMap
      StackMap stack:
            return
        end local 1 // android.util.ArrayMap map
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Landroid/util/ArrayMap<TK;TV;>;
            0    4     1   map  Landroid/util/ArrayMap<TK;TV;>;
    Signature: (Landroid/util/ArrayMap<TK;TV;>;)V
    MethodParameters:
      Name  Flags
      map   

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 313
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \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.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/ArrayMap<TK;TV;>;

  public void erase();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 328
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            ifle 9
         1: .line 329
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            iconst_1
            ishl
            istore 1 /* N */
        start local 1 // int N
         2: .line 330
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            astore 2 /* array */
        start local 2 // java.lang.Object[] array
         3: .line 331
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 332
      StackMap locals: int java.lang.Object[] int
      StackMap stack:
            aload 2 /* array */
            iload 3 /* i */
            aconst_null
            aastore
         6: .line 331
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            iload 1 /* N */
            if_icmplt 5
        end local 3 // int i
         8: .line 334
            aload 0 /* this */
            iconst_0
            putfield android.util.ArrayMap.mSize:I
        end local 2 // java.lang.Object[] array
        end local 1 // int N
         9: .line 336
      StackMap locals:
      StackMap stack:
            return
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Landroid/util/ArrayMap<TK;TV;>;
            2    9     1      N  I
            3    9     2  array  [Ljava/lang/Object;
            4    8     3      i  I

  public void ensureCapacity(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // int minimumCapacity
         0: .line 343
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            istore 2 /* osize */
        start local 2 // int osize
         1: .line 344
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            arraylength
            iload 1 /* minimumCapacity */
            if_icmpge 9
         2: .line 345
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            astore 3 /* ohashes */
        start local 3 // int[] ohashes
         3: .line 346
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            astore 4 /* oarray */
        start local 4 // java.lang.Object[] oarray
         4: .line 347
            aload 0 /* this */
            iload 1 /* minimumCapacity */
            invokevirtual android.util.ArrayMap.allocArrays:(I)V
         5: .line 348
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            ifle 8
         6: .line 349
            aload 3 /* ohashes */
            iconst_0
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iconst_0
            iload 2 /* osize */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 350
            aload 4 /* oarray */
            iconst_0
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iconst_0
            iload 2 /* osize */
            iconst_1
            ishl
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 352
      StackMap locals: int int[] java.lang.Object[]
      StackMap stack:
            aload 3 /* ohashes */
            aload 4 /* oarray */
            iload 2 /* osize */
            invokestatic android.util.ArrayMap.freeArrays:([I[Ljava/lang/Object;I)V
        end local 4 // java.lang.Object[] oarray
        end local 3 // int[] ohashes
         9: .line 354
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            iload 2 /* osize */
            if_icmpeq 11
        10: .line 355
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        11: .line 357
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int osize
        end local 1 // int minimumCapacity
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   12     0             this  Landroid/util/ArrayMap<TK;TV;>;
            0   12     1  minimumCapacity  I
            1   12     2            osize  I
            3    9     3          ohashes  [I
            4    9     4           oarray  [Ljava/lang/Object;
    MethodParameters:
                 Name  Flags
      minimumCapacity  

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object key
         0: .line 367
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual android.util.ArrayMap.indexOfKey:(Ljava/lang/Object;)I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/util/ArrayMap<TK;TV;>;
            0    2     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public int indexOfKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object key
         0: .line 377
            aload 1 /* key */
            ifnonnull 1
            aload 0 /* this */
            invokevirtual android.util.ArrayMap.indexOfNull:()I
            goto 4
         1: .line 378
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            aload 0 /* this */
            getfield android.util.ArrayMap.mIdentityHashCode:Z
            ifeq 2
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            goto 3
      StackMap locals: android.util.ArrayMap java.lang.Object
      StackMap stack: android.util.ArrayMap java.lang.Object
         2: aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: android.util.ArrayMap java.lang.Object
      StackMap stack: android.util.ArrayMap java.lang.Object int
         3: invokevirtual android.util.ArrayMap.indexOf:(Ljava/lang/Object;I)I
         4: .line 377
      StackMap locals:
      StackMap stack: int
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/util/ArrayMap<TK;TV;>;
            0    5     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  int indexOfValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object value
         0: .line 382
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            iconst_2
            imul
            istore 2 /* N */
        start local 2 // int N
         1: .line 383
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            astore 3 /* array */
        start local 3 // java.lang.Object[] array
         2: .line 384
            aload 1 /* value */
            ifnonnull 10
         3: .line 385
            iconst_1
            istore 4 /* i */
        start local 4 // int i
         4: goto 8
         5: .line 386
      StackMap locals: int java.lang.Object[] int
      StackMap stack:
            aload 3 /* array */
            iload 4 /* i */
            aaload
            ifnonnull 7
         6: .line 387
            iload 4 /* i */
            iconst_1
            ishr
            ireturn
         7: .line 385
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 2
      StackMap locals:
      StackMap stack:
         8: iload 4 /* i */
            iload 2 /* N */
            if_icmplt 5
        end local 4 // int i
         9: .line 390
            goto 16
        10: .line 391
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 4 /* i */
        start local 4 // int i
        11: goto 15
        12: .line 392
      StackMap locals: int
      StackMap stack:
            aload 1 /* value */
            aload 3 /* array */
            iload 4 /* i */
            aaload
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 14
        13: .line 393
            iload 4 /* i */
            iconst_1
            ishr
            ireturn
        14: .line 391
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 2
      StackMap locals:
      StackMap stack:
        15: iload 4 /* i */
            iload 2 /* N */
            if_icmplt 12
        end local 4 // int i
        16: .line 397
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 3 // java.lang.Object[] array
        end local 2 // int N
        end local 1 // java.lang.Object value
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0   17     1  value  Ljava/lang/Object;
            1   17     2      N  I
            2   17     3  array  [Ljava/lang/Object;
            4    9     4      i  I
           11   16     4      i  I
    MethodParameters:
       Name  Flags
      value  

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object value
         0: .line 409
            aload 0 /* this */
            aload 1 /* value */
            invokevirtual android.util.ArrayMap.indexOfValue:(Ljava/lang/Object;)I
            iflt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object value
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0    2     1  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      value  

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object key
         0: .line 420
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual android.util.ArrayMap.indexOfKey:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 421
            iload 2 /* index */
            iflt 2
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 2 /* index */
            iconst_1
            ishl
            iconst_1
            iadd
            aaload
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aconst_null
      StackMap locals:
      StackMap stack: java.lang.Object
         3: areturn
        end local 2 // int index
        end local 1 // java.lang.Object key
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0    4     1    key  Ljava/lang/Object;
            1    4     2  index  I
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  public K keyAt();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // int index
         0: .line 430
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            ishl
            aaload
            areturn
        end local 1 // int index
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0    1     1  index  I
    Signature: (I)TK;
    MethodParameters:
       Name  Flags
      index  

  public V valueAt();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // int index
         0: .line 439
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 1 /* index */
            iconst_1
            ishl
            iconst_1
            iadd
            aaload
            areturn
        end local 1 // int index
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0    1     1  index  I
    Signature: (I)TV;
    MethodParameters:
       Name  Flags
      index  

  public V setValueAt(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // android.util.ArrayMap this
        start local 1 // int index
        start local 2 // java.lang.Object value
         0: .line 449
            iload 1 /* index */
            iconst_1
            ishl
            iconst_1
            iadd
            istore 1 /* index */
         1: .line 450
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 1 /* index */
            aaload
            astore 3 /* old */
        start local 3 // java.lang.Object old
         2: .line 451
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 1 /* index */
            aload 2 /* value */
            aastore
         3: .line 452
            aload 3 /* old */
            areturn
        end local 3 // java.lang.Object old
        end local 2 // java.lang.Object value
        end local 1 // int index
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0    4     1  index  I
            0    4     2  value  TV;
            2    4     3    old  TV;
    Signature: (ITV;)TV;
    MethodParameters:
       Name  Flags
      index  
      value  

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 460
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            ifgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/util/ArrayMap<TK;TV;>;

  public V put(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=3
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 473
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            istore 3 /* osize */
        start local 3 // int osize
         1: .line 476
            aload 1 /* key */
            ifnonnull 5
         2: .line 477
            iconst_0
            istore 4 /* hash */
        start local 4 // int hash
         3: .line 478
            aload 0 /* this */
            invokevirtual android.util.ArrayMap.indexOfNull:()I
            istore 5 /* index */
        start local 5 // int index
         4: .line 479
            goto 9
        end local 5 // int index
        end local 4 // int hash
         5: .line 480
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mIdentityHashCode:Z
            ifeq 6
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals:
      StackMap stack: int
         7: istore 4 /* hash */
        start local 4 // int hash
         8: .line 481
            aload 0 /* this */
            aload 1 /* key */
            iload 4 /* hash */
            invokevirtual android.util.ArrayMap.indexOf:(Ljava/lang/Object;I)I
            istore 5 /* index */
        start local 5 // int index
         9: .line 483
      StackMap locals: int int
      StackMap stack:
            iload 5 /* index */
            iflt 14
        10: .line 484
            iload 5 /* index */
            iconst_1
            ishl
            iconst_1
            iadd
            istore 5 /* index */
        11: .line 485
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 5 /* index */
            aaload
            astore 6 /* old */
        start local 6 // java.lang.Object old
        12: .line 486
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 5 /* index */
            aload 2 /* value */
            aastore
        13: .line 487
            aload 6 /* old */
            areturn
        end local 6 // java.lang.Object old
        14: .line 490
      StackMap locals:
      StackMap stack:
            iload 5 /* index */
            iconst_m1
            ixor
            istore 5 /* index */
        15: .line 491
            iload 3 /* osize */
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            arraylength
            if_icmplt 29
        16: .line 492
            iload 3 /* osize */
            bipush 8
            if_icmplt 17
            iload 3 /* osize */
            iload 3 /* osize */
            iconst_1
            ishr
            iadd
            goto 19
        17: .line 493
      StackMap locals:
      StackMap stack:
            iload 3 /* osize */
            iconst_4
            if_icmplt 18
            bipush 8
            goto 19
      StackMap locals:
      StackMap stack:
        18: iconst_4
        19: .line 492
      StackMap locals:
      StackMap stack: int
            istore 6 /* n */
        start local 6 // int n
        20: .line 497
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            astore 7 /* ohashes */
        start local 7 // int[] ohashes
        21: .line 498
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            astore 8 /* oarray */
        start local 8 // java.lang.Object[] oarray
        22: .line 499
            aload 0 /* this */
            iload 6 /* n */
            invokevirtual android.util.ArrayMap.allocArrays:(I)V
        23: .line 501
            iload 3 /* osize */
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            if_icmpeq 25
        24: .line 502
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        25: .line 505
      StackMap locals: int int[] java.lang.Object[]
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            arraylength
            ifle 28
        26: .line 507
            aload 7 /* ohashes */
            iconst_0
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iconst_0
            aload 7 /* ohashes */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        27: .line 508
            aload 8 /* oarray */
            iconst_0
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iconst_0
            aload 8 /* oarray */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 511
      StackMap locals:
      StackMap stack:
            aload 7 /* ohashes */
            aload 8 /* oarray */
            iload 3 /* osize */
            invokestatic android.util.ArrayMap.freeArrays:([I[Ljava/lang/Object;I)V
        end local 8 // java.lang.Object[] oarray
        end local 7 // int[] ohashes
        end local 6 // int n
        29: .line 514
      StackMap locals:
      StackMap stack:
            iload 5 /* index */
            iload 3 /* osize */
            if_icmpge 32
        30: .line 517
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 5 /* index */
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 5 /* index */
            iconst_1
            iadd
            iload 3 /* osize */
            iload 5 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        31: .line 518
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 5 /* index */
            iconst_1
            ishl
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 5 /* index */
            iconst_1
            iadd
            iconst_1
            ishl
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            iload 5 /* index */
            isub
            iconst_1
            ishl
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        32: .line 522
      StackMap locals:
      StackMap stack:
            iload 3 /* osize */
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            if_icmpne 33
            iload 5 /* index */
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            arraylength
            if_icmplt 34
        33: .line 523
      StackMap locals:
      StackMap stack:
            new java.util.ConcurrentModificationException
            dup
            invokespecial java.util.ConcurrentModificationException.<init>:()V
            athrow
        34: .line 526
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 5 /* index */
            iload 4 /* hash */
            iastore
        35: .line 527
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 5 /* index */
            iconst_1
            ishl
            aload 1 /* key */
            aastore
        36: .line 528
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 5 /* index */
            iconst_1
            ishl
            iconst_1
            iadd
            aload 2 /* value */
            aastore
        37: .line 529
            aload 0 /* this */
            dup
            getfield android.util.ArrayMap.mSize:I
            iconst_1
            iadd
            putfield android.util.ArrayMap.mSize:I
        38: .line 530
            aconst_null
            areturn
        end local 5 // int index
        end local 4 // int hash
        end local 3 // int osize
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   39     0     this  Landroid/util/ArrayMap<TK;TV;>;
            0   39     1      key  TK;
            0   39     2    value  TV;
            1   39     3    osize  I
            3    5     4     hash  I
            8   39     4     hash  I
            4    5     5    index  I
            9   39     5    index  I
           12   14     6      old  TV;
           20   29     6        n  I
           21   29     7  ohashes  [I
           22   29     8   oarray  [Ljava/lang/Object;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  public void append(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 539
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            istore 3 /* index */
        start local 3 // int index
         1: .line 540
            aload 1 /* key */
            ifnonnull 2
            iconst_0
            goto 4
         2: .line 541
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mIdentityHashCode:Z
            ifeq 3
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            goto 4
      StackMap locals:
      StackMap stack:
         3: aload 1 /* key */
            invokevirtual java.lang.Object.hashCode:()I
         4: .line 540
      StackMap locals:
      StackMap stack: int
            istore 4 /* hash */
        start local 4 // int hash
         5: .line 542
            iload 3 /* index */
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            arraylength
            if_icmplt 7
         6: .line 543
            new java.lang.IllegalStateException
            dup
            ldc "Array is full"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 545
      StackMap locals: int
      StackMap stack:
            iload 3 /* index */
            ifle 16
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 3 /* index */
            iconst_1
            isub
            iaload
            iload 4 /* hash */
            if_icmple 16
         8: .line 546
            new java.lang.RuntimeException
            dup
            ldc "here"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            astore 5 /* e */
        start local 5 // java.lang.RuntimeException e
         9: .line 547
            aload 5 /* e */
            invokevirtual java.lang.RuntimeException.fillInStackTrace:()Ljava/lang/Throwable;
            pop
        10: .line 548
            ldc "ArrayMap"
            new java.lang.StringBuilder
            dup
            ldc "New hash "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* hash */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        11: .line 549
            ldc " is before end of array hash "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 3 /* index */
            iconst_1
            isub
            iaload
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
        12: .line 550
            ldc " at index "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 3 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " key "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aload 5 /* e */
        13: .line 548
            invokestatic android.util.Log.w:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
            pop
        14: .line 551
            aload 0 /* this */
            aload 1 /* key */
            aload 2 /* value */
            invokevirtual android.util.ArrayMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        15: .line 552
            return
        end local 5 // java.lang.RuntimeException e
        16: .line 554
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* index */
            iconst_1
            iadd
            putfield android.util.ArrayMap.mSize:I
        17: .line 555
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 3 /* index */
            iload 4 /* hash */
            iastore
        18: .line 556
            iload 3 /* index */
            iconst_1
            ishl
            istore 3 /* index */
        19: .line 557
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 3 /* index */
            aload 1 /* key */
            aastore
        20: .line 558
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 3 /* index */
            iconst_1
            iadd
            aload 2 /* value */
            aastore
        21: .line 559
            return
        end local 4 // int hash
        end local 3 // int index
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0   22     1    key  TK;
            0   22     2  value  TV;
            1   22     3  index  I
            5   22     4   hash  I
            9   16     5      e  Ljava/lang/RuntimeException;
    Signature: (TK;TV;)V
    MethodParameters:
       Name  Flags
      key    
      value  

  public void validate();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 570
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            istore 1 /* N */
        start local 1 // int N
         1: .line 571
            iload 1 /* N */
            iconst_1
            if_icmpgt 3
         2: .line 573
            return
         3: .line 575
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iconst_0
            iaload
            istore 2 /* basehash */
        start local 2 // int basehash
         4: .line 576
            iconst_0
            istore 3 /* basei */
        start local 3 // int basei
         5: .line 577
            iconst_1
            istore 4 /* i */
        start local 4 // int i
         6: goto 23
         7: .line 578
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iload 4 /* i */
            iaload
            istore 5 /* hash */
        start local 5 // int hash
         8: .line 579
            iload 5 /* hash */
            iload 2 /* basehash */
            if_icmpeq 12
         9: .line 580
            iload 5 /* hash */
            istore 2 /* basehash */
        10: .line 581
            iload 4 /* i */
            istore 3 /* basei */
        11: .line 582
            goto 22
        12: .line 586
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 4 /* i */
            iconst_1
            ishl
            aaload
            astore 6 /* cur */
        start local 6 // java.lang.Object cur
        13: .line 587
            iload 4 /* i */
            iconst_1
            isub
            istore 7 /* j */
        start local 7 // int j
        14: goto 21
        15: .line 588
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iload 7 /* j */
            iconst_1
            ishl
            aaload
            astore 8 /* prev */
        start local 8 // java.lang.Object prev
        16: .line 589
            aload 6 /* cur */
            aload 8 /* prev */
            if_acmpne 18
        17: .line 590
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Duplicate key in ArrayMap: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 6 /* cur */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        18: .line 592
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 6 /* cur */
            ifnull 20
            aload 8 /* prev */
            ifnull 20
            aload 6 /* cur */
            aload 8 /* prev */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 20
        19: .line 593
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Duplicate key in ArrayMap: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 6 /* cur */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        end local 8 // java.lang.Object prev
        20: .line 587
      StackMap locals:
      StackMap stack:
            iinc 7 /* j */ -1
      StackMap locals:
      StackMap stack:
        21: iload 7 /* j */
            iload 3 /* basei */
            if_icmpge 15
        end local 7 // int j
        end local 6 // java.lang.Object cur
        end local 5 // int hash
        22: .line 577
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        23: iload 4 /* i */
            iload 1 /* N */
            if_icmplt 7
        end local 4 // int i
        24: .line 597
            return
        end local 3 // int basei
        end local 2 // int basehash
        end local 1 // int N
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   25     0      this  Landroid/util/ArrayMap<TK;TV;>;
            1   25     1         N  I
            4   25     2  basehash  I
            5   25     3     basei  I
            6   24     4         i  I
            8   22     5      hash  I
           13   22     6       cur  Ljava/lang/Object;
           14   22     7         j  I
           16   20     8      prev  Ljava/lang/Object;

  public void putAll(android.util.ArrayMap<? extends K, ? extends V>);
    descriptor: (Landroid/util/ArrayMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // android.util.ArrayMap array
         0: .line 604
            aload 1 /* array */
            getfield android.util.ArrayMap.mSize:I
            istore 2 /* N */
        start local 2 // int N
         1: .line 605
            aload 0 /* this */
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            iload 2 /* N */
            iadd
            invokevirtual android.util.ArrayMap.ensureCapacity:(I)V
         2: .line 606
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            ifne 8
         3: .line 607
            iload 2 /* N */
            ifle 13
         4: .line 608
            aload 1 /* array */
            getfield android.util.ArrayMap.mHashes:[I
            iconst_0
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            iconst_0
            iload 2 /* N */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 609
            aload 1 /* array */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            iconst_0
            iload 2 /* N */
            iconst_1
            ishl
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         6: .line 610
            aload 0 /* this */
            iload 2 /* N */
            putfield android.util.ArrayMap.mSize:I
         7: .line 612
            goto 13
         8: .line 613
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         9: goto 12
        10: .line 614
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* array */
            iload 3 /* i */
            invokevirtual android.util.ArrayMap.keyAt:(I)Ljava/lang/Object;
            aload 1 /* array */
            iload 3 /* i */
            invokevirtual android.util.ArrayMap.valueAt:(I)Ljava/lang/Object;
            invokevirtual android.util.ArrayMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        11: .line 613
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 3 /* i */
            iload 2 /* N */
            if_icmplt 10
        end local 3 // int i
        13: .line 617
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int N
        end local 1 // android.util.ArrayMap array
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0   14     1  array  Landroid/util/ArrayMap<+TK;+TV;>;
            1   14     2      N  I
            9   13     3      i  I
    Signature: (Landroid/util/ArrayMap<+TK;+TV;>;)V
    MethodParameters:
       Name  Flags
      array  

  public V remove();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object key
         0: .line 627
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual android.util.ArrayMap.indexOfKey:(Ljava/lang/Object;)I
            istore 2 /* index */
        start local 2 // int index
         1: .line 628
            iload 2 /* index */
            iflt 3
         2: .line 629
            aload 0 /* this */
            iload 2 /* index */
            invokevirtual android.util.ArrayMap.removeAt:(I)Ljava/lang/Object;
            areturn
         3: .line 632
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int index
        end local 1 // java.lang.Object key
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0    4     1    key  Ljava/lang/Object;
            1    4     2  index  I
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  public V removeAt();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
         0: .line 649
            new java.lang.Error
            dup
            ldc "Unresolved compilation problems: \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.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/ArrayMap<TK;TV;>;
    Signature: (I)TV;
    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.ArrayMap this
         0: .line 707
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            ireturn
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/ArrayMap<TK;TV;>;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.lang.Object object
         0: .line 720
            aload 0 /* this */
            aload 1 /* object */
            if_acmpne 2
         1: .line 721
            iconst_1
            ireturn
         2: .line 723
      StackMap locals:
      StackMap stack:
            aload 1 /* object */
            instanceof java.util.Map
            ifeq 24
         3: .line 724
            aload 1 /* object */
            checkcast java.util.Map
            astore 2 /* map */
        start local 2 // java.util.Map map
         4: .line 725
            aload 0 /* this */
            invokevirtual android.util.ArrayMap.size:()I
            aload 2 /* map */
            invokeinterface java.util.Map.size:()I
            if_icmpeq 6
         5: .line 726
            iconst_0
            ireturn
         6: .line 730
      StackMap locals: java.util.Map
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         7: goto 17
         8: .line 731
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual android.util.ArrayMap.keyAt:(I)Ljava/lang/Object;
            astore 4 /* key */
        start local 4 // java.lang.Object key
         9: .line 732
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual android.util.ArrayMap.valueAt:(I)Ljava/lang/Object;
            astore 5 /* mine */
        start local 5 // java.lang.Object mine
        10: .line 733
            aload 2 /* map */
            aload 4 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 6 /* theirs */
        start local 6 // java.lang.Object theirs
        11: .line 734
            aload 5 /* mine */
            ifnonnull 14
        12: .line 735
            aload 6 /* theirs */
            ifnonnull 13
            aload 2 /* map */
            aload 4 /* key */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifne 16
        13: .line 736
      StackMap locals: java.lang.Object java.lang.Object java.lang.Object
      StackMap stack:
            iconst_0
            ireturn
        14: .line 738
      StackMap locals:
      StackMap stack:
            aload 5 /* mine */
            aload 6 /* theirs */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 16
        15: .line 739
            iconst_0
            ireturn
        end local 6 // java.lang.Object theirs
        end local 5 // java.lang.Object mine
        end local 4 // java.lang.Object key
        16: .line 730
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        17: iload 3 /* i */
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            if_icmplt 8
        end local 3 // int i
        18: .line 742
            goto 23
      StackMap locals: android.util.ArrayMap java.lang.Object java.util.Map
      StackMap stack: java.lang.NullPointerException
        19: pop
        20: .line 743
            iconst_0
            ireturn
        21: .line 744
      StackMap locals:
      StackMap stack: java.lang.ClassCastException
            pop
        22: .line 745
            iconst_0
            ireturn
        23: .line 747
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // java.util.Map map
        24: .line 749
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   25     0    this  Landroid/util/ArrayMap<TK;TV;>;
            0   25     1  object  Ljava/lang/Object;
            4   24     2     map  Ljava/util/Map<**>;
            7   18     3       i  I
            9   16     4     key  TK;
           10   16     5    mine  TV;
           11   16     6  theirs  Ljava/lang/Object;
      Exception table:
        from    to  target  type
           6    13      19  Class java.lang.NullPointerException
          14    15      19  Class java.lang.NullPointerException
          16    18      19  Class java.lang.NullPointerException
           6    13      21  Class java.lang.ClassCastException
          14    15      21  Class java.lang.ClassCastException
          16    18      21  Class java.lang.ClassCastException
    MethodParameters:
        Name  Flags
      object  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 757
            aload 0 /* this */
            getfield android.util.ArrayMap.mHashes:[I
            astore 1 /* hashes */
        start local 1 // int[] hashes
         1: .line 758
            aload 0 /* this */
            getfield android.util.ArrayMap.mArray:[Ljava/lang/Object;
            astore 2 /* array */
        start local 2 // java.lang.Object[] array
         2: .line 759
            iconst_0
            istore 3 /* result */
        start local 3 // int result
         3: .line 760
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: iconst_1
            istore 5 /* v */
        start local 5 // int v
         5: aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            istore 6 /* s */
        start local 6 // int s
         6: goto 12
         7: .line 761
      StackMap locals: android.util.ArrayMap int[] java.lang.Object[] int int int int
      StackMap stack:
            aload 2 /* array */
            iload 5 /* v */
            aaload
            astore 7 /* value */
        start local 7 // java.lang.Object value
         8: .line 762
            iload 3 /* result */
            aload 1 /* hashes */
            iload 4 /* i */
            iaload
            aload 7 /* value */
            ifnonnull 9
            iconst_0
            goto 10
      StackMap locals: android.util.ArrayMap int[] java.lang.Object[] int int int int java.lang.Object
      StackMap stack: int int
         9: aload 7 /* value */
            invokevirtual java.lang.Object.hashCode:()I
      StackMap locals: android.util.ArrayMap int[] java.lang.Object[] int int int int java.lang.Object
      StackMap stack: int int int
        10: ixor
            iadd
            istore 3 /* result */
        end local 7 // java.lang.Object value
        11: .line 760
            iinc 4 /* i */ 1
            iinc 5 /* v */ 2
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 6 /* s */
            if_icmplt 7
        end local 6 // int s
        end local 5 // int v
        end local 4 // int i
        13: .line 764
            iload 3 /* result */
            ireturn
        end local 3 // int result
        end local 2 // java.lang.Object[] array
        end local 1 // int[] hashes
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Landroid/util/ArrayMap<TK;TV;>;
            1   14     1  hashes  [I
            2   14     2   array  [Ljava/lang/Object;
            3   14     3  result  I
            4   13     4       i  I
            5   13     5       v  I
            6   13     6       s  I
            8   11     7   value  Ljava/lang/Object;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 776
            aload 0 /* this */
            invokevirtual android.util.ArrayMap.isEmpty:()Z
            ifeq 2
         1: .line 777
            ldc "{}"
            areturn
         2: .line 780
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            bipush 28
            imul
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 1 /* buffer */
        start local 1 // java.lang.StringBuilder buffer
         3: .line 781
            aload 1 /* buffer */
            bipush 123
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 782
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         5: goto 20
         6: .line 783
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            iload 2 /* i */
            ifle 8
         7: .line 784
            aload 1 /* buffer */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 786
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual android.util.ArrayMap.keyAt:(I)Ljava/lang/Object;
            astore 3 /* key */
        start local 3 // java.lang.Object key
         9: .line 787
            aload 3 /* key */
            aload 0 /* this */
            if_acmpeq 12
        10: .line 788
            aload 1 /* buffer */
            aload 3 /* key */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        11: .line 789
            goto 13
        12: .line 790
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* buffer */
            ldc "(this Map)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        13: .line 792
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            bipush 61
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        14: .line 793
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual android.util.ArrayMap.valueAt:(I)Ljava/lang/Object;
            astore 4 /* value */
        start local 4 // java.lang.Object value
        15: .line 794
            aload 4 /* value */
            aload 0 /* this */
            if_acmpeq 18
        16: .line 795
            aload 1 /* buffer */
            aload 4 /* value */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            pop
        17: .line 796
            goto 19
        18: .line 797
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* buffer */
            ldc "(this Map)"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 4 // java.lang.Object value
        end local 3 // java.lang.Object key
        19: .line 782
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        20: iload 2 /* i */
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            if_icmplt 6
        end local 2 // int i
        21: .line 800
            aload 1 /* buffer */
            bipush 125
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        22: .line 801
            aload 1 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   23     0    this  Landroid/util/ArrayMap<TK;TV;>;
            3   23     1  buffer  Ljava/lang/StringBuilder;
            5   21     2       i  I
            9   19     3     key  Ljava/lang/Object;
           15   19     4   value  Ljava/lang/Object;

  private android.util.MapCollections<K, V> getCollection();
    descriptor: ()Landroid/util/MapCollections;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 810
            aload 0 /* this */
            getfield android.util.ArrayMap.mCollections:Landroid/util/MapCollections;
            ifnonnull 2
         1: .line 811
            aload 0 /* this */
            new android.util.ArrayMap$1
            dup
            aload 0 /* this */
            invokespecial android.util.ArrayMap$1.<init>:(Landroid/util/ArrayMap;)V
            putfield android.util.ArrayMap.mCollections:Landroid/util/MapCollections;
         2: .line 858
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.util.ArrayMap.mCollections:Landroid/util/MapCollections;
            areturn
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/util/ArrayMap<TK;TV;>;
    Signature: ()Landroid/util/MapCollections<TK;TV;>;

  public boolean containsAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.util.Collection collection
         0: .line 868
            aload 0 /* this */
            aload 1 /* collection */
            invokestatic android.util.MapCollections.containsAllHelper:(Ljava/util/Map;Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Landroid/util/ArrayMap<TK;TV;>;
            0    1     1  collection  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public void putAll(java.util.Map<? extends K, ? extends V>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.util.Map map
         0: .line 877
            aload 0 /* this */
            aload 0 /* this */
            getfield android.util.ArrayMap.mSize:I
            aload 1 /* map */
            invokeinterface java.util.Map.size:()I
            iadd
            invokevirtual android.util.ArrayMap.ensureCapacity:(I)V
         1: .line 878
            aload 1 /* map */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: android.util.ArrayMap java.util.Map top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 2 /* entry */
        start local 2 // java.util.Map$Entry entry
         3: .line 879
            aload 0 /* this */
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            aload 2 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual android.util.ArrayMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 2 // java.util.Map$Entry entry
         4: .line 878
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 881
            return
        end local 1 // java.util.Map map
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Landroid/util/ArrayMap<TK;TV;>;
            0    6     1    map  Ljava/util/Map<+TK;+TV;>;
            3    4     2  entry  Ljava/util/Map$Entry<+TK;+TV;>;
    Signature: (Ljava/util/Map<+TK;+TV;>;)V
    MethodParameters:
      Name  Flags
      map   

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.util.Collection collection
         0: .line 889
            aload 0 /* this */
            aload 1 /* collection */
            invokestatic android.util.MapCollections.removeAllHelper:(Ljava/util/Map;Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Landroid/util/ArrayMap<TK;TV;>;
            0    1     1  collection  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.util.ArrayMap this
        start local 1 // java.util.Collection collection
         0: .line 899
            aload 0 /* this */
            aload 1 /* collection */
            invokestatic android.util.MapCollections.retainAllHelper:(Ljava/util/Map;Ljava/util/Collection;)Z
            ireturn
        end local 1 // java.util.Collection collection
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Landroid/util/ArrayMap<TK;TV;>;
            0    1     1  collection  Ljava/util/Collection<*>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 918
            aload 0 /* this */
            invokevirtual android.util.ArrayMap.getCollection:()Landroid/util/MapCollections;
            invokevirtual android.util.MapCollections.getEntrySet:()Ljava/util/Set;
            areturn
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/ArrayMap<TK;TV;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 931
            aload 0 /* this */
            invokevirtual android.util.ArrayMap.getCollection:()Landroid/util/MapCollections;
            invokevirtual android.util.MapCollections.getKeySet:()Ljava/util/Set;
            areturn
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/ArrayMap<TK;TV;>;
    Signature: ()Ljava/util/Set<TK;>;

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.util.ArrayMap this
         0: .line 944
            aload 0 /* this */
            invokevirtual android.util.ArrayMap.getCollection:()Landroid/util/MapCollections;
            invokevirtual android.util.MapCollections.getValues:()Ljava/util/Collection;
            areturn
        end local 0 // android.util.ArrayMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/ArrayMap<TK;TV;>;
    Signature: ()Ljava/util/Collection<TV;>;
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;Ljava/util/Map<TK;TV;>;
SourceFile: "ArrayMap.java"
NestMembers:
  android.util.ArrayMap$1
InnerClasses:
  android.util.ArrayMap$1
  public abstract Entry = java.util.Map$Entry of java.util.Map