OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_platformUtterance
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisUtterance.h
46
const String& text() const { return
m_platformUtterance
->text(); }
47
void setText(const String& text) {
m_platformUtterance
->setText(text); }
49
const String& lang() const { return
m_platformUtterance
->lang(); }
50
void setLang(const String& lang) {
m_platformUtterance
->setLang(lang); }
55
float volume() const { return
m_platformUtterance
->volume(); }
56
void setVolume(float volume) {
m_platformUtterance
->setVolume(volume); }
58
float rate() const { return
m_platformUtterance
->rate(); }
59
void setRate(float rate) {
m_platformUtterance
->setRate(rate); }
61
float pitch() const { return
m_platformUtterance
->pitch(); }
62
void setPitch(float pitch) {
m_platformUtterance
->setPitch(pitch);
[
all
...]
SpeechSynthesisUtterance.cpp
38
,
m_platformUtterance
(PlatformSpeechSynthesisUtterance::create(this))
40
m_platformUtterance
->setText(text);
69
m_platformUtterance
->setVoice(voice->platformVoice());
74
visitor->trace(
m_platformUtterance
);
Completed in 116 milliseconds