OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_voiceList
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
PlatformSpeechSynthesizerMock.cpp
62
m_voiceList
.clear();
63
m_voiceList
.append(PlatformSpeechSynthesisVoice::create(String("mock.voice.bruce"), String("bruce"), String("en-US"), true, true));
64
m_voiceList
.append(PlatformSpeechSynthesisVoice::create(String("mock.voice.clark"), String("clark"), String("en-US"), true, false));
65
m_voiceList
.append(PlatformSpeechSynthesisVoice::create(String("mock.voice.logan"), String("logan"), String("fr-CA"), true, true));
/external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesizer.h
68
const Vector<RefPtr<PlatformSpeechSynthesisVoice> >& voiceList() const { return
m_voiceList
; }
81
Vector<RefPtr<PlatformSpeechSynthesisVoice> >
m_voiceList
;
PlatformSpeechSynthesizer.cpp
85
m_voiceList
= voices;
/external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.cpp
62
m_voiceList
.clear();
69
if (
m_voiceList
.size())
70
return
m_voiceList
;
76
m_voiceList
.append(SpeechSynthesisVoice::create(platformVoices[k]));
78
return
m_voiceList
;
SpeechSynthesis.h
90
Vector<RefPtr<SpeechSynthesisVoice> >
m_voiceList
;
Completed in 31 milliseconds