HomeSort by relevance Sort by last modified time
    Searched defs:speech (Results 1 - 25 of 49) sorted by null

1 2

  /frameworks/base/core/java/android/speech/tts/
AbstractSynthesisCallback.java 16 package android.speech.tts;
29 * Aborts the speech request.
PlaybackQueueItem.java 3 package android.speech.tts;
5 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
SynthesisCallback.java 16 package android.speech.tts;
19 * A callback to return speech data synthesized by a text to speech engine.
83 * The service should call this method if the speech synthesis fails.
UtteranceProgressListener.java 3 package android.speech.tts;
SilencePlaybackQueueItem.java 16 package android.speech.tts;
19 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
SynthesisRequest.java 16 package android.speech.tts;
21 * Contains data required by engines to synthesize speech. This data is :
27 * <li>The synthesis speech rate, with 100 being the normal, and
28 * higher values representing higher speech rates.</li>
32 * Any additional parameters sent to the text to speech service are passed in
80 * Gets the speech rate to use. The normal rate is 100.
110 * Sets the speech rate.
AudioPlaybackHandler.java 16 package android.speech.tts;
AudioPlaybackQueueItem.java 16 package android.speech.tts;
22 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
EventLogger.java 16 package android.speech.tts;
23 * Writes data about a given speech synthesis request to the event logs.
25 * speech rate / pitch and the latency and overall time taken.
  /cts/tests/src/android/speech/tts/cts/
StubTextToSpeechService.java 16 package android.speech.tts.cts;
19 import android.speech.tts.SynthesisCallback;
20 import android.speech.tts.SynthesisRequest;
21 import android.speech.tts.TextToSpeech;
22 import android.speech.tts.TextToSpeechService;
  /frameworks/base/core/java/android/speech/
RecognizerResultsIntent.java 17 package android.speech;
24 * Constants for intents related to showing speech recognition results.
26 * These constants should not be needed for normal utilization of speech recognition. They
61 "android.speech.action.VOICE_SEARCH_RESULTS";
68 "android.speech.extras.VOICE_SEARCH_RESULT_STRINGS";
80 "android.speech.extras.VOICE_SEARCH_RESULT_URLS";
99 "android.speech.extras.VOICE_SEARCH_RESULT_HTML";
111 "android.speech.extras.VOICE_SEARCH_RESULT_HTML_BASE_URLS";
125 "android.speech.extras.EXTRA_VOICE_SEARCH_RESULT_HTTP_HEADERS";
RecognitionListener.java 16 package android.speech;
82 * {@link SpeechRecognizer#startListening(Intent)}, depending on the speech recognition
RecognizerIntent.java 17 package android.speech;
32 * Constants for supporting speech recognition through starting an {@link Intent}
36 * The extra key used in an intent to the speech recognizer for voice search. Not
49 * Starts an activity that will prompt the user for speech and send it through a
50 * speech recognizer. The results will be returned via activity results (in
81 public static final String ACTION_RECOGNIZE_SPEECH = "android.speech.action.RECOGNIZE_SPEECH";
84 * Starts an activity that will prompt the user for speech, send it through a
85 * speech recognizer, and either display a web search result or trigger
86 * another type of action based on the user's speech.
115 public static final String ACTION_WEB_SEARCH = "android.speech.action.WEB_SEARCH"
    [all...]
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
MockableCheckVoiceData.java 17 package com.android.speech.tts;
22 import android.speech.tts.TextToSpeech;
MockableTextToSpeechService.java 17 package com.android.speech.tts;
19 import android.speech.tts.SynthesisCallback;
20 import android.speech.tts.SynthesisRequest;
21 import android.speech.tts.TextToSpeechService;
TextToSpeechTests.java 17 package com.android.speech.tts;
19 import android.speech.tts.SynthesisCallback;
20 import android.speech.tts.SynthesisRequest;
21 import android.speech.tts.TextToSpeech;
24 import com.android.speech.tts.MockableTextToSpeechService.IDelegate;
36 private static final String MOCK_ENGINE = "com.android.speech.tts";
37 private static final String MOCK_PACKAGE = "com.android.speech.tts.__testpackage__";
165 private void blockingCallSpeak(String speech, IDelegate mock) throws
170 mTts.speak(speech, TextToSpeech.QUEUE_ADD, null);
  /frameworks/ex/common/java/com/android/common/speech/
Recognition.java 17 package com.android.common.speech;
22 * @see android.speech.RecognitionService
23 * @see android.speech.RecognizerIntent
29 * android.speech.RecognizerIntent#ACTION_GET_LANGUAGE_DETAILS
33 * android.speech.RecognizerIntent#EXTRA_LANGUAGE_PREFERENCE).
42 public static final String EXTRA_HINT_STRINGS = "android.speech.extra.HINT_STRINGS";
46 * android.speech.RecognizerIntent#ACTION_GET_LANGUAGE_DETAILS.
50 public static final String EXTRA_HINT_CONTEXT = "android.speech.extra.HINT_CONTEXT";
  /frameworks/base/core/java/android/speech/srec/
MicrophoneInputStream.java 21 package android.speech.srec;
UlawEncoderInputStream.java 22 package android.speech.srec;
WaveHeader.java 17 package android.speech.srec;
  /external/webrtc/src/common_audio/vad/
vad_unittest.cc 85 // Construct a speech signal that will trigger the VAD in all modes. It is
87 int16_t speech[kMaxFrameLength]; local
89 speech[i] = (i * i);
104 EXPECT_EQ(-1, WebRtcVad_Process(NULL, kRates[0], speech, kFrameLengths[0]));
122 EXPECT_EQ(-1, WebRtcVad_Process(handle, kRates[0], speech, kFrameLengths[0]));
133 // NULL speech pointer
136 EXPECT_EQ(-1, WebRtcVad_Process(handle, 9999, speech, kFrameLengths[0]));
148 speech,
153 speech,
200 // Construct a speech signal that will trigger the VAD in all modes. It i
    [all...]
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java 16 package android.speech.tts.cts;
19 import android.speech.tts.TextToSpeech;
27 * Tests for {@link android.speech.tts.TextToSpeechService} using StubTextToSpeechService.
32 private static final String UTTERANCE = "text to speech cts test";
TextToSpeechTest.java 16 package android.speech.tts.cts;
19 import android.speech.tts.TextToSpeech;
28 * Tests for {@link android.speech.tts.TextToSpeech}
33 private static final String SAMPLE_TEXT = "This is a sample text to speech string";
  /external/webkit/Source/WebCore/html/shadow/
TextControlInnerElements.cpp 370 SpeechInput* speech = speechInput(); local
371 if (speech && m_listenerId) { // Could be null when page is unloading.
373 speech->cancelRecognition(m_listenerId);
374 speech->unregisterListener(m_listenerId);
488 // speech in the input element, hence removing this button and renderer from the hierarchy.
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cod_amr.h 22 ANSI-C code for the Adaptive Multi-Rate (AMR) speech codec
121 * L_TOTAL7k4 : Total size of speech buffer. *
128 /* Speech vector */
130 Word16 *speech, *p_window, *p_window_12k2; member in struct:__anon19283
133 /* Weight speech vector */
187 * - initilize pointers to speech buffer
225 * calling this function, 40 new speech data should be copied to the
227 * this file (it points to the end of speech buffer minus 200).
232 Word16 new_speech[] /* i : speech input (L_FRAME) */
240 * DESCRIPTION: This function is called every 20 ms speech frame
    [all...]

Completed in 272 milliseconds

1 2