Searched defs:Keyphrase (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java195 /** Keyphrase sound model */
262 * A Keyphrase describes a key phrase that can be detected by a
265 public static class Keyphrase implements Parcelable { class in class:SoundTrigger
282 public Keyphrase(int id, int recognitionModes, String locale, String text, int[] users) { method in class:SoundTrigger.Keyphrase
290 public static final Parcelable.Creator<Keyphrase> CREATOR
291 = new Parcelable.Creator<Keyphrase>() {
292 public Keyphrase createFromParcel(Parcel in) {
293 return Keyphrase.fromParcel(in);
296 public Keyphrase[] newArray(int size) {
297 return new Keyphrase[siz
[all...]

Completed in 28 milliseconds