/external/webkit/LayoutTests/fast/dom/TreeWalker/ |
traversal-skip-most-expected.txt | 1 Test TreeWalker with skipping
|
TreeWalker-currentNode.html | 10 <script src="resources/TreeWalker-currentNode.js"></script>
|
TreeWalker-currentNode-expected.txt | 1 Tests the TreeWalker. 6 Test that TreeWalker.parent() doesn't set the currentNode to a node not under the root.
|
traversal-reject-expected.txt | 1 Test TreeWalker with rejection
|
traversal-skip-expected.txt | 1 Test TreeWalker with skipping
|
/external/webkit/Source/WebCore/dom/ |
TreeWalker.h | 37 class TreeWalker : public RefCounted<TreeWalker>, public Traversal { 39 static PassRefPtr<TreeWalker> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter, bool expandEntityReferences) 41 return adoptRef(new TreeWalker(rootNode, whatToShow, filter, expandEntityReferences)); 66 TreeWalker(PassRefPtr<Node>, unsigned whatToShow, PassRefPtr<NodeFilter>, bool expandEntityReferences);
|
TreeWalker.cpp | 26 #include "TreeWalker.h" 36 TreeWalker::TreeWalker(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter, bool expandEntityReferences) 42 void TreeWalker::setCurrentNode(PassRefPtr<Node> node, ExceptionCode& ec) 51 inline Node* TreeWalker::setCurrent(PassRefPtr<Node> node) 57 Node* TreeWalker::parentNode(ScriptState* state) 73 Node* TreeWalker::firstChild(ScriptState* state) 106 Node* TreeWalker::lastChild(ScriptState* state) 139 Node* TreeWalker::previousSibling(ScriptState* state) 176 Node* TreeWalker::nextSibling(ScriptState* state [all...] |
TreeWalker.idl | 26 ] TreeWalker {
|
/libcore/luni/src/main/java/org/w3c/dom/traversal/ |
NodeFilter.java | 19 * <code>NodeIterator</code> or <code>TreeWalker</code> is given a 41 * <code>NodeIterator</code> or <code>TreeWalker</code> will return this 47 * <code>NodeIterator</code> or <code>TreeWalker</code> will not return 48 * this node. For <code>TreeWalker</code>, the children of this node 55 * <code>NodeIterator</code> or <code>TreeWalker</code> will not return 57 * <code>TreeWalker</code>, the children of this node will still be 73 * <code>NodeIterator</code> or <code>TreeWalker</code> with an 94 * an <code>NodeIterator</code> or <code>TreeWalker</code> with an 124 * an <code>NodeIterator</code> or <code>TreeWalker</code> with a 135 * <code>TreeWalker</code> or <code>NodeIterator</code>. This functio [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 19 * $Id: TreeWalker.java 468655 2006-10-28 07:12:06Z minchau $ 44 public class TreeWalker 53 /** DomHelper for this TreeWalker */ 56 /** Locator object for this TreeWalker */ 85 public TreeWalker(ContentHandler contentHandler, DOMHelper dh, String systemId) 107 public TreeWalker(ContentHandler contentHandler, DOMHelper dh) 125 public TreeWalker(ContentHandler contentHandler) 143 * Note that TreeWalker assumes that the subtree is intended to represent 213 * Note that TreeWalker assumes that the subtree is intended to represent 335 // System.out.println("TreeWalker#startNode: "+node.getNodeName()) [all...] |
/external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/ |
traversal-skip-most.js | 1 description('Test TreeWalker with skipping');
|
traversal-reject.js | 1 description('Test TreeWalker with rejection');
|
traversal-skip.js | 1 description('Test TreeWalker with skipping');
|
/external/webkit/LayoutTests/platform/android/ |
layout_test_directories.txt | 29 fast/dom/TreeWalker
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
AxesWalker.java | 186 //=============== TreeWalker Implementation =============== 189 * The root node of the TreeWalker, as specified in setRoot(int root). 211 * Set the root node of the TreeWalker. 212 * (Not part of the DOM2 TreeWalker interface). 237 * The node at which the TreeWalker is currently positioned. 239 * the current node to no longer be accepted by the TreeWalker's 247 * @return The node at which the TreeWalker is currently positioned, only null 345 * Moves the <code>TreeWalker</code> to the next visible node in document 348 * to step upward from the TreeWalker's root node, returns 351 * next node in the TreeWalker's logical view [all...] |
FilterExprWalker.java | 121 * Set the root node of the TreeWalker. 184 * Moves the <code>TreeWalker</code> to the next visible node in document 187 * to step upward from the TreeWalker's root node, returns 190 * next node in the TreeWalker's logical view.
|
ReverseAxesWalker.java | 46 * Set the root node of the TreeWalker. 47 * (Not part of the DOM2 TreeWalker interface). 102 // * Set the root node of the TreeWalker.
|
UnionChildIterator.java | 106 * TreeWalker or NodeIterator. This function will be called by the 107 * implementation of TreeWalker and NodeIterator; it is not intended to
|
MatchPatternIterator.java | 280 * TreeWalker or NodeIterator. This function will be called by the 281 * implementation of TreeWalker and NodeIterator; it is not intended to
|
/external/webkit/LayoutTests/fast/dom/TreeWalker/resources/ |
TreeWalker-currentNode.js | 1 description("Tests the TreeWalker.") 10 debug("Test that TreeWalker.parent() doesn't set the currentNode to a node not under the root.");
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
TreeWalker.java | 19 * $Id: TreeWalker.java 468654 2006-10-28 07:09:23Z minchau $ 50 public final class TreeWalker 64 /** DomHelper for this TreeWalker */ 67 /** Locator object for this TreeWalker */ 80 public TreeWalker(ContentHandler ch) { 88 public TreeWalker(ContentHandler contentHandler, String systemId) 127 * Note that TreeWalker assumes that the subtree is intended to represent 182 * Note that TreeWalker assumes that the subtree is intended to represent 322 // System.out.println("TreeWalker#startNode: "+node.getNodeName()); 334 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue()) [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSTreeWalkerCustom.cpp | 26 #include "TreeWalker.h"
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
KeyIterator.java | 91 * TreeWalker or NodeIterator. This function will be called by the 92 * implementation of TreeWalker and NodeIterator; it is not intended to
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
ProcessorInclude.java | 36 import org.apache.xml.utils.TreeWalker; 231 TreeWalker walker = new TreeWalker(handler, new org.apache.xml.utils.DOM2Helper(), systemId);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMTreeWalker.java | 33 * than like the DOM's TreeWalker. 45 /** DomHelper for this TreeWalker */ 403 } //TreeWalker
|