public abstract class com.sun.javafx.font.CharToGlyphMapper
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: com.sun.javafx.font.CharToGlyphMapper
  super_class: java.lang.Object
{
  public static final int HI_SURROGATE_SHIFT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 10

  public static final int HI_SURROGATE_START;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 55296

  public static final int HI_SURROGATE_END;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 56319

  public static final int LO_SURROGATE_START;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 56320

  public static final int LO_SURROGATE_END;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 57343

  public static final int SURROGATES_START;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 65536

  public static final int MISSING_GLYPH;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int INVISIBLE_GLYPH_ID;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 65535

  protected int missingGlyph;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            iconst_0
            putfield com.sun.javafx.font.CharToGlyphMapper.missingGlyph:I
         2: .line 33
            return
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/javafx/font/CharToGlyphMapper;

  public boolean canDisplay(char);
    descriptor: (C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
        start local 1 // char cp
         0: .line 48
            aload 0 /* this */
            iload 1 /* cp */
            invokevirtual com.sun.javafx.font.CharToGlyphMapper.charToGlyph:(C)I
            istore 2 /* glyph */
        start local 2 // int glyph
         1: .line 49
            iload 2 /* glyph */
            aload 0 /* this */
            getfield com.sun.javafx.font.CharToGlyphMapper.missingGlyph:I
            if_icmpeq 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // int glyph
        end local 1 // char cp
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/sun/javafx/font/CharToGlyphMapper;
            0    3     1     cp  C
            1    3     2  glyph  I
    MethodParameters:
      Name  Flags
      cp    

  public int getMissingGlyphCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
         0: .line 53
            aload 0 /* this */
            getfield com.sun.javafx.font.CharToGlyphMapper.missingGlyph:I
            ireturn
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/javafx/font/CharToGlyphMapper;

  public abstract int getGlyphCode(int);
    descriptor: (I)I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      charCode  

  public int charToGlyph(char);
    descriptor: (C)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
        start local 1 // char unicode
         0: .line 59
            aload 0 /* this */
            iload 1 /* unicode */
            invokevirtual com.sun.javafx.font.CharToGlyphMapper.getGlyphCode:(I)I
            ireturn
        end local 1 // char unicode
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/sun/javafx/font/CharToGlyphMapper;
            0    1     1  unicode  C
    MethodParameters:
         Name  Flags
      unicode  

  public int charToGlyph(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
        start local 1 // int unicode
         0: .line 63
            aload 0 /* this */
            iload 1 /* unicode */
            invokevirtual com.sun.javafx.font.CharToGlyphMapper.getGlyphCode:(I)I
            ireturn
        end local 1 // int unicode
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/sun/javafx/font/CharToGlyphMapper;
            0    1     1  unicode  I
    MethodParameters:
         Name  Flags
      unicode  

  public void charsToGlyphs(int, int, char[], int[], int);
    descriptor: (II[C[II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=9, args_size=6
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
        start local 1 // int start
        start local 2 // int count
        start local 3 // char[] unicodes
        start local 4 // int[] glyphs
        start local 5 // int glyphStart
         0: .line 68
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         1: goto 21
         2: .line 69
      StackMap locals: int
      StackMap stack:
            aload 3 /* unicodes */
            iload 1 /* start */
            iload 6 /* i */
            iadd
            caload
            istore 7 /* code */
        start local 7 // int code
         3: .line 70
            iload 7 /* code */
            ldc 55296
            if_icmplt 19
         4: .line 71
            iload 7 /* code */
            ldc 56319
            if_icmpgt 19
            iload 6 /* i */
            iconst_1
            iadd
            iload 2 /* count */
            if_icmpge 19
         5: .line 72
            aload 3 /* unicodes */
            iload 1 /* start */
            iload 6 /* i */
            iadd
            iconst_1
            iadd
            caload
            istore 8 /* low */
        start local 8 // char low
         6: .line 74
            iload 8 /* low */
            ldc 56320
            if_icmplt 19
         7: .line 75
            iload 8 /* low */
            ldc 57343
            if_icmpgt 19
         8: .line 76
            iload 7 /* code */
            ldc 55296
            isub
            bipush 10
            ishl
         9: .line 77
            iload 8 /* low */
        10: .line 76
            iadd
        11: .line 77
            ldc 56320
        12: .line 76
            isub
        13: .line 77
            ldc 65536
        14: .line 76
            iadd
            istore 7 /* code */
        15: .line 78
            aload 4 /* glyphs */
            iload 5 /* glyphStart */
            iload 6 /* i */
            iadd
            aload 0 /* this */
            iload 7 /* code */
            invokevirtual com.sun.javafx.font.CharToGlyphMapper.getGlyphCode:(I)I
            iastore
        16: .line 79
            iinc 6 /* i */ 1
        17: .line 80
            aload 4 /* glyphs */
            iload 5 /* glyphStart */
            iload 6 /* i */
            iadd
            ldc 65535
            iastore
        18: .line 81
            goto 20
        end local 8 // char low
        19: .line 84
      StackMap locals: int
      StackMap stack:
            aload 4 /* glyphs */
            iload 5 /* glyphStart */
            iload 6 /* i */
            iadd
            aload 0 /* this */
            iload 7 /* code */
            invokevirtual com.sun.javafx.font.CharToGlyphMapper.getGlyphCode:(I)I
            iastore
        end local 7 // int code
        20: .line 68
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 6 /* i */
            iload 2 /* count */
            if_icmplt 2
        end local 6 // int i
        22: .line 86
            return
        end local 5 // int glyphStart
        end local 4 // int[] glyphs
        end local 3 // char[] unicodes
        end local 2 // int count
        end local 1 // int start
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   23     0        this  Lcom/sun/javafx/font/CharToGlyphMapper;
            0   23     1       start  I
            0   23     2       count  I
            0   23     3    unicodes  [C
            0   23     4      glyphs  [I
            0   23     5  glyphStart  I
            1   22     6           i  I
            3   20     7        code  I
            6   19     8         low  C
    MethodParameters:
            Name  Flags
      start       
      count       
      unicodes    
      glyphs      
      glyphStart  

  public void charsToGlyphs(int, int, char[], int[]);
    descriptor: (II[C[I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
        start local 1 // int start
        start local 2 // int count
        start local 3 // char[] unicodes
        start local 4 // int[] glyphs
         0: .line 89
            aload 0 /* this */
            iload 1 /* start */
            iload 2 /* count */
            aload 3 /* unicodes */
            aload 4 /* glyphs */
            iconst_0
            invokevirtual com.sun.javafx.font.CharToGlyphMapper.charsToGlyphs:(II[C[II)V
         1: .line 90
            return
        end local 4 // int[] glyphs
        end local 3 // char[] unicodes
        end local 2 // int count
        end local 1 // int start
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/sun/javafx/font/CharToGlyphMapper;
            0    2     1     start  I
            0    2     2     count  I
            0    2     3  unicodes  [C
            0    2     4    glyphs  [I
    MethodParameters:
          Name  Flags
      start     
      count     
      unicodes  
      glyphs    

  public void charsToGlyphs(int, char[], int[]);
    descriptor: (I[C[I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // com.sun.javafx.font.CharToGlyphMapper this
        start local 1 // int count
        start local 2 // char[] unicodes
        start local 3 // int[] glyphs
         0: .line 93
            aload 0 /* this */
            iconst_0
            iload 1 /* count */
            aload 2 /* unicodes */
            aload 3 /* glyphs */
            iconst_0
            invokevirtual com.sun.javafx.font.CharToGlyphMapper.charsToGlyphs:(II[C[II)V
         1: .line 94
            return
        end local 3 // int[] glyphs
        end local 2 // char[] unicodes
        end local 1 // int count
        end local 0 // com.sun.javafx.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/sun/javafx/font/CharToGlyphMapper;
            0    2     1     count  I
            0    2     2  unicodes  [C
            0    2     3    glyphs  [I
    MethodParameters:
          Name  Flags
      count     
      unicodes  
      glyphs    
}
SourceFile: "CharToGlyphMapper.java"