OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:voiceName
(Results
1 - 11
of
11
) sorted by null
/external/svox/pico/lib/
picorsrc.h
138
picoos_char *
voiceName
);
142
picoos_char *
voiceName
);
145
picoos_char *
voiceName
, picoos_char * resourceName);
174
pico_status_t picorsrc_createVoice(picorsrc_ResourceManager this, const picoos_char *
voiceName
, picorsrc_Voice * voice);
picoapi.h
318
const pico_Char *
voiceName
322
Adds a mapping pair ('
voiceName
', 'resourceName') to the voice
324
When calling 'pico_newEngine' with '
voiceName
', the corresponding
329
const pico_Char *
voiceName
,
335
Releases the voice definition '
voiceName
'.
340
const pico_Char *
voiceName
353
const pico_Char *
voiceName
,
picorsrc.c
170
picoos_char
voiceName
[PICO_MAX_VOICE_NAME_SIZE];
183
this->
voiceName
[0] = NULLC;
792
const picoos_char *
voiceName
, picorsrc_VoiceDefinition * vdef)
795
PICODBG_DEBUG(("finding voice name %s",
voiceName
));
800
while (NULL != v && (0 != picoos_strcmp(v->
voiceName
,
voiceName
))) {
801
PICODBG_DEBUG(("%s doesnt match",v->
voiceName
));
806
PICODBG_DEBUG(("didnt find voice name %s",
voiceName
));
808
PICODBG_DEBUG(("found voice name %s",
voiceName
));
815
picoos_char *
voiceName
, picoos_char * resourceName
[
all
...]
picoapi.c
401
* @param *
voiceName
: pointer to the area to receive the voice definition
409
const pico_Char *
voiceName
416
} else if (
voiceName
== NULL) {
418
} else if (picoos_strlen((picoos_char *)
voiceName
) == 0) {
422
status = picorsrc_createVoiceDefinition(system->rm, (picoos_char *)
voiceName
);
431
* @param *
voiceName
: pointer to the area containing the voice definition
440
const pico_Char *
voiceName
,
448
} else if (
voiceName
== NULL) {
450
} else if (picoos_strlen((picoos_char *)
voiceName
) == 0) {
458
status = picorsrc_addResourceToVoiceDefinition(system->rm, (picoos_char *)
voiceName
, (picoos_char *) resourceName)
[
all
...]
picoctrl.h
56
const picoos_char *
voiceName
picoctrl.c
567
* @param
voiceName
: voice definition to be used for this engine
575
picorsrc_ResourceManager rm, const picoos_char *
voiceName
) {
585
PICODBG_DEBUG(("creating engine for voice '%s'",
voiceName
));
617
done = (PICO_OK == picorsrc_createVoice(rm,
voiceName
,&(this->voice)));
/frameworks/base/core/java/android/speech/tts/
SynthesisRequest.java
146
void setVoiceName(String
voiceName
) {
147
mVoiceName =
voiceName
;
TextToSpeechService.java
298
String
voiceName
= onGetDefaultVoiceNameFor(locale.getISO3Language(),
300
voices.add(new Voice(
voiceName
, locale, Voice.QUALITY_NORMAL,
339
String
voiceName
= properLocale.toLanguageTag();
340
if (onIsValidVoiceName(
voiceName
) == TextToSpeech.SUCCESS) {
341
return
voiceName
;
359
* @param
voiceName
Name of the voice.
362
public int onLoadVoice(String
voiceName
) {
363
Locale locale = Locale.forLanguageTag(
voiceName
);
390
* @param
voiceName
Name of the voice.
393
public int onIsValidVoiceName(String
voiceName
) {
[
all
...]
ITextToSpeechService.aidl
188
* @param
voiceName
Unique voice of the name.
191
int loadVoice(in IBinder caller, in String
voiceName
);
TextToSpeech.java
499
public static final String KEY_PARAM_VOICE_NAME = "
voiceName
";
[
all
...]
/prebuilts/sdk/21/
android.jar
Completed in 697 milliseconds