OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebSpeechSynthesisUtterance
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/public/platform/
WebSpeechSynthesizerClient.h
29
#include "
WebSpeechSynthesisUtterance
.h"
40
virtual void didStartSpeaking(const
WebSpeechSynthesisUtterance
&) = 0;
41
virtual void didPauseSpeaking(const
WebSpeechSynthesisUtterance
&) = 0;
42
virtual void didResumeSpeaking(const
WebSpeechSynthesisUtterance
&) = 0;
43
virtual void didFinishSpeaking(const
WebSpeechSynthesisUtterance
&) = 0;
44
virtual void speakingErrorOccurred(const
WebSpeechSynthesisUtterance
&) = 0;
45
virtual void wordBoundaryEventOccurred(const
WebSpeechSynthesisUtterance
&, unsigned charIndex) = 0;
46
virtual void sentenceBoundaryEventOccurred(const
WebSpeechSynthesisUtterance
&, unsigned charIndex) = 0;
WebSpeechSynthesizer.h
34
class
WebSpeechSynthesisUtterance
;
43
virtual void speak(const
WebSpeechSynthesisUtterance
&) = 0;
WebSpeechSynthesisUtterance.h
37
class
WebSpeechSynthesisUtterance
{
39
WebSpeechSynthesisUtterance
() { }
40
WebSpeechSynthesisUtterance
(const
WebSpeechSynthesisUtterance
& other) { assign(other); }
41
~
WebSpeechSynthesisUtterance
() { reset(); }
43
WebSpeechSynthesisUtterance
& operator=(const
WebSpeechSynthesisUtterance
& other)
49
BLINK_PLATFORM_EXPORT void assign(const
WebSpeechSynthesisUtterance
&);
65
BLINK_PLATFORM_EXPORT
WebSpeechSynthesisUtterance
(const PassRefPtr<WebCore::PlatformSpeechSynthesisUtterance>&);
66
BLINK_PLATFORM_EXPORT
WebSpeechSynthesisUtterance
& operator=(WebCore::PlatformSpeechSynthesisUtterance*)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance.cpp
28
#include "public/platform/
WebSpeechSynthesisUtterance
.h"
38
WebSpeechSynthesisUtterance
::
WebSpeechSynthesisUtterance
(const PassRefPtr<PlatformSpeechSynthesisUtterance>& utterance)
43
WebSpeechSynthesisUtterance
&
WebSpeechSynthesisUtterance
::operator=(WebCore::PlatformSpeechSynthesisUtterance* utterance)
49
void
WebSpeechSynthesisUtterance
::assign(const
WebSpeechSynthesisUtterance
& other)
54
void
WebSpeechSynthesisUtterance
::reset()
59
WebSpeechSynthesisUtterance
::operator PassRefPtr<PlatformSpeechSynthesisUtterance>() const
64
WebSpeechSynthesisUtterance
::operator PlatformSpeechSynthesisUtterance*() cons
[
all
...]
WebSpeechSynthesizerClientImpl.h
30
#include "public/platform/
WebSpeechSynthesisUtterance
.h"
47
virtual void didStartSpeaking(const blink::
WebSpeechSynthesisUtterance
&);
48
virtual void didFinishSpeaking(const blink::
WebSpeechSynthesisUtterance
&);
49
virtual void didPauseSpeaking(const blink::
WebSpeechSynthesisUtterance
&);
50
virtual void didResumeSpeaking(const blink::
WebSpeechSynthesisUtterance
&);
51
virtual void speakingErrorOccurred(const blink::
WebSpeechSynthesisUtterance
&);
52
virtual void wordBoundaryEventOccurred(const blink::
WebSpeechSynthesisUtterance
&, unsigned charIndex);
53
virtual void sentenceBoundaryEventOccurred(const blink::
WebSpeechSynthesisUtterance
&, unsigned charIndex);
WebSpeechSynthesizerClientImpl.cpp
52
void WebSpeechSynthesizerClientImpl::didStartSpeaking(const blink::
WebSpeechSynthesisUtterance
& utterance)
57
void WebSpeechSynthesizerClientImpl::didFinishSpeaking(const blink::
WebSpeechSynthesisUtterance
& utterance)
62
void WebSpeechSynthesizerClientImpl::didPauseSpeaking(const blink::
WebSpeechSynthesisUtterance
& utterance)
67
void WebSpeechSynthesizerClientImpl::didResumeSpeaking(const blink::
WebSpeechSynthesisUtterance
& utterance)
72
void WebSpeechSynthesizerClientImpl::speakingErrorOccurred(const blink::
WebSpeechSynthesisUtterance
& utterance)
77
void WebSpeechSynthesizerClientImpl::wordBoundaryEventOccurred(const blink::
WebSpeechSynthesisUtterance
& utterance, unsigned charIndex)
82
void WebSpeechSynthesizerClientImpl::sentenceBoundaryEventOccurred(const blink::
WebSpeechSynthesisUtterance
& utterance, unsigned charIndex)
/external/chromium_org/chrome/renderer/
tts_dispatcher.h
44
virtual void speak(const blink::
WebSpeechSynthesisUtterance
& utterance)
50
blink::
WebSpeechSynthesisUtterance
FindUtterance(int utterance_id);
73
base::hash_map<int, blink::
WebSpeechSynthesisUtterance
> utterance_id_map_;
tts_dispatcher.cc
13
#include "third_party/WebKit/public/platform/
WebSpeechSynthesisUtterance
.h"
20
using blink::
WebSpeechSynthesisUtterance
;
60
void TtsDispatcher::speak(const
WebSpeechSynthesisUtterance
& web_utterance) {
88
WebSpeechSynthesisUtterance
TtsDispatcher::FindUtterance(int utterance_id) {
89
base::hash_map<int,
WebSpeechSynthesisUtterance
>::const_iterator iter =
92
return
WebSpeechSynthesisUtterance
();
113
WebSpeechSynthesisUtterance
utterance = FindUtterance(utterance_id);
121
WebSpeechSynthesisUtterance
utterance = FindUtterance(utterance_id);
130
WebSpeechSynthesisUtterance
utterance = FindUtterance(utterance_id);
138
WebSpeechSynthesisUtterance
utterance = FindUtterance(utterance_id)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesizer.cpp
32
#include "public/platform/
WebSpeechSynthesisUtterance
.h"
62
m_webSpeechSynthesizer->speak(blink::
WebSpeechSynthesisUtterance
(utterance));
/external/chromium_org/third_party/WebKit/Source/platform/
blink_platform.target.darwin-arm.mk
179
third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance
.cpp \
[
all
...]
blink_platform.target.darwin-mips.mk
178
third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance
.cpp \
[
all
...]
blink_platform.target.darwin-x86.mk
178
third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance
.cpp \
[
all
...]
blink_platform.target.linux-arm.mk
179
third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance
.cpp \
[
all
...]
blink_platform.target.linux-mips.mk
178
third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance
.cpp \
[
all
...]
blink_platform.target.linux-x86.mk
178
third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisUtterance
.cpp \
[
all
...]
Completed in 107 milliseconds