public final class sun.font.FontResolver
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: sun.font.FontResolver
  super_class: java.lang.Object
{
  private java.awt.Font[] allFonts;
    descriptor: [Ljava/awt/Font;
    flags: (0x0002) ACC_PRIVATE

  private java.awt.Font[] supplementaryFonts;
    descriptor: [Ljava/awt/Font;
    flags: (0x0002) ACC_PRIVATE

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

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

  private java.awt.Font defaultFont;
    descriptor: Ljava/awt/Font;
    flags: (0x0002) ACC_PRIVATE

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

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

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

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

  private static sun.font.FontResolver INSTANCE;
    descriptor: Lsun/font/FontResolver;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // sun.font.FontResolver this
         0: .line 76
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            new java.awt.Font
            dup
            ldc "Dialog"
            iconst_0
            bipush 12
            invokespecial java.awt.Font.<init>:(Ljava/lang/String;II)V
            putfield sun.font.FontResolver.defaultFont:Ljava/awt/Font;
         2: .line 74
            aload 0 /* this */
            sipush 512
            anewarray int[]
            putfield sun.font.FontResolver.blocks:[[I
         3: .line 77
            return
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lsun/font/FontResolver;

  private java.awt.Font[] getAllFonts();
    descriptor: ()[Ljava/awt/Font;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // sun.font.FontResolver this
         0: .line 80
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            ifnonnull 9
         1: .line 81
            aload 0 /* this */
         2: .line 82
            invokestatic java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment:()Ljava/awt/GraphicsEnvironment;
            invokevirtual java.awt.GraphicsEnvironment.getAllFonts:()[Ljava/awt/Font;
         3: .line 81
            putfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
         4: .line 83
            iconst_0
            istore 1 /* i */
        start local 1 // int i
         5: goto 8
         6: .line 84
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            iload 1 /* i */
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            iload 1 /* i */
            aaload
            ldc 12.0
            invokevirtual java.awt.Font.deriveFont:(F)Ljava/awt/Font;
            aastore
         7: .line 83
            iinc 1 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 1 /* i */
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            arraylength
            if_icmplt 6
        end local 1 // int i
         9: .line 87
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            areturn
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lsun/font/FontResolver;
            5    9     1     i  I

  private int getIndexFor(char);
    descriptor: (C)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.font.FontResolver this
        start local 1 // char c
         0: .line 98
            aload 0 /* this */
            getfield sun.font.FontResolver.defaultFont:Ljava/awt/Font;
            iload 1 /* c */
            invokevirtual java.awt.Font.canDisplay:(C)Z
            ifeq 2
         1: .line 99
            iconst_1
            ireturn
         2: .line 101
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 7
         4: .line 102
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            iload 2 /* i */
            aaload
            iload 1 /* c */
            invokevirtual java.awt.Font.canDisplay:(C)Z
            ifeq 6
         5: .line 103
            iload 2 /* i */
            iconst_2
            iadd
            ireturn
         6: .line 101
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            invokevirtual sun.font.FontResolver.getAllFonts:()[Ljava/awt/Font;
            arraylength
            if_icmplt 4
        end local 2 // int i
         8: .line 106
            iconst_1
            ireturn
        end local 1 // char c
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/font/FontResolver;
            0    9     1     c  C
            3    8     2     i  I
    MethodParameters:
      Name  Flags
      c     

  private java.awt.Font[] getAllSCFonts();
    descriptor: ()[Ljava/awt/Font;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // sun.font.FontResolver this
         0: .line 111
            aload 0 /* this */
            getfield sun.font.FontResolver.supplementaryFonts:[Ljava/awt/Font;
            ifnonnull 20
         1: .line 112
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* fonts */
        start local 1 // java.util.ArrayList fonts
         2: .line 113
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* indices */
        start local 2 // java.util.ArrayList indices
         3: .line 115
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 11
         5: .line 116
      StackMap locals: java.util.ArrayList java.util.ArrayList int
      StackMap stack:
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            iload 3 /* i */
            aaload
            astore 4 /* font */
        start local 4 // java.awt.Font font
         6: .line 117
            aload 4 /* font */
            invokestatic sun.font.FontUtilities.getFont2D:(Ljava/awt/Font;)Lsun/font/Font2D;
            astore 5 /* font2D */
        start local 5 // sun.font.Font2D font2D
         7: .line 118
            aload 5 /* font2D */
            invokevirtual sun.font.Font2D.hasSupplementaryChars:()Z
            ifeq 10
         8: .line 119
            aload 1 /* fonts */
            aload 4 /* font */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         9: .line 120
            aload 2 /* indices */
            iload 3 /* i */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 5 // sun.font.Font2D font2D
        end local 4 // java.awt.Font font
        10: .line 115
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            aload 0 /* this */
            invokevirtual sun.font.FontResolver.getAllFonts:()[Ljava/awt/Font;
            arraylength
            if_icmplt 5
        end local 3 // int i
        12: .line 124
            aload 1 /* fonts */
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* len */
        start local 3 // int len
        13: .line 125
            aload 0 /* this */
            iload 3 /* len */
            newarray 10
            putfield sun.font.FontResolver.supplementaryIndices:[I
        14: .line 126
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        15: goto 18
        16: .line 127
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.font.FontResolver.supplementaryIndices:[I
            iload 4 /* i */
            aload 2 /* indices */
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iastore
        17: .line 126
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 4 /* i */
            iload 3 /* len */
            if_icmplt 16
        end local 4 // int i
        19: .line 129
            aload 0 /* this */
            aload 1 /* fonts */
            iload 3 /* len */
            anewarray java.awt.Font
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast java.awt.Font[]
            putfield sun.font.FontResolver.supplementaryFonts:[Ljava/awt/Font;
        end local 3 // int len
        end local 2 // java.util.ArrayList indices
        end local 1 // java.util.ArrayList fonts
        20: .line 131
      StackMap locals: sun.font.FontResolver
      StackMap stack:
            aload 0 /* this */
            getfield sun.font.FontResolver.supplementaryFonts:[Ljava/awt/Font;
            areturn
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   21     0     this  Lsun/font/FontResolver;
            2   20     1    fonts  Ljava/util/ArrayList<Ljava/awt/Font;>;
            3   20     2  indices  Ljava/util/ArrayList<Ljava/lang/Integer;>;
            4   12     3        i  I
            6   10     4     font  Ljava/awt/Font;
            7   10     5   font2D  Lsun/font/Font2D;
           13   20     3      len  I
           15   19     4        i  I

  private int getIndexFor(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.font.FontResolver this
        start local 1 // int cp
         0: .line 144
            aload 0 /* this */
            getfield sun.font.FontResolver.defaultFont:Ljava/awt/Font;
            iload 1 /* cp */
            invokevirtual java.awt.Font.canDisplay:(I)Z
            ifeq 2
         1: .line 145
            iconst_1
            ireturn
         2: .line 148
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 7
         4: .line 149
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield sun.font.FontResolver.supplementaryFonts:[Ljava/awt/Font;
            iload 2 /* i */
            aaload
            iload 1 /* cp */
            invokevirtual java.awt.Font.canDisplay:(I)Z
            ifeq 6
         5: .line 150
            aload 0 /* this */
            getfield sun.font.FontResolver.supplementaryIndices:[I
            iload 2 /* i */
            iaload
            iconst_2
            iadd
            ireturn
         6: .line 148
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 2 /* i */
            aload 0 /* this */
            invokevirtual sun.font.FontResolver.getAllSCFonts:()[Ljava/awt/Font;
            arraylength
            if_icmplt 4
        end local 2 // int i
         8: .line 153
            iconst_1
            ireturn
        end local 1 // int cp
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lsun/font/FontResolver;
            0    9     1    cp  I
            3    8     2     i  I
    MethodParameters:
      Name  Flags
      cp    

  public int getFontIndex(char);
    descriptor: (C)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // sun.font.FontResolver this
        start local 1 // char c
         0: .line 165
            iload 1 /* c */
            bipush 9
            ishr
            istore 2 /* blockIndex */
        start local 2 // int blockIndex
         1: .line 166
            aload 0 /* this */
            getfield sun.font.FontResolver.blocks:[[I
            iload 2 /* blockIndex */
            aaload
            astore 3 /* block */
        start local 3 // int[] block
         2: .line 167
            aload 3 /* block */
            ifnonnull 5
         3: .line 168
            sipush 128
            newarray 10
            astore 3 /* block */
         4: .line 169
            aload 0 /* this */
            getfield sun.font.FontResolver.blocks:[[I
            iload 2 /* blockIndex */
            aload 3 /* block */
            aastore
         5: .line 172
      StackMap locals: int int[]
      StackMap stack:
            iload 1 /* c */
            bipush 127
            iand
            istore 4 /* index */
        start local 4 // int index
         6: .line 173
            aload 3 /* block */
            iload 4 /* index */
            iaload
            ifne 8
         7: .line 174
            aload 3 /* block */
            iload 4 /* index */
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual sun.font.FontResolver.getIndexFor:(C)I
            iastore
         8: .line 176
      StackMap locals: int
      StackMap stack:
            aload 3 /* block */
            iload 4 /* index */
            iaload
            ireturn
        end local 4 // int index
        end local 3 // int[] block
        end local 2 // int blockIndex
        end local 1 // char c
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lsun/font/FontResolver;
            0    9     1           c  C
            1    9     2  blockIndex  I
            2    9     3       block  [I
            6    9     4       index  I
    MethodParameters:
      Name  Flags
      c     

  public int getFontIndex(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // sun.font.FontResolver this
        start local 1 // int cp
         0: .line 180
            iload 1 /* cp */
            ldc 65536
            if_icmpge 2
         1: .line 181
            aload 0 /* this */
            iload 1 /* cp */
            i2c
            invokevirtual sun.font.FontResolver.getFontIndex:(C)I
            ireturn
         2: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* cp */
            invokevirtual sun.font.FontResolver.getIndexFor:(I)I
            ireturn
        end local 1 // int cp
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/font/FontResolver;
            0    3     1    cp  I
    MethodParameters:
      Name  Flags
      cp    

  public int nextFontRunIndex(sun.text.CodePointIterator);
    descriptor: (Lsun/text/CodePointIterator;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // sun.font.FontResolver this
        start local 1 // sun.text.CodePointIterator iter
         0: .line 196
            aload 1 /* iter */
            invokevirtual sun.text.CodePointIterator.next:()I
            istore 2 /* cp */
        start local 2 // int cp
         1: .line 197
            iconst_1
            istore 3 /* fontIndex */
        start local 3 // int fontIndex
         2: .line 198
            iload 2 /* cp */
            iconst_m1
            if_icmpeq 9
         3: .line 199
            aload 0 /* this */
            iload 2 /* cp */
            invokevirtual sun.font.FontResolver.getFontIndex:(I)I
            istore 3 /* fontIndex */
         4: .line 201
            goto 8
         5: .line 202
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* cp */
            invokevirtual sun.font.FontResolver.getFontIndex:(I)I
            iload 3 /* fontIndex */
            if_icmpeq 8
         6: .line 203
            aload 1 /* iter */
            invokevirtual sun.text.CodePointIterator.prev:()I
            pop
         7: .line 204
            goto 9
         8: .line 201
      StackMap locals:
      StackMap stack:
            aload 1 /* iter */
            invokevirtual sun.text.CodePointIterator.next:()I
            dup
            istore 2 /* cp */
            iconst_m1
            if_icmpne 5
         9: .line 208
      StackMap locals:
      StackMap stack:
            iload 3 /* fontIndex */
            ireturn
        end local 3 // int fontIndex
        end local 2 // int cp
        end local 1 // sun.text.CodePointIterator iter
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   10     0       this  Lsun/font/FontResolver;
            0   10     1       iter  Lsun/text/CodePointIterator;
            1   10     2         cp  I
            2   10     3  fontIndex  I
    MethodParameters:
      Name  Flags
      iter  

  public java.awt.Font getFont(int, java.util.Map);
    descriptor: (ILjava/util/Map;)Ljava/awt/Font;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // sun.font.FontResolver this
        start local 1 // int index
        start local 2 // java.util.Map attributes
         0: .line 226
            aload 0 /* this */
            getfield sun.font.FontResolver.defaultFont:Ljava/awt/Font;
            astore 3 /* font */
        start local 3 // java.awt.Font font
         1: .line 228
            iload 1 /* index */
            iconst_2
            if_icmplt 3
         2: .line 229
            aload 0 /* this */
            getfield sun.font.FontResolver.allFonts:[Ljava/awt/Font;
            iload 1 /* index */
            iconst_2
            isub
            aaload
            astore 3 /* font */
         3: .line 232
      StackMap locals: java.awt.Font
      StackMap stack:
            aload 3 /* font */
            aload 2 /* attributes */
            invokevirtual java.awt.Font.deriveFont:(Ljava/util/Map;)Ljava/awt/Font;
            areturn
        end local 3 // java.awt.Font font
        end local 2 // java.util.Map attributes
        end local 1 // int index
        end local 0 // sun.font.FontResolver this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lsun/font/FontResolver;
            0    4     1       index  I
            0    4     2  attributes  Ljava/util/Map;
            1    4     3        font  Ljava/awt/Font;
    MethodParameters:
            Name  Flags
      index       
      attributes  

  public static sun.font.FontResolver getInstance();
    descriptor: ()Lsun/font/FontResolver;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 241
            getstatic sun.font.FontResolver.INSTANCE:Lsun/font/FontResolver;
            ifnonnull 2
         1: .line 242
            new sun.font.FontResolver
            dup
            invokespecial sun.font.FontResolver.<init>:()V
            putstatic sun.font.FontResolver.INSTANCE:Lsun/font/FontResolver;
         2: .line 244
      StackMap locals:
      StackMap stack:
            getstatic sun.font.FontResolver.INSTANCE:Lsun/font/FontResolver;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "FontResolver.java"
InnerClasses:
  public Attribute = java.text.AttributedCharacterIterator$Attribute of java.text.AttributedCharacterIterator