abstract class android.util.MapCollections<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: android.util.MapCollections
  super_class: java.lang.Object
{
  android.util.MapCollections<K, V>.EntrySet mEntrySet;
    descriptor: Landroid/util/MapCollections$EntrySet;
    flags: (0x0000) 
    Signature: Landroid/util/MapCollections<TK;TV;>.EntrySet;

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

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

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.util.MapCollections this
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // android.util.MapCollections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/util/MapCollections<TK;TV;>;

  public static <K, V> boolean containsAllHelper(java.util.Map<K, V>, java.util.Collection<?>);
    descriptor: (Ljava/util/Map;Ljava/util/Collection;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.util.Map map
        start local 1 // java.util.Collection collection
         0: .line 459
            aload 1 /* collection */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: .line 460
            goto 4
         2: .line 461
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 0 /* map */
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 462
            iconst_0
            ireturn
         4: .line 460
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 465
            iconst_1
            ireturn
        end local 2 // java.util.Iterator it
        end local 1 // java.util.Collection collection
        end local 0 // java.util.Map map
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0         map  Ljava/util/Map<TK;TV;>;
            0    6     1  collection  Ljava/util/Collection<*>;
            1    6     2          it  Ljava/util/Iterator<*>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/util/Map<TK;TV;>;Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      map         
      collection  

  public static <K, V> boolean removeAllHelper(java.util.Map<K, V>, java.util.Collection<?>);
    descriptor: (Ljava/util/Map;Ljava/util/Collection;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.util.Map map
        start local 1 // java.util.Collection collection
         0: .line 469
            aload 0 /* map */
            invokeinterface java.util.Map.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 470
            aload 1 /* collection */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: .line 471
            goto 4
         3: .line 472
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 0 /* map */
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 471
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         5: .line 474
            iload 2 /* oldSize */
            aload 0 /* map */
            invokeinterface java.util.Map.size:()I
            if_icmpeq 6
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         6: iconst_0
            ireturn
        end local 3 // java.util.Iterator it
        end local 2 // int oldSize
        end local 1 // java.util.Collection collection
        end local 0 // java.util.Map map
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0         map  Ljava/util/Map<TK;TV;>;
            0    7     1  collection  Ljava/util/Collection<*>;
            1    7     2     oldSize  I
            2    7     3          it  Ljava/util/Iterator<*>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/util/Map<TK;TV;>;Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      map         
      collection  

  public static <K, V> boolean retainAllHelper(java.util.Map<K, V>, java.util.Collection<?>);
    descriptor: (Ljava/util/Map;Ljava/util/Collection;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // java.util.Map map
        start local 1 // java.util.Collection collection
         0: .line 478
            aload 0 /* map */
            invokeinterface java.util.Map.size:()I
            istore 2 /* oldSize */
        start local 2 // int oldSize
         1: .line 479
            aload 0 /* map */
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: .line 480
            goto 5
         3: .line 481
      StackMap locals: int java.util.Iterator
      StackMap stack:
            aload 1 /* collection */
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 482
            aload 3 /* it */
            invokeinterface java.util.Iterator.remove:()V
         5: .line 480
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 485
            iload 2 /* oldSize */
            aload 0 /* map */
            invokeinterface java.util.Map.size:()I
            if_icmpeq 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 3 // java.util.Iterator it
        end local 2 // int oldSize
        end local 1 // java.util.Collection collection
        end local 0 // java.util.Map map
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0         map  Ljava/util/Map<TK;TV;>;
            0    8     1  collection  Ljava/util/Collection<*>;
            1    8     2     oldSize  I
            2    8     3          it  Ljava/util/Iterator<TK;>;
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(Ljava/util/Map<TK;TV;>;Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      map         
      collection  

  public java.lang.Object[] toArrayHelper(int);
    descriptor: (I)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // android.util.MapCollections this
        start local 1 // int offset
         0: .line 489
            aload 0 /* this */
            invokevirtual android.util.MapCollections.colGetSize:()I
            istore 2 /* N */
        start local 2 // int N
         1: .line 490
            iload 2 /* N */
            anewarray java.lang.Object
            astore 3 /* result */
        start local 3 // java.lang.Object[] result
         2: .line 491
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 492
      StackMap locals: int java.lang.Object[] int
      StackMap stack:
            aload 3 /* result */
            iload 4 /* i */
            aload 0 /* this */
            iload 4 /* i */
            iload 1 /* offset */
            invokevirtual android.util.MapCollections.colGetEntry:(II)Ljava/lang/Object;
            aastore
         5: .line 491
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            iload 2 /* N */
            if_icmplt 4
        end local 4 // int i
         7: .line 494
            aload 3 /* result */
            areturn
        end local 3 // java.lang.Object[] result
        end local 2 // int N
        end local 1 // int offset
        end local 0 // android.util.MapCollections this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Landroid/util/MapCollections<TK;TV;>;
            0    8     1  offset  I
            1    8     2       N  I
            2    8     3  result  [Ljava/lang/Object;
            3    7     4       i  I
    MethodParameters:
        Name  Flags
      offset  

  public <T> T[] toArrayHelper(T[], );
    descriptor: ([Ljava/lang/Object;I)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // android.util.MapCollections this
        start local 1 // java.lang.Object[] array
        start local 2 // int offset
         0: .line 498
            aload 0 /* this */
            invokevirtual android.util.MapCollections.colGetSize:()I
            istore 3 /* N */
        start local 3 // int N
         1: .line 499
            aload 1 /* array */
            arraylength
            iload 3 /* N */
            if_icmpge 5
         2: .line 501
            aload 1 /* array */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getComponentType:()Ljava/lang/Class;
            iload 3 /* N */
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
         3: .line 500
            astore 4 /* newArray */
        start local 4 // java.lang.Object[] newArray
         4: .line 502
            aload 4 /* newArray */
            astore 1 /* array */
        end local 4 // java.lang.Object[] newArray
         5: .line 504
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         6: goto 9
         7: .line 505
      StackMap locals: int
      StackMap stack:
            aload 1 /* array */
            iload 4 /* i */
            aload 0 /* this */
            iload 4 /* i */
            iload 2 /* offset */
            invokevirtual android.util.MapCollections.colGetEntry:(II)Ljava/lang/Object;
            aastore
         8: .line 504
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 4 /* i */
            iload 3 /* N */
            if_icmplt 7
        end local 4 // int i
        10: .line 507
            aload 1 /* array */
            arraylength
            iload 3 /* N */
            if_icmple 12
        11: .line 508
            aload 1 /* array */
            iload 3 /* N */
            aconst_null
            aastore
        12: .line 510
      StackMap locals:
      StackMap stack:
            aload 1 /* array */
            areturn
        end local 3 // int N
        end local 2 // int offset
        end local 1 // java.lang.Object[] array
        end local 0 // android.util.MapCollections this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Landroid/util/MapCollections<TK;TV;>;
            0   13     1     array  [Ljava/lang/Object;
            0   13     2    offset  I
            1   13     3         N  I
            4    5     4  newArray  [Ljava/lang/Object;
            6   10     4         i  I
    Signature: <T:Ljava/lang/Object;>([TT;I)[TT;
    MethodParameters:
        Name  Flags
      array   
      offset  

  public static <T> boolean equalsSetHelper(java.util.Set<T>, );
    descriptor: (Ljava/util/Set;Ljava/lang/Object;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // java.util.Set set
        start local 1 // java.lang.Object object
         0: .line 514
            aload 0 /* set */
            aload 1 /* object */
            if_acmpne 2
         1: .line 515
            iconst_1
            ireturn
         2: .line 517
      StackMap locals:
      StackMap stack:
            aload 1 /* object */
            instanceof java.util.Set
            ifeq 11
         3: .line 518
            aload 1 /* object */
            checkcast java.util.Set
            astore 2 /* s */
        start local 2 // java.util.Set s
         4: .line 521
            aload 0 /* set */
            invokeinterface java.util.Set.size:()I
            aload 2 /* s */
            invokeinterface java.util.Set.size:()I
            if_icmpne 5
            aload 0 /* set */
            aload 2 /* s */
            invokeinterface java.util.Set.containsAll:(Ljava/util/Collection;)Z
            ifeq 5
            iconst_1
            ireturn
      StackMap locals: java.util.Set
      StackMap stack:
         5: iconst_0
         6: ireturn
         7: .line 522
      StackMap locals:
      StackMap stack: java.lang.NullPointerException
            pop
         8: .line 523
            iconst_0
            ireturn
         9: .line 524
      StackMap locals:
      StackMap stack: java.lang.ClassCastException
            pop
        10: .line 525
            iconst_0
            ireturn
        end local 2 // java.util.Set s
        11: .line 528
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // java.util.Set set
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0     set  Ljava/util/Set<TT;>;
            0   12     1  object  Ljava/lang/Object;
            4   11     2       s  Ljava/util/Set<*>;
      Exception table:
        from    to  target  type
           4     6       7  Class java.lang.NullPointerException
           4     6       9  Class java.lang.ClassCastException
    Signature: <T:Ljava/lang/Object;>(Ljava/util/Set<TT;>;Ljava/lang/Object;)Z
    MethodParameters:
        Name  Flags
      set     
      object  

  public java.util.Set<java.util.Map$Entry<K, V>> getEntrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // android.util.MapCollections this
         0: .line 532
            aload 0 /* this */
            getfield android.util.MapCollections.mEntrySet:Landroid/util/MapCollections$EntrySet;
            ifnonnull 2
         1: .line 533
            aload 0 /* this */
            new android.util.MapCollections$EntrySet
            dup
            aload 0 /* this */
            invokespecial android.util.MapCollections$EntrySet.<init>:(Landroid/util/MapCollections;)V
            putfield android.util.MapCollections.mEntrySet:Landroid/util/MapCollections$EntrySet;
         2: .line 535
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.util.MapCollections.mEntrySet:Landroid/util/MapCollections$EntrySet;
            areturn
        end local 0 // android.util.MapCollections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/util/MapCollections<TK;TV;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  public java.util.Set<K> getKeySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // android.util.MapCollections this
         0: .line 539
            aload 0 /* this */
            getfield android.util.MapCollections.mKeySet:Landroid/util/MapCollections$KeySet;
            ifnonnull 2
         1: .line 540
            aload 0 /* this */
            new android.util.MapCollections$KeySet
            dup
            aload 0 /* this */
            invokespecial android.util.MapCollections$KeySet.<init>:(Landroid/util/MapCollections;)V
            putfield android.util.MapCollections.mKeySet:Landroid/util/MapCollections$KeySet;
         2: .line 542
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.util.MapCollections.mKeySet:Landroid/util/MapCollections$KeySet;
            areturn
        end local 0 // android.util.MapCollections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/util/MapCollections<TK;TV;>;
    Signature: ()Ljava/util/Set<TK;>;

  public java.util.Collection<V> getValues();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // android.util.MapCollections this
         0: .line 546
            aload 0 /* this */
            getfield android.util.MapCollections.mValues:Landroid/util/MapCollections$ValuesCollection;
            ifnonnull 2
         1: .line 547
            aload 0 /* this */
            new android.util.MapCollections$ValuesCollection
            dup
            aload 0 /* this */
            invokespecial android.util.MapCollections$ValuesCollection.<init>:(Landroid/util/MapCollections;)V
            putfield android.util.MapCollections.mValues:Landroid/util/MapCollections$ValuesCollection;
         2: .line 549
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.util.MapCollections.mValues:Landroid/util/MapCollections$ValuesCollection;
            areturn
        end local 0 // android.util.MapCollections this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Landroid/util/MapCollections<TK;TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  protected abstract int colGetSize();
    descriptor: ()I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected abstract java.lang.Object colGetEntry(int, int);
    descriptor: (II)Ljava/lang/Object;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      index   
      offset  

  protected abstract int colIndexOfKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  protected abstract int colIndexOfValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      key   

  protected abstract java.util.Map<K, V> colGetMap();
    descriptor: ()Ljava/util/Map;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: ()Ljava/util/Map<TK;TV;>;

  protected abstract void colPut(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (TK;TV;)V
    MethodParameters:
       Name  Flags
      key    
      value  

  protected abstract V colSetValue(int, );
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (ITV;)TV;
    MethodParameters:
       Name  Flags
      index  
      value  

  protected abstract void colRemoveAt(int);
    descriptor: (I)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      index  

  protected abstract void colClear();
    descriptor: ()V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "MapCollections.java"
NestMembers:
  android.util.MapCollections$ArrayIterator  android.util.MapCollections$EntrySet  android.util.MapCollections$KeySet  android.util.MapCollections$MapIterator  android.util.MapCollections$ValuesCollection
InnerClasses:
  final ArrayIterator = android.util.MapCollections$ArrayIterator of android.util.MapCollections
  final EntrySet = android.util.MapCollections$EntrySet of android.util.MapCollections
  final KeySet = android.util.MapCollections$KeySet of android.util.MapCollections
  final MapIterator = android.util.MapCollections$MapIterator of android.util.MapCollections
  final ValuesCollection = android.util.MapCollections$ValuesCollection of android.util.MapCollections
  public abstract Entry = java.util.Map$Entry of java.util.Map