OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebSpeechRecognitionResult
(Results
1 - 20
of
20
) sorted by null
/external/chromium_org/third_party/WebKit/public/web/
WebSpeechRecognitionResult.h
38
class
WebSpeechRecognitionResult
{
40
WebSpeechRecognitionResult
() { }
41
WebSpeechRecognitionResult
(const
WebSpeechRecognitionResult
& result) { assign(result); }
42
~
WebSpeechRecognitionResult
() { reset(); }
45
BLINK_EXPORT void assign(const
WebSpeechRecognitionResult
&);
WebSpeechRecognizerClient.h
33
class
WebSpeechRecognitionResult
;
76
virtual void didReceiveResults(const WebSpeechRecognitionHandle&, const WebVector<
WebSpeechRecognitionResult
>& newFinalResults, const WebVector<
WebSpeechRecognitionResult
>& currentInterimResults) = 0;
80
virtual void didReceiveNoMatch(const WebSpeechRecognitionHandle&, const
WebSpeechRecognitionResult
&) = 0;
WebSpeechRecognitionHandle.h
35
class
WebSpeechRecognitionResult
;
/external/chromium_org/third_party/WebKit/Source/web/
WebSpeechRecognitionResult.cpp
27
#include "public/web/
WebSpeechRecognitionResult
.h"
39
void
WebSpeechRecognitionResult
::assign(const
WebSpeechRecognitionResult
& other)
44
void
WebSpeechRecognitionResult
::assign(const WebVector<WebString>& transcripts, const WebVector<float>& confidences, bool final)
55
void
WebSpeechRecognitionResult
::reset()
60
WebSpeechRecognitionResult
::operator SpeechRecognitionResult*() const
SpeechRecognitionClientProxy.h
58
virtual void didReceiveResults(const WebSpeechRecognitionHandle&, const WebVector<
WebSpeechRecognitionResult
>& newFinalResults, const WebVector<
WebSpeechRecognitionResult
>& currentInterimResults) OVERRIDE;
59
virtual void didReceiveNoMatch(const WebSpeechRecognitionHandle&, const
WebSpeechRecognitionResult
&) OVERRIDE;
SpeechRecognitionClientProxy.cpp
40
#include "public/web/
WebSpeechRecognitionResult
.h"
101
void SpeechRecognitionClientProxy::didReceiveResults(const WebSpeechRecognitionHandle& handle, const WebVector<
WebSpeechRecognitionResult
>& newFinalResults, const WebVector<
WebSpeechRecognitionResult
>& currentInterimResults)
116
void SpeechRecognitionClientProxy::didReceiveNoMatch(const WebSpeechRecognitionHandle& handle, const
WebSpeechRecognitionResult
& result)
blink_web.target.darwin-arm.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.darwin-arm64.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.darwin-mips.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.darwin-mips64.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.darwin-x86.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.darwin-x86_64.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.linux-arm.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.linux-arm64.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.linux-mips.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.linux-mips64.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.linux-x86.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
blink_web.target.linux-x86_64.mk
187
third_party/WebKit/Source/web/
WebSpeechRecognitionResult
.cpp \
/external/chromium_org/content/renderer/
speech_recognition_dispatcher.cc
15
#include "third_party/WebKit/public/web/
WebSpeechRecognitionResult
.h"
22
using blink::
WebSpeechRecognitionResult
;
155
WebSpeechRecognitionResult
());
190
WebVector<
WebSpeechRecognitionResult
> provisional(provisional_count);
191
WebVector<
WebSpeechRecognitionResult
> final(
197
WebSpeechRecognitionResult
* webkit_result = result.is_provisional ?
/external/chromium_org/content/shell/renderer/test_runner/
mock_web_speech_recognizer.cc
9
#include "third_party/WebKit/public/web/
WebSpeechRecognitionResult
.h"
53
blink::WebVector<blink::
WebSpeechRecognitionResult
> final_results(
55
blink::WebVector<blink::
WebSpeechRecognitionResult
> interim_results;
79
recognizer_->Handle(), blink::
WebSpeechRecognitionResult
());
Completed in 265 milliseconds