public class org.apache.xerces.impl.XMLEntityScanner implements org.apache.xerces.xni.XMLLocator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.xerces.impl.XMLEntityScanner
  super_class: java.lang.Object
{
  private static final boolean DEBUG_ENCODINGS;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final boolean DEBUG_BUFFER;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static final java.io.EOFException END_OF_DOCUMENT_ENTITY;
    descriptor: Ljava/io/EOFException;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private org.apache.xerces.impl.XMLEntityManager fEntityManager;
    descriptor: Lorg/apache/xerces/impl/XMLEntityManager;
    flags: (0x0002) ACC_PRIVATE

  protected org.apache.xerces.impl.XMLEntityManager$ScannedEntity fCurrentEntity;
    descriptor: Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
    flags: (0x0004) ACC_PROTECTED

  protected org.apache.xerces.util.SymbolTable fSymbolTable;
    descriptor: Lorg/apache/xerces/util/SymbolTable;
    flags: (0x0004) ACC_PROTECTED

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

  protected org.apache.xerces.impl.XMLErrorReporter fErrorReporter;
    descriptor: Lorg/apache/xerces/impl/XMLErrorReporter;
    flags: (0x0004) ACC_PROTECTED

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 51
            new org.apache.xerces.impl.XMLEntityScanner$1
            dup
            invokespecial org.apache.xerces.impl.XMLEntityScanner$1.<init>:()V
            putstatic org.apache.xerces.impl.XMLEntityScanner.END_OF_DOCUMENT_ENTITY:Ljava/io/EOFException;
         1: .line 56
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            aconst_null
            putfield org.apache.xerces.impl.XMLEntityScanner.fEntityManager:Lorg/apache/xerces/impl/XMLEntityManager;
         2: .line 63
            aload 0 /* this */
            aconst_null
            putfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
         3: .line 65
            aload 0 /* this */
            aconst_null
            putfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
         4: .line 67
            aload 0 /* this */
            sipush 2048
            putfield org.apache.xerces.impl.XMLEntityScanner.fBufferSize:I
         5: .line 80
            return
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final java.lang.String getBaseSystemId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 91
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            invokeinterface org.apache.xerces.xni.XMLResourceIdentifier.getExpandedSystemId:()Ljava/lang/String;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final void setEncoding(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // java.lang.String encoding
         0: .line 118
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.stream:Ljava/io/InputStream;
            ifnull 20
         1: .line 126
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
            ifnull 3
         2: .line 127
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
            aload 1 /* encoding */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 20
         3: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
            ifnull 18
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
            ldc "UTF-16"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 18
         4: .line 133
            aload 1 /* encoding */
            getstatic java.util.Locale.ENGLISH:Ljava/util/Locale;
            invokevirtual java.lang.String.toUpperCase:(Ljava/util/Locale;)Ljava/lang/String;
            astore 2 /* ENCODING */
        start local 2 // java.lang.String ENCODING
         5: .line 134
            aload 2 /* ENCODING */
            ldc "UTF-16"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 6
            return
         6: .line 135
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* ENCODING */
            ldc "ISO-10646-UCS-4"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 12
         7: .line 136
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
            ldc "UTF-16BE"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 10
         8: .line 137
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            new org.apache.xerces.impl.io.UCSReader
            dup
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.stream:Ljava/io/InputStream;
            bipush 8
            invokespecial org.apache.xerces.impl.io.UCSReader.<init>:(Ljava/io/InputStream;S)V
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.reader:Ljava/io/Reader;
         9: .line 138
            goto 11
        10: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            new org.apache.xerces.impl.io.UCSReader
            dup
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.stream:Ljava/io/InputStream;
            iconst_4
            invokespecial org.apache.xerces.impl.io.UCSReader.<init>:(Ljava/io/InputStream;S)V
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.reader:Ljava/io/Reader;
        11: .line 141
      StackMap locals:
      StackMap stack:
            return
        12: .line 143
      StackMap locals:
      StackMap stack:
            aload 2 /* ENCODING */
            ldc "ISO-10646-UCS-2"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 18
        13: .line 144
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
            ldc "UTF-16BE"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 16
        14: .line 145
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            new org.apache.xerces.impl.io.UCSReader
            dup
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.stream:Ljava/io/InputStream;
            iconst_2
            invokespecial org.apache.xerces.impl.io.UCSReader.<init>:(Ljava/io/InputStream;S)V
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.reader:Ljava/io/Reader;
        15: .line 146
            goto 17
        16: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            new org.apache.xerces.impl.io.UCSReader
            dup
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.stream:Ljava/io/InputStream;
            iconst_1
            invokespecial org.apache.xerces.impl.io.UCSReader.<init>:(Ljava/io/InputStream;S)V
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.reader:Ljava/io/Reader;
        17: .line 149
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String ENCODING
        18: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.stream:Ljava/io/InputStream;
            aload 1 /* encoding */
            aconst_null
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.setReader:(Ljava/io/InputStream;Ljava/lang/String;Ljava/lang/Boolean;)V
        19: .line 160
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            aload 1 /* encoding */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
        20: .line 167
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String encoding
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0   21     1  encoding  Ljava/lang/String;
            5   18     2  ENCODING  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      encoding  

  public final void setXMLVersion(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // java.lang.String xmlVersion
         0: .line 177
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            aload 1 /* xmlVersion */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.xmlVersion:Ljava/lang/String;
         1: .line 178
            return
        end local 1 // java.lang.String xmlVersion
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0    2     1  xmlVersion  Ljava/lang/String;
    MethodParameters:
            Name  Flags
      xmlVersion  

  public final boolean isExternal();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 182
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ireturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public int peekChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 201
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 202
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 1 /* c */
        start local 1 // int c
         3: .line 219
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ifeq 7
         4: .line 220
            iload 1 /* c */
            bipush 13
            if_icmpeq 5
            iload 1 /* c */
            goto 6
      StackMap locals: int
      StackMap stack:
         5: bipush 10
      StackMap locals:
      StackMap stack: int
         6: ireturn
         7: .line 223
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            ireturn
        end local 1 // int c
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;
            3    8     1     c  I
    Exceptions:
      throws java.io.IOException

  public int scanChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 244
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 245
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 1 /* c */
        start local 1 // int c
         3: .line 250
            iconst_0
            istore 2 /* external */
        start local 2 // boolean external
         4: .line 251
            iload 1 /* c */
            bipush 10
            if_icmpeq 6
         5: .line 252
            iload 1 /* c */
            bipush 13
            if_icmpne 15
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            dup
            istore 2 /* external */
            ifeq 15
         6: .line 253
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
         7: .line 254
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
         8: .line 255
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 11
         9: .line 256
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 1 /* c */
            i2c
            castore
        10: .line 257
            aload 0 /* this */
            iconst_1
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
        11: .line 259
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 13
            if_icmpne 15
            iload 2 /* external */
            ifeq 15
        12: .line 260
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            bipush 10
            if_icmpeq 14
        13: .line 261
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        14: .line 263
      StackMap locals:
      StackMap stack:
            bipush 10
            istore 1 /* c */
        15: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        16: .line 274
            iload 1 /* c */
            ireturn
        end local 2 // boolean external
        end local 1 // int c
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   17     0      this  Lorg/apache/xerces/impl/XMLEntityScanner;
            3   17     1         c  I
            4   17     2  external  Z
    Exceptions:
      throws java.io.IOException

  public java.lang.String scanNmtoken();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 301
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 302
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 306
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 1 /* offset */
        start local 1 // int offset
         3: .line 307
            goto 15
         4: .line 308
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 15
         5: .line 309
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 1 /* offset */
            isub
            istore 2 /* length */
        start local 2 // int length
         6: .line 310
            iload 2 /* length */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            arraylength
            if_icmpne 9
         7: .line 312
            aload 0 /* this */
            iload 1 /* offset */
            iload 2 /* length */
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.resizeBuffer:(II)V
         8: .line 313
            goto 12
         9: .line 315
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
        10: .line 316
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 2 /* length */
        11: .line 315
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        12: .line 318
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* offset */
        13: .line 319
            aload 0 /* this */
            iload 2 /* length */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 15
        14: .line 320
            goto 16
        end local 2 // int length
        15: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            invokestatic org.apache.xerces.util.XMLChar.isName:(I)Z
            ifne 4
        16: .line 324
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 1 /* offset */
            isub
            istore 2 /* length */
        start local 2 // int length
        17: .line 325
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 2 /* length */
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        18: .line 328
            aconst_null
            astore 3 /* symbol */
        start local 3 // java.lang.String symbol
        19: .line 329
            iload 2 /* length */
            ifle 21
        20: .line 330
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            iload 2 /* length */
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 3 /* symbol */
        21: .line 337
      StackMap locals: int java.lang.String
      StackMap stack:
            aload 3 /* symbol */
            areturn
        end local 3 // java.lang.String symbol
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/apache/xerces/impl/XMLEntityScanner;
            3   22     1  offset  I
            6   15     2  length  I
           17   22     2  length  I
           19   22     3  symbol  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException

  public java.lang.String scanName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 365
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 366
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 370
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 1 /* offset */
        start local 1 // int offset
         3: .line 371
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            caload
            invokestatic org.apache.xerces.util.XMLChar.isNameStart:(I)Z
            ifeq 23
         4: .line 372
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 22
         5: .line 373
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            caload
            castore
         6: .line 374
            iconst_0
            istore 1 /* offset */
         7: .line 375
            aload 0 /* this */
            iconst_1
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 22
         8: .line 376
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
         9: .line 377
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 2 /* symbol */
        start local 2 // java.lang.String symbol
        10: .line 383
            aload 2 /* symbol */
            areturn
        end local 2 // java.lang.String symbol
        11: .line 387
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 22
        12: .line 388
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 1 /* offset */
            isub
            istore 2 /* length */
        start local 2 // int length
        13: .line 389
            iload 2 /* length */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            arraylength
            if_icmpne 16
        14: .line 391
            aload 0 /* this */
            iload 1 /* offset */
            iload 2 /* length */
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.resizeBuffer:(II)V
        15: .line 392
            goto 19
        16: .line 394
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
        17: .line 395
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 2 /* length */
        18: .line 394
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 397
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* offset */
        20: .line 398
            aload 0 /* this */
            iload 2 /* length */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 22
        21: .line 399
            goto 23
        end local 2 // int length
        22: .line 386
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            invokestatic org.apache.xerces.util.XMLChar.isName:(I)Z
            ifne 11
        23: .line 404
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 1 /* offset */
            isub
            istore 2 /* length */
        start local 2 // int length
        24: .line 405
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 2 /* length */
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        25: .line 408
            aconst_null
            astore 3 /* symbol */
        start local 3 // java.lang.String symbol
        26: .line 409
            iload 2 /* length */
            ifle 28
        27: .line 410
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            iload 2 /* length */
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 3 /* symbol */
        28: .line 417
      StackMap locals: int java.lang.String
      StackMap stack:
            aload 3 /* symbol */
            areturn
        end local 3 // java.lang.String symbol
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   29     0    this  Lorg/apache/xerces/impl/XMLEntityScanner;
            3   29     1  offset  I
           10   11     2  symbol  Ljava/lang/String;
           13   22     2  length  I
           24   29     2  length  I
           26   29     3  symbol  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException

  public java.lang.String scanNCName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 445
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 446
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 1 /* offset */
        start local 1 // int offset
         3: .line 451
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            caload
            invokestatic org.apache.xerces.util.XMLChar.isNCNameStart:(I)Z
            ifeq 23
         4: .line 452
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 22
         5: .line 453
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            caload
            castore
         6: .line 454
            iconst_0
            istore 1 /* offset */
         7: .line 455
            aload 0 /* this */
            iconst_1
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 22
         8: .line 456
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
         9: .line 457
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 2 /* symbol */
        start local 2 // java.lang.String symbol
        10: .line 463
            aload 2 /* symbol */
            areturn
        end local 2 // java.lang.String symbol
        11: .line 467
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 22
        12: .line 468
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 1 /* offset */
            isub
            istore 2 /* length */
        start local 2 // int length
        13: .line 469
            iload 2 /* length */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            arraylength
            if_icmpne 16
        14: .line 471
            aload 0 /* this */
            iload 1 /* offset */
            iload 2 /* length */
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.resizeBuffer:(II)V
        15: .line 472
            goto 19
        16: .line 474
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
        17: .line 475
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 2 /* length */
        18: .line 474
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        19: .line 477
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* offset */
        20: .line 478
            aload 0 /* this */
            iload 2 /* length */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 22
        21: .line 479
            goto 23
        end local 2 // int length
        22: .line 466
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            invokestatic org.apache.xerces.util.XMLChar.isNCName:(I)Z
            ifne 11
        23: .line 484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 1 /* offset */
            isub
            istore 2 /* length */
        start local 2 // int length
        24: .line 485
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 2 /* length */
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        25: .line 488
            aconst_null
            astore 3 /* symbol */
        start local 3 // java.lang.String symbol
        26: .line 489
            iload 2 /* length */
            ifle 28
        27: .line 490
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            iload 2 /* length */
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 3 /* symbol */
        28: .line 497
      StackMap locals: int java.lang.String
      StackMap stack:
            aload 3 /* symbol */
            areturn
        end local 3 // java.lang.String symbol
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   29     0    this  Lorg/apache/xerces/impl/XMLEntityScanner;
            3   29     1  offset  I
           10   11     2  symbol  Ljava/lang/String;
           13   22     2  length  I
           24   29     2  length  I
           26   29     3  symbol  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException

  public boolean scanQName(org.apache.xerces.xni.QName);
    descriptor: (Lorg/apache/xerces/xni/QName;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=11, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // org.apache.xerces.xni.QName qname
         0: .line 531
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 532
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 536
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 2 /* offset */
        start local 2 // int offset
         3: .line 537
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 2 /* offset */
            caload
            invokestatic org.apache.xerces.util.XMLChar.isNCNameStart:(I)Z
            ifeq 62
         4: .line 538
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 13
         5: .line 539
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 2 /* offset */
            caload
            castore
         6: .line 540
            iconst_0
            istore 2 /* offset */
         7: .line 541
            aload 0 /* this */
            iconst_1
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 13
         8: .line 542
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
         9: .line 544
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
        10: .line 543
            astore 3 /* name */
        start local 3 // java.lang.String name
        11: .line 545
            aload 1 /* qname */
            aconst_null
            aload 3 /* name */
            aload 3 /* name */
            aconst_null
            invokevirtual org.apache.xerces.xni.QName.setValues:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
        12: .line 551
            iconst_1
            ireturn
        end local 3 // java.lang.String name
        13: .line 554
      StackMap locals: int
      StackMap stack:
            iconst_m1
            istore 3 /* index */
        start local 3 // int index
        14: .line 555
            goto 33
        15: .line 556
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 4 /* c */
        start local 4 // char c
        16: .line 558
            iload 4 /* c */
            bipush 58
            if_icmpne 20
        17: .line 559
            iload 3 /* index */
            iconst_m1
            if_icmpeq 19
        18: .line 560
            goto 34
        19: .line 562
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 3 /* index */
        20: .line 564
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 33
        21: .line 565
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 2 /* offset */
            isub
            istore 5 /* length */
        start local 5 // int length
        22: .line 566
            iload 5 /* length */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            arraylength
            if_icmpne 25
        23: .line 568
            aload 0 /* this */
            iload 2 /* offset */
            iload 5 /* length */
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.resizeBuffer:(II)V
        24: .line 569
            goto 28
        25: .line 571
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 2 /* offset */
        26: .line 572
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 5 /* length */
        27: .line 571
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        28: .line 574
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            iconst_m1
            if_icmpeq 30
        29: .line 575
            iload 3 /* index */
            iload 2 /* offset */
            isub
            istore 3 /* index */
        30: .line 577
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* offset */
        31: .line 578
            aload 0 /* this */
            iload 5 /* length */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 33
        32: .line 579
            goto 34
        end local 5 // int length
        end local 4 // char c
        33: .line 555
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            invokestatic org.apache.xerces.util.XMLChar.isName:(I)Z
            ifne 15
        34: .line 583
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 2 /* offset */
            isub
            istore 4 /* length */
        start local 4 // int length
        35: .line 584
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 4 /* length */
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        36: .line 585
            iload 4 /* length */
            ifle 62
        37: .line 586
            aconst_null
            astore 5 /* prefix */
        start local 5 // java.lang.String prefix
        38: .line 587
            aconst_null
            astore 6 /* localpart */
        start local 6 // java.lang.String localpart
        39: .line 588
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
        40: .line 589
            iload 2 /* offset */
            iload 4 /* length */
        41: .line 588
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 7 /* rawname */
        start local 7 // java.lang.String rawname
        42: .line 590
            iload 3 /* index */
            iconst_m1
            if_icmpeq 59
        43: .line 591
            iload 3 /* index */
            iload 2 /* offset */
            isub
            istore 8 /* prefixLength */
        start local 8 // int prefixLength
        44: .line 592
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
        45: .line 593
            iload 2 /* offset */
            iload 8 /* prefixLength */
        46: .line 592
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 5 /* prefix */
        47: .line 594
            iload 4 /* length */
            iload 8 /* prefixLength */
            isub
            iconst_1
            isub
            istore 9 /* len */
        start local 9 // int len
        48: .line 595
            iload 3 /* index */
            iconst_1
            iadd
            istore 10 /* startLocal */
        start local 10 // int startLocal
        49: .line 596
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 10 /* startLocal */
            caload
            invokestatic org.apache.xerces.util.XMLChar.isNCNameStart:(I)Z
            ifne 55
        50: .line 597
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fErrorReporter:Lorg/apache/xerces/impl/XMLErrorReporter;
            ldc "http://www.w3.org/TR/1998/REC-xml-19980210"
        51: .line 598
            ldc "IllegalQName"
        52: .line 599
            aconst_null
        53: .line 600
            iconst_2
        54: .line 597
            invokevirtual org.apache.xerces.impl.XMLErrorReporter.reportError:(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;S)Ljava/lang/String;
            pop
        55: .line 602
      StackMap locals: org.apache.xerces.impl.XMLEntityScanner org.apache.xerces.xni.QName int int int java.lang.String java.lang.String java.lang.String int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
        56: .line 603
            iload 10 /* startLocal */
            iload 9 /* len */
        57: .line 602
            invokevirtual org.apache.xerces.util.SymbolTable.addSymbol:([CII)Ljava/lang/String;
            astore 6 /* localpart */
        end local 10 // int startLocal
        end local 9 // int len
        end local 8 // int prefixLength
        58: .line 605
            goto 60
        59: .line 607
      StackMap locals:
      StackMap stack:
            aload 7 /* rawname */
            astore 6 /* localpart */
        60: .line 609
      StackMap locals:
      StackMap stack:
            aload 1 /* qname */
            aload 5 /* prefix */
            aload 6 /* localpart */
            aload 7 /* rawname */
            aconst_null
            invokevirtual org.apache.xerces.xni.QName.setValues:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
        61: .line 615
            iconst_1
            ireturn
        end local 7 // java.lang.String rawname
        end local 6 // java.lang.String localpart
        end local 5 // java.lang.String prefix
        end local 4 // int length
        end local 3 // int index
        62: .line 625
      StackMap locals: org.apache.xerces.impl.XMLEntityScanner org.apache.xerces.xni.QName int
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int offset
        end local 1 // org.apache.xerces.xni.QName qname
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   63     0          this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0   63     1         qname  Lorg/apache/xerces/xni/QName;
            3   63     2        offset  I
           11   13     3          name  Ljava/lang/String;
           14   62     3         index  I
           16   33     4             c  C
           22   33     5        length  I
           35   62     4        length  I
           38   62     5        prefix  Ljava/lang/String;
           39   62     6     localpart  Ljava/lang/String;
           42   62     7       rawname  Ljava/lang/String;
           44   58     8  prefixLength  I
           48   58     9           len  I
           49   58    10    startLocal  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
       Name  Flags
      qname  

  public int scanContent(org.apache.xerces.xni.XMLString);
    descriptor: (Lorg/apache/xerces/xni/XMLString;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // org.apache.xerces.xni.XMLString content
         0: .line 663
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 3
         1: .line 664
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 665
            goto 8
         3: .line 666
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            if_icmpne 8
         4: .line 667
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            caload
            castore
         5: .line 668
            aload 0 /* this */
            iconst_1
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         6: .line 669
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
         7: .line 670
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
         8: .line 674
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 2 /* offset */
        start local 2 // int offset
         9: .line 675
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 2 /* offset */
            caload
            istore 3 /* c */
        start local 3 // int c
        10: .line 676
            iconst_0
            istore 4 /* newlines */
        start local 4 // int newlines
        11: .line 677
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            istore 5 /* external */
        start local 5 // boolean external
        12: .line 678
            iload 3 /* c */
            bipush 10
            if_icmpeq 13
            iload 3 /* c */
            bipush 13
            if_icmpne 59
            iload 5 /* external */
            ifeq 59
        13: .line 685
      StackMap locals: org.apache.xerces.impl.XMLEntityScanner org.apache.xerces.xni.XMLString int int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 3 /* c */
        14: .line 686
            iload 3 /* c */
            bipush 13
            if_icmpne 31
            iload 5 /* external */
            ifeq 31
        15: .line 687
            iinc 4 /* newlines */ 1
        16: .line 688
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
        17: .line 689
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        18: .line 690
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 25
        19: .line 691
            iconst_0
            istore 2 /* offset */
        20: .line 692
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
        21: .line 693
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 4 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        22: .line 694
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 4 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        23: .line 695
            aload 0 /* this */
            iload 4 /* newlines */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 25
        24: .line 696
            goto 46
        25: .line 699
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            bipush 10
            if_icmpne 29
        26: .line 700
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        27: .line 701
            iinc 2 /* offset */ 1
        28: .line 702
            goto 44
        29: .line 705
      StackMap locals:
      StackMap stack:
            iinc 4 /* newlines */ 1
        30: .line 707
            goto 44
        31: .line 708
      StackMap locals:
      StackMap stack:
            iload 3 /* c */
            bipush 10
            if_icmpne 42
        32: .line 709
            iinc 4 /* newlines */ 1
        33: .line 710
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
        34: .line 711
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        35: .line 712
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 44
        36: .line 713
            iconst_0
            istore 2 /* offset */
        37: .line 714
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
        38: .line 715
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 4 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        39: .line 716
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 4 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        40: .line 717
            aload 0 /* this */
            iload 4 /* newlines */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 44
        41: .line 718
            goto 46
        42: .line 723
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        43: .line 724
            goto 46
        44: .line 726
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
        45: .line 684
            if_icmplt 13
        46: .line 727
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            istore 6 /* i */
        start local 6 // int i
        47: goto 50
        48: .line 728
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 6 /* i */
            bipush 10
            castore
        49: .line 727
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        50: iload 6 /* i */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            if_icmplt 48
        end local 6 // int i
        51: .line 730
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 2 /* offset */
            isub
            istore 6 /* length */
        start local 6 // int length
        52: .line 731
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            if_icmpne 59
        53: .line 732
            aload 1 /* content */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 2 /* offset */
            iload 6 /* length */
            invokevirtual org.apache.xerces.xni.XMLString.setValues:([CII)V
        54: .line 738
            iconst_m1
            ireturn
        end local 6 // int length
        55: .line 749
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 3 /* c */
        56: .line 750
            iload 3 /* c */
            invokestatic org.apache.xerces.util.XMLChar.isContent:(I)Z
            ifne 59
        57: .line 751
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        58: .line 752
            goto 60
        59: .line 748
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmplt 55
        60: .line 755
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 2 /* offset */
            isub
            istore 6 /* length */
        start local 6 // int length
        61: .line 756
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 6 /* length */
            iload 4 /* newlines */
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        62: .line 757
            aload 1 /* content */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 2 /* offset */
            iload 6 /* length */
            invokevirtual org.apache.xerces.xni.XMLString.setValues:([CII)V
        63: .line 760
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpeq 68
        64: .line 761
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 3 /* c */
        65: .line 764
            iload 3 /* c */
            bipush 13
            if_icmpne 69
            iload 5 /* external */
            ifeq 69
        66: .line 765
            bipush 10
            istore 3 /* c */
        67: .line 767
            goto 69
        68: .line 769
      StackMap locals: int
      StackMap stack:
            iconst_m1
            istore 3 /* c */
        69: .line 776
      StackMap locals:
      StackMap stack:
            iload 3 /* c */
            ireturn
        end local 6 // int length
        end local 5 // boolean external
        end local 4 // int newlines
        end local 3 // int c
        end local 2 // int offset
        end local 1 // org.apache.xerces.xni.XMLString content
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   70     0      this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0   70     1   content  Lorg/apache/xerces/xni/XMLString;
            9   70     2    offset  I
           10   70     3         c  I
           11   70     4  newlines  I
           12   70     5  external  Z
           47   51     6         i  I
           52   55     6    length  I
           61   70     6    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      content  

  public int scanLiteral(int, org.apache.xerces.xni.XMLString);
    descriptor: (ILorg/apache/xerces/xni/XMLString;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=3
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // int quote
        start local 2 // org.apache.xerces.xni.XMLString content
         0: .line 817
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 3
         1: .line 818
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 819
            goto 8
         3: .line 820
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            if_icmpne 8
         4: .line 821
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            caload
            castore
         5: .line 822
            aload 0 /* this */
            iconst_1
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         6: .line 823
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
         7: .line 824
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
         8: .line 828
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 3 /* offset */
        start local 3 // int offset
         9: .line 829
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 3 /* offset */
            caload
            istore 4 /* c */
        start local 4 // int c
        10: .line 830
            iconst_0
            istore 5 /* newlines */
        start local 5 // int newlines
        11: .line 831
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            istore 6 /* external */
        start local 6 // boolean external
        12: .line 832
            iload 4 /* c */
            bipush 10
            if_icmpeq 13
            iload 4 /* c */
            bipush 13
            if_icmpne 61
            iload 6 /* external */
            ifeq 61
        13: .line 839
      StackMap locals: org.apache.xerces.impl.XMLEntityScanner int org.apache.xerces.xni.XMLString int int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 4 /* c */
        14: .line 840
            iload 4 /* c */
            bipush 13
            if_icmpne 31
            iload 6 /* external */
            ifeq 31
        15: .line 841
            iinc 5 /* newlines */ 1
        16: .line 842
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
        17: .line 843
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        18: .line 844
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 25
        19: .line 845
            iconst_0
            istore 3 /* offset */
        20: .line 846
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
        21: .line 847
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 5 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        22: .line 848
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 5 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        23: .line 849
            aload 0 /* this */
            iload 5 /* newlines */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 25
        24: .line 850
            goto 46
        25: .line 853
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            bipush 10
            if_icmpne 29
        26: .line 854
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        27: .line 855
            iinc 3 /* offset */ 1
        28: .line 856
            goto 44
        29: .line 859
      StackMap locals:
      StackMap stack:
            iinc 5 /* newlines */ 1
        30: .line 862
            goto 44
        31: .line 863
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            bipush 10
            if_icmpne 42
        32: .line 864
            iinc 5 /* newlines */ 1
        33: .line 865
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
        34: .line 866
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        35: .line 867
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 44
        36: .line 868
            iconst_0
            istore 3 /* offset */
        37: .line 869
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
        38: .line 870
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 5 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        39: .line 871
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 5 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        40: .line 872
            aload 0 /* this */
            iload 5 /* newlines */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 44
        41: .line 873
            goto 46
        42: .line 878
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        43: .line 879
            goto 46
        44: .line 881
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
        45: .line 838
            if_icmplt 13
        46: .line 882
      StackMap locals:
      StackMap stack:
            iload 3 /* offset */
            istore 7 /* i */
        start local 7 // int i
        47: goto 50
        48: .line 883
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 7 /* i */
            bipush 10
            castore
        49: .line 882
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        50: iload 7 /* i */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            if_icmplt 48
        end local 7 // int i
        51: .line 885
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 3 /* offset */
            isub
            istore 7 /* length */
        start local 7 // int length
        52: .line 886
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            if_icmpne 61
        53: .line 887
            aload 2 /* content */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 3 /* offset */
            iload 7 /* length */
            invokevirtual org.apache.xerces.xni.XMLString.setValues:([CII)V
        54: .line 893
            iconst_m1
            ireturn
        end local 7 // int length
        55: .line 904
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 4 /* c */
        56: .line 905
            iload 4 /* c */
            iload 1 /* quote */
            if_icmpne 58
        57: .line 906
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.literal:Z
            ifeq 59
            iload 6 /* external */
            ifne 59
        58: .line 907
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            bipush 37
            if_icmpeq 59
            iload 4 /* c */
            invokestatic org.apache.xerces.util.XMLChar.isContent:(I)Z
            ifne 61
        59: .line 908
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        60: .line 909
            goto 62
        61: .line 903
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmplt 55
        62: .line 912
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 3 /* offset */
            isub
            istore 7 /* length */
        start local 7 // int length
        63: .line 913
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 7 /* length */
            iload 5 /* newlines */
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        64: .line 914
            aload 2 /* content */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 3 /* offset */
            iload 7 /* length */
            invokevirtual org.apache.xerces.xni.XMLString.setValues:([CII)V
        65: .line 917
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpeq 70
        66: .line 918
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 4 /* c */
        67: .line 922
            iload 4 /* c */
            iload 1 /* quote */
            if_icmpne 71
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.literal:Z
            ifeq 71
        68: .line 923
            iconst_m1
            istore 4 /* c */
        69: .line 925
            goto 71
        70: .line 927
      StackMap locals: int
      StackMap stack:
            iconst_m1
            istore 4 /* c */
        71: .line 934
      StackMap locals:
      StackMap stack:
            iload 4 /* c */
            ireturn
        end local 7 // int length
        end local 6 // boolean external
        end local 5 // int newlines
        end local 4 // int c
        end local 3 // int offset
        end local 2 // org.apache.xerces.xni.XMLString content
        end local 1 // int quote
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   72     0      this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0   72     1     quote  I
            0   72     2   content  Lorg/apache/xerces/xni/XMLString;
            9   72     3    offset  I
           10   72     4         c  I
           11   72     5  newlines  I
           12   72     6  external  Z
           47   51     7         i  I
           52   55     7    length  I
           63   72     7    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
         Name  Flags
      quote    
      content  

  public boolean scanData(java.lang.String, org.apache.xerces.util.XMLStringBuffer);
    descriptor: (Ljava/lang/String;Lorg/apache/xerces/util/XMLStringBuffer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=13, args_size=3
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // java.lang.String delimiter
        start local 2 // org.apache.xerces.util.XMLStringBuffer buffer
         0: .line 982
            iconst_0
            istore 3 /* found */
        start local 3 // boolean found
         1: .line 983
            aload 1 /* delimiter */
            invokevirtual java.lang.String.length:()I
            istore 4 /* delimLen */
        start local 4 // int delimLen
         2: .line 984
            aload 1 /* delimiter */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            istore 5 /* charAt0 */
        start local 5 // char charAt0
         3: .line 985
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            istore 6 /* external */
        start local 6 // boolean external
         4: .line 994
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 6
         5: .line 995
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         6: .line 998
      StackMap locals: org.apache.xerces.impl.XMLEntityScanner java.lang.String org.apache.xerces.util.XMLStringBuffer int int int int
      StackMap stack:
            iconst_0
            istore 7 /* bNextEntity */
        start local 7 // boolean bNextEntity
         7: .line 1000
            goto 17
         8: .line 1003
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
         9: .line 1004
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        10: .line 1005
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
        11: .line 1006
            iconst_0
        12: .line 1007
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            isub
        13: .line 1003
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 1009
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            isub
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            istore 7 /* bNextEntity */
        15: .line 1010
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        16: .line 1011
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        17: .line 1000
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iload 4 /* delimLen */
            isub
            if_icmple 19
        18: .line 1001
            iload 7 /* bNextEntity */
            ifeq 8
        19: .line 1014
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iload 4 /* delimLen */
            isub
            if_icmple 28
        20: .line 1016
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            isub
            istore 8 /* length */
        start local 8 // int length
        21: .line 1017
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 8 /* length */
            invokevirtual org.apache.xerces.util.XMLStringBuffer.append:([CII)V
        22: .line 1018
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        23: .line 1019
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
        24: .line 1020
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        25: .line 1021
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        26: .line 1022
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
        27: .line 1023
            iconst_0
            ireturn
        end local 8 // int length
        28: .line 1027
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            istore 8 /* offset */
        start local 8 // int offset
        29: .line 1028
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 8 /* offset */
            caload
            istore 9 /* c */
        start local 9 // int c
        30: .line 1029
            iconst_0
            istore 10 /* newlines */
        start local 10 // int newlines
        31: .line 1030
            iload 9 /* c */
            bipush 10
            if_icmpeq 32
            iload 9 /* c */
            bipush 13
            if_icmpne 101
            iload 6 /* external */
            ifeq 101
        32: .line 1037
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 9 /* c */
        33: .line 1038
            iload 9 /* c */
            bipush 13
            if_icmpne 50
            iload 6 /* external */
            ifeq 50
        34: .line 1039
            iinc 10 /* newlines */ 1
        35: .line 1040
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
        36: .line 1041
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        37: .line 1042
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 44
        38: .line 1043
            iconst_0
            istore 8 /* offset */
        39: .line 1044
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
        40: .line 1045
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 10 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        41: .line 1046
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 10 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        42: .line 1047
            aload 0 /* this */
            iload 10 /* newlines */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 44
        43: .line 1048
            goto 66
        44: .line 1051
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            bipush 10
            if_icmpne 48
        45: .line 1052
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        46: .line 1053
            iinc 8 /* offset */ 1
        47: .line 1054
            goto 64
        48: .line 1057
      StackMap locals:
      StackMap stack:
            iinc 10 /* newlines */ 1
        49: .line 1059
            goto 64
        50: .line 1060
      StackMap locals:
      StackMap stack:
            iload 9 /* c */
            bipush 10
            if_icmpne 62
        51: .line 1061
            iinc 10 /* newlines */ 1
        52: .line 1062
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
        53: .line 1063
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        54: .line 1064
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 64
        55: .line 1065
            iconst_0
            istore 8 /* offset */
        56: .line 1066
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
        57: .line 1067
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 10 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        58: .line 1068
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 10 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        59: .line 1069
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 10 /* newlines */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
        60: .line 1070
            aload 0 /* this */
            iload 10 /* newlines */
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 64
        61: .line 1071
            goto 66
        62: .line 1076
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        63: .line 1077
            goto 66
        64: .line 1079
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
        65: .line 1036
            if_icmplt 32
        66: .line 1080
      StackMap locals:
      StackMap stack:
            iload 8 /* offset */
            istore 11 /* i */
        start local 11 // int i
        67: goto 70
        68: .line 1081
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 11 /* i */
            bipush 10
            castore
        69: .line 1080
            iinc 11 /* i */ 1
      StackMap locals:
      StackMap stack:
        70: iload 11 /* i */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            if_icmplt 68
        end local 11 // int i
        71: .line 1083
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 8 /* offset */
            isub
            istore 11 /* length */
        start local 11 // int length
        72: .line 1084
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            if_icmpne 101
        73: .line 1085
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 8 /* offset */
            iload 11 /* length */
            invokevirtual org.apache.xerces.util.XMLStringBuffer.append:([CII)V
        74: .line 1091
            iconst_1
            ireturn
        end local 11 // int length
        75: .line 1102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 9 /* c */
        76: .line 1103
            iload 9 /* c */
            iload 5 /* charAt0 */
            if_icmpne 92
        77: .line 1105
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            istore 11 /* delimOffset */
        start local 11 // int delimOffset
        78: .line 1106
            iconst_1
            istore 12 /* i */
        start local 12 // int i
        79: goto 88
        80: .line 1107
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 83
        81: .line 1108
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 12 /* i */
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        82: .line 1109
            goto 102
        83: .line 1111
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 9 /* c */
        84: .line 1112
            aload 1 /* delimiter */
            iload 12 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            iload 9 /* c */
            if_icmpeq 87
        85: .line 1113
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        86: .line 1114
            goto 89
        87: .line 1106
      StackMap locals:
      StackMap stack:
            iinc 12 /* i */ 1
      StackMap locals:
      StackMap stack:
        88: iload 12 /* i */
            iload 4 /* delimLen */
            if_icmplt 80
        end local 12 // int i
        89: .line 1117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 11 /* delimOffset */
            iload 4 /* delimLen */
            iadd
            if_icmpne 101
        90: .line 1118
            iconst_1
            istore 3 /* found */
        91: .line 1119
            goto 102
        end local 11 // int delimOffset
        92: .line 1122
      StackMap locals:
      StackMap stack:
            iload 9 /* c */
            bipush 10
            if_icmpeq 93
            iload 6 /* external */
            ifeq 95
            iload 9 /* c */
            bipush 13
            if_icmpne 95
        93: .line 1123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        94: .line 1124
            goto 102
        95: .line 1126
      StackMap locals:
      StackMap stack:
            iload 9 /* c */
            invokestatic org.apache.xerces.util.XMLChar.isInvalid:(I)Z
            ifeq 101
        96: .line 1127
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        97: .line 1128
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 8 /* offset */
            isub
            istore 11 /* length */
        start local 11 // int length
        98: .line 1129
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 11 /* length */
            iload 10 /* newlines */
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        99: .line 1130
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 8 /* offset */
            iload 11 /* length */
            invokevirtual org.apache.xerces.util.XMLStringBuffer.append:([CII)V
       100: .line 1131
            iconst_1
            ireturn
        end local 11 // int length
       101: .line 1101
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmplt 75
       102: .line 1134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 8 /* offset */
            isub
            istore 11 /* length */
        start local 11 // int length
       103: .line 1135
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 11 /* length */
            iload 10 /* newlines */
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
       104: .line 1136
            iload 3 /* found */
            ifeq 106
       105: .line 1137
            iload 11 /* length */
            iload 4 /* delimLen */
            isub
            istore 11 /* length */
       106: .line 1139
      StackMap locals: int
      StackMap stack:
            aload 2 /* buffer */
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 8 /* offset */
            iload 11 /* length */
            invokevirtual org.apache.xerces.util.XMLStringBuffer.append:([CII)V
       107: .line 1147
            iload 3 /* found */
            ifeq 108
            iconst_0
            goto 109
      StackMap locals:
      StackMap stack:
       108: iconst_1
      StackMap locals:
      StackMap stack: int
       109: ireturn
        end local 11 // int length
        end local 10 // int newlines
        end local 9 // int c
        end local 8 // int offset
        end local 7 // boolean bNextEntity
        end local 6 // boolean external
        end local 5 // char charAt0
        end local 4 // int delimLen
        end local 3 // boolean found
        end local 2 // org.apache.xerces.util.XMLStringBuffer buffer
        end local 1 // java.lang.String delimiter
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0  110     0         this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0  110     1    delimiter  Ljava/lang/String;
            0  110     2       buffer  Lorg/apache/xerces/util/XMLStringBuffer;
            1  110     3        found  Z
            2  110     4     delimLen  I
            3  110     5      charAt0  C
            4  110     6     external  Z
            7  110     7  bNextEntity  Z
           21   28     8       length  I
           29  110     8       offset  I
           30  110     9            c  I
           31  110    10     newlines  I
           67   71    11            i  I
           72   75    11       length  I
           78   92    11  delimOffset  I
           79   89    12            i  I
           98  101    11       length  I
          103  110    11       length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      delimiter  
      buffer     

  public boolean skipChar(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // int c
         0: .line 1172
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 1173
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 1177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 2 /* cc */
        start local 2 // int cc
         3: .line 1178
            iload 2 /* cc */
            iload 1 /* c */
            if_icmpne 11
         4: .line 1179
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
         5: .line 1180
            iload 1 /* c */
            bipush 10
            if_icmpne 9
         6: .line 1181
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
         7: .line 1182
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
         8: .line 1183
            goto 10
         9: .line 1185
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        10: .line 1192
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        11: .line 1194
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 10
            if_icmpne 21
            iload 2 /* cc */
            bipush 13
            if_icmpne 21
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ifeq 21
        12: .line 1196
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 15
        13: .line 1197
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 2 /* cc */
            i2c
            castore
        14: .line 1198
            aload 0 /* this */
            iconst_1
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
        15: .line 1200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        16: .line 1201
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            bipush 10
            if_icmpne 18
        17: .line 1202
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        18: .line 1204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
        19: .line 1205
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        20: .line 1211
            iconst_1
            ireturn
        21: .line 1220
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // int cc
        end local 1 // int c
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0   22     1     c  I
            3   22     2    cc  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public boolean skipSpaces();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1245
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 1246
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 1250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 1 /* c */
        start local 1 // int c
         3: .line 1251
            iload 1 /* c */
            invokestatic org.apache.xerces.util.XMLChar.isSpace:(I)Z
            ifeq 26
         4: .line 1252
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            istore 2 /* external */
        start local 2 // boolean external
         5: .line 1254
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 3 /* entityChanged */
        start local 3 // boolean entityChanged
         6: .line 1256
            iload 1 /* c */
            bipush 10
            if_icmpeq 7
            iload 2 /* external */
            ifeq 19
            iload 1 /* c */
            bipush 13
            if_icmpne 19
         7: .line 1257
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
         8: .line 1258
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
         9: .line 1259
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            if_icmpne 15
        10: .line 1260
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 1 /* c */
            i2c
            castore
        11: .line 1261
            aload 0 /* this */
            iconst_1
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            istore 3 /* entityChanged */
        12: .line 1262
            iload 3 /* entityChanged */
            ifne 15
        13: .line 1265
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        14: .line 1266
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        15: .line 1269
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 13
            if_icmpne 20
            iload 2 /* external */
            ifeq 20
        16: .line 1272
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            bipush 10
            if_icmpeq 20
        17: .line 1273
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        18: .line 1284
            goto 20
        19: .line 1286
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        20: .line 1289
      StackMap locals:
      StackMap stack:
            iload 3 /* entityChanged */
            ifne 22
        21: .line 1290
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        22: .line 1291
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 24
        23: .line 1292
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
        end local 3 // boolean entityChanged
        24: .line 1294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            dup
            istore 1 /* c */
            invokestatic org.apache.xerces.util.XMLChar.isSpace:(I)Z
            ifne 5
        25: .line 1300
            iconst_1
            ireturn
        end local 2 // boolean external
        26: .line 1309
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int c
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   27     0           this  Lorg/apache/xerces/impl/XMLEntityScanner;
            3   27     1              c  I
            5   26     2       external  Z
            6   24     3  entityChanged  Z
    Exceptions:
      throws java.io.IOException

  public final boolean skipDeclSpaces();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1338
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 1339
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 1343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 1 /* c */
        start local 1 // int c
         3: .line 1344
            iload 1 /* c */
            invokestatic org.apache.xerces.util.XMLChar.isSpace:(I)Z
            ifeq 26
         4: .line 1345
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            istore 2 /* external */
        start local 2 // boolean external
         5: .line 1347
      StackMap locals: int int
      StackMap stack:
            iconst_0
            istore 3 /* entityChanged */
        start local 3 // boolean entityChanged
         6: .line 1349
            iload 1 /* c */
            bipush 10
            if_icmpeq 7
            iload 2 /* external */
            ifeq 19
            iload 1 /* c */
            bipush 13
            if_icmpne 19
         7: .line 1350
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
         8: .line 1351
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
         9: .line 1352
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iconst_1
            isub
            if_icmpne 15
        10: .line 1353
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 1 /* c */
            i2c
            castore
        11: .line 1354
            aload 0 /* this */
            iconst_1
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            istore 3 /* entityChanged */
        12: .line 1355
            iload 3 /* entityChanged */
            ifne 15
        13: .line 1358
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        14: .line 1359
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iconst_0
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        15: .line 1362
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 13
            if_icmpne 20
            iload 2 /* external */
            ifeq 20
        16: .line 1365
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            dup_x1
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            bipush 10
            if_icmpeq 20
        17: .line 1366
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        18: .line 1377
            goto 20
        19: .line 1379
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        20: .line 1382
      StackMap locals:
      StackMap stack:
            iload 3 /* entityChanged */
            ifne 22
        21: .line 1383
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        22: .line 1384
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 24
        23: .line 1385
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
        end local 3 // boolean entityChanged
        24: .line 1387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            dup
            istore 1 /* c */
            invokestatic org.apache.xerces.util.XMLChar.isSpace:(I)Z
            ifne 5
        25: .line 1393
            iconst_1
            ireturn
        end local 2 // boolean external
        26: .line 1402
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // int c
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   27     0           this  Lorg/apache/xerces/impl/XMLEntityScanner;
            3   27     1              c  I
            5   26     2       external  Z
            6   24     3  entityChanged  Z
    Exceptions:
      throws java.io.IOException

  public boolean skipString(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // java.lang.String s
         0: .line 1427
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 2
         1: .line 1428
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
         2: .line 1432
      StackMap locals:
      StackMap stack:
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 2 /* length */
        start local 2 // int length
         3: .line 1433
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 16
         5: .line 1434
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            dup_x1
            iconst_1
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            caload
            istore 4 /* c */
        start local 4 // char c
         6: .line 1435
            iload 4 /* c */
            aload 1 /* s */
            iload 3 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            if_icmpeq 9
         7: .line 1436
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 3 /* i */
            iconst_1
            iadd
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
         8: .line 1442
            iconst_0
            ireturn
         9: .line 1444
      StackMap locals: int
      StackMap stack:
            iload 3 /* i */
            iload 2 /* length */
            iconst_1
            isub
            if_icmpge 15
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 15
        10: .line 1445
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            iload 3 /* i */
            isub
            iconst_1
            isub
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iconst_0
            iload 3 /* i */
            iconst_1
            iadd
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        11: .line 1448
            aload 0 /* this */
            iload 3 /* i */
            iconst_1
            iadd
            iconst_0
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            ifeq 15
        12: .line 1449
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            iload 3 /* i */
            iconst_1
            iadd
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        13: .line 1450
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            iload 3 /* i */
            iconst_1
            iadd
            isub
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        14: .line 1456
            iconst_0
            ireturn
        end local 4 // char c
        15: .line 1433
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        16: iload 3 /* i */
            iload 2 /* length */
            if_icmplt 5
        end local 3 // int i
        17: .line 1465
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            iload 2 /* length */
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
        18: .line 1466
            iconst_1
            ireturn
        end local 2 // int length
        end local 1 // java.lang.String s
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   19     0    this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0   19     1       s  Ljava/lang/String;
            3   19     2  length  I
            4   17     3       i  I
            6   15     4       c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public final java.lang.String getPublicId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1485
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            ifnull 1
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            invokeinterface org.apache.xerces.xni.XMLResourceIdentifier.getPublicId:()Ljava/lang/String;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.String
         2: areturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final java.lang.String getExpandedSystemId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1502
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 5
         1: .line 1503
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            ifnull 4
         2: .line 1504
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            invokeinterface org.apache.xerces.xni.XMLResourceIdentifier.getExpandedSystemId:()Ljava/lang/String;
            ifnull 4
         3: .line 1505
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            invokeinterface org.apache.xerces.xni.XMLResourceIdentifier.getExpandedSystemId:()Ljava/lang/String;
            areturn
         4: .line 1509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.getExpandedSystemId:()Ljava/lang/String;
            areturn
         5: .line 1512
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final java.lang.String getLiteralSystemId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1526
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 5
         1: .line 1527
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            ifnull 4
         2: .line 1528
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            invokeinterface org.apache.xerces.xni.XMLResourceIdentifier.getLiteralSystemId:()Ljava/lang/String;
            ifnull 4
         3: .line 1529
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.entityLocation:Lorg/apache/xerces/xni/XMLResourceIdentifier;
            invokeinterface org.apache.xerces.xni.XMLResourceIdentifier.getLiteralSystemId:()Ljava/lang/String;
            areturn
         4: .line 1533
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.getLiteralSystemId:()Ljava/lang/String;
            areturn
         5: .line 1536
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final int getLineNumber();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1558
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 4
         1: .line 1559
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ifeq 3
         2: .line 1560
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.lineNumber:I
            ireturn
         3: .line 1564
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.getLineNumber:()I
            ireturn
         4: .line 1568
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final int getColumnNumber();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1591
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 4
         1: .line 1592
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ifeq 3
         2: .line 1593
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.columnNumber:I
            ireturn
         3: .line 1597
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.getColumnNumber:()I
            ireturn
         4: .line 1601
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final int getCharacterOffset();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1622
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 4
         1: .line 1623
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ifeq 3
         2: .line 1624
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            ireturn
         3: .line 1628
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.getCharacterOffset:()I
            ireturn
         4: .line 1632
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final java.lang.String getEncoding();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1644
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 4
         1: .line 1645
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ifeq 3
         2: .line 1646
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.encoding:Ljava/lang/String;
            areturn
         3: .line 1650
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.getEncoding:()Ljava/lang/String;
            areturn
         4: .line 1653
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final java.lang.String getXMLVersion();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
         0: .line 1667
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnull 4
         1: .line 1668
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.isExternal:()Z
            ifeq 3
         2: .line 1669
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.xmlVersion:Ljava/lang/String;
            areturn
         3: .line 1673
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            invokevirtual org.apache.xerces.impl.XMLEntityManager$ScannedEntity.getXMLVersion:()Ljava/lang/String;
            areturn
         4: .line 1676
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;

  public final void setCurrentEntity(org.apache.xerces.impl.XMLEntityManager$ScannedEntity);
    descriptor: (Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // org.apache.xerces.impl.XMLEntityManager$ScannedEntity ent
         0: .line 1681
            aload 0 /* this */
            aload 1 /* ent */
            putfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
         1: .line 1682
            return
        end local 1 // org.apache.xerces.impl.XMLEntityManager$ScannedEntity ent
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0    2     1   ent  Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
    MethodParameters:
      Name  Flags
      ent   

  public final void setBufferSize(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // int size
         0: .line 1696
            aload 0 /* this */
            iload 1 /* size */
            putfield org.apache.xerces.impl.XMLEntityScanner.fBufferSize:I
         1: .line 1697
            return
        end local 1 // int size
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0    2     1  size  I
    MethodParameters:
      Name  Flags
      size  

  public final void reset(org.apache.xerces.util.SymbolTable, org.apache.xerces.impl.XMLEntityManager, org.apache.xerces.impl.XMLErrorReporter);
    descriptor: (Lorg/apache/xerces/util/SymbolTable;Lorg/apache/xerces/impl/XMLEntityManager;Lorg/apache/xerces/impl/XMLErrorReporter;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // org.apache.xerces.util.SymbolTable symbolTable
        start local 2 // org.apache.xerces.impl.XMLEntityManager entityManager
        start local 3 // org.apache.xerces.impl.XMLErrorReporter reporter
         0: .line 1702
            aload 0 /* this */
            aconst_null
            putfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
         1: .line 1703
            aload 0 /* this */
            aload 1 /* symbolTable */
            putfield org.apache.xerces.impl.XMLEntityScanner.fSymbolTable:Lorg/apache/xerces/util/SymbolTable;
         2: .line 1704
            aload 0 /* this */
            aload 2 /* entityManager */
            putfield org.apache.xerces.impl.XMLEntityScanner.fEntityManager:Lorg/apache/xerces/impl/XMLEntityManager;
         3: .line 1705
            aload 0 /* this */
            aload 3 /* reporter */
            putfield org.apache.xerces.impl.XMLEntityScanner.fErrorReporter:Lorg/apache/xerces/impl/XMLErrorReporter;
         4: .line 1706
            return
        end local 3 // org.apache.xerces.impl.XMLErrorReporter reporter
        end local 2 // org.apache.xerces.impl.XMLEntityManager entityManager
        end local 1 // org.apache.xerces.util.SymbolTable symbolTable
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0    5     1    symbolTable  Lorg/apache/xerces/util/SymbolTable;
            0    5     2  entityManager  Lorg/apache/xerces/impl/XMLEntityManager;
            0    5     3       reporter  Lorg/apache/xerces/impl/XMLErrorReporter;
    MethodParameters:
               Name  Flags
      symbolTable    
      entityManager  
      reporter       

  final boolean load(int, boolean);
    descriptor: (IZ)Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // int offset
        start local 2 // boolean changeEntity
         0: .line 1734
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            dup
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
            isub
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.baseCharOffset:I
         1: .line 1736
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            arraylength
            iload 1 /* offset */
            isub
            istore 3 /* length */
        start local 3 // int length
         2: .line 1737
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.mayReadChunks:Z
            ifne 4
            iload 3 /* length */
            bipush 64
            if_icmple 4
         3: .line 1738
            bipush 64
            istore 3 /* length */
         4: .line 1741
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.reader:Ljava/io/Reader;
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
            iload 3 /* length */
            invokevirtual java.io.Reader.read:([CII)I
            istore 4 /* count */
        start local 4 // int count
         5: .line 1745
            iconst_0
            istore 5 /* entityChanged */
        start local 5 // boolean entityChanged
         6: .line 1746
            iload 4 /* count */
            iconst_m1
            if_icmpeq 12
         7: .line 1747
            iload 4 /* count */
            ifeq 22
         8: .line 1748
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 4 /* count */
            iload 1 /* offset */
            iadd
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
         9: .line 1749
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 1 /* offset */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        10: .line 1750
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 1 /* offset */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        11: .line 1752
            goto 22
        12: .line 1756
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 1 /* offset */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
        13: .line 1757
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 1 /* offset */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
        14: .line 1758
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            iload 1 /* offset */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.startPosition:I
        15: .line 1759
            iconst_1
            istore 5 /* entityChanged */
        16: .line 1760
            iload 2 /* changeEntity */
            ifeq 22
        17: .line 1761
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fEntityManager:Lorg/apache/xerces/impl/XMLEntityManager;
            invokevirtual org.apache.xerces.impl.XMLEntityManager.endEntity:()V
        18: .line 1762
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            ifnonnull 20
        19: .line 1763
            getstatic org.apache.xerces.impl.XMLEntityScanner.END_OF_DOCUMENT_ENTITY:Ljava/io/EOFException;
            athrow
        20: .line 1766
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.position:I
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.count:I
            if_icmpne 22
        21: .line 1767
            aload 0 /* this */
            iconst_0
            iconst_1
            invokevirtual org.apache.xerces.impl.XMLEntityScanner.load:(IZ)Z
            pop
        22: .line 1777
      StackMap locals:
      StackMap stack:
            iload 5 /* entityChanged */
            ireturn
        end local 5 // boolean entityChanged
        end local 4 // int count
        end local 3 // int length
        end local 2 // boolean changeEntity
        end local 1 // int offset
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   23     0           this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0   23     1         offset  I
            0   23     2   changeEntity  Z
            2   23     3         length  I
            5   23     4          count  I
            6   23     5  entityChanged  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
              Name  Flags
      offset        
      changeEntity  

  final void resizeBuffer(int, int);
    descriptor: (II)V
    flags: (0x0010) ACC_FINAL
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.apache.xerces.impl.XMLEntityScanner this
        start local 1 // int offset
        start local 2 // int length
         0: .line 1787
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            arraylength
            iconst_1
            ishl
            newarray 5
            astore 3 /* tmp */
        start local 3 // char[] tmp
         1: .line 1788
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            getfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
            iload 1 /* offset */
         2: .line 1789
            aload 3 /* tmp */
            iconst_0
            iload 2 /* length */
         3: .line 1788
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 1790
            aload 0 /* this */
            getfield org.apache.xerces.impl.XMLEntityScanner.fCurrentEntity:Lorg/apache/xerces/impl/XMLEntityManager$ScannedEntity;
            aload 3 /* tmp */
            putfield org.apache.xerces.impl.XMLEntityManager$ScannedEntity.ch:[C
         5: .line 1791
            return
        end local 3 // char[] tmp
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.apache.xerces.impl.XMLEntityScanner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/apache/xerces/impl/XMLEntityScanner;
            0    6     1  offset  I
            0    6     2  length  I
            1    6     3     tmp  [C
    MethodParameters:
        Name  Flags
      offset  
      length  
}
SourceFile: "XMLEntityScanner.java"
NestMembers:
  org.apache.xerces.impl.XMLEntityScanner$1
InnerClasses:
  public ScannedEntity = org.apache.xerces.impl.XMLEntityManager$ScannedEntity of org.apache.xerces.impl.XMLEntityManager
  org.apache.xerces.impl.XMLEntityScanner$1