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

1 2

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
composite_tts.js 6 * @fileoverview A composite TTS sends allows ChromeVox to use
7 * multiple TTS engines at the same time.
16 * A Composite Tts
30 * Adds a TTS engine to the composite TTS
31 * @param {cvox.TtsInterface} tts The TTS to add.
34 cvox.CompositeTts.prototype.add = function(tts) {
35 this.ttsEngines_.push(tts);
aural_style_util.js 47 * @return {number} The resulting tts property value.
55 * Conversion from an aural style property to Chrome TTS property.
86 * Conversion from an aural style value to Chrome TTS value.
117 * Converts a given aural property/value rule to a tts property/value.
120 * @return {Object} An object holding tts property and value.
131 * Converts an aural CSS style block to a TTS property object.
133 * @return {Object} The tts property object.
149 * @return {Object} The aural style, converted to tts properties.
media_widget.js 19 * @param {cvox.TtsInterface} tts The TTS object from ChromeVox.
21 cvox.ChromeVoxHTMLMediaWidget = function(mediaElem, tts){
24 this.mediaTts_ = tts;
date_widget.js 19 * @param {cvox.TtsInterface} tts The TTS object from ChromeVox.
21 cvox.ChromeVoxHTMLDateWidget = function(dateElem, tts){
46 * A handle to the ChromeVox TTS object.
50 this.dateTts_ = tts;
nav_description.js 39 * personality Optional TTS personality to use for the text.
147 cvox.ChromeVox.tts.speak.apply(cvox.ChromeVox.tts, speakArgs[i]);
time_widget.js 19 * @param {cvox.TtsInterface} tts The TTS object from ChromeVox.
21 cvox.ChromeVoxHTMLTimeWidget = function(timeElem, tts){
24 this.timeTts_ = tts;
editable_text.js 128 * @param {cvox.TtsInterface} tts A TTS object.
131 cvox.ChromeVoxEditableTextBase = function(value, start, end, isPassword, tts) {
165 this.tts = tts;
351 this.tts.speak(str, queueMode, opt_personality || {});
784 * @param {cvox.TtsInterface} tts A TTS object.
789 tts) {
790 goog.base(this, value, start, end, isPassword, tts);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
abstract_tts.js 25 * Default value for TTS properties.
40 * Min value for TTS properties.
53 * Max value for TTS properties.
66 * Step value for TTS properties.
106 * Default TTS properties for this TTS engine.
163 var tts = cvox.AbstractTts;
164 if (typeof(properties[tts.VOLUME]) == 'number') {
165 mergedProperties[tts.VOLUME] = properties[tts.VOLUME]
    [all...]
tts_interface.js 6 * @fileoverview Defines a Tts interface.
8 * All TTS engines in ChromeVox conform to the this interface.
44 * @return {cvox.TtsInterface} A tts object useful for chaining speak calls.
51 * Returns true if the TTS is currently speaking.
52 * @return {boolean} True if the TTS is speaking.
69 * Increases a TTS speech property.
79 * Returns the default properties of the first tts that has default properties.
host_factory.js 8 * cvox.Host|Tts|... creatation from the main ChromeVox code.
34 * Returns the TTS interface.
35 * @return {cvox.TtsInterface} The TTS engine.
abstract_host.js 80 * @return {boolean} True if the host has a Tts callback.
88 * @return {boolean} True if the TTS has been loaded.
  /external/svox/pico/
Android.mk 1 # SVOX Pico TTS Engine
21 $(LOCAL_PATH)/tts/Android.mk
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
tts.js 6 * @fileoverview Bridge that sends TTS messages from content scripts or
61 {'target': 'TTS',
69 {'target': 'TTS',
76 * Increases a TTS speech property.
84 {'target': 'TTS',
108 * Creates a message suitable for sending as a speak action to background tts.
118 var message = {'target': 'TTS',
tts_background.js 6 * @fileoverview Sends Text-To-Speech commands to Chrome's native TTS
110 * This is important for tts prosity.
142 * Capturing tts event listeners.
193 * The list of properties allowed to be passed to the chrome.tts.speak API.
251 // TODO(dtseng): Google TTS has bad performance when speaking numbers. This
255 // TODO(dtseng): Google TTS flushes the queue when encountering strings of
342 // There is no voice to speak with (e.g. the tts system has not fully
363 chrome.tts.speak(this.currentUtterance_.textString,
372 * @param {Object} event The TTS event from chrome.
488 chrome.tts.stop()
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/testing/
tts.js 6 * @fileoverview Dummy implementation of TTS for testing.
43 // 'After' is a sentinel value in the tests that tells TTS to stop and
54 * Creates a sentinel element that indicates when TTS should stop and callbacks
66 * All calls to tts.speak are saved in an array of utterances.
74 * Return a string of what was spoken by tts.speak().
85 * Return a list of strings of what was spoken by tts.speak().
98 * Return a list of strings of what was spoken by tts.speak().
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
console_tts.js 6 * @fileoverview A TTS engine that writes to window.console.
20 * True if the console TTS is enabled by the user.
init_document.js 48 cvox.ChromeVox.recallInit_('ChromeVox not starting; waiting for TTS. ' +
user_commands.js 95 cvox.ChromeVox.tts.stop();
472 cvox.ChromeVox.tts.stop();
489 // TODO(stoarca): Should this have tts.stop()??
496 cvox.ChromeVox.tts.stop();
503 cvox.ChromeVox.tts.stop();
521 cvox.ChromeVox.tts.speak(url);
523 cvox.ChromeVox.tts.speak(cvox.ChromeVox.msgs.getMsg('no_url_found'));
527 cvox.ChromeVox.tts.speak(document.title);
530 cvox.ChromeVox.tts.speak(document.URL);
571 cvox.ChromeVox.tts.speak
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
tabs_api_handler.js 22 * @param {cvox.TtsInterface} tts The TTS to use for speaking.
28 cvox.TabsApiHandler = function(tts, braille, earcons) {
30 this.tts_ = tts;
background.js 47 * Initialize the background page: set up TTS and bridge listeners.
67 * Chrome's actual TTS which knows and cares about pitch, volume, etc.
76 this.tts = new cvox.CompositeTts()
91 this.tts, this.backgroundBraille_, this.earcons);
93 this.tts, this.backgroundBraille_, this.earcons);
96 cvox.ChromeVox.tts = this.tts;
143 this.tts.speak(cvox.ChromeVox.msgs.getMsg('chromevox_inactive'), 1);
146 this.tts.speak(cvox.ChromeVox.msgs.getMsg('chromevox_intro'), 1);
198 this.tts.speak('Error starting ChromeVox for '
    [all...]
accessibility_api_handler.js 39 * @param {cvox.TtsInterface} tts The TTS to use for speaking.
45 cvox.AccessibilityApiHandler = function(tts, braille, earcons) {
46 this.tts = tts;
56 * Array of strings to speak the next time TTS is idle.
79 cvox.AccessibilityApiHandler.prototype.tts = null;
200 this.tts.speak(win.name,
225 this.tts.speak(msg('chrome_menu_opened', [menu.name]),
282 this.tts.speak
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/testing/
chromevox_unittest_base.js 151 * Asserts the TTS engine spoke a certain string. Clears the TTS buffer.
  /external/chromium_org/chrome/browser/resources/network_speech_synthesis/
tts_extension.js 7 * This is a component extension that implements a text-to-speech (TTS)
116 // Truncate the utterance if it's too long. Both Chrome's tts
195 * TTS client.
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioSystemLegacy.h 83 TTS = 9,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/speech_rules/
base_rule_store.js 59 * List of TTS properties overridden by the store when it is active.

Completed in 160 milliseconds

1 2