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/core/platform/
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
37
static PassRefPtr<PlatformSpeechSynthesisVoice> create(const String&
voiceURI
, const String& name, const String& lang, bool localService, bool isDefault);
40
const String&
voiceURI
() const { return m_voiceURI; }
41
void setVoiceURI(const String&
voiceURI
) { m_voiceURI =
voiceURI
; }
56
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
42
const String&
voiceURI
() const { return m_platformVoice->
voiceURI
(); }
SpeechSynthesisVoice.idl
30
readonly attribute DOMString
voiceURI
;
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebSpeechSynthesisVoice.cpp
51
void WebSpeechSynthesisVoice::setVoiceURI(const WebString&
voiceURI
)
53
m_private->setVoiceURI(
voiceURI
);
Completed in 151 milliseconds