OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsCapturingAudio
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/content/browser/speech/
speech_recognizer.h
30
virtual bool
IsCapturingAudio
() const = 0;
speech_recognizer_impl_android.h
31
virtual bool
IsCapturingAudio
() const OVERRIDE;
speech_recognizer_impl.h
51
virtual bool
IsCapturingAudio
() const OVERRIDE;
speech_recognizer_impl.cc
240
bool SpeechRecognizerImpl::
IsCapturingAudio
() const {
461
// -
IsCapturingAudio
() returns true if and only if audio_controller_ != NULL.
493
DCHECK(!
IsCapturingAudio
());
661
if (
IsCapturingAudio
())
768
DCHECK(
IsCapturingAudio
());
speech_recognizer_impl_android.cc
94
bool SpeechRecognizerImplAndroid::
IsCapturingAudio
() const {
speech_recognition_manager_impl.cc
571
if (session->recognizer->
IsCapturingAudio
())
/external/chromium_org/chrome/browser/media/
media_stream_capture_indicator.h
54
bool
IsCapturingAudio
(content::WebContents* web_contents) const;
media_stream_capture_indicator.cc
129
bool
IsCapturingAudio
() const { return audio_ref_count_ > 0; }
303
(it->second->
IsCapturingAudio
() || it->second->IsCapturingVideo()));
314
bool MediaStreamCaptureIndicator::
IsCapturingAudio
(
319
return (it != usage_map_.end() && it->second->
IsCapturingAudio
());
410
if ((usage.
IsCapturingAudio
() || usage.IsCapturingVideo())
415
audio = audio || usage.
IsCapturingAudio
();
Completed in 78 milliseconds