Searched refs:m_namedFlows (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DNamedFlowCollection.cpp52 for (NamedFlowSet::iterator it = m_namedFlows.begin(); it != m_namedFlows.end(); ++it) {
64 NamedFlowSet::iterator it = m_namedFlows.find<NamedFlowHashTranslator>(flowName);
65 if (it == m_namedFlows.end() || (*it)->flowState() == NamedFlow::FlowStateNull)
73 NamedFlowSet::iterator it = m_namedFlows.find<NamedFlowHashTranslator>(flowName);
74 if (it != m_namedFlows.end()) {
82 m_namedFlows.add(newFlow.get());
96 ASSERT(m_namedFlows.contains(namedFlow));
100 m_namedFlows.remove(namedFlow);
111 for (NamedFlowSet::iterator it = m_namedFlows
[all...]
H A DDOMNamedFlowCollection.cpp43 m_namedFlows.add(*it);
48 return m_namedFlows.size();
53 if (index >= static_cast<unsigned long>(m_namedFlows.size()))
55 DOMNamedFlowSet::const_iterator it = m_namedFlows.begin();
63 DOMNamedFlowSet::const_iterator it = m_namedFlows.find<DOMNamedFlowHashTranslator, String>(name);
64 if (it != m_namedFlows.end())
H A DDOMNamedFlowCollection.h63 DOMNamedFlowSet m_namedFlows; member in class:WebCore::DOMNamedFlowCollection
H A DNamedFlowCollection.h70 NamedFlowSet m_namedFlows; member in class:WebCore::NamedFlowCollection
H A DDocument.h1288 RefPtr<NamedFlowCollection> m_namedFlows; member in class:WebCore::Document
H A DDocument.cpp1020 if (!m_namedFlows)
1021 m_namedFlows = NamedFlowCollection::create(this);
1023 return m_namedFlows.get();
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp157 HashMap<NamedFlow*, int> m_namedFlows; member in class:WebCore::UpdateRegionLayoutTask
168 m_namedFlows.add(namedFlow, documentNodeId);
176 m_namedFlows.remove(namedFlow);
182 m_namedFlows.clear();
190 for (HashMap<NamedFlow*, int>::iterator it = m_namedFlows.begin(), end = m_namedFlows.end(); it != end; ++it)
197 if (m_namedFlows.contains(namedFlow)) {
199 m_namedFlows.remove(namedFlow);
203 if (!m_namedFlows.isEmpty() && !m_timer.isActive())
218 HashMap<NamedFlow*, int> m_namedFlows; member in class:WebCore::ChangeRegionOversetTask
[all...]

Completed in 173 milliseconds