OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_isInPlace
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioNodeOutput.cpp
43
,
m_isInPlace
(false)
120
m_isInPlace
= inPlaceBus && inPlaceBus->numberOfChannels() == numberOfChannels() && (m_renderingFanOutCount + m_renderingParamFanOutCount) == 1;
122
m_inPlaceBus =
m_isInPlace
? inPlaceBus : 0;
131
return
m_isInPlace
? m_inPlaceBus.get() : m_internalBus.get();
AudioNodeOutput.h
135
// If
m_isInPlace
is true, use m_inPlaceBus as the valid AudioBus; If false, use the default m_internalBus.
136
bool
m_isInPlace
;
Completed in 29 milliseconds