HomeSort by relevance Sort by last modified time
    Searched refs:speak (Results 26 - 50 of 67) sorted by null

12 3

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 135 // Always speak if the user is listening through headphones.
139 // Don't speak if the IME is connected to a password field.
147 * @param text the text to speak
149 public void speak(CharSequence text) { method in class:AccessibilityUtils
151 Log.e(TAG, "Attempted to speak when accessibility was disabled!");
157 // the screen reader to make it speak.
180 speak(text);
AccessibleInputMethodServiceProxy.java 154 * currently hovering above a key. By default this will speak the currently
172 AccessibilityUtils.getInstance().speak(text);
  /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());
  /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);
ClockBackService.java 86 /** Speak. */
230 mTts.speak(utterance, QUEUING_MODE_INTERRUPT, null);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
SmsReceivedDialog.java 73 mTts.speak(mFullBodyString, TextToSpeech.QUEUE_ADD, null);
  /external/svox/pico/compat/src/com/android/tts/compat/
SynthProxy.java 86 public int speak(SynthesisRequest request, SynthesisCallback callback) { method in class:SynthProxy
CompatTtsService.java 142 if (mNativeSynth.speak(request, callback) != TextToSpeech.SUCCESS) {
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebContextMenuClient.cpp 133 void WebContextMenuClient::speak(const String&) function in class:WebContextMenuClient
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ContextMenuClientGtk.cpp 190 void ContextMenuClient::speak(const String&) function in class:WebKit::ContextMenuClient
  /external/webkit/Tools/DumpRenderTree/
AccessibilityUIElement.h 158 JSStringRef speak();
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerActivity.java 59 * * prompt the user "speak now"
115 * if not a valid choice, speak the "invalid choice" message, begin
311 mTts.speak(getString(R.string.speak_now_tts),
510 mTts.speak(getString(R.string.no_results_tts),
541 mTts.speak(sentenceSpoken,
561 // multiple matches. Speak the choices and let
    [all...]
  /external/webkit/Source/WebCore/bindings/objc/
DOMCSS.h 252 - (NSString *)speak;
253 - (void)setSpeak:(NSString *)speak;
DOMCSS.mm 1127 - (NSString *)speak
1129 return [self getPropertyValue:@"speak"];
1132 - (void)setSpeak:(NSString *)speak
1134 [self setProperty:@"speak" value:speak priority:@""];
1139 return [self getPropertyValue:@"speak-header"];
1144 [self setProperty:@"speak-header" value:speakHeader priority:@""];
1149 return [self getPropertyValue:@"speak-numeral"];
1154 [self setProperty:@"speak-numeral" value:speakNumeral priority:@""];
1159 return [self getPropertyValue:@"speak-punctuation"]
    [all...]
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertAudio.java 55 /** Extra for message body to speak (if speech enabled in settings). */
99 // if we can speak the message text
114 mTts.speak(mMessageBody, TextToSpeech.QUEUE_FLUSH, null);
225 // Get text to speak (if enabled by user)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebContextMenuClient.mm 351 void WebContextMenuClient::speak(const String& string)
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPageProxyMac.mm 109 void WebPageProxy::speak(const String& string)
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 161 * Keys for the parameters passed with speak commands, e.g.
167 * {@link TextToSpeech#speak} and {@link TextToSpeech#synthesizeToFile} to modify
386 // keys for the parameters passed with speak commands. Hidden keys are used internally
423 * @see TextToSpeech#speak(String, int, HashMap)
433 * @see TextToSpeech#speak(String, int, HashMap)
444 * @see TextToSpeech#speak(String, int, HashMap)
454 * @see TextToSpeech#speak(String, int, HashMap)
465 * @see TextToSpeech#speak(String, int, java.util.HashMap)
662 * {@link #speak(String, int, HashMap)} will play the specified sound resource
696 * After a call to this method, subsequent calls to {@link #speak(String, int, HashMap)
797 public int speak(final String text, final int queueMode, final HashMap<String, String> params) { method in class:TextToSpeech
    [all...]
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 564 virtual void speak(const String&) { } function in class:WebCore::EmptyContextMenuClient
  /packages/apps/Settings/src/com/android/settings/tts/
TextToSpeechSettings.java 302 mTts.speak(sample, TextToSpeech.QUEUE_FLUSH, null);
  /external/webkit/Source/WebCore/css/
CSSPropertyNames.in 128 speak
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
crypto-aes.js 411 O, speak again, bright angel! for thou art\n\
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
crypto-aes.js 411 O, speak again, bright angel! for thou art\n\
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 357 void speak(const String&);

Completed in 1096 milliseconds

12 3