HomeSort by relevance Sort by last modified time
    Searched refs:m_outputs (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/webaudio/
AudioNodeInput.cpp 57 if (m_outputs.contains(output))
61 m_outputs.add(output);
77 if (m_outputs.contains(output)) {
78 m_outputs.remove(output);
104 ASSERT(m_outputs.contains(output));
107 m_outputs.remove(output);
125 m_outputs.add(output);
147 // Copy from m_outputs to m_renderingOutputs.
148 m_renderingOutputs.resize(m_outputs.size());
150 for (HashSet<AudioNodeOutput*>::iterator i = m_outputs.begin(); i != m_outputs.end(); ++i, ++j)
    [all...]
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.cpp 98 m_outputs.append(output);
108 return m_outputs[i].get();
265 for (unsigned i = 0; i < m_outputs.size(); ++i)
287 for (unsigned i = 0; i < m_outputs.size(); ++i)
AudioNode.h 106 unsigned numberOfOutputs() const { return m_outputs.size(); }
151 Vector<OwnPtr<AudioNodeOutput> > m_outputs; member in class:WebCore::AudioNode

Completed in 19 milliseconds