Home
last modified time | relevance | path

Searched refs:resultCollector (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/inspector/
DInspectorDOMAgent.cpp104 virtual void match(ListHashSet<Node*>& resultCollector) = 0;
112 void addNodesToResults(PassRefPtr<NodeList> nodes, ListHashSet<Node*>& resultCollector) in addNodesToResults() argument
115 resultCollector.add(nodes->item(i)); in addNodesToResults()
143 virtual void match(ListHashSet<Node*>& resultCollector) in match() argument
150 resultCollector.add(element); in match()
159 virtual void match(ListHashSet<Node*>& resultCollector) in match() argument
162 addNodesToResults(m_document->getElementsByClassName(m_query), resultCollector); in match()
171 virtual void match(ListHashSet<Node*>& resultCollector) in match() argument
174 addNodesToResults(m_document->getElementsByName(m_query), resultCollector); in match()
183 virtual void match(ListHashSet<Node*>& resultCollector) in match() argument
[all …]
DInspectorDOMAgent.h204 void reportNodesAsSearchResults(ListHashSet<Node*>& resultCollector);