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

  /libcore/luni/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/webkit/WebCore/xml/
XPathValue.h 42 static PassRefPtr<ValueData> create(const NodeSet& nodeSet) { return adoptRef(new ValueData(nodeSet)); }
45 NodeSet m_nodeSet;
50 ValueData(const NodeSet& nodeSet) : m_nodeSet(nodeSet) { }
65 Value(const NodeSet& value) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create(value)) {}
72 Value(NodeSet& value, const AdoptTag&) : m_type(NodeSetValue), m_bool(false), m_number(0), m_data(ValueData::create()) { value.swap(m_data->m_nodeSet); }
81 const NodeSet& toNodeSet() const
    [all...]
XPathNodeSet.h 40 class NodeSet : public FastAllocBase {
42 NodeSet() : m_isSorted(true), m_subtreesAreDisjoint(false) { }
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.
54 void append(const NodeSet& nodeSet) { m_nodes.append(nodeSet.m_nodes); }
62 // NodeSet itself doesn't check if it contains nodes in document order - the caller should tell it if it does not.
  /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);
  /libcore/luni/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...]
  /libcore/luni/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...]
  /external/webkit/WebCore/dom/
Range.cpp     [all...]

Completed in 102 milliseconds