OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FSMEventArgs
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/content/browser/speech/
speech_recognizer_impl.h
79
struct
FSMEventArgs
{
80
explicit
FSMEventArgs
(FSMEvent event_value);
81
~
FSMEventArgs
();
92
void DispatchEvent(const
FSMEventArgs
& event_args);
96
FSMState ExecuteTransitionAndGetNextState(const
FSMEventArgs
& args);
102
FSMState StartRecording(const
FSMEventArgs
& event_args);
103
FSMState StartRecognitionEngine(const
FSMEventArgs
& event_args);
104
FSMState WaitEnvironmentEstimationCompletion(const
FSMEventArgs
& event_args);
105
FSMState DetectUserSpeechOrTimeout(const
FSMEventArgs
& event_args);
106
FSMState StopCaptureAndWaitForResult(const
FSMEventArgs
& event_args)
[
all
...]
google_streaming_remote_engine.h
101
struct
FSMEventArgs
{
102
explicit
FSMEventArgs
(FSMEvent event_value);
103
~
FSMEventArgs
();
114
DISALLOW_COPY_AND_ASSIGN(
FSMEventArgs
);
123
void DispatchEvent(const
FSMEventArgs
& event_args);
127
FSMState ExecuteTransitionAndGetNextState(const
FSMEventArgs
& event_args);
130
FSMState ConnectBothStreams(const
FSMEventArgs
& event_args);
131
FSMState TransmitAudioUpstream(const
FSMEventArgs
& event_args);
132
FSMState ProcessDownstreamResponse(const
FSMEventArgs
& event_args);
133
FSMState RaiseNoMatchErrorIfGotNoResults(const
FSMEventArgs
& event_args)
[
all
...]
speech_recognizer_impl.cc
218
this,
FSMEventArgs
(EVENT_START)));
224
this,
FSMEventArgs
(EVENT_ABORT)));
230
this,
FSMEventArgs
(EVENT_STOP_CAPTURE)));
264
FSMEventArgs
event_args(EVENT_AUDIO_ERROR);
276
FSMEventArgs
event_args(EVENT_AUDIO_DATA);
288
FSMEventArgs
event_args(EVENT_ENGINE_RESULT);
297
FSMEventArgs
event_args(EVENT_ENGINE_ERROR);
316
void SpeechRecognizerImpl::DispatchEvent(const
FSMEventArgs
& event_args) {
342
const
FSMEventArgs
& event_args) {
491
SpeechRecognizerImpl::StartRecording(const
FSMEventArgs
&)
[
all
...]
google_streaming_remote_engine.cc
110
FSMEventArgs
event_args(EVENT_START_RECOGNITION);
115
FSMEventArgs
event_args(EVENT_END_RECOGNITION);
120
FSMEventArgs
event_args(EVENT_AUDIO_CHUNK);
126
FSMEventArgs
event_args(EVENT_AUDIO_CHUNKS_ENDED);
168
FSMEventArgs
event_args(EVENT_DOWNSTREAM_ERROR);
175
FSMEventArgs
event_args(EVENT_UPSTREAM_ERROR);
198
FSMEventArgs
event_args(EVENT_DOWNSTREAM_RESPONSE);
206
FSMEventArgs
event_args(EVENT_DOWNSTREAM_CLOSED);
223
const
FSMEventArgs
& event_args) {
240
const
FSMEventArgs
& event_args)
[
all
...]
Completed in 466 milliseconds