Home
last modified time | relevance | path

Searched refs:utterance (Results 1 – 20 of 20) sorted by relevance

/external/chromium/chrome/browser/extensions/
Dextension_tts_api.cc131 void ExtensionTtsController::SpeakOrEnqueue(Utterance* utterance) { in SpeakOrEnqueue() argument
132 if (IsSpeaking() && utterance->can_enqueue()) { in SpeakOrEnqueue()
133 utterance_queue_.push(utterance); in SpeakOrEnqueue()
136 SpeakNow(utterance); in SpeakOrEnqueue()
141 Utterance* utterance) { in GetMatchingExtensionId() argument
142 ExtensionService* service = utterance->profile()->GetExtensionService(); in GetMatchingExtensionId()
145 utterance->profile()->GetExtensionEventRouter(); in GetMatchingExtensionId()
165 !utterance->voice_name().empty() && in GetMatchingExtensionId()
166 voice.voice_name != utterance->voice_name()) { in GetMatchingExtensionId()
170 !utterance->locale().empty() && in GetMatchingExtensionId()
[all …]
Dextension_tts_api_win.cc22 const std::string& utterance,
60 std::wstring utterance = UTF8ToUTF16(src_utterance); in Speak() local
79 utterance = L"<pitch absmiddle=\"" + pitch_value + L"\">" + in Speak()
80 utterance + L"</pitch>"; in Speak()
93 utterance.c_str(), SPF_ASYNC | SPF_PURGEBEFORESPEAK, NULL); in Speak()
Dextension_tts_api.h31 const std::string& utterance,
145 void SpeakOrEnqueue(Utterance* utterance);
165 void SpeakNow(Utterance* utterance);
184 std::string GetMatchingExtensionId(Utterance* utterance);
Dextension_tts_api_chromeos.cc23 const std::string& utterance,
56 const std::string& utterance, in Speak() argument
112 return cros_library->GetSpeechSynthesisLibrary()->Speak(utterance.c_str()); in Speak()
Dextension_tts_api_mac.mm20 const std::string& utterance,
51 const std::string& utterance,
81 [NSString stringWithUTF8String: utterance.c_str()]];
Dextension_tts_api_linux.cc19 const std::string& utterance, in Speak() argument
Dextension_tts_apitest.cc31 bool(const std::string& utterance,
/external/webkit/Source/WebCore/page/
DSpeechInputResult.cpp33 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const String& utterance, double confidence) in create() argument
35 return adoptRef(new SpeechInputResult(utterance, confidence)); in create()
43 SpeechInputResult::SpeechInputResult(const String& utterance, double confidence) in SpeechInputResult() argument
44 : m_utterance(utterance) in SpeechInputResult()
54 const String& SpeechInputResult::utterance() const in utterance() function in WebCore::SpeechInputResult
DSpeechInputResult.h42 static PassRefPtr<SpeechInputResult> create(const String& utterance, double confidence);
45 const String& utterance() const;
48 SpeechInputResult(const String& utterance, double confidence);
DSpeechInputResult.idl31 readonly attribute DOMString utterance;
/external/webkit/Source/WebKit/chromium/src/
DWebSpeechInputResult.cpp44 void WebSpeechInputResult::set(const WebString& utterance, double confidence) in set() argument
46 m_private = WebCore::SpeechInputResult::create(utterance, confidence); in set()
/external/srec/srec/Recognizer/src/
DRecognizerImpl.c538 impl->utterance = CA_AllocateUtterance(); in SR_RecognizerCreateFrontendImpl()
539 if (impl->utterance == NULL) in SR_RecognizerCreateFrontendImpl()
545 CA_InitUtteranceForFrontend(impl->utterance, frontendParams); in SR_RecognizerCreateFrontendImpl()
546 CA_AttachCMStoUtterance(impl->wavein, impl->utterance); in SR_RecognizerCreateFrontendImpl()
563 if (impl->utterance != NULL) in SR_RecognizerCreateFrontendImpl()
565 CA_ClearUtterance(impl->utterance); in SR_RecognizerCreateFrontendImpl()
566 CA_FreeUtterance(impl->utterance); in SR_RecognizerCreateFrontendImpl()
567 impl->utterance = NULL; in SR_RecognizerCreateFrontendImpl()
671 impl->utterance = NULL; in SR_RecognizerCreate()
836 CA_DetachCMSfromUtterance(impl->wavein, impl->utterance); in SR_RecognizerDestroyImpl()
[all …]
/external/webkit/Source/WebKit/chromium/public/
DWebSpeechInputResult.h47 WEBKIT_API void set(const WebString& utterance, double confidence);
/external/srec/config/en.us/tcp/
Dbothtags5_from_saved.tcp66 # These utterance test that we're able to recognize the voicetags
Dbothtags5.tcp78 # These utterance test that we're able to recognize the voicetags
/external/srec/srec/Recognizer/include/
DSR_RecognizerImpl.h183 CA_Utterance* utterance; member
/external/webkit/Source/WebCore/html/shadow/
DTextControlInnerElements.cpp484 input->setValue(results.isEmpty() ? "" : results[0]->utterance()); in setRecognitionResult()
/external/bison/doc/
Dbison.texi596 defines a complete utterance in the language. It is called the @dfn{start
11828 Macro to pretend that a complete utterance of the language has been
12220 The nonterminal symbol that stands for a complete valid utterance in
Dbison.info1263 defines a complete utterance in the language. It is called the "start
10963 Macro to pretend that a complete utterance of the language has been
11329 The nonterminal symbol that stands for a complete valid utterance
/external/webkit/Source/WebCore/
DChangeLog-2010-12-067058 … code can access the full list of results via "event.results.length", "results[i].utterance" and
26393 (WebCore::SpeechInputResult::utterance):