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

1 2

  /frameworks/base/core/java/android/speech/tts/
AbstractSynthesisCallback.java 16 package android.speech.tts;
29 * Aborts the speech request.
AudioMessageParams.java 16 package android.speech.tts;
18 import android.speech.tts.TextToSpeechService.UtteranceProgressDispatcher;
SilenceMessageParams.java 16 package android.speech.tts;
19 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.
80 * The service should call this method if the speech synthesis fails.
UtteranceProgressListener.java 3 package android.speech.tts;
MessageParams.java 16 package android.speech.tts;
18 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.
BlockingMediaPlayer.java 16 package android.speech.tts;
EventLogger.java 16 package android.speech.tts;
22 * Writes data about a given speech synthesis request to the event logs.
24 * speech rate / pitch and the latency and overall time taken.
FileSynthesisCallback.java 16 package android.speech.tts;
29 * Speech synthesis request that writes the audio to a WAV file.
  /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...]
RecognitionService.java 17 package android.speech;
33 * extended only in case you wish to implement a new speech recognizer. Please note that the
41 public static final String SERVICE_INTERFACE = "android.speech.RecognitionService";
48 public static final String SERVICE_META_DATA = "android.speech";
174 * Notifies the service that it should start listening for speech.
184 * Notifies the service that it should cancel the speech recognition.
189 * Notifies the service that it should stop listening for speech. Speech captured so far should
210 * This class receives callbacks from the speech recognition service and forwards them to the
263 * depending on the speech recognition service implementation
    [all...]
  /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";
  /external/webrtc/src/common_audio/vad/main/test/unit_test/
unit_test.cc 44 short speech[960]; local
55 memset(speech, 1, sizeof(short) * 960);
56 speech[13] = 1374;
57 speech[73] = -3747;
71 EXPECT_EQ(-1, WebRtcVad_Process(NULL, fs[0], speech, framelen[0][0]));
77 EXPECT_EQ(-1, WebRtcVad_Process(vad_inst, fs[0], speech, framelen[0][0]));
93 EXPECT_EQ(-1, WebRtcVad_Process(vad_inst, 12000, speech, framelen[0][0]));
94 EXPECT_EQ(-1, WebRtcVad_Process(vad_inst, fs[0], speech, framelen[1][1]));
100 // printf("%d\n", WebRtcVad_Process(vad_inst, fs[i], speech, framelen[i][j]));
103 EXPECT_EQ(WebRtcVad_Process(vad_inst, fs[i], speech, framelen[i][j]), 1)
    [all...]
  /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;
  /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";
TextToSpeechWrapper.java 16 package android.speech.tts.cts;
20 import android.speech.tts.TextToSpeech;
21 import android.speech.tts.TextToSpeech.OnInitListener;
22 import android.speech.tts.TextToSpeech.OnUtteranceCompletedListener;
46 /** maximum time to wait for speech call to be complete */
  /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/base/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:__anon15127
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 981 milliseconds

1 2