HomeSort by relevance Sort by last modified time
    Searched refs:Speak (Results 1 - 24 of 24) sorted by null

  /external/chromium/chrome/browser/chromeos/cros/
mock_speech_synthesis_library.h 18 MOCK_METHOD1(Speak, bool(const char*));
speech_synthesis_library.cc 29 bool Speak(const char* text) {
30 return chromeos::Speak(text);
57 bool Speak(const char* text) { return true; }
speech_synthesis_library.h 21 virtual bool Speak(const char* text) = 0;
cros_mock.cc 358 EXPECT_CALL(*mock_speech_synthesis_library_, Speak(_))
367 EXPECT_CALL(*mock_speech_synthesis_library_, Speak(_))
  /external/chromium/chrome/browser/extensions/
extension_tts_apitest.cc 30 MOCK_METHOD6(Speak,
66 EXPECT_CALL(mock_platform_impl_, Speak(_, _, _, _, _, _))
77 EXPECT_CALL(mock_platform_impl_, Speak(_, _, _, _, _, _))
91 EXPECT_CALL(mock_platform_impl_, Speak("text 1", _, _, _, _, _))
103 EXPECT_CALL(mock_platform_impl_, Speak("text 2", _, _, _, _, _))
114 // interrupts. Speak() never gets called on the second utterance.
118 EXPECT_CALL(mock_platform_impl_, Speak("text 1", _, _, _, _, _))
130 EXPECT_CALL(mock_platform_impl_, Speak("text 3", _, _, _, _, _))
143 EXPECT_CALL(mock_platform_impl_, Speak("text 1", _, _, _, _, _))
149 EXPECT_CALL(mock_platform_impl_, Speak("text 2", _, _, _, _, _)
    [all...]
extension_tts_api_win.cc 21 virtual bool Speak(
53 bool ExtensionTtsPlatformImplWin::Speak(
92 speech_synthesizer_->Speak(
111 if (status.dwRunningState == 0 || // 0 == waiting to speak
extension_tts_api_linux.cc 18 virtual bool Speak(
extension_tts_api_chromeos.cc 22 virtual bool Speak(
55 bool ExtensionTtsPlatformImplChromeOs::Speak(
112 return cros_library->GetSpeechSynthesisLibrary()->Speak(utterance.c_str());
extension_tts_api.h 21 // Speak the given utterance with the given parameters if possible,
26 // The ExtensionTtsController will only try to speak one utterance at
29 // returns false before calling Speak again.
30 virtual bool Speak(
60 // Construct an utterance given a profile, the text to speak,
61 // the options passed to tts.speak, and a completion task to call
108 // The text to speak.
111 // The full options arg passed to tts.speak, which may include fields
141 // Speak the given utterance. If the utterance's can_enqueue flag is true
192 // A queue of utterances to speak after the current one finishes
    [all...]
extension_tts_api.cc 219 bool success = GetPlatformImpl()->Speak(
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_apitest.cc 44 MOCK_METHOD5(Speak,
162 EXPECT_CALL(mock_platform_impl_, Speak(_, "", _, _, _))
166 EXPECT_CALL(mock_platform_impl_, Speak(_, "Alpha", _, _, _))
170 EXPECT_CALL(mock_platform_impl_, Speak(_, "Bravo", _, _, _))
174 EXPECT_CALL(mock_platform_impl_, Speak(_, "Charlie", _, _, _))
178 EXPECT_CALL(mock_platform_impl_, Speak(_, "Echo", _, _, _))
188 EXPECT_CALL(mock_platform_impl_, Speak(_, _, _, _, _))
203 EXPECT_CALL(mock_platform_impl_, Speak(_, "text 1", _, _, _))
208 EXPECT_CALL(mock_platform_impl_, Speak(_, "text 2", _, _, _))
220 // interrupts. Speak(, _) never gets called on the second utterance
    [all...]
  /external/chromium_org/chrome/browser/speech/
tts_platform.h 28 // Speak the given utterance with the given parameters if possible,
32 // The TtsController will only try to speak one utterance at
35 virtual bool Speak(
53 // Speak, or StopSpeaking.
tts_chromeos.cc 24 virtual bool Speak(
tts_android.h 16 virtual bool Speak(
tts_controller_unittest.cc 21 virtual bool Speak(
tts_win.cc 22 virtual bool Speak(
70 bool TtsPlatformImplWin::Speak(
116 HRESULT result = speech_synthesizer_->Speak(
131 speech_synthesizer_->Speak(L"", SPF_ASYNC | SPF_PURGEBEFORESPEAK, NULL);
164 if (status.dwRunningState == 0 || // 0 == waiting to speak
tts_android.cc 40 bool TtsPlatformImplAndroid::Speak(
tts_linux.cc 34 virtual bool Speak(
153 bool TtsPlatformImplLinux::Speak(
tts_controller.cc 184 bool success = GetPlatformImpl()->Speak(
  /external/chromium/chrome/browser/chromeos/login/
wizard_accessibility_helper.cc 91 accessibility_handler_->Speak(str, queue, interruptible);
118 accessibility_handler_->Speak(enabled ?
wizard_accessibility_handler.h 43 void Speak(const char* speak_str, bool queue, bool interruptible);
51 // Get text to speak and an earcon identifier (which may be NONE) for any
58 // Get text to speak and an optional earcon identifier, specifically for
65 // Get text to speak when a text control has changed in some way, either
75 // Get text to speak when only the selection/cursor has changed.
81 // Get text to speak when the contents of a text control has changed.
wizard_accessibility_handler.cc 111 Speak(description.c_str(), false, true);
114 void WizardAccessibilityHandler::Speak(const char* speak_str,
128 Speak(speak_str);
434 // Replace one substring with another, speak inserted text.
437 // Speak inserted text.
440 // Speak deleted text.
  /external/chromium_org/chrome/browser/chromeos/accessibility/
accessibility_manager.h 86 void Speak(const std::string& text);
accessibility_manager.cc 395 Speak(l10n_util::GetStringUTF8(
481 void AccessibilityManager::Speak(const std::string& text) {
497 Speak(text);

Completed in 456 milliseconds