Home | History | Annotate | Download | only in tts

Lines Matching defs:Voice

29  * Characteristics and features of a Text-To-Speech Voice. Each TTS Engine can expose
32 public class Voice implements Parcelable {
70 public Voice(String name,
84 private Voice(Parcel in) {
109 public static final Parcelable.Creator<Voice> CREATOR = new Parcelable.Creator<Voice>() {
111 public Voice createFromParcel(Parcel in) {
112 return new Voice(in);
116 public Voice[] newArray(int size) {
117 return new Voice[size];
123 * @return The voice's locale
130 * @return The voice's quality (higher is better)
142 * @return The voice's latency (lower is better)
154 * @return Does the Voice require a network connection to work.
161 * @return Unique voice name.
168 * Returns the set of features it supports for a given voice.
188 return builder.append("Voice[Name: ").append(mName)
221 Voice other = (Voice) obj;