Home | History | Annotate | Download | only in speech

Lines Matching defs:SpeechRecognizer

41  * {@link SpeechRecognizer#createSpeechRecognizer(Context)}. This class's methods must be
51 public class SpeechRecognizer {
56 private static final String TAG = "SpeechRecognizer";
156 * The right way to create a {@code SpeechRecognizer} is by using
159 private SpeechRecognizer(final Context context, final ComponentName serviceComponent) {
190 * returns {@code false}, {@link SpeechRecognizer#createSpeechRecognizer(Context)} will
193 * @param context with which {@code SpeechRecognizer} will be created
203 * Factory method to create a new {@code SpeechRecognizer}. Please note that
205 * command to the created {@code SpeechRecognizer}, otherwise no notifications will be
208 * @param context in which to create {@code SpeechRecognizer}
209 * @return a new {@code SpeechRecognizer}
211 public static SpeechRecognizer createSpeechRecognizer(final Context context) {
216 * Factory method to create a new {@code SpeechRecognizer}. Please note that
218 * command to the created {@code SpeechRecognizer}, otherwise no notifications will be
222 * {@link SpeechRecognizer} to. Normally you would not use this; use
226 * @param context in which to create {@code SpeechRecognizer}
228 * {@code SpeechRecognizer} to
229 * @return a new {@code SpeechRecognizer}
231 public static SpeechRecognizer createSpeechRecognizer(final Context context,
237 return new SpeechRecognizer(context, serviceComponent);
246 * {@link SpeechRecognizer}, this must not be null.
326 "SpeechRecognizer should be used only from the application's main thread");
396 * Destroys the {@code SpeechRecognizer} object.