Home | History | Annotate | Download | only in common

Lines Matching refs:speak

28  * cursor start location and a cursor end location, and calls a speak
45 * A class containing the information needed to speak
161 * Text-to-speech object implementing speak() and stop() methods.
226 * The maximum number of characters that are short enough to speak in response
227 * to an event. For example, if the user selects "Hello", we will speak
228 * "Hello, selected", but if the user selects 1000 characters, we will speak
334 * Speak text, but if it's a single character, describe the character.
335 * @param {string} str The string to speak.
338 * @param {Object=} opt_personality Personality used to speak text.
340 cvox.ChromeVoxEditableTextBase.prototype.speak =
351 this.tts.speak(str, queueMode, opt_personality || {});
398 // - one to speak
401 this.speak((new goog.i18n.MessageFormat(cvox.ChromeVox.msgs.getMsg('dot'))
409 this.speak(cvox.ChromeVox.msgs.getMsg('Unselected'), evt.triggeredByUser);
419 this.speak(lineValue, evt.triggeredByUser);
426 this.speak(cvox.ChromeVox.msgs.getMsg('end_of_text_verbose'),
429 this.speak(cvox.ChromeVox.msgs.getMsg('end_of_text_brief'),
433 this.speak(this.value.substr(evt.start, 1),
438 this.speak(this.value.substr(Math.min(this.start, evt.start), 1),
444 this.speak(this.value.substr(Math.min(this.start, evt.start),
453 this.speak(this.value.substr(this.start, 1), evt.triggeredByUser);
454 this.speak(this.value.substr(evt.start));
457 this.speak(this.value.substr(evt.start, evt.end - evt.start),
459 this.speak(cvox.ChromeVox.msgs.getMsg('selected'));
461 this.speak(this.value.substr(this.end, evt.end - this.end),
463 this.speak(cvox.ChromeVox.msgs.getMsg('added_to_selection'));
465 this.speak(this.value.substr(evt.end, this.end - evt.end),
467 this.speak(cvox.ChromeVox.msgs.getMsg('removed_from_selection'));
469 this.speak(this.value.substr(evt.start, this.start - evt.start),
471 this.speak(cvox.ChromeVox.msgs.getMsg('added_to_selection'));
473 this.speak(this.value.substr(this.start, evt.start - this.start),
475 this.speak(cvox.ChromeVox.msgs.getMsg('removed_from_selection'));
479 this.speak(this.value.substr(evt.start, evt.end - evt.start),
481 this.speak(cvox.ChromeVox.msgs.getMsg('selected'));
497 this.speak((new goog.i18n.MessageFormat(cvox.ChromeVox.msgs.getMsg('dot'))
559 // user editing operation, so we'll have to speak feedback based only
565 // insertion/deletion at the start or at the end, just speak that character.
571 this.speak(evtValue[evtValue.length - 1], evt.triggeredByUser,
575 this.speak(evtValue[0], evt.triggeredByUser, personality);
582 this.speak(value[value.length - 1], evt.triggeredByUser, personality);
585 this.speak(value[0], evt.triggeredByUser, personality);
594 this.speak(cvox.ChromeVox.msgs.getMsg('text_deleted'),
607 // If the text is short, just speak the whole thing.
614 // that we can speak complete words, to be minimally confusing.
651 * @param {Object=} opt_personality Personality to speak the text.
672 // Speak previous word.
703 this.speak(utterance, triggeredByUser, opt_personality);
1250 this.speak(cvox.ChromeVox.msgs.getMsg('text_box_blank'), true);
1324 // last character so we speak "blank".
1328 // Otherwise, we should never speak "blank" no matter what (even if