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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/public/platform/
WebSpeechSynthesizer.h 43 virtual void speak(const WebSpeechSynthesisUtterance&) = 0;
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.idl 34 [RaisesException] void speak(SpeechSynthesisUtterance utterance);
SpeechSynthesis.h 53 void speak(SpeechSynthesisUtterance*, ExceptionState&);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
background.js 18 function speak(utterance) { function
35 chrome.tts.speak(
70 } else if (request['speak']) {
71 speak(request['speak']);
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/talking_alarm_clock/
common.js 123 function speak(text) { function
128 chrome.tts.speak(
145 speak(utterance);
  /external/chromium_org/third_party/WebKit/Source/modules/speech/testing/
PlatformSpeechSynthesizerMock.h 40 virtual void speak(PlatformSpeechSynthesisUtterance*) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesizer.cpp 57 void PlatformSpeechSynthesizer::speak(PlatformSpeechSynthesisUtterance* utterance) function in class:blink::PlatformSpeechSynthesizer
62 m_webSpeechSynthesizer->speak(blink::WebSpeechSynthesisUtterance(utterance));
PlatformSpeechSynthesizer.h 67 virtual void speak(PlatformSpeechSynthesisUtterance*);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
initial_speech.js 29 cvox.InitialSpeech.speak = function() { function
30 // Don't speak page title and other information if this script is not injected
38 // If we're the top-level frame, speak the title of the page +
51 cvox.ChromeVox.tts.speak(
57 // Initialize live regions and speak alerts.
63 // called until AbstractHost.onPageLoad, but we need to speak and braille the
76 // If this iframe has focus, speak and braille the current focused element.
navigation_speaker.js 38 * Speak all of the NavDescriptions in the given array (as returned by
42 * NavDescriptions to speak.
83 description.speak(queueMode, startCallback, endCallback);
122 * NavDescriptions to speak.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/testing/
tts.js 39 cvox.TestTts.prototype.speak = function(text, queueMode, opt_properties) {
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/common/extensions/docs/examples/extensions/ttsdemo/
ttsdemo.js 45 function speak(str, options, highlightText) { function
87 chrome.tts.speak(
106 speak(text.value, options, true);
  /external/chromium_org/chrome/browser/resources/chromeos/
keyboard_overlay_accessibility_helper.js 37 cvox.Api.speak(keysText, 1, {});
38 cvox.Api.speak(shortcutText, 1, {});
  /external/chromium_org/chrome/renderer/
tts_dispatcher.h 44 virtual void speak(const blink::WebSpeechSynthesisUtterance& utterance)
  /external/speex/libspeex/
mdf.c 694 int i,j, chan, speak; local
752 for (speak = 0; speak < K; speak++)
757 st->x[speak*N+i] = st->x[speak*N+i+st->frame_size];
758 tmp32 = SUB32(EXTEND32(far_end[i*K+speak]), EXTEND32(MULT16_16_P15(st->preemph, st->memX[speak])));
772 st->x[speak*N+i+st->frame_size] = EXTRACT16(tmp32);
773 st->memX[speak] = far_end[i*K+speak]
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
TtsPlatformImpl.java 50 private void speak() { method in class:TtsPlatformImpl.PendingUtterance
51 mImpl.speak(mUtteranceId, mText, mLang, mRate, mPitch, mVolume);
192 * @param text The text to speak.
200 private boolean speak(int utteranceId, String text, String lang, method in class:TtsPlatformImpl
221 int result = mTextToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, params);
273 if (mPendingUtterance != null) mPendingUtterance.speak();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.cpp 78 , speak(SpeakNormal)
134 , speak(o.speak)
198 && speak == o.speak
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
editable_text.js 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
    [all...]
composite_tts.js 43 cvox.CompositeTts.prototype.speak =
46 engine.speak(textString, queueMode, properties);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
tts.js 40 cvox.ChromeTts.prototype.speak = function(textString, queueMode, properties) {
45 goog.base(this, 'speak', textString, queueMode, properties);
108 * Creates a message suitable for sending as a speak action to background tts.
119 'action': 'speak',
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
results.js 26 * @param {Array} selectTexts Array of selectors or text to speak.
38 cvox.ChromeVox.tts.speak(selectText.text, 1);
73 * Speak a normal search result.
78 cvox.NormalResult.prototype.speak = function(result) {
130 * Speak a weather forecast.
152 * Speak a weather search result.
157 cvox.WeatherResult.prototype.speak = function(result) {
194 cvox.ChromeVox.tts.speak(FORE_INTRO, 1);
223 * Speak a knowledge panel search result.
228 cvox.KnowResult.prototype.speak = function(result)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
TextToSpeechActivity.java 38 * <li>Call TextToSpeech.speak to synthesize speech.</li>
106 // Allow the user to press the button for the app to speak again.
131 mTts.speak(hello,
  /external/chromium_org/chrome/renderer/resources/extensions/
tts_custom_bindings.js 28 // Balanced in 'speak' handler.
42 apiFunctions.setHandleRequest('speak', function() {
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
tabs_api_handler.js 54 this.tts_.speak(this.msg_('chrome_tab_created'),
86 this.tts_.speak(this.msg_('chrome_tab_selected',
133 this.tts_.speak(this.msg_(msgId, [title]),
kbexplorer.js 37 chrome.extension.getBackgroundPage()['speak'](

Completed in 1150 milliseconds

1 2 3 4 5