HomeSort by relevance Sort by last modified time
    Searched refs:nodeSet (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.h 40 static PassRefPtrWillBeRawPtr<ValueData> create(const NodeSet& nodeSet) { return adoptRefWillBeNoop(new ValueData(nodeSet)); }
41 static PassRefPtrWillBeRawPtr<ValueData> create(PassOwnPtrWillBeRawPtr<NodeSet> nodeSet) { return adoptRefWillBeNoop(new ValueData(nodeSet)); }
44 NodeSet& nodeSet() { return *m_nodeSet; }
49 ValueData() : m_nodeSet(NodeSet::create()) { }
50 explicit ValueData(const NodeSet& nodeSet) : m_nodeSet(NodeSet::create(nodeSet)) {
    [all...]
XPathValue.cpp 51 const NodeSet& Value::toNodeSet() const
57 DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<NodeSet>, emptyNodeSet, (NodeSet::create()));
61 return m_data->nodeSet();
64 NodeSet& Value::modifiableNodeSet()
73 return m_data->nodeSet();
80 return !m_data->nodeSet().isEmpty();
128 if (m_data->nodeSet().isEmpty())
130 return stringValue(m_data->nodeSet().firstNode());
XPathNodeSet.h 37 class NodeSet : public NoBaseWillBeGarbageCollected<NodeSet> {
40 static PassOwnPtrWillBeRawPtr<NodeSet> create() { return adoptPtrWillBeNoop(new NodeSet); }
41 static PassOwnPtrWillBeRawPtr<NodeSet> create(const NodeSet&);
49 void swap(NodeSet& other) { std::swap(m_isSorted, other.m_isSorted); std::swap(m_subtreesAreDisjoint, other.m_subtreesAreDisjoint); m_nodes.swap(other.m_nodes); }
51 // NodeSet itself does not verify that nodes in it are unique.
53 void append(const NodeSet& nodeSet) { m_nodes.appendVector(nodeSet.m_nodes);
    [all...]
XPathNodeSet.cpp 44 PassOwnPtrWillBeRawPtr<NodeSet> NodeSet::create(const NodeSet& other)
46 OwnPtrWillBeRawPtr<NodeSet> nodeSet = NodeSet::create();
47 nodeSet->m_isSorted = other.m_isSorted;
48 nodeSet->m_subtreesAreDisjoint = other.m_subtreesAreDisjoint;
49 nodeSet->m_nodes.appendVector(other.m_nodes);
50 return nodeSet.release()
    [all...]
XPathResult.cpp 58 m_nodeSet = NodeSet::create(m_value.toNodeSet());
110 nodeSet().sort();
163 const NodeSet& nodes = m_value.toNodeSet();
200 if (m_nodeSetPosition + 1 > nodeSet().size())
203 Node* node = nodeSet()[m_nodeSetPosition];
217 const NodeSet& nodes = m_value.toNodeSet();
XPathResult.h 83 XPath::NodeSet& nodeSet() { return *m_nodeSet; }
87 OwnPtrWillBeMember<XPath::NodeSet> m_nodeSet; // FIXME: why duplicate the node set stored in m_value?
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncId.java 50 * @param nodeSet Node set where the nodes will be added to.
57 NodeSetDTM nodeSet, boolean mayBeMore)
83 nodeSet.addNodeInDocOrder(node, xctxt);
119 NodeSetDTM nodeSet = nodes.mutableNodeset();
133 usedrefs = getNodesByID(xctxt, docContext, refval, usedrefs, nodeSet,
146 getNodesByID(xctxt, docContext, refval, null, nodeSet, false);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGResourcesCycleSolver.cpp 87 ResourceSet nodeSet;
88 nodeResources->buildSetOfResources(nodeSet);
91 ResourceSet::iterator end = nodeSet.end();
92 for (ResourceSet::iterator it = nodeSet.begin(); it != end; ++it) {
  /external/deqp/executor/
xeTestCase.cpp 319 static void addNodeAndParents (std::set<const TestNode*>& nodeSet, const TestNode* node)
323 nodeSet.insert(node);
328 static void addChildren (std::set<const TestNode*>& nodeSet, const TestGroup* group)
333 nodeSet.insert(child);
336 addChildren(nodeSet, static_cast<const TestGroup*>(child));
340 static void removeChildren (std::set<const TestNode*>& nodeSet, const TestGroup* group)
345 nodeSet.erase(child);
348 removeChildren(nodeSet, static_cast<const TestGroup*>(child));
352 static bool hasChildrenInSet (const std::set<const TestNode*>& nodeSet, const TestGroup* group)
356 if (nodeSet.find(group->getChild(ndx)) != nodeSet.end()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 227 Set<Node> nodeSet = childrenPadding.keySet();
229 Map<String, Node> idNodeMap = computeIdNodeMap(nodeSet);
237 childrenPadding, nodeSet, idNodeMap,
243 childrenPadding, nodeSet, idNodeMap,
259 childrenPadding, nodeSet, idNodeMap,
265 childrenPadding, nodeSet, idNodeMap,
286 Set<Node> nodeSet, Map<String, Node> idNodeMap,
302 list = getMatchingNode(nodeSet, cleanUpIdReference(viewId), inverseRelation);
323 inverseRelation, childrenPadding, nodeSet, idNodeMap, true);
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XNodeSet.java 34 * This class represents an XPath nodeset object, and is capable of
35 * converting the nodeset to other types, such as a string.
58 final XNodeSet nodeSet = (XNodeSet) val;
59 setIter(nodeSet.m_iter);
60 m_dtmMgr = nodeSet.m_dtmMgr;
61 m_last = nodeSet.m_last;
64 if(!nodeSet.hasCache())
65 nodeSet.setShouldCacheNodes(true);
68 setObject(nodeSet.getIteratorCache());
93 * nodeset to which random nodes may be added
332 public NodeIterator nodeset() throws javax.xml.transform.TransformerException method in class:XNodeSet
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 27 import org.apache.xpath.NodeSet;
764 NodeSet nodeSet = new NodeSet(size);
767 nodeSet.addNode((Node) listVector.elementAt(i));
769 return (NodeList) nodeSet;
889 NodeSet nodeSet = new NodeSet(size);
892 nodeSet.addNode((Node)listVector.elementAt(i))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 598 Set<Element> nodeSet = new HashSet<Element>(elements);
602 boolean in = nodeSet.contains(node);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Range.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java     [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
jaxen-1.1.6.jar 
  /prebuilts/tools/common/m2/repository/jaxen/jaxen/1.1.1/
jaxen-1.1.1.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 1180 milliseconds