OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_isPlaying
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebKit/chromium/src/
AudioDestinationChromium.h
50
bool isPlaying() { return
m_isPlaying
; }
61
bool
m_isPlaying
;
AudioDestinationChromium.cpp
72
,
m_isPlaying
(false)
85
if (!
m_isPlaying
&& m_audioDevice.get()) {
87
m_isPlaying
= true;
93
if (
m_isPlaying
&& m_audioDevice.get()) {
95
m_isPlaying
= false;
/external/webkit/Source/WebCore/platform/audio/mac/
AudioDestinationMac.h
47
bool isPlaying() { return
m_isPlaying
; }
64
bool
m_isPlaying
;
AudioDestinationMac.cpp
75
,
m_isPlaying
(false)
139
m_isPlaying
= true;
147
m_isPlaying
= false;
/external/webkit/Source/WebCore/webaudio/
AudioBufferSourceNode.cpp
50
,
m_isPlaying
(false)
97
if (!
m_isPlaying
|| m_hasFinished || !buffer() || m_startTime >= quantumEndTime) {
241
m_isPlaying
= false;
374
if (
m_isPlaying
)
380
m_isPlaying
= true;
386
if (
m_isPlaying
)
411
m_isPlaying
= true;
417
if (!
m_isPlaying
)
421
m_isPlaying
= false;
AudioBufferSourceNode.h
93
//
m_isPlaying
is set to true when noteOn() or noteGrainOn() is called.
94
bool
m_isPlaying
;
Completed in 48 milliseconds