public class android.speech.tts.Voice implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.speech.tts.Voice
  super_class: java.lang.Object
{
  public static final int QUALITY_VERY_LOW;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 100

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

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

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

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

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

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

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

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

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

  private final java.lang.String mName;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Locale mLocale;
    descriptor: Ljava/util/Locale;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int mQuality;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int mLatency;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

  private final java.util.Set<java.lang.String> mFeatures;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Ljava/lang/String;>;

  public static final android.os.Parcelable$Creator<android.speech.tts.Voice> CREATOR;
    descriptor: Landroid/os/Parcelable$Creator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Landroid/os/Parcelable$Creator<Landroid/speech/tts/Voice;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 109
            new android.speech.tts.Voice$1
            dup
            invokespecial android.speech.tts.Voice$1.<init>:()V
            putstatic android.speech.tts.Voice.CREATOR:Landroid/os/Parcelable$Creator;
         1: .line 119
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, java.util.Locale, int, int, boolean, java.util.Set<java.lang.String>);
    descriptor: (Ljava/lang/String;Ljava/util/Locale;IIZLjava/util/Set;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=7
        start local 0 // android.speech.tts.Voice this
        start local 1 // java.lang.String name
        start local 2 // java.util.Locale locale
        start local 3 // int quality
        start local 4 // int latency
        start local 5 // boolean requiresNetworkConnection
        start local 6 // java.util.Set features
         0: .line 70
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 76
            aload 0 /* this */
            aload 1 /* name */
            putfield android.speech.tts.Voice.mName:Ljava/lang/String;
         2: .line 77
            aload 0 /* this */
            aload 2 /* locale */
            putfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
         3: .line 78
            aload 0 /* this */
            iload 3 /* quality */
            putfield android.speech.tts.Voice.mQuality:I
         4: .line 79
            aload 0 /* this */
            iload 4 /* latency */
            putfield android.speech.tts.Voice.mLatency:I
         5: .line 80
            aload 0 /* this */
            iload 5 /* requiresNetworkConnection */
            putfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
         6: .line 81
            aload 0 /* this */
            aload 6 /* features */
            putfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
         7: .line 82
            return
        end local 6 // java.util.Set features
        end local 5 // boolean requiresNetworkConnection
        end local 4 // int latency
        end local 3 // int quality
        end local 2 // java.util.Locale locale
        end local 1 // java.lang.String name
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot                       Name  Signature
            0    8     0                       this  Landroid/speech/tts/Voice;
            0    8     1                       name  Ljava/lang/String;
            0    8     2                     locale  Ljava/util/Locale;
            0    8     3                    quality  I
            0    8     4                    latency  I
            0    8     5  requiresNetworkConnection  Z
            0    8     6                   features  Ljava/util/Set<Ljava/lang/String;>;
    Signature: (Ljava/lang/String;Ljava/util/Locale;IIZLjava/util/Set<Ljava/lang/String;>;)V
    MethodParameters:
                           Name  Flags
      name                       
      locale                     
      quality                    
      latency                    
      requiresNetworkConnection  
      features                   

  private void <init>(android.os.Parcel);
    descriptor: (Landroid/os/Parcel;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // android.speech.tts.Voice this
        start local 1 // android.os.Parcel in
         0: .line 84
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 85
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual android.os.Parcel.readString:()Ljava/lang/String;
            putfield android.speech.tts.Voice.mName:Ljava/lang/String;
         2: .line 86
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual android.os.Parcel.readSerializable:()Ljava/io/Serializable;
            checkcast java.util.Locale
            putfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
         3: .line 87
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.speech.tts.Voice.mQuality:I
         4: .line 88
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual android.os.Parcel.readInt:()I
            putfield android.speech.tts.Voice.mLatency:I
         5: .line 89
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual android.os.Parcel.readByte:()B
            iconst_1
            if_icmpne 6
            iconst_1
            goto 7
      StackMap locals: android.speech.tts.Voice android.os.Parcel
      StackMap stack: android.speech.tts.Voice
         6: iconst_0
      StackMap locals: android.speech.tts.Voice android.os.Parcel
      StackMap stack: android.speech.tts.Voice int
         7: putfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
         8: .line 90
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
         9: .line 91
            aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            aload 1 /* in */
            invokevirtual android.os.Parcel.readStringArray:()[Ljava/lang/String;
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
        10: .line 92
            return
        end local 1 // android.os.Parcel in
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Landroid/speech/tts/Voice;
            0   11     1    in  Landroid/os/Parcel;
    MethodParameters:
      Name  Flags
      in    

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // android.speech.tts.Voice this
        start local 1 // android.os.Parcel dest
        start local 2 // int flags
         0: .line 96
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            invokevirtual android.os.Parcel.writeString:(Ljava/lang/String;)V
         1: .line 97
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            invokevirtual android.os.Parcel.writeSerializable:(Ljava/io/Serializable;)V
         2: .line 98
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.speech.tts.Voice.mQuality:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         3: .line 99
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLatency:I
            invokevirtual android.os.Parcel.writeInt:(I)V
         4: .line 100
            aload 1 /* dest */
            aload 0 /* this */
            getfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
            ifeq 5
            iconst_1
            goto 6
      StackMap locals:
      StackMap stack: android.os.Parcel
         5: iconst_0
      StackMap locals: android.speech.tts.Voice android.os.Parcel int
      StackMap stack: android.os.Parcel int
         6: i2b
            invokevirtual android.os.Parcel.writeByte:(B)V
         7: .line 101
            aload 1 /* dest */
            new java.util.ArrayList
            dup
            aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            invokevirtual android.os.Parcel.writeStringList:(Ljava/util/List;)V
         8: .line 102
            return
        end local 2 // int flags
        end local 1 // android.os.Parcel dest
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Landroid/speech/tts/Voice;
            0    9     1   dest  Landroid/os/Parcel;
            0    9     2  flags  I
    MethodParameters:
       Name  Flags
      dest   
      flags  

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 106
            iconst_0
            ireturn
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/tts/Voice;

  public java.util.Locale getLocale();
    descriptor: ()Ljava/util/Locale;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 126
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            areturn
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/tts/Voice;

  public int getQuality();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 138
            aload 0 /* this */
            getfield android.speech.tts.Voice.mQuality:I
            ireturn
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/tts/Voice;

  public int getLatency();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 150
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLatency:I
            ireturn
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/tts/Voice;

  public boolean isNetworkConnectionRequired();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 157
            aload 0 /* this */
            getfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
            ireturn
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/tts/Voice;

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 164
            aload 0 /* this */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            areturn
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/tts/Voice;

  public java.util.Set<java.lang.String> getFeatures();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 182
            aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            areturn
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/speech/tts/Voice;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 187
            new java.lang.StringBuilder
            dup
            bipush 64
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 1 /* builder */
        start local 1 // java.lang.StringBuilder builder
         1: .line 188
            aload 1 /* builder */
            ldc "Voice[Name: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         2: .line 189
            ldc ", locale: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
         3: .line 190
            ldc ", quality: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.speech.tts.Voice.mQuality:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         4: .line 191
            ldc ", latency: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLatency:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         5: .line 192
            ldc ", requiresNetwork: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
            invokevirtual java.lang.StringBuilder.append:(Z)Ljava/lang/StringBuilder;
         6: .line 193
            ldc ", features: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         7: .line 194
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 188
            areturn
        end local 1 // java.lang.StringBuilder builder
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Landroid/speech/tts/Voice;
            1    9     1  builder  Ljava/lang/StringBuilder;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // android.speech.tts.Voice this
         0: .line 200
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         1: .line 201
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            ifnonnull 2
            iconst_0
            goto 3
      StackMap locals: android.speech.tts.Voice int
      StackMap stack: int
         2: aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            invokeinterface java.util.Set.hashCode:()I
      StackMap locals: android.speech.tts.Voice int
      StackMap stack: int int
         3: iadd
            istore 1 /* result */
         4: .line 202
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLatency:I
            iadd
            istore 1 /* result */
         5: .line 203
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            ifnonnull 6
            iconst_0
            goto 7
      StackMap locals:
      StackMap stack: int
         6: aload 0 /* this */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            invokevirtual java.util.Locale.hashCode:()I
      StackMap locals: android.speech.tts.Voice int
      StackMap stack: int int
         7: iadd
            istore 1 /* result */
         8: .line 204
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            ifnonnull 9
            iconst_0
            goto 10
      StackMap locals:
      StackMap stack: int
         9: aload 0 /* this */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
      StackMap locals: android.speech.tts.Voice int
      StackMap stack: int int
        10: iadd
            istore 1 /* result */
        11: .line 205
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield android.speech.tts.Voice.mQuality:I
            iadd
            istore 1 /* result */
        12: .line 206
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
            ifeq 13
            sipush 1231
            goto 14
      StackMap locals:
      StackMap stack: int
        13: sipush 1237
      StackMap locals: android.speech.tts.Voice int
      StackMap stack: int int
        14: iadd
            istore 1 /* result */
        15: .line 207
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   16     0    this  Landroid/speech/tts/Voice;
            1   16     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // android.speech.tts.Voice this
        start local 1 // java.lang.Object obj
         0: .line 212
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 213
            iconst_1
            ireturn
         2: .line 215
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 216
            iconst_0
            ireturn
         4: .line 218
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 6
         5: .line 219
            iconst_0
            ireturn
         6: .line 221
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast android.speech.tts.Voice
            astore 2 /* other */
        start local 2 // android.speech.tts.Voice other
         7: .line 222
            aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            ifnonnull 10
         8: .line 223
            aload 2 /* other */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            ifnull 12
         9: .line 224
            iconst_0
            ireturn
        10: .line 226
      StackMap locals: android.speech.tts.Voice
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            aload 2 /* other */
            getfield android.speech.tts.Voice.mFeatures:Ljava/util/Set;
            invokeinterface java.util.Set.equals:(Ljava/lang/Object;)Z
            ifne 12
        11: .line 227
            iconst_0
            ireturn
        12: .line 229
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLatency:I
            aload 2 /* other */
            getfield android.speech.tts.Voice.mLatency:I
            if_icmpeq 14
        13: .line 230
            iconst_0
            ireturn
        14: .line 232
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            ifnonnull 17
        15: .line 233
            aload 2 /* other */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            ifnull 19
        16: .line 234
            iconst_0
            ireturn
        17: .line 236
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            aload 2 /* other */
            getfield android.speech.tts.Voice.mLocale:Ljava/util/Locale;
            invokevirtual java.util.Locale.equals:(Ljava/lang/Object;)Z
            ifne 19
        18: .line 237
            iconst_0
            ireturn
        19: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            ifnonnull 22
        20: .line 240
            aload 2 /* other */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            ifnull 24
        21: .line 241
            iconst_0
            ireturn
        22: .line 243
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            aload 2 /* other */
            getfield android.speech.tts.Voice.mName:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifne 24
        23: .line 244
            iconst_0
            ireturn
        24: .line 246
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mQuality:I
            aload 2 /* other */
            getfield android.speech.tts.Voice.mQuality:I
            if_icmpeq 26
        25: .line 247
            iconst_0
            ireturn
        26: .line 249
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
            aload 2 /* other */
            getfield android.speech.tts.Voice.mRequiresNetworkConnection:Z
            if_icmpeq 28
        27: .line 250
            iconst_0
            ireturn
        28: .line 252
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // android.speech.tts.Voice other
        end local 1 // java.lang.Object obj
        end local 0 // android.speech.tts.Voice this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   29     0   this  Landroid/speech/tts/Voice;
            0   29     1    obj  Ljava/lang/Object;
            7   29     2  other  Landroid/speech/tts/Voice;
    MethodParameters:
      Name  Flags
      obj   
}
SourceFile: "Voice.java"
NestMembers:
  android.speech.tts.Voice$1
InnerClasses:
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable
  android.speech.tts.Voice$1