OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_disabledOutputs
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeInput.h
85
//
m_disabledOutputs
contains the AudioNodeOutputs which are disabled (will not be processed) by the audio graph rendering.
88
HashSet<AudioNodeOutput*>
m_disabledOutputs
;
AudioNodeInput.cpp
85
if (
m_disabledOutputs
.contains(output)) {
86
m_disabledOutputs
.remove(output);
105
m_disabledOutputs
.add(output);
121
ASSERT(
m_disabledOutputs
.contains(output));
125
m_disabledOutputs
.remove(output);
Completed in 226 milliseconds