HomeSort by relevance Sort by last modified time
    Searched refs:mTextToSpeech (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
AccessibilityInjector.java 48 private TextToSpeechWrapper mTextToSpeech;
231 if (mTextToSpeech != null) mTextToSpeech.stop();
277 if (mTextToSpeech == null) {
278 mTextToSpeech = new TextToSpeechWrapper(mContentViewCore.getContainerView(),
280 mContentViewCore.addJavascriptInterface(mTextToSpeech,
293 if (mTextToSpeech != null) {
295 mTextToSpeech.stop();
296 mTextToSpeech.shutdownInternal();
297 mTextToSpeech = null
    [all...]
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
TtsPlatformImpl.java 63 private final TextToSpeech mTextToSpeech;
72 mTextToSpeech = new TextToSpeech(context, new TextToSpeech.OnInitListener() {
85 mTextToSpeech.setOnUtteranceProgressListener(new UtteranceProgressListener() {
209 mTextToSpeech.setLanguage(new Locale(lang));
213 mTextToSpeech.setSpeechRate(rate);
214 mTextToSpeech.setPitch(pitch);
220 int result = mTextToSpeech.speak(text, TextToSpeech.QUEUE_FLUSH, params);
229 if (mInitialized) mTextToSpeech.stop();
244 String defaultEngineName = mTextToSpeech.getDefaultEngine();
246 for (TextToSpeech.EngineInfo info : mTextToSpeech.getEngines())
    [all...]

Completed in 68 milliseconds