OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:m_outputs
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/webaudio/
AudioNodeInput.h
71
// This copies
m_outputs
to m_renderingOutputs. Please see comments for these lists below.
87
//
m_outputs
contains the AudioNodeOutputs representing current connections which are not disabled.
89
HashSet<AudioNodeOutput*>
m_outputs
;
member in class:WebCore::AudioNodeInput
93
unsigned numberOfConnections() const { return
m_outputs
.size(); }
95
// This must be called whenever we modify
m_outputs
.
98
// m_renderingOutputs is a copy of
m_outputs
which will never be modified during the graph rendering on the audio thread.
100
// Whenever
m_outputs
is modified, the context is told so it can later update m_renderingOutputs from
m_outputs
at a safe time.
101
// Most of the time, m_renderingOutputs is identical to
m_outputs
.
104
// m_renderingStateNeedUpdating keeps track if
m_outputs
is modified
[
all
...]
AudioNode.h
106
unsigned numberOfOutputs() const { return
m_outputs
.size(); }
151
Vector<OwnPtr<AudioNodeOutput> >
m_outputs
;
member in class:WebCore::AudioNode
Completed in 76 milliseconds