HomeSort by relevance Sort by last modified time
    Searched refs:StopSpeaking (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium/chrome/browser/chromeos/cros/
mock_speech_synthesis_library.h 20 MOCK_METHOD0(StopSpeaking, bool(void));
speech_synthesis_library.cc 37 bool StopSpeaking() {
38 return chromeos::StopSpeaking();
59 bool StopSpeaking() { return true; }
speech_synthesis_library.h 28 virtual bool StopSpeaking() = 0;
cros_mock.cc 355 EXPECT_CALL(*mock_speech_synthesis_library_, StopSpeaking())
364 EXPECT_CALL(*mock_speech_synthesis_library_, StopSpeaking())
  /external/chromium/chrome/browser/extensions/
extension_tts_apitest.cc 37 MOCK_METHOD0(StopSpeaking, bool(void));
64 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
75 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
89 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
101 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
116 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
128 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
141 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
160 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
166 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
    [all...]
extension_tts_api_linux.cc 29 virtual bool StopSpeaking() {
extension_tts_api_chromeos.cc 30 virtual bool StopSpeaking();
115 bool ExtensionTtsPlatformImplChromeOs::StopSpeaking() {
118 StopSpeaking();
extension_tts_api_win.cc 29 virtual bool StopSpeaking();
98 bool ExtensionTtsPlatformImplWin::StopSpeaking() {
extension_tts_api.h 39 virtual bool StopSpeaking() = 0;
extension_tts_api.cc 250 GetPlatformImpl()->StopSpeaking();
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_apitest.cc 51 MOCK_METHOD0(StopSpeaking, bool(void));
160 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
164 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
168 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
172 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
176 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
186 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
201 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
206 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
222 EXPECT_CALL(mock_platform_impl_, StopSpeaking())
    [all...]
  /external/chromium_org/chrome/browser/speech/
tts_platform.h 43 virtual bool StopSpeaking() = 0;
53 // Speak, or StopSpeaking.
tts_chromeos.cc 33 virtual bool StopSpeaking() OVERRIDE {
tts_android.h 22 virtual bool StopSpeaking() OVERRIDE;
tts_controller_unittest.cc 30 virtual bool StopSpeaking() OVERRIDE { return true; }
tts_android.cc 64 bool TtsPlatformImplAndroid::StopSpeaking() {
73 StopSpeaking();
tts_win.cc 29 virtual bool StopSpeaking();
123 bool TtsPlatformImplWin::StopSpeaking() {
tts_linux.cc 40 virtual bool StopSpeaking() OVERRIDE;
193 bool TtsPlatformImplLinux::StopSpeaking() {
tts_controller.cc 217 GetPlatformImpl()->StopSpeaking();
  /external/chromium_org/chrome/browser/ui/cocoa/tab_contents/
render_view_context_menu_mac.h 59 void StopSpeaking();
  /external/chromium_org/content/public/browser/
render_widget_host_view.h 152 virtual void StopSpeaking() = 0;
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_guest.cc 466 void RenderWidgetHostViewGuest::StopSpeaking() {
467 platform_view_->StopSpeaking();
render_widget_host_view_guest.h 163 virtual void StopSpeaking() OVERRIDE;
test_render_view_host.h 77 virtual void StopSpeaking() OVERRIDE;
test_render_view_host.cc 174 void TestRenderWidgetHostView::StopSpeaking() {

Completed in 963 milliseconds

1 2