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

1 2 3

  /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 void speak(SpeechSynthesisUtterance utterance);
SpeechSynthesis.h 52 void speak(SpeechSynthesisUtterance*);
SpeechSynthesis.cpp 99 m_platformSpeechSynthesizer->speak(utterance->platformUtterance());
102 void SpeechSynthesis::speak(SpeechSynthesisUtterance* utterance) function in class:WebCore::SpeechSynthesis
106 // If the queue was empty, speak this immediately and add it to the queue.
  /external/chromium_org/third_party/WebKit/Source/core/platform/mock/
PlatformSpeechSynthesizerMock.h 40 virtual void speak(PassRefPtr<PlatformSpeechSynthesisUtterance>);
PlatformSpeechSynthesizerMock.cpp 65 void PlatformSpeechSynthesizerMock::speak(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance) function in class:WebCore::PlatformSpeechSynthesizerMock
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
PlatformSpeechSynthesizerChromium.cpp 62 void PlatformSpeechSynthesizer::speak(PassRefPtr<PlatformSpeechSynthesisUtterance> utterance) function in class:WebCore::PlatformSpeechSynthesizer
67 m_webSpeechSynthesizer->speak(WebKit::WebSpeechSynthesisUtterance(utterance));
  /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/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 40 virtual void speak(const WebKit::WebSpeechSynthesisUtterance& utterance)
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformSpeechSynthesizer.h 67 virtual void speak(PassRefPtr<PlatformSpeechSynthesisUtterance>);
  /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/third_party/WebKit/Source/core/rendering/style/
StyleRareInheritedData.cpp 72 , speak(SpeakNormal)
126 , speak(o.speak)
196 && speak == o.speak
StyleRareInheritedData.h 91 unsigned speak : 3; // ESpeak
  /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 29 // Balanced in 'speak' handler.
43 apiFunctions.setHandleRequest('speak', function() {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
TtsPlatformImpl.java 161 * @param text The text to speak.
169 private boolean speak(int utteranceId, String text, String lang, method in class:TtsPlatformImpl
184 int result = mTextToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, params);
  /frameworks/base/core/java/android/speech/tts/
ITextToSpeechService.aidl 40 int speak(in IBinder callingInstance, in String text, in int queueMode, in Bundle params);
132 * string array can be passed in as keys to {@link TextToSpeech#speak} and
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java 72 int result = getTts().speak(UTTERANCE, TextToSpeech.QUEUE_FLUSH, createParams());
73 assertEquals("speak() failed", TextToSpeech.SUCCESS, result);
74 assertTrue("speak() completion timeout", waitForUtterance());
TextToSpeechTest.java 104 int result = getTts().speak(SAMPLE_TEXT, TextToSpeech.QUEUE_FLUSH, createParams());
105 assertEquals("speak() failed", TextToSpeech.SUCCESS, result);
106 assertTrue("speak() completion timeout", waitForUtterance());
  /frameworks/base/policy/src/com/android/internal/policy/impl/
EnableAccessibilityController.java 62 mTts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
66 mTts.speak(text, TextToSpeech.QUEUE_FLUSH, null);
71 mTts.speak(mContext.getString(R.string.accessibility_enabled),
  /external/chromium_org/v8/test/mjsunit/
regexp-results-cache.js 41 Come I to speak in Caesar's funeral. \
57 I speak not to disprove what Brutus spoke, \
58 But here I am to speak what I do know. \
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 44 /** The class name of TaskListView - for simplicity we speak only its items. */
65 * putting together a message to speak to the user.
139 mTts.speak(utterance.toString(), TextToSpeech.QUEUE_FLUSH, null);

Completed in 338 milliseconds

1 2 3