HomeSort by relevance Sort by last modified time
    Searched refs:rootNode (Results 1 - 25 of 270) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/jmonkeyengine/engine/src/test/jme3test/app/state/
RootNodeState.java 40 private Node rootNode = new Node("Root Node");
43 return rootNode;
50 rootNode.updateLogicalState(tpf);
51 rootNode.updateGeometricState();
  /external/webkit/Source/WebCore/dom/
ChildNodeList.h 34 static PassRefPtr<ChildNodeList> create(PassRefPtr<Node> rootNode, Caches* caches)
36 return adoptRef(new ChildNodeList(rootNode, caches));
43 ChildNodeList(PassRefPtr<Node> rootNode, Caches*);
ClassNodeList.h 41 static PassRefPtr<ClassNodeList> create(PassRefPtr<Node> rootNode, const String& classNames)
43 return adoptRef(new ClassNodeList(rootNode, classNames));
49 ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames);
NameNodeList.h 36 static PassRefPtr<NameNodeList> create(PassRefPtr<Node> rootNode, const String& name)
38 return adoptRef(new NameNodeList(rootNode, name));
44 NameNodeList(PassRefPtr<Node> rootNode, const String& name);
TagNodeList.h 35 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName)
37 return adoptRef(new TagNodeList(rootNode, namespaceURI, localName));
43 TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName);
NameNodeList.cpp 34 NameNodeList::NameNodeList(PassRefPtr<Node> rootNode, const String& name)
35 : DynamicNodeList(rootNode)
SelectorNodeList.cpp 44 PassRefPtr<StaticNodeList> createSelectorNodeList(Node* rootNode, const CSSSelectorList& querySelectorList)
47 Document* document = rootNode->document();
53 if (strictParsing && rootNode->inDocument() && onlySelector && onlySelector->m_match == CSSSelector::Id && !document->containsMultipleElementsWithId(onlySelector->value())) {
55 if (element && (rootNode->isDocumentNode() || element->isDescendantOf(rootNode)) && selectorChecker.checkSelector(onlySelector, element))
58 for (Node* n = rootNode->firstChild(); n; n = n->traverseNextNode(rootNode)) {
SelectorNodeList.h 40 PassRefPtr<StaticNodeList> createSelectorNodeList(Node* rootNode, const CSSSelectorList&);
ClassNodeList.cpp 38 ClassNodeList::ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames)
39 : DynamicNodeList(rootNode)
Traversal.cpp 33 Traversal::Traversal(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> nodeFilter, bool expandEntityReferences)
34 : m_root(rootNode)
DynamicNodeList.h 63 Node* rootNode() const { return m_rootNode.get(); }
66 DynamicNodeList(PassRefPtr<Node> rootNode);
67 DynamicNodeList(PassRefPtr<Node> rootNode, Caches*);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
IsSupported.java 59 Node rootNode;
62 rootNode = doc.getDocumentElement();
63 state = rootNode.isSupported("XXX", "1.0");
68 Node rootNode;
71 rootNode = doc.getDocumentElement();
72 state = rootNode.isSupported("XML", "9.0");
77 Node rootNode;
80 rootNode = doc.getDocumentElement();
81 state = rootNode.isSupported("xml", "1.0");
86 Node rootNode;
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_noderemovechild.java 66 Element rootNode;
72 rootNode = doc.getDocumentElement();
73 childList = rootNode.getChildNodes();
75 removedChild = rootNode.removeChild(childToRemove);
noderemovechild.java 66 Element rootNode;
72 rootNode = doc.getDocumentElement();
73 childList = rootNode.getChildNodes();
75 removedChild = rootNode.removeChild(childToRemove);
hc_nodeappendchildinvalidnodetype.java 70 Element rootNode;
74 rootNode = doc.getDocumentElement();
80 appendedChild = rootNode.appendChild(newChild);
hc_nodeelementnodetype.java 62 Element rootNode;
65 rootNode = doc.getDocumentElement();
66 nodeType = (int) rootNode.getNodeType();
nodeappendchildinvalidnodetype.java 71 Element rootNode;
75 rootNode = doc.getDocumentElement();
81 appendedChild = rootNode.appendChild(newChild);
nodeelementnodetype.java 63 Element rootNode;
66 rootNode = doc.getDocumentElement();
67 nodeType = (int) rootNode.getNodeType();
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestBlenderAnim.java 65 rootNode.addLight(dl);
70 rootNode.attachChild(scene);
72 Spatial model = this.findNode(rootNode, "BaseMesh_01");
83 * @param rootNode the root node to search
87 private Spatial findNode(Node rootNode, String name) {
88 if (name.equals(rootNode.getName())) {
89 return rootNode;
91 return rootNode.getChild(name);
TestBlenderObjectAnim.java 65 rootNode.addLight(dl);
70 rootNode.attachChild(scene);
72 Spatial model = this.findNode(rootNode, "TestAnim");
83 * @param rootNode the root node to search
87 private Spatial findNode(Node rootNode, String name) {
88 if (name.equals(rootNode.getName())) {
89 return rootNode;
91 return rootNode.getChild(name);
  /external/jmonkeyengine/engine/src/test/jme3test/blender/
TestBlenderLoader.java 54 rootNode.attachChild(ogre);
58 rootNode.attachChild(track);
64 rootNode.addLight(dl);
70 rootNode.addLight(dl);
76 rootNode.addLight(dl);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
isSupported12.java 91 Node rootNode;
95 rootNode = doc.getDocumentElement();
96 state = rootNode.isSupported("Core", "2.0");
100 state = rootNode.isSupported(featureElement, "1.0");
104 state = rootNode.isSupported(featureElement, "2.0");
isSupported01.java 72 Node rootNode;
75 rootNode = doc.getDocumentElement();
76 state = rootNode.isSupported("XXX", "1.0");
isSupported02.java 72 Node rootNode;
75 rootNode = doc.getDocumentElement();
76 state = rootNode.isSupported("XML", "9.0");
isSupported04.java 74 Node rootNode;
77 rootNode = doc.getDocumentElement();
78 state = rootNode.isSupported("xml", "1.0");

Completed in 494 milliseconds

1 2 3 4 5 6 7 8 91011