/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 | 144 if (paused_ || (IsSpeaking() && utterance->can_enqueue())) { 288 bool TtsController::IsSpeaking() { 289 return current_utterance_ != NULL || GetPlatformImpl()->IsSpeaking();
|
tts_android.cc | 79 bool TtsPlatformImplAndroid::IsSpeaking() {
|
tts_linux.cc | 44 virtual bool IsSpeaking() OVERRIDE; 221 bool TtsPlatformImplLinux::IsSpeaking() {
|
tts_controller.h | 254 bool IsSpeaking();
|
/external/chromium_org/chrome/browser/speech/extension_api/ |
tts_extension_apitest.cc | 63 MOCK_METHOD0(IsSpeaking, bool(void)); 179 EXPECT_CALL(mock_platform_impl_, IsSpeaking()); 207 EXPECT_CALL(mock_platform_impl_, IsSpeaking()); 219 EXPECT_CALL(mock_platform_impl_, IsSpeaking()); 239 EXPECT_CALL(mock_platform_impl_, IsSpeaking()); 262 EXPECT_CALL(mock_platform_impl_, IsSpeaking()); 281 EXPECT_CALL(mock_platform_impl_, IsSpeaking()) 304 EXPECT_CALL(mock_platform_impl_, IsSpeaking()); 320 EXPECT_CALL(mock_platform_impl_, IsSpeaking()) 349 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.h | 160 virtual bool IsSpeaking() const OVERRIDE;
|
render_widget_host_view_guest.cc | 497 bool RenderWidgetHostViewGuest::IsSpeaking() const { 498 return platform_view_->IsSpeaking();
|
/external/chromium_org/content/test/ |
test_render_view_host.h | 78 virtual bool IsSpeaking() const OVERRIDE;
|
test_render_view_host.cc | 173 bool TestRenderWidgetHostView::IsSpeaking() const {
|