class com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap implements java.lang.Cloneable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap
  super_class: java.lang.Object
{
  int free;
    descriptor: I
    flags: (0x0000) 

  com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry[] entries;
    descriptor: [Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
    flags: (0x0000) 

  java.lang.String[] keys;
    descriptor: [Ljava/lang/String;
    flags: (0x0000) 

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
         0: .line 321
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 317
            aload 0 /* this */
            bipush 23
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.free:I
         2: .line 322
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.free:I
            anewarray com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
         3: .line 323
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.free:I
            anewarray java.lang.String
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
         4: .line 324
            return
        end local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;

  void put(java.lang.String, com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry);
    descriptor: (Ljava/lang/String;Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
        start local 1 // java.lang.String key
        start local 2 // com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry value
         0: .line 327
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.index:(Ljava/lang/Object;)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 328
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            iload 3 /* index */
            aaload
            astore 4 /* oldKey */
        start local 4 // java.lang.Object oldKey
         2: .line 329
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            iload 3 /* index */
            aload 1 /* key */
            aastore
         3: .line 330
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            iload 3 /* index */
            aload 2 /* value */
            aastore
         4: .line 331
            aload 4 /* oldKey */
            ifnull 5
            aload 4 /* oldKey */
            aload 1 /* key */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 9
      StackMap locals: int java.lang.Object
      StackMap stack:
         5: aload 0 /* this */
            dup
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.free:I
            iconst_1
            isub
            dup_x1
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.free:I
            ifne 9
         6: .line 332
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            arraylength
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.free:I
         7: .line 333
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.free:I
            iconst_2
            ishl
            istore 5 /* newCapacity */
        start local 5 // int newCapacity
         8: .line 334
            aload 0 /* this */
            iload 5 /* newCapacity */
            invokevirtual com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.rehash:(I)V
        end local 5 // int newCapacity
         9: .line 336
      StackMap locals:
      StackMap stack:
            return
        end local 4 // java.lang.Object oldKey
        end local 3 // int index
        end local 2 // com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry value
        end local 1 // java.lang.String key
        end local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   10     0         this  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;
            0   10     1          key  Ljava/lang/String;
            0   10     2        value  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            1   10     3        index  I
            2   10     4       oldKey  Ljava/lang/Object;
            8    9     5  newCapacity  I
    MethodParameters:
       Name  Flags
      key    
      value  

  java.util.List<com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry> entrySet();
    descriptor: ()Ljava/util/List;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
         0: .line 339
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* a */
        start local 1 // java.util.List a
         1: .line 340
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 6
         3: .line 341
      StackMap locals: java.util.List int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            iload 2 /* i */
            aaload
            ifnull 5
            ldc ""
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            iload 2 /* i */
            aaload
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry.uri:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 342
            aload 1 /* a */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            iload 2 /* i */
            aaload
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 340
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            arraylength
            if_icmplt 3
        end local 2 // int i
         7: .line 345
            aload 1 /* a */
            areturn
        end local 1 // java.util.List a
        end local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;
            1    8     1     a  Ljava/util/List<Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;>;
            2    7     2     i  I
    Signature: ()Ljava/util/List<Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;>;

  protected int index(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
        start local 1 // java.lang.Object obj
         0: .line 349
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            astore 2 /* set */
        start local 2 // java.lang.Object[] set
         1: .line 350
            aload 2 /* set */
            arraylength
            istore 3 /* length */
        start local 3 // int length
         2: .line 352
            aload 1 /* obj */
            invokevirtual java.lang.Object.hashCode:()I
            ldc 2147483647
            iand
            iload 3 /* length */
            irem
            istore 4 /* index */
        start local 4 // int index
         3: .line 353
            aload 2 /* set */
            iload 4 /* index */
            aaload
            astore 5 /* cur */
        start local 5 // java.lang.Object cur
         4: .line 355
            aload 5 /* cur */
            ifnull 5
            aload 5 /* cur */
            aload 1 /* obj */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
         5: .line 356
      StackMap locals: com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap java.lang.Object java.lang.Object[] int int java.lang.Object
      StackMap stack:
            iload 4 /* index */
            ireturn
         6: .line 358
      StackMap locals:
      StackMap stack:
            iinc 3 /* length */ -1
         7: .line 360
      StackMap locals:
      StackMap stack:
            iload 4 /* index */
            iload 3 /* length */
            if_icmpne 8
            iconst_0
            goto 9
      StackMap locals:
      StackMap stack:
         8: iinc 4 /* index */ 1
            iload 4 /* index */
      StackMap locals:
      StackMap stack: int
         9: istore 4 /* index */
        10: .line 361
            aload 2 /* set */
            iload 4 /* index */
            aaload
            astore 5 /* cur */
        11: .line 362
            aload 5 /* cur */
            ifnull 12
            aload 5 /* cur */
            aload 1 /* obj */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 7
        12: .line 363
      StackMap locals:
      StackMap stack:
            iload 4 /* index */
            ireturn
        end local 5 // java.lang.Object cur
        end local 4 // int index
        end local 3 // int length
        end local 2 // java.lang.Object[] set
        end local 1 // java.lang.Object obj
        end local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;
            0   13     1     obj  Ljava/lang/Object;
            1   13     2     set  [Ljava/lang/Object;
            2   13     3  length  I
            3   13     4   index  I
            4   13     5     cur  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  protected void rehash(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
        start local 1 // int newCapacity
         0: .line 372
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            arraylength
            istore 2 /* oldCapacity */
        start local 2 // int oldCapacity
         1: .line 373
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            astore 3 /* oldKeys */
        start local 3 // java.lang.String[] oldKeys
         2: .line 374
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            astore 4 /* oldVals */
        start local 4 // com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry[] oldVals
         3: .line 376
            aload 0 /* this */
            iload 1 /* newCapacity */
            anewarray java.lang.String
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
         4: .line 377
            aload 0 /* this */
            iload 1 /* newCapacity */
            anewarray com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
         5: .line 379
            iload 2 /* oldCapacity */
            istore 5 /* i */
        start local 5 // int i
         6: goto 12
         7: .line 380
      StackMap locals: com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap int int java.lang.String[] com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry[] int
      StackMap stack:
            aload 3 /* oldKeys */
            iload 5 /* i */
            aaload
            ifnull 12
         8: .line 381
            aload 3 /* oldKeys */
            iload 5 /* i */
            aaload
            astore 6 /* o */
        start local 6 // java.lang.String o
         9: .line 382
            aload 0 /* this */
            aload 6 /* o */
            invokevirtual com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.index:(Ljava/lang/Object;)I
            istore 7 /* index */
        start local 7 // int index
        10: .line 383
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            iload 7 /* index */
            aload 6 /* o */
            aastore
        11: .line 384
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            iload 7 /* index */
            aload 4 /* oldVals */
            iload 5 /* i */
            aaload
            aastore
        end local 7 // int index
        end local 6 // java.lang.String o
        12: .line 379
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iinc 5 /* i */ -1
            ifgt 7
        end local 5 // int i
        13: .line 387
            return
        end local 4 // com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry[] oldVals
        end local 3 // java.lang.String[] oldKeys
        end local 2 // int oldCapacity
        end local 1 // int newCapacity
        end local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;
            0   14     1  newCapacity  I
            1   14     2  oldCapacity  I
            2   14     3      oldKeys  [Ljava/lang/String;
            3   14     4      oldVals  [Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            6   13     5            i  I
            9   12     6            o  Ljava/lang/String;
           10   12     7        index  I
    MethodParameters:
             Name  Flags
      newCapacity  

  com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry get(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
        start local 1 // java.lang.String key
         0: .line 390
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.index:(Ljava/lang/Object;)I
            aaload
            areturn
        end local 1 // java.lang.String key
        end local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;
            0    1     1   key  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      key   

  protected java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
         0: .line 395
            aload 0 /* this */
            invokespecial java.lang.Object.clone:()Ljava/lang/Object;
            checkcast com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap
            astore 1 /* copy */
        start local 1 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap copy
         1: .line 396
            aload 1 /* copy */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            arraylength
            anewarray com.sun.org.apache.xml.internal.security.c14n.implementations.NameSpaceSymbEntry
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
         2: .line 397
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            iconst_0
            aload 1 /* copy */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.entries:[Lcom/sun/org/apache/xml/internal/security/c14n/implementations/NameSpaceSymbEntry;
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 398
            aload 1 /* copy */
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            arraylength
            anewarray java.lang.String
            putfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
         4: .line 399
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            iconst_0
            aload 1 /* copy */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap.keys:[Ljava/lang/String;
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 401
            aload 1 /* copy */
         6: areturn
        end local 1 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap copy
         7: .line 402
      StackMap locals:
      StackMap stack: java.lang.CloneNotSupportedException
            astore 1 /* e */
        start local 1 // java.lang.CloneNotSupportedException e
         8: .line 403
            aload 1 /* e */
            invokevirtual java.lang.CloneNotSupportedException.printStackTrace:()V
        end local 1 // java.lang.CloneNotSupportedException e
         9: .line 405
            aconst_null
            areturn
        end local 0 // com.sun.org.apache.xml.internal.security.c14n.implementations.SymbMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;
            1    7     1  copy  Lcom/sun/org/apache/xml/internal/security/c14n/implementations/SymbMap;
            8    9     1     e  Ljava/lang/CloneNotSupportedException;
      Exception table:
        from    to  target  type
           0     6       7  Class java.lang.CloneNotSupportedException
}
SourceFile: "NameSpaceSymbTable.java"