public abstract class sun.font.CharToGlyphMapper
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: sun.font.CharToGlyphMapper
  super_class: java.lang.Object
{
  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 VS_START;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 65024

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

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

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

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

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

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

  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 // sun.font.CharToGlyphMapper this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 48
            aload 0 /* this */
            iconst_m1
            putfield sun.font.CharToGlyphMapper.missingGlyph:I
         2: .line 33
            return
        end local 0 // sun.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/font/CharToGlyphMapper;

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

  public boolean canDisplay(char);
    descriptor: (C)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.font.CharToGlyphMapper this
        start local 1 // char ch
         0: .line 59
            aload 0 /* this */
            iload 1 /* ch */
            invokevirtual sun.font.CharToGlyphMapper.charToGlyph:(C)I
            istore 2 /* glyph */
        start local 2 // int glyph
         1: .line 60
            iload 2 /* glyph */
            aload 0 /* this */
            getfield sun.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 ch
        end local 0 // sun.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lsun/font/CharToGlyphMapper;
            0    3     1     ch  C
            1    3     2  glyph  I
    MethodParameters:
      Name  Flags
      ch    

  public boolean canDisplay(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // sun.font.CharToGlyphMapper this
        start local 1 // int cp
         0: .line 64
            aload 0 /* this */
            iload 1 /* cp */
            invokevirtual sun.font.CharToGlyphMapper.charToGlyph:(I)I
            istore 2 /* glyph */
        start local 2 // int glyph
         1: .line 65
            iload 2 /* glyph */
            aload 0 /* this */
            getfield sun.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 // int cp
        end local 0 // sun.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lsun/font/CharToGlyphMapper;
            0    3     1     cp  I
            1    3     2  glyph  I
    MethodParameters:
      Name  Flags
      cp    

  public int charToGlyph(char);
    descriptor: (C)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.font.CharToGlyphMapper this
        start local 1 // char unicode
         0: .line 69
            iconst_1
            newarray 5
            astore 2 /* chars */
        start local 2 // char[] chars
         1: .line 70
            iconst_1
            newarray 10
            astore 3 /* glyphs */
        start local 3 // int[] glyphs
         2: .line 71
            aload 2 /* chars */
            iconst_0
            iload 1 /* unicode */
            castore
         3: .line 72
            aload 0 /* this */
            iconst_1
            aload 2 /* chars */
            aload 3 /* glyphs */
            invokevirtual sun.font.CharToGlyphMapper.charsToGlyphs:(I[C[I)V
         4: .line 73
            aload 3 /* glyphs */
            iconst_0
            iaload
            ireturn
        end local 3 // int[] glyphs
        end local 2 // char[] chars
        end local 1 // char unicode
        end local 0 // sun.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lsun/font/CharToGlyphMapper;
            0    5     1  unicode  C
            1    5     2    chars  [C
            2    5     3   glyphs  [I
    MethodParameters:
         Name  Flags
      unicode  

  public int charToGlyph(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // sun.font.CharToGlyphMapper this
        start local 1 // int unicode
         0: .line 77
            iconst_1
            newarray 10
            astore 2 /* chars */
        start local 2 // int[] chars
         1: .line 78
            iconst_1
            newarray 10
            astore 3 /* glyphs */
        start local 3 // int[] glyphs
         2: .line 79
            aload 2 /* chars */
            iconst_0
            iload 1 /* unicode */
            iastore
         3: .line 80
            aload 0 /* this */
            iconst_1
            aload 2 /* chars */
            aload 3 /* glyphs */
            invokevirtual sun.font.CharToGlyphMapper.charsToGlyphs:(I[I[I)V
         4: .line 81
            aload 3 /* glyphs */
            iconst_0
            iaload
            ireturn
        end local 3 // int[] glyphs
        end local 2 // int[] chars
        end local 1 // int unicode
        end local 0 // sun.font.CharToGlyphMapper this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lsun/font/CharToGlyphMapper;
            0    5     1  unicode  I
            1    5     2    chars  [I
            2    5     3   glyphs  [I
    MethodParameters:
         Name  Flags
      unicode  

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

  public abstract int getNumGlyphs();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract void charsToGlyphs(int, char[], int[]);
    descriptor: (I[C[I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      count     
      unicodes  
      glyphs    

  public abstract boolean charsToGlyphsNS(int, char[], int[]);
    descriptor: (I[C[I)Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      count     
      unicodes  
      glyphs    

  public abstract void charsToGlyphs(int, int[], int[]);
    descriptor: (I[I[I)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
          Name  Flags
      count     
      unicodes  
      glyphs    

  public static boolean isVariationSelector(int);
    descriptor: (I)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int charCode
         0: .line 101
            iload 0 /* charCode */
            ldc 917760
            if_icmplt 1
            iload 0 /* charCode */
            ldc 918015
            if_icmple 4
         1: .line 102
      StackMap locals:
      StackMap stack:
            iload 0 /* charCode */
            ldc 65024
            if_icmplt 3
            iload 0 /* charCode */
            ldc 65039
         2: .line 101
            if_icmple 4
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_1
            ireturn
        end local 0 // int charCode
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0  charCode  I
    MethodParameters:
          Name  Flags
      charCode  
}
SourceFile: "CharToGlyphMapper.java"