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

1 2

  /external/chromium/chrome/browser/chromeos/cros/
mock_speech_synthesis_library.h 21 MOCK_METHOD0(IsSpeaking, bool(void));
speech_synthesis_library.cc 41 bool IsSpeaking() {
42 return chromeos::IsSpeaking();
60 bool IsSpeaking() { return false; }
speech_synthesis_library.h 31 virtual bool IsSpeaking() = 0;
cros_mock.cc 361 EXPECT_CALL(*mock_speech_synthesis_library_, IsSpeaking())
370 EXPECT_CALL(*mock_speech_synthesis_library_, IsSpeaking())
  /external/chromium/chrome/browser/extensions/
extension_tts_apitest.cc 38 MOCK_METHOD0(IsSpeaking, bool(void));
68 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
79 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
95 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
100 // IsSpeaking and then finish successfully.
105 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
122 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
127 // IsSpeaking and then finish successfully.
132 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
145 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
    [all...]
extension_tts_api_linux.cc 34 virtual bool IsSpeaking() {
extension_tts_api_chromeos.cc 32 virtual bool IsSpeaking();
125 bool ExtensionTtsPlatformImplChromeOs::IsSpeaking() {
128 IsSpeaking();
extension_tts_api_win.cc 31 virtual bool IsSpeaking();
106 bool ExtensionTtsPlatformImplWin::IsSpeaking() {
extension_tts_api.h 28 // before speaking again, otherwise it will wait until IsSpeaking
42 virtual bool IsSpeaking() = 0;
139 bool IsSpeaking() const;
226 DECLARE_EXTENSION_FUNCTION_NAME("experimental.tts.isSpeaking")
extension_tts_api.cc 132 if (IsSpeaking() && utterance->can_enqueue()) {
235 // tests by forcing them to set expectations for IsSpeaking.
274 bool ExtensionTtsController::IsSpeaking() const {
311 if (GetPlatformImpl()->IsSpeaking() == false) {
372 ExtensionTtsController::GetInstance()->IsSpeaking()));
  /external/chromium_org/chrome/browser/speech/
tts_platform.h 46 virtual bool IsSpeaking() = 0;
tts_chromeos.cc 41 virtual bool IsSpeaking() OVERRIDE {
tts_android.h 25 virtual bool IsSpeaking() OVERRIDE;
tts_controller_unittest.cc 29 virtual bool IsSpeaking() OVERRIDE { return false; }
tts_win.cc 35 virtual bool IsSpeaking();
129 if (IsSpeaking()) {
159 bool TtsPlatformImplWin::IsSpeaking() {
tts_controller.cc 143 if (paused_ || (IsSpeaking() && utterance->can_enqueue())) {
283 bool TtsController::IsSpeaking() {
284 return current_utterance_ != NULL || GetPlatformImpl()->IsSpeaking();
tts_android.cc 79 bool TtsPlatformImplAndroid::IsSpeaking() {
tts_linux.cc 43 virtual bool IsSpeaking() OVERRIDE;
215 bool TtsPlatformImplLinux::IsSpeaking() {
tts_controller.h 248 bool IsSpeaking();
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_apitest.cc 57 MOCK_METHOD0(IsSpeaking, bool(void));
157 EXPECT_CALL(mock_platform_impl_, IsSpeaking());
185 EXPECT_CALL(mock_platform_impl_, IsSpeaking());
197 EXPECT_CALL(mock_platform_impl_, IsSpeaking());
217 EXPECT_CALL(mock_platform_impl_, IsSpeaking());
240 EXPECT_CALL(mock_platform_impl_, IsSpeaking());
259 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
282 EXPECT_CALL(mock_platform_impl_, IsSpeaking());
298 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
327 EXPECT_CALL(mock_platform_impl_, IsSpeaking())
    [all...]
  /external/chromium_org/content/public/browser/
render_widget_host_view.h 150 virtual bool IsSpeaking() const = 0;
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_guest.cc 462 bool RenderWidgetHostViewGuest::IsSpeaking() const {
463 return platform_view_->IsSpeaking();
render_widget_host_view_guest.h 162 virtual bool IsSpeaking() const OVERRIDE;
test_render_view_host.h 76 virtual bool IsSpeaking() const OVERRIDE;
test_render_view_host.cc 170 bool TestRenderWidgetHostView::IsSpeaking() const {

Completed in 480 milliseconds

1 2