OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_automaticPullNodes
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.cpp
151
ASSERT(!
m_automaticPullNodes
.size());
153
m_renderingAutomaticPullNodes.resize(
m_automaticPullNodes
.size());
808
if (!
m_automaticPullNodes
.contains(node)) {
809
m_automaticPullNodes
.add(node);
818
if (
m_automaticPullNodes
.contains(node)) {
819
m_automaticPullNodes
.remove(node);
829
// Copy from
m_automaticPullNodes
to m_renderingAutomaticPullNodes.
830
m_renderingAutomaticPullNodes.resize(
m_automaticPullNodes
.size());
833
for (HashSet<AudioNode*>::iterator i =
m_automaticPullNodes
.begin(); i !=
m_automaticPullNodes
.end(); ++i, ++j)
[
all
...]
AudioContext.h
319
// It will be copied from
m_automaticPullNodes
by updateAutomaticPullNodes() at the very start or end of the rendering quantum.
323
HashSet<AudioNode*>
m_automaticPullNodes
;
326
// m_automaticPullNodesNeedUpdating keeps track if
m_automaticPullNodes
is modified.
Completed in 58 milliseconds