HomeSort by relevance Sort by last modified time
    Searched refs:voices (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformSpeechSynthesizer.cpp 38 void PlatformSpeechSynthesizer::setVoiceList(Vector<RefPtr<PlatformSpeechSynthesisVoice> >& voices)
40 m_voiceList = voices;
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdemo/
ttsdemo.js 12 var voices; variable
23 voices = document.getElementById('voices');
32 voices.appendChild(opt);
35 voices.addEventListener('change', function() {
36 var i = voices.selectedIndex - 1;
52 var voiceIndex = voices.selectedIndex - 1;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebSpeechSynthesizerClientImpl.cpp 43 void WebSpeechSynthesizerClientImpl::setVoiceList(const WebKit::WebVector<WebKit::WebSpeechSynthesisVoice>& voices)
46 for (size_t i = 0; i < voices.size(); i++)
47 outVoices.append(PassRefPtr<PlatformSpeechSynthesisVoice>(voices[i]));
WebSpeechSynthesizerClientImpl.h 46 virtual void setVoiceList(const WebKit::WebVector<WebKit::WebSpeechSynthesisVoice>& voices);
  /external/chromium_org/chrome/browser/speech/
tts_message_filter.cc 56 std::vector<VoiceData> voices; local
57 tts_controller->GetVoices(profile_, &voices);
60 out_voices.resize(voices.size());
61 for (size_t i = 0; i < voices.size(); ++i) {
63 out_voice.voice_uri = voices[i].name;
64 out_voice.name = voices[i].name;
65 out_voice.lang = voices[i].lang;
tts_controller.cc 152 // Get all available voices and try to find a matching voice.
153 std::vector<VoiceData> voices; local
154 GetVoices(utterance->profile(), &voices);
155 int index = GetMatchingVoice(utterance, voices);
162 if (index >= 0 && index < static_cast<int>(voices.size()))
163 voice = voices[index];
344 const Utterance* utterance, std::vector<VoiceData>& voices) {
349 for (size_t i = 0; i < voices.size(); ++i) {
350 const VoiceData& voice = voices[i];
tts_controller.h 86 // voices has changed.
276 // Return a list of all available voices, including the native voice,
277 // if supported, and all voices registered by extensions.
285 // list of voices may have changed and should be re-queried.
288 // Add a delegate that wants to be notified when the set of voices changes.
291 // Remove delegate that wants to be notified when the set of voices changes.
320 // Given an utterance and a vector of voices, return the
323 std::vector<VoiceData>& voices);
336 // A set of delegates that want to be notified when the voices change.
  /external/sonivox/arm-fm-22k/lib_src/
eas_voicemgt.c 200 /* ignore muting voices */
233 /* ignore muting voices */
298 InitVoice(&pVoiceMgr->voices[i]);
420 * We also force all voices to mute quickly.
422 * is, we do not ramp the voices down from this routine, but instead, we
424 * down samples to the output buffer. After we are sure that all voices
430 * force - force reset even if voices are active
436 * - force all voices to update their envelope states to mute
447 /* force voices to off state - may cause audio artifacts */
457 /* don't reset if voices are still playing *
    [all...]
eas_fmengine.c 48 static S_FM_ENG_VOICE voices[NUM_FM_VOICES]; variable
495 pVoice = &voices[voiceNum];
564 p = &voices[voiceNum];
eas_synth.h 96 /* use the following values to specify unassigned channels or voices */
125 /* drum channel can simultaneously play this many voices at most */
197 /* parameters shared by multiple voices assigned to same channel */
224 EAS_U8 channelPressure; /* applied to all voices on a given channel */
362 S_SYNTH_VOICE voices[MAX_SYNTH_VOICES]; member in struct:s_voice_mgr_tag
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_voicemgt.c 200 /* ignore muting voices */
233 /* ignore muting voices */
298 InitVoice(&pVoiceMgr->voices[i]);
420 * We also force all voices to mute quickly.
422 * is, we do not ramp the voices down from this routine, but instead, we
424 * down samples to the output buffer. After we are sure that all voices
430 * force - force reset even if voices are active
436 * - force all voices to update their envelope states to mute
447 /* force voices to off state - may cause audio artifacts */
457 /* don't reset if voices are still playing *
    [all...]
eas_fmengine.c 48 static S_FM_ENG_VOICE voices[NUM_FM_VOICES]; variable
495 pVoice = &voices[voiceNum];
564 p = &voices[voiceNum];
eas_synth.h 96 /* use the following values to specify unassigned channels or voices */
125 /* drum channel can simultaneously play this many voices at most */
197 /* parameters shared by multiple voices assigned to same channel */
224 EAS_U8 channelPressure; /* applied to all voices on a given channel */
362 S_SYNTH_VOICE voices[MAX_SYNTH_VOICES]; member in struct:s_voice_mgr_tag
  /external/sonivox/arm-wt-22k/lib_src/
eas_voicemgt.c 200 /* ignore muting voices */
233 /* ignore muting voices */
298 InitVoice(&pVoiceMgr->voices[i]);
420 * We also force all voices to mute quickly.
422 * is, we do not ramp the voices down from this routine, but instead, we
424 * down samples to the output buffer. After we are sure that all voices
430 * force - force reset even if voices are active
436 * - force all voices to update their envelope states to mute
447 /* force voices to off state - may cause audio artifacts */
457 /* don't reset if voices are still playing *
    [all...]
  /external/chromium_org/chrome/renderer/
tts_dispatcher.cc 95 void TtsDispatcher::OnSetVoiceList(const std::vector<TtsVoice>& voices) {
96 WebVector<WebSpeechSynthesisVoice> out_voices(voices.size());
97 for (size_t i = 0; i < voices.size(); ++i) {
99 out_voices[i].setVoiceURI(WebString::fromUTF8(voices[i].voice_uri));
100 out_voices[i].setName(WebString::fromUTF8(voices[i].name));
101 out_voices[i].setLanguage(WebString::fromUTF8(voices[i].lang));
102 out_voices[i].setIsLocalService(voices[i].local_service);
103 out_voices[i].setIsDefault(voices[i].is_default);
tts_dispatcher.h 48 void OnSetVoiceList(const std::vector<TtsVoice>& voices);
  /external/chromium_org/chrome/common/extensions/api/speech/
tts_engine_manifest_handler.cc 25 std::vector<extensions::TtsVoice> voices; member in struct:__anon9096::TtsVoices
40 return info ? &info->voices : NULL;
131 info->voices.push_back(voice_data);
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_api.cc 302 std::vector<VoiceData> voices; local
303 TtsController::GetInstance()->GetVoices(profile(), &voices); local
306 for (size_t i = 0; i < voices.size(); ++i) {
307 const VoiceData& voice = voices[i];
  /external/qemu/distrib/sdl-1.2.15/src/audio/nto/
SDL_nto_audio.c 129 cpars->format.voices = DEFAULT_CPARAMS_VOICES;
441 cparams.format.voices = spec->channels;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emux_synth.h 79 #define SNDRV_EMUX_MAX_VOICES 64 /* max # of voices */
80 #define SNDRV_EMUX_MAX_MULTI_VOICES 16 /* max # of playable voices
97 int max_voices; /* Number of voices */
111 int num_voices; /* current number of voices */
113 struct snd_emux_voice *voices; /* Voices (EMU 'channel') */ member in struct:snd_emux
opl3.h 15 * a bit mask defining which voices are used as 4 OP voices.
31 * even be left unconnected. This works with 4 OP voices also.
34 * register of the voice (0xC0-0xC8). In 4 OP voices these bits are
151 * Offsets to the register banks for voices. Just add to the
171 * to the stereo channels. For 4 OP voices this bit is
175 * For 4 OP voices the connection bit is used in the
285 unsigned char max_voices; /* max number of voices */
287 #define SNDRV_OPL3_MODE_SYNTH 0 /* OSS - voices allocated by application */
303 struct snd_opl3_voice voices[MAX_OPL3_VOICES]; /* Voices (OPL3 'channel') * member in struct:snd_opl3
    [all...]
ymfpci.h 271 struct snd_ymfpci_voice *voices[2]; /* playback only */ member in struct:snd_ymfpci_pcm
327 struct snd_ymfpci_voice voices[64]; member in struct:snd_ymfpci
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
emux_synth.h 79 #define SNDRV_EMUX_MAX_VOICES 64 /* max # of voices */
80 #define SNDRV_EMUX_MAX_MULTI_VOICES 16 /* max # of playable voices
97 int max_voices; /* Number of voices */
111 int num_voices; /* current number of voices */
113 struct snd_emux_voice *voices; /* Voices (EMU 'channel') */ member in struct:snd_emux
opl3.h 15 * a bit mask defining which voices are used as 4 OP voices.
31 * even be left unconnected. This works with 4 OP voices also.
34 * register of the voice (0xC0-0xC8). In 4 OP voices these bits are
151 * Offsets to the register banks for voices. Just add to the
171 * to the stereo channels. For 4 OP voices this bit is
175 * For 4 OP voices the connection bit is used in the
285 unsigned char max_voices; /* max number of voices */
287 #define SNDRV_OPL3_MODE_SYNTH 0 /* OSS - voices allocated by application */
303 struct snd_opl3_voice voices[MAX_OPL3_VOICES]; /* Voices (OPL3 'channel') * member in struct:snd_opl3
    [all...]
ymfpci.h 271 struct snd_ymfpci_voice *voices[2]; /* playback only */ member in struct:snd_ymfpci_pcm
327 struct snd_ymfpci_voice voices[64]; member in struct:snd_ymfpci

Completed in 1453 milliseconds

1 2