/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XPathValue.h | 40 …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();
|
D | XPathPath.cpp | 56 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()
|
D | XPathNodeSet.h | 38 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()
|
D | XPathValue.cpp | 43 const NodeSet& Value::toNodeSet() const in toNodeSet() 49 DEFINE_STATIC_LOCAL(NodeSet, emptyNodeSet, ()); in toNodeSet() 56 NodeSet& Value::modifiableNodeSet() in modifiableNodeSet()
|
D | XPathPredicate.cpp | 106 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()
|
D | XPathNodeSet.cpp | 137 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()
|
D | XPathStep.h | 101 void evaluate(Node* context, NodeSet&) const; 111 void nodesInAxis(Node* context, NodeSet&) const;
|
D | XPathResult.cpp | 155 const NodeSet& nodes = m_value.toNodeSet(); in singleNodeValue() 210 const NodeSet& nodes = m_value.toNodeSet(); in snapshotItem()
|
D | XPathResult.h | 80 XPath::NodeSet m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
|
D | XPathPath.h | 61 void evaluate(NodeSet& nodes) const; // nodes is an input/output parameter
|
D | XPathStep.cpp | 117 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()
|
D | XPathFunctions.cpp | 322 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/ |
D | NodeSet.java | 59 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/ |
D | bookmark_index.cc | 33 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()
|
D | bookmark_index.h | 55 typedef std::set<const BookmarkNode*> NodeSet; typedef 56 typedef std::map<string16, NodeSet> Index;
|
/external/chromium_org/chrome/browser/bookmarks/ |
D | bookmark_index.cc | 34 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()
|
D | bookmark_index.h | 53 typedef std::set<const BookmarkNode*> NodeSet; typedef 54 typedef std::map<base::string16, NodeSet> Index;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | HitTestResult.h | 50 typedef ListHashSet<RefPtr<Node> > NodeSet; typedef 125 const NodeSet& rectBasedTestResult() const; 130 NodeSet& mutableRectBasedTestResult(); // See above. 146 mutable OwnPtr<NodeSet> m_rectBasedTestResult;
|
D | HitTestResult.cpp | 94 …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/ |
D | DTMNodeProxy.java | 27 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/ |
D | WebPluginContainerImpl.cpp | 493 const HitTestResult::NodeSet& nodes = result.rectBasedTestResult(); in isRectTopmost()
|