Home
last modified time | relevance | path

Searched refs:NodeVector (Results 1 – 17 of 17) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xpath/axes/
DNodeSequence.java29 import org.apache.xml.utils.NodeVector;
65 protected NodeVector getVector() { in getVector()
66 NodeVector nv = (m_cache != null) ? m_cache.getVector() : null; in getVector()
83 protected void SetVector(NodeVector v) in SetVector()
95 final NodeVector nv = getVector(); in hasCache()
119 NodeVector nv = getVector(); in markCacheComplete()
180 if (nodeVector instanceof NodeVector) { in NodeSequence()
181 SetVector((NodeVector) nodeVector); in NodeSequence()
185 assertion(nodeVector instanceof NodeVector, in NodeSequence()
202 super(new NodeVector()); in NodeSequence()
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DExplodedGraph.h257 typedef std::vector<ExplodedNode *> NodeVector; typedef
263 NodeVector Roots;
267 NodeVector EndNodes;
280 NodeVector ChangedNodes;
283 NodeVector FreeNodes;
330 typedef NodeVector::iterator roots_iterator;
331 typedef NodeVector::const_iterator const_roots_iterator;
332 typedef NodeVector::iterator eop_iterator;
333 typedef NodeVector::const_iterator const_eop_iterator;
/external/apache-xml/src/main/java/org/apache/xml/utils/
DNodeVector.java31 public class NodeVector implements Serializable, Cloneable class
62 public NodeVector() in NodeVector() method in NodeVector
73 public NodeVector(int blocksize) in NodeVector() method in NodeVector
89 NodeVector clone = (NodeVector) super.clone(); in clone()
396 public void appendNodes(NodeVector nodes) in appendNodes()
/external/webkit/Source/WebCore/dom/
DContainerNode.cpp53 typedef Vector<RefPtr<Node>, 1> NodeVector; typedef
59 static inline void collectNodes(Node* node, NodeVector& nodes) in collectNodes()
65 static void collectTargetNodes(Node* node, NodeVector& nodes) in collectTargetNodes()
81 NodeVector children; in takeAllChildrenFrom()
126 NodeVector targets; in insertBefore()
137 for (NodeVector::const_iterator it = targets.begin(); it != targets.end(); ++it) { in insertBefore()
220 NodeVector targets; in parserInsertBefore()
230 for (NodeVector::const_iterator it = targets.begin(); it != targets.end(); ++it) { in parserInsertBefore()
390 NodeVector children; in willRemoveChildren()
393 for (NodeVector::const_iterator it = children.begin(); it != children.end(); it++) { in willRemoveChildren()
[all …]
DRange.cpp54 typedef Vector<RefPtr<Node> > NodeVector; typedef
749 NodeVector nodes; in processContents()
882 NodeVector nodes; in processAncestorsAndTheirSiblings()
887 for (NodeVector::const_iterator it = nodes.begin(); it != nodes.end(); it++) { in processAncestorsAndTheirSiblings()
/external/apache-xml/src/main/java/org/apache/xpath/
DXPathContext.java44 import org.apache.xml.utils.NodeVector;
853 private NodeVector m_iteratorRoots = new NodeVector();
856 private NodeVector m_predicateRoots = new NodeVector();
DNodeSetDTM.java28 import org.apache.xml.utils.NodeVector;
60 public class NodeSetDTM extends NodeVector
929 public void appendNodes(NodeVector nodes) in appendNodes()
/external/webkit/Source/WebCore/editing/
DReplaceSelectionCommand.cpp58 typedef Vector<RefPtr<Node> > NodeVector; typedef
688 NodeVector childNodes; in copyStyleToChildren()
692 for (NodeVector::const_iterator it = childNodes.begin(); it != childNodes.end(); it++) { in copyStyleToChildren()
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemNumber.java37 import org.apache.xml.utils.NodeVector;
819 NodeVector ancestors = in getCountString()
977 NodeVector getMatchingAncestors( in getMatchingAncestors()
/external/clang/lib/StaticAnalyzer/Core/
DExplodedGraph.cpp155 for (NodeVector::iterator it = ChangedNodes.begin(), et = ChangedNodes.end(); in reclaimRecentlyAllocatedNodes()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDefaultBaseIterators.java1589 org.apache.xml.utils.NodeVector m_ancestors =
1590 new org.apache.xml.utils.NodeVector();
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerImpl.java79 import org.apache.xml.utils.NodeVector;
214 NodeVector m_currentMatchedNodes = new NodeVector();
/external/llvm/lib/CodeGen/
DRegAllocPBQP.cpp121 typedef std::vector<PBQP::Graph::NodeItr> NodeVector; typedef in __anona5268ff80111::RegAllocPBQP
/external/clang/lib/Analysis/
DThreadSafety.cpp181 typedef SmallVector<SExprNode, 4> NodeVector; typedef in __anon0809c9d90111::SExpr
186 NodeVector NodeVec;
/external/webkit/Source/WebCore/
DChangeLog-2007-10-1447571 XPath::NodeVector typedef is replaced with a real XPath::NodeSet class that knows how
47584 (WebCore::XPath::FunLocalName::evaluate): Replacing NodeVector with NodeSet.
47617 (WebCore::XPath::Filter::evaluate): Replacing NodeVector with NodeSet.
47619 (WebCore::XPath::LocationPath::evaluate): Replacing NodeVector with NodeSet. This function
47624 * xml/XPathPath.h: Replacing NodeVector with NodeSet.
47626 (WebCore::XPath::EqTestOp::compare): Replacing NodeVector with NodeSet.
47627 (WebCore::XPath::Union::evaluate): Replacing NodeVector with NodeSet. Currently, Union just
47631 (WebCore::XPathResult::XPathResult): Replacing NodeVector with NodeSet.
47638 * xml/XPathResult.h: Replacing NodeVector with NodeSet.
47644 (WebCore::XPath::Step::nodeTestMatches): Replacing NodeVector with NodeSet.
[all …]
DChangeLog-2011-02-1625527 when copying nodes to a local NodeVector for processing. A fix
25538 nodes to a local NodeVector by restoring the code from r73799
43548 (WebCore::Range::processContents): Put typedef of NodeVector inside the function
43550 There's another NodeVector in ContainerNode.cpp.
DChangeLog-2006-12-3150516 instead of the underscore suffix used before on NodeVector and String.