Home | History | Annotate | Download | only in tts

Lines Matching defs:engines

53  * Support class for querying the list of available engines
56 * Comments in this class the use the shorthand "system engines" for engines that
122 * if no TTS engines were present in the system image.
125 final List<EngineInfo> engines = getEngines();
127 if (engines.size() > 0 && engines.get(0).system) {
128 return engines.get(0).name;
135 * Returns the engine info for a given engine name. Note that engines are
155 * Gets a list of all installed TTS engines.
166 List<EngineInfo> engines = new ArrayList<EngineInfo>(resolveInfos.size());
171 engines.add(engine);
174 Collections.sort(engines, EngineInfoComparator.INSTANCE);
176 return engines;
223 * The name of the XML tag that text to speech engines must use to
283 // multiple engines in the same package, but that's what the existing API does.
302 * Engines that are a part of the system image are always lesser
303 * than those that are not. Within system engines / non system engines
304 * the engines are sorted in order of their declared priority.
313 // Either both system engines, or both non system
314 // engines.