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

/external/chromium_org/chrome/browser/speech/
H A Dchrome_speech_recognition_manager_delegate.h14 namespace speech { namespace
71 } // namespace speech
H A Dchrome_speech_recognition_manager_delegate_bubble_ui.h9 #include "chrome/browser/speech/chrome_speech_recognition_manager_delegate.h"
10 #include "chrome/browser/speech/speech_recognition_bubble_controller.h"
12 namespace speech { namespace
15 // required to handle the (bubble) UI for speech recognition sessions initiated
16 // by input elements with a x-webkit-speech attribute. This extended behavior is
60 } // namespace speech
H A Dchrome_speech_recognition_manager_delegate_bubble_ui.cc5 #include "chrome/browser/speech/chrome_speech_recognition_manager_delegate_bubble_ui.h"
27 namespace speech { namespace
219 } // namespace speech
H A Dspeech_recognition_bubble_controller_unittest.cc8 #include "chrome/browser/speech/speech_recognition_bubble_controller.h"
21 namespace speech { namespace
173 // Test that the speech bubble UI gets created in the UI thread and that the
187 // Test that the speech bubble UI gets created in the UI thread and that the
201 // Test that the speech bubble UI gets created in the UI thread and that the
215 } // namespace speech
H A Dspeech_recognition_bubble_controller.cc5 #include "chrome/browser/speech/speech_recognition_bubble_controller.h"
24 namespace speech { namespace
202 } // namespace speech
H A Dspeech_recognition_bubble_controller.h10 #include "chrome/browser/speech/speech_recognition_bubble.h"
13 namespace speech { namespace
15 // This class handles the speech recognition popup UI on behalf of
25 // Invoked when the user clicks on a button in the speech recognition UI.
29 // Invoked when the user clicks outside the speech recognition info bubble
39 // Creates and shows a new speech recognition UI bubble in warmup mode.
130 } // namespace speech
H A Dchrome_speech_recognition_manager_delegate.cc5 #include "chrome/browser/speech/chrome_speech_recognition_manager_delegate.h"
44 namespace speech { namespace
47 // the user has opted into UMA. This information is sent with speech input
139 // Sessions initiated by speech input extension APIs will end up in a NULL
142 // extension using the (new) speech JS APIs, will be properly handled here.
143 // TODO(primiano) turn this line into a DCHECK once speech input extension
323 // Since hardware info is optional with speech input requests, we start an
325 // speech input request would send an empty string for hardware info and
388 // If there is no render view, we cannot show the speech bubble, so this
405 // TODO(kalman): Also enable speech bubbl
[all...]
/external/webrtc/src/common_audio/vad/
H A Dvad_unittest.cc85 // 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 signa
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DTextControlInnerElements.cpp264 SpeechInput* speech = speechInput(); local
265 if (speech && m_listenerId) { // Could be null when page is unloading.
267 speech->cancelRecognition(m_listenerId);
268 speech->unregisterListener(m_listenerId);
275 element->setPart(AtomicString("-webkit-input-speech-button", AtomicString::ConstructFromLiteral));
393 // It provides alternative recognition hypotheses and notifies that the results come from speech input.
397 // speech in the input element, hence removing this button and renderer from the hierarchy.

Completed in 137 milliseconds