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

1 2

  /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/platform/exported/
WebSpeechSynthesizerClientImpl.cpp 43 void WebSpeechSynthesizerClientImpl::setVoiceList(const WebVector<WebSpeechSynthesisVoice>& voices)
46 for (size_t i = 0; i < voices.size(); i++)
47 outVoices.append(voices[i]);
WebSpeechSynthesizerClientImpl.h 45 virtual void setVoiceList(const WebVector<WebSpeechSynthesisVoice>& voices);
  /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/browser/speech/
tts_message_filter.cc 67 std::vector<VoiceData> voices; local
68 tts_controller->GetVoices(browser_context_, &voices);
71 out_voices.resize(voices.size());
72 for (size_t i = 0; i < voices.size(); ++i) {
74 out_voice.voice_uri = voices[i].name;
75 out_voice.name = voices[i].name;
76 out_voice.lang = voices[i].lang;
77 out_voice.local_service = !voices[i].remote;
tts_controller_impl.cc 154 // Ensure we have all built-in voices loaded. This is a no-op if already
159 // Get all available voices and try to find a matching voice.
160 std::vector<VoiceData> voices; local
161 GetVoices(utterance->browser_context(), &voices);
162 int index = GetMatchingVoice(utterance, voices);
167 voice = voices[index];
169 // However, if no match was found on a platform without native tts voices,
177 if (native_voices.empty() && !voices.empty()) {
184 index = GetMatchingVoice(utterance, voices);
189 voice = voices[index]
    [all...]
tts_controller_impl.h 75 // Given an utterance and a vector of voices, return the
78 std::vector<VoiceData>& voices);
91 // A set of delegates that want to be notified when the voices change.
  /external/chromium_org/chrome/renderer/
tts_dispatcher.cc 96 void TtsDispatcher::OnSetVoiceList(const std::vector<TtsVoice>& voices) {
97 WebVector<WebSpeechSynthesisVoice> out_voices(voices.size());
98 for (size_t i = 0; i < voices.size(); ++i) {
100 out_voices[i].setVoiceURI(WebString::fromUTF8(voices[i].voice_uri));
101 out_voices[i].setName(WebString::fromUTF8(voices[i].name));
102 out_voices[i].setLanguage(WebString::fromUTF8(voices[i].lang));
103 out_voices[i].setIsLocalService(voices[i].local_service);
104 out_voices[i].setIsDefault(voices[i].is_default);
tts_dispatcher.h 52 void OnSetVoiceList(const std::vector<TtsVoice>& voices);
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesizer.cpp 83 void PlatformSpeechSynthesizer::setVoiceList(HeapVector<Member<PlatformSpeechSynthesisVoice> >& voices)
85 m_voiceList = voices;
  /external/chromium_org/chrome/common/extensions/api/speech/
tts_engine_manifest_handler.cc 27 std::vector<extensions::TtsVoice> voices; member in struct:extensions::__anon10268::TtsVoices
41 return info ? &info->voices : NULL;
140 info->voices.push_back(voice_data);
  /external/chromium_org/chrome/browser/resources/network_speech_synthesis/
tts_extension.js 12 * request and the parameters match one of the voices in this extension's
81 // Get voices from manifest.
82 var voices = chrome.app.getDetails().tts_engine.voices;
83 for (var i = 0; i < voices.length; i++) {
84 this.voiceNameToLangAndGender_[voices[i].voice_name] = {
85 lang: voices[i].lang,
86 gender: voices[i].gender
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 365 * available voices. The format of each voice is: lang-COUNTRY-variant where COUNTRY and
368 * unavailable voices (ones that user can install). The format of each voice is:
405 * the TextToSpeech engine returns an ArrayList<String> of all the available voices.
413 * the TextToSpeech engine returns an ArrayList<String> of all the unavailable voices.
455 * check for by sending an ArrayList<String> of the voices that are of interest.
474 * changed, is should send ACTION_CHECK_TTS_DATA intent to discover available voices.
    [all...]
  /external/chromium_org/chrome/browser/speech/extension_api/
tts_extension_api.cc 311 std::vector<VoiceData> voices; local
312 TtsController::GetInstance()->GetVoices(GetProfile(), &voices); local
315 for (size_t i = 0; i < voices.size(); ++i) {
316 const VoiceData& voice = voices[i];
tts_extension_apitest.cc 71 void GetVoices(std::vector<VoiceData>* voices) {
81 voices->push_back(voice);
  /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;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
options.js 327 * Populates the voices select with options.
330 var select = $('voices');
334 chrome.tts.getVoices(function(voices) {
335 voices.forEach(function(voice) {
  /bionic/libc/kernel/uapi/sound/
asequencer.h 436 unsigned int voices; member in struct:snd_seq_port_subscribe
  /external/kernel-headers/original/uapi/sound/
asequencer.h 454 int midi_voices; /* voices per MIDI port */
455 int synth_voices; /* voices per SYNTH port */
545 unsigned int voices; /* number of voices to be allocated (0 = don't care) */ member in struct:snd_seq_port_subscribe

Completed in 6292 milliseconds

1 2