final class com.google.common.base.SmallCharMatcher extends com.google.common.base.CharMatcher$NamedFastMatcher
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.base.SmallCharMatcher
  super_class: com.google.common.base.CharMatcher$NamedFastMatcher
{
  static final int MAX_SIZE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 1023

  private final char[] table;
    descriptor: [C
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean containsZero;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long filter;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private static final int C1;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -862048943

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

  private static final double DESIRED_LOAD_FACTOR;
    descriptor: D
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.5

  private void <init>(char[], long, boolean, java.lang.String);
    descriptor: ([CJZLjava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // com.google.common.base.SmallCharMatcher this
        start local 1 // char[] table
        start local 2 // long filter
        start local 4 // boolean containsZero
        start local 5 // java.lang.String description
         0: .line 36
            aload 0 /* this */
            aload 5 /* description */
            invokespecial com.google.common.base.CharMatcher$NamedFastMatcher.<init>:(Ljava/lang/String;)V
         1: .line 37
            aload 0 /* this */
            aload 1 /* table */
            putfield com.google.common.base.SmallCharMatcher.table:[C
         2: .line 38
            aload 0 /* this */
            lload 2 /* filter */
            putfield com.google.common.base.SmallCharMatcher.filter:J
         3: .line 39
            aload 0 /* this */
            iload 4 /* containsZero */
            putfield com.google.common.base.SmallCharMatcher.containsZero:Z
         4: .line 40
            return
        end local 5 // java.lang.String description
        end local 4 // boolean containsZero
        end local 2 // long filter
        end local 1 // char[] table
        end local 0 // com.google.common.base.SmallCharMatcher this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lcom/google/common/base/SmallCharMatcher;
            0    5     1         table  [C
            0    5     2        filter  J
            0    5     4  containsZero  Z
            0    5     5   description  Ljava/lang/String;
    MethodParameters:
              Name  Flags
      table         
      filter        
      containsZero  
      description   

  static int smear(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int hashCode
         0: .line 54
            ldc 461845907
            iload 0 /* hashCode */
            ldc -862048943
            imul
            bipush 15
            invokestatic java.lang.Integer.rotateLeft:(II)I
            imul
            ireturn
        end local 0 // int hashCode
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  hashCode  I
    MethodParameters:
          Name  Flags
      hashCode  

  private boolean checkFilter(int);
    descriptor: (I)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // com.google.common.base.SmallCharMatcher this
        start local 1 // int c
         0: .line 58
            lconst_1
            lconst_1
            aload 0 /* this */
            getfield com.google.common.base.SmallCharMatcher.filter:J
            iload 1 /* c */
            lshr
            land
            lcmp
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int c
        end local 0 // com.google.common.base.SmallCharMatcher this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/base/SmallCharMatcher;
            0    2     1     c  I
    MethodParameters:
      Name  Flags
      c     

  static int chooseTableSize(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // int setSize
         0: .line 74
            iload 0 /* setSize */
            iconst_1
            if_icmpne 2
         1: .line 75
            iconst_2
            ireturn
         2: .line 79
      StackMap locals:
      StackMap stack:
            iload 0 /* setSize */
            iconst_1
            isub
            invokestatic java.lang.Integer.highestOneBit:(I)I
            iconst_1
            ishl
            istore 1 /* tableSize */
        start local 1 // int tableSize
         3: .line 80
            goto 5
         4: .line 81
      StackMap locals: int
      StackMap stack:
            iload 1 /* tableSize */
            iconst_1
            ishl
            istore 1 /* tableSize */
         5: .line 80
      StackMap locals:
      StackMap stack:
            iload 1 /* tableSize */
            i2d
            ldc 0.5
            dmul
            iload 0 /* setSize */
            i2d
            dcmpg
            iflt 4
         6: .line 83
            iload 1 /* tableSize */
            ireturn
        end local 1 // int tableSize
        end local 0 // int setSize
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0    setSize  I
            3    7     1  tableSize  I
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.google.common.annotations.VisibleForTesting()
    MethodParameters:
         Name  Flags
      setSize  

  static com.google.common.base.CharMatcher from(java.util.BitSet, java.lang.String);
    descriptor: (Ljava/util/BitSet;Ljava/lang/String;)Lcom/google/common/base/CharMatcher;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=7, locals=10, args_size=2
        start local 0 // java.util.BitSet chars
        start local 1 // java.lang.String description
         0: .line 88
            lconst_0
            lstore 2 /* filter */
        start local 2 // long filter
         1: .line 89
            aload 0 /* chars */
            invokevirtual java.util.BitSet.cardinality:()I
            istore 4 /* size */
        start local 4 // int size
         2: .line 90
            aload 0 /* chars */
            iconst_0
            invokevirtual java.util.BitSet.get:(I)Z
            istore 5 /* containsZero */
        start local 5 // boolean containsZero
         3: .line 92
            iload 4 /* size */
            invokestatic com.google.common.base.SmallCharMatcher.chooseTableSize:(I)I
            newarray 5
            astore 6 /* table */
        start local 6 // char[] table
         4: .line 93
            aload 6 /* table */
            arraylength
            iconst_1
            isub
            istore 7 /* mask */
        start local 7 // int mask
         5: .line 94
            aload 0 /* chars */
            iconst_0
            invokevirtual java.util.BitSet.nextSetBit:(I)I
            istore 8 /* c */
        start local 8 // int c
         6: goto 15
         7: .line 96
      StackMap locals: java.util.BitSet java.lang.String long int int char[] int int
      StackMap stack:
            lload 2 /* filter */
            lconst_1
            iload 8 /* c */
            lshl
            lor
            lstore 2 /* filter */
         8: .line 97
            iload 8 /* c */
            invokestatic com.google.common.base.SmallCharMatcher.smear:(I)I
            iload 7 /* mask */
            iand
            istore 9 /* index */
        start local 9 // int index
         9: .line 100
      StackMap locals: int
      StackMap stack:
            aload 6 /* table */
            iload 9 /* index */
            caload
            ifne 12
        10: .line 101
            aload 6 /* table */
            iload 9 /* index */
            iload 8 /* c */
            i2c
            castore
        11: .line 102
            goto 14
        12: .line 105
      StackMap locals:
      StackMap stack:
            iload 9 /* index */
            iconst_1
            iadd
            iload 7 /* mask */
            iand
            istore 9 /* index */
        13: .line 98
            goto 9
        end local 9 // int index
        14: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* chars */
            iload 8 /* c */
            iconst_1
            iadd
            invokevirtual java.util.BitSet.nextSetBit:(I)I
            istore 8 /* c */
      StackMap locals:
      StackMap stack:
        15: iload 8 /* c */
            iconst_m1
            if_icmpne 7
        end local 8 // int c
        16: .line 108
            new com.google.common.base.SmallCharMatcher
            dup
            aload 6 /* table */
            lload 2 /* filter */
            iload 5 /* containsZero */
            aload 1 /* description */
            invokespecial com.google.common.base.SmallCharMatcher.<init>:([CJZLjava/lang/String;)V
            areturn
        end local 7 // int mask
        end local 6 // char[] table
        end local 5 // boolean containsZero
        end local 4 // int size
        end local 2 // long filter
        end local 1 // java.lang.String description
        end local 0 // java.util.BitSet chars
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   17     0         chars  Ljava/util/BitSet;
            0   17     1   description  Ljava/lang/String;
            1   17     2        filter  J
            2   17     4          size  I
            3   17     5  containsZero  Z
            4   17     6         table  [C
            5   17     7          mask  I
            6   16     8             c  I
            9   14     9         index  I
    MethodParameters:
             Name  Flags
      chars        
      description  

  public boolean matches(char);
    descriptor: (C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.google.common.base.SmallCharMatcher this
        start local 1 // char c
         0: .line 113
            iload 1 /* c */
            ifne 2
         1: .line 114
            aload 0 /* this */
            getfield com.google.common.base.SmallCharMatcher.containsZero:Z
            ireturn
         2: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual com.google.common.base.SmallCharMatcher.checkFilter:(I)Z
            ifne 4
         3: .line 117
            iconst_0
            ireturn
         4: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.base.SmallCharMatcher.table:[C
            arraylength
            iconst_1
            isub
            istore 2 /* mask */
        start local 2 // int mask
         5: .line 120
            iload 1 /* c */
            invokestatic com.google.common.base.SmallCharMatcher.smear:(I)I
            iload 2 /* mask */
            iand
            istore 3 /* startingIndex */
        start local 3 // int startingIndex
         6: .line 121
            iload 3 /* startingIndex */
            istore 4 /* index */
        start local 4 // int index
         7: .line 123
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.base.SmallCharMatcher.table:[C
            iload 4 /* index */
            caload
            ifne 9
         8: .line 124
            iconst_0
            ireturn
         9: .line 125
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.base.SmallCharMatcher.table:[C
            iload 4 /* index */
            caload
            iload 1 /* c */
            if_icmpne 11
        10: .line 126
            iconst_1
            ireturn
        11: .line 128
      StackMap locals:
      StackMap stack:
            iload 4 /* index */
            iconst_1
            iadd
            iload 2 /* mask */
            iand
            istore 4 /* index */
        12: .line 131
            iload 4 /* index */
            iload 3 /* startingIndex */
            if_icmpne 7
        13: .line 132
            iconst_0
            ireturn
        end local 4 // int index
        end local 3 // int startingIndex
        end local 2 // int mask
        end local 1 // char c
        end local 0 // com.google.common.base.SmallCharMatcher this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lcom/google/common/base/SmallCharMatcher;
            0   14     1              c  C
            5   14     2           mask  I
            6   14     3  startingIndex  I
            7   14     4          index  I
    MethodParameters:
      Name  Flags
      c     

  void setBits(java.util.BitSet);
    descriptor: (Ljava/util/BitSet;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.google.common.base.SmallCharMatcher this
        start local 1 // java.util.BitSet table
         0: .line 137
            aload 0 /* this */
            getfield com.google.common.base.SmallCharMatcher.containsZero:Z
            ifeq 2
         1: .line 138
            aload 1 /* table */
            iconst_0
            invokevirtual java.util.BitSet.set:(I)V
         2: .line 140
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.base.SmallCharMatcher.table:[C
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 7
      StackMap locals: com.google.common.base.SmallCharMatcher java.util.BitSet top int int char[]
      StackMap stack:
         3: aload 5
            iload 3
            caload
            istore 2 /* c */
        start local 2 // char c
         4: .line 141
            iload 2 /* c */
            ifeq 6
         5: .line 142
            aload 1 /* table */
            iload 2 /* c */
            invokevirtual java.util.BitSet.set:(I)V
        end local 2 // char c
         6: .line 140
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         7: iload 3
            iload 4
            if_icmplt 3
         8: .line 145
            return
        end local 1 // java.util.BitSet table
        end local 0 // com.google.common.base.SmallCharMatcher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/google/common/base/SmallCharMatcher;
            0    9     1  table  Ljava/util/BitSet;
            4    6     2      c  C
    MethodParameters:
       Name  Flags
      table  
}
SourceFile: "SmallCharMatcher.java"
InnerClasses:
  abstract NamedFastMatcher = com.google.common.base.CharMatcher$NamedFastMatcher of com.google.common.base.CharMatcher
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()