OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:voiceURI
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisVoice.cpp
31
PassRefPtr<PlatformSpeechSynthesisVoice> PlatformSpeechSynthesisVoice::create(const String&
voiceURI
, const String& name, const String& lang, bool localService, bool isDefault)
33
return adoptRef(new PlatformSpeechSynthesisVoice(
voiceURI
, name, lang, localService, isDefault));
41
PlatformSpeechSynthesisVoice::PlatformSpeechSynthesisVoice(const String&
voiceURI
, const String& name, const String& lang, bool localService, bool isDefault)
42
: m_voiceURI(
voiceURI
)
PlatformSpeechSynthesisVoice.h
38
static PassRefPtr<PlatformSpeechSynthesisVoice> create(const String&
voiceURI
, const String& name, const String& lang, bool localService, bool isDefault);
41
const String&
voiceURI
() const { return m_voiceURI; }
42
void setVoiceURI(const String&
voiceURI
) { m_voiceURI =
voiceURI
; }
57
PlatformSpeechSynthesisVoice(const String&
voiceURI
, const String& name, const String& lang, bool localService, bool isDefault);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisVoice.h
41
const String&
voiceURI
() const { return m_platformVoice->
voiceURI
(); }
SpeechSynthesisVoice.idl
30
readonly attribute DOMString
voiceURI
;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisVoice.cpp
50
void WebSpeechSynthesisVoice::setVoiceURI(const WebString&
voiceURI
)
52
m_private->setVoiceURI(
voiceURI
);
Completed in 392 milliseconds