OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:queuemode
(Results
1 - 5
of
5
) sorted by null
/frameworks/base/core/java/android/speech/tts/
ITextToSpeechService.aidl
37
* @param
queueMode
Determines what to do to requests already in the queue.
40
int speak(in IBinder callingInstance, in String text, in int
queueMode
, in Bundle params);
61
* @param
queueMode
Determines what to do to requests already in the queue.
64
int playAudio(in IBinder callingInstance, in Uri audioUri, in int
queueMode
, in Bundle params);
72
* @param
queueMode
Determines what to do to requests already in the queue.
75
int playSilence(in IBinder callingInstance, in long duration, in int
queueMode
, in Bundle params);
TextToSpeechService.java
312
public int enqueueSpeechItem(int
queueMode
, final SpeechItem speechItem) {
325
if (
queueMode
== TextToSpeech.QUEUE_FLUSH) {
327
} else if (
queueMode
== TextToSpeech.QUEUE_DESTROY) {
798
public int speak(IBinder caller, String text, int
queueMode
, Bundle params) {
805
return mSynthHandler.enqueueSpeechItem(
queueMode
, item);
828
public int playAudio(IBinder caller, Uri audioUri, int
queueMode
, Bundle params) {
835
return mSynthHandler.enqueueSpeechItem(
queueMode
, item);
839
public int playSilence(IBinder caller, long duration, int
queueMode
, Bundle params) {
846
return mSynthHandler.enqueueSpeechItem(
queueMode
, item);
[
all
...]
TextToSpeech.java
[
all
...]
/external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
api.js
218
* Speaks the given string using the specified
queueMode
and properties.
221
* @param {number=}
queueMode
Valid modes are 0 for flush; 1 for queue.
224
cvox.Api.speak = function(textString,
queueMode
, properties) {
230
implementation_.speak(textString,
queueMode
, properties);
234
'args': [textString,
queueMode
, properties]
244
* @param {number=}
queueMode
Valid modes are 0 for flush; 1 for queue.
247
cvox.Api.speakNode = function(targetNode,
queueMode
, properties) {
254
queueMode
, properties);
258
'args': [cvox.ApiUtils.makeNodeReference(targetNode),
queueMode
,
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
AccessibilityInjector.java
411
public int speak(String text, int
queueMode
, String jsonParams) {
435
return mTextToSpeech.speak(text,
queueMode
, params);
Completed in 9466 milliseconds