HomeSort by relevance Sort by last modified time
    Searched refs:Speak (Results 1 - 15 of 15) 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/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/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 2062 void WebPage::speak(const String& string) function in class:WebKit::WebPage
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp     [all...]

Completed in 632 milliseconds