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

  /external/webkit/Source/WebCore/page/
SpeechInputResult.cpp 33 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const String& utterance, double confidence)
35 return adoptRef(new SpeechInputResult(utterance, confidence));
43 SpeechInputResult::SpeechInputResult(const String& utterance, double confidence)
44 : m_utterance(utterance)
54 const String& SpeechInputResult::utterance() const function in class:WebCore::SpeechInputResult
SpeechInputResult.h 42 static PassRefPtr<SpeechInputResult> create(const String& utterance, double confidence);
45 const String& utterance() const;
48 SpeechInputResult(const String& utterance, double confidence);
SpeechInputResult.idl 31 readonly attribute DOMString utterance;
  /external/chromium/chrome/browser/extensions/
extension_tts_api.cc 20 const char kSpeechInterruptedError[] = "Utterance interrupted.";
21 const char kSpeechRemovedFromQueueError[] = "Utterance removed from queue.";
47 // Utterance
51 int Utterance::next_utterance_id_ = 0;
53 Utterance::Utterance(Profile* profile,
101 Utterance::~Utterance() {
105 void Utterance::FinishAndDestroy() {
131 void ExtensionTtsController::SpeakOrEnqueue(Utterance* utterance)
289 Utterance* utterance = utterance_queue_.front(); local
297 Utterance* utterance = utterance_queue_.front(); local
    [all...]
extension_tts_api_win.cc 22 const std::string& utterance,
60 std::wstring utterance = UTF8ToUTF16(src_utterance); local
79 utterance = L"<pitch absmiddle=\"" + pitch_value + L"\">" +
80 utterance + L"</pitch>";
93 utterance.c_str(), SPF_ASYNC | SPF_PURGEBEFORESPEAK, NULL);
extension_tts_api.h 21 // Speak the given utterance with the given parameters if possible,
22 // and return true on success. Utterance will always be nonempty.
26 // The ExtensionTtsController will only try to speak one utterance at
31 const std::string& utterance,
57 // One speech utterance.
58 class Utterance {
60 // Construct an utterance given a profile, the text to speak,
62 // when the utterance is done speaking.
63 Utterance(Profile* profile,
67 ~Utterance();
    [all...]
extension_tts_api_linux.cc 19 const std::string& utterance,
extension_tts_api_chromeos.cc 23 const std::string& utterance,
56 const std::string& utterance,
112 return cros_library->GetSpeechSynthesisLibrary()->Speak(utterance.c_str());
extension_tts_apitest.cc 31 bool(const std::string& utterance,
94 // Ensure that the first utterance keeps going until it's interrupted.
99 // Expect the second utterance and allow it to continue for two calls to
114 // interrupts. Speak() never gets called on the second utterance.
121 // Ensure that the first utterance keeps going until it's interrupted.
126 // Expect the third utterance and allow it to continue for two calls to
  /external/webkit/Source/WebKit/chromium/src/
WebSpeechInputResult.cpp 44 void WebSpeechInputResult::set(const WebString& utterance, double confidence)
46 m_private = WebCore::SpeechInputResult::create(utterance, confidence);
  /external/webkit/Source/WebKit/chromium/public/
WebSpeechInputResult.h 47 WEBKIT_API void set(const WebString& utterance, double confidence);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskBackService.java 124 StringBuilder utterance = new StringBuilder(taskStr); local
133 utterance.append(SEPARATOR);
134 utterance.append(contentDescription);
138 // Announce the utterance.
139 mTts.speak(utterance.toString(), TextToSpeech.QUEUE_FLUSH, null);
140 Log.d(LOG_TAG, utterance.toString());
ClockBackService.java 132 * The queuing mode we are using - interrupt a spoken utterance before
229 String utterance = (String) message.obj;
230 mTts.speak(utterance, QUEUING_MODE_INTERRUPT, null);
301 String utterance = generateScreenOnOrOffUtternace(feedbackIndex);
302 mHandler.obtainMessage(MESSAGE_SPEAK, utterance).sendToTarget();
373 * Generates an utterance for announcing screen on and screen off.
376 * @return The utterance.
518 * Formats an utterance from an {@link AccessibilityEvent}.
520 * @param event The event from which to format an utterance.
521 * @return The formatted utterance
524 StringBuilder utterance = mUtterance; local
    [all...]
  /frameworks/base/core/java/android/speech/tts/
EventLogger.java 24 * The data that is logged includes the calling app, length of the utterance,
135 // the length of the utterance).
151 * @return the length of the utterance for the given synthesis, 0
152 * if the utterance was {@code null}.
155 final String utterance = mRequest.getText(); local
156 return utterance == null ? 0 : utterance.length();
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c 537 /* Create an utterance object */
538 impl->utterance = CA_AllocateUtterance();
539 if (impl->utterance == NULL)
545 CA_InitUtteranceForFrontend(impl->utterance, frontendParams);
546 CA_AttachCMStoUtterance(impl->wavein, impl->utterance);
563 if (impl->utterance != NULL)
565 CA_ClearUtterance(impl->utterance);
566 CA_FreeUtterance(impl->utterance);
567 impl->utterance = NULL;
671 impl->utterance = NULL
    [all...]
  /external/srec/srec/Recognizer/include/
SR_RecognizerImpl.h 181 * Legacy CREC Utterance object.
183 CA_Utterance* utterance; member in struct:SR_RecognizerImpl_t
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
GlowPadView.java 1231 StringBuilder utterance = new StringBuilder(); local
    [all...]
MultiWaveView.java     [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
GlowPadView.java     [all...]
  /external/webkit/Source/WebCore/html/shadow/
TextControlInnerElements.cpp 484 input->setValue(results.isEmpty() ? "" : results[0]->utterance());

Completed in 1090 milliseconds