Home
last modified time | relevance | path

Searched refs:NodeSet (Results 1 – 21 of 21) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/xml/
DXPathValue.h40 …static PassRefPtr<ValueData> create(const NodeSet& nodeSet) { return adoptRef(new ValueData(nodeSe… in create()
43 NodeSet m_nodeSet;
48 explicit ValueData(const NodeSet& nodeSet) : m_nodeSet(nodeSet) { } in ValueData()
63 …Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::… in Value()
70 …Value(NodeSet& value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data… in Value()
79 const NodeSet& toNodeSet() const;
80 NodeSet& modifiableNodeSet();
DXPathPath.cpp56 NodeSet& nodes = v.modifiableNodeSet(); in evaluate()
61 NodeSet newNodes; in evaluate()
111 NodeSet nodes; in evaluate()
119 void LocationPath::evaluate(NodeSet& nodes) const in evaluate()
125 NodeSet newNodes; in evaluate()
139 NodeSet matches; in evaluate()
207 NodeSet& nodes = v.modifiableNodeSet(); in evaluate()
DXPathNodeSet.h38 class NodeSet {
41 NodeSet() : m_isSorted(true), m_subtreesAreDisjoint(false) { } in NodeSet() function
48 …void swap(NodeSet& other) { std::swap(m_isSorted, other.m_isSorted); std::swap(m_subtreesAreDisjoi… in swap()
53 void append(const NodeSet& nodeSet) { m_nodes.append(nodeSet.m_nodes); } in append()
DXPathValue.cpp43 const NodeSet& Value::toNodeSet() const in toNodeSet()
49 DEFINE_STATIC_LOCAL(NodeSet, emptyNodeSet, ()); in toNodeSet()
56 NodeSet& Value::modifiableNodeSet() in modifiableNodeSet()
DXPathPredicate.cpp106 const NodeSet& lhsSet = lhs.toNodeSet(); in compare()
111 const NodeSet& rhsSet = rhs.toNodeSet(); in compare()
145 const NodeSet& rhsSet = rhs.toNodeSet(); in compare()
232 NodeSet& resultSet = lhsResult.modifiableNodeSet(); in evaluate()
233 const NodeSet& rhsNodes = rhs.toNodeSet(); in evaluate()
DXPathNodeSet.cpp137 void NodeSet::sort() const in sort()
192 void NodeSet::traversalSort() const in traversalSort()
232 void NodeSet::reverse() in reverse()
246 Node* NodeSet::firstNode() const in firstNode()
255 Node* NodeSet::anyNode() const in anyNode()
DXPathStep.h101 void evaluate(Node* context, NodeSet&) const;
111 void nodesInAxis(Node* context, NodeSet&) const;
DXPathResult.cpp155 const NodeSet& nodes = m_value.toNodeSet(); in singleNodeValue()
210 const NodeSet& nodes = m_value.toNodeSet(); in snapshotItem()
DXPathResult.h80 XPath::NodeSet m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
DXPathPath.h61 void evaluate(NodeSet& nodes) const; // nodes is an input/output parameter
DXPathStep.cpp117 void Step::evaluate(Node* context, NodeSet& nodes) const in evaluate()
128 NodeSet newNodes; in evaluate()
241 void Step::nodesInAxis(Node* context, NodeSet& nodes) const in nodesInAxis()
DXPathFunctions.cpp322 const NodeSet& nodes = a.toNodeSet(); in evaluate()
334 NodeSet result; in evaluate()
637 const NodeSet& nodes = a.toNodeSet(); in evaluate()
/external/apache-xml/src/main/java/org/apache/xpath/
DNodeSet.java59 public class NodeSet class
66 public NodeSet() in NodeSet() method in NodeSet
77 public NodeSet(int blocksize) in NodeSet() method in NodeSet
89 public NodeSet(NodeList nodelist) in NodeSet() method in NodeSet
103 public NodeSet(NodeSet nodelist) in NodeSet() method in NodeSet
117 public NodeSet(NodeIterator ni) in NodeSet() method in NodeSet
130 public NodeSet(Node node) in NodeSet() method in NodeSet
160 NodeSet clone = (NodeSet) clone(); in cloneWithReset()
471 public void addNodes(NodeSet ns) in addNodes()
848 NodeSet clone = (NodeSet) super.clone(); in clone()
[all …]
/external/chromium/chrome/browser/bookmarks/
Dbookmark_index.cc33 NodeSet nodes;
37 NodeSet::const_iterator nodes_begin() const;
41 NodeSet::const_iterator nodes_end() const;
44 BookmarkIndex::NodeSet::const_iterator
49 BookmarkIndex::NodeSet::const_iterator BookmarkIndex::Match::nodes_end() const { in nodes_end()
130 for (NodeSet::const_iterator i = match.nodes_begin(); in ExtractBookmarkNodePairs()
207 NodeSet intersection; in CombineMatchesInPlace()
226 NodeSet intersection; in CombineMatches()
Dbookmark_index.h55 typedef std::set<const BookmarkNode*> NodeSet; typedef
56 typedef std::map<string16, NodeSet> Index;
/external/chromium_org/chrome/browser/bookmarks/
Dbookmark_index.cc34 NodeSet nodes;
38 NodeSet::const_iterator nodes_begin() const;
42 NodeSet::const_iterator nodes_end() const;
45 BookmarkIndex::NodeSet::const_iterator
50 BookmarkIndex::NodeSet::const_iterator BookmarkIndex::Match::nodes_end() const { in nodes_end()
138 for (NodeSet::const_iterator i = match.nodes_begin(); in ExtractBookmarkNodePairs()
215 NodeSet intersection; in CombineMatchesInPlace()
234 NodeSet intersection; in CombineMatches()
Dbookmark_index.h53 typedef std::set<const BookmarkNode*> NodeSet; typedef
54 typedef std::map<base::string16, NodeSet> Index;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DHitTestResult.h50 typedef ListHashSet<RefPtr<Node> > NodeSet; typedef
125 const NodeSet& rectBasedTestResult() const;
130 NodeSet& mutableRectBasedTestResult(); // See above.
146 mutable OwnPtr<NodeSet> m_rectBasedTestResult;
DHitTestResult.cpp94 …m_rectBasedTestResult = adoptPtr(other.m_rectBasedTestResult ? new NodeSet(*other.m_rectBasedTestR… in HitTestResult()
115 …m_rectBasedTestResult = adoptPtr(other.m_rectBasedTestResult ? new NodeSet(*other.m_rectBasedTestR… in operator =()
471 NodeSet& set = mutableRectBasedTestResult(); in append()
472 …for (NodeSet::const_iterator it = other.m_rectBasedTestResult->begin(), last = other.m_rectBasedTe… in append()
477 const HitTestResult::NodeSet& HitTestResult::rectBasedTestResult() const in rectBasedTestResult()
480 m_rectBasedTestResult = adoptPtr(new NodeSet); in rectBasedTestResult()
484 HitTestResult::NodeSet& HitTestResult::mutableRectBasedTestResult() in mutableRectBasedTestResult()
487 m_rectBasedTestResult = adoptPtr(new NodeSet); in mutableRectBasedTestResult()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java27 import org.apache.xpath.NodeSet;
764 NodeSet nodeSet = new NodeSet(size); in getElementsByTagName()
889 NodeSet nodeSet = new NodeSet(size); in getElementsByTagNameNS()
/external/chromium_org/third_party/WebKit/Source/web/
DWebPluginContainerImpl.cpp493 const HitTestResult::NodeSet& nodes = result.rectBasedTestResult(); in isRectTopmost()