Searched refs:rootNode (Results 1 - 25 of 223) sorted by relevance

123456789

/external/jmonkeyengine/engine/src/test/jme3test/app/state/
H A DRootNodeState.java40 private Node rootNode = new Node("Root Node"); field in class:RootNodeState
43 return rootNode;
50 rootNode.updateLogicalState(tpf);
51 rootNode.updateGeometricState();
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_noderemovechild.js95 var rootNode;
106 rootNode = doc.documentElement;
108 childList = rootNode.childNodes;
117 rootNode = childList.item(1);
118 childList = rootNode.childNodes;
121 removedChild = rootNode.removeChild(childToRemove);
H A Dhc_nodeelementnodetype.js91 var rootNode;
99 rootNode = doc.documentElement;
101 nodeType = rootNode.nodeType;
H A Dhc_nodeappendchildinvalidnodetype.js99 var rootNode;
108 rootNode = doc.documentElement;
115 appendedChild = rootNode.appendChild(newChild);
H A Dhc_nodeinsertbeforeinvalidnodetype.js101 var rootNode;
115 rootNode = refChild.parentNode;
121 insertedNode = rootNode.insertBefore(newChild,refChild);
H A Dhc_nodereplacechildinvalidnodetype.js101 var rootNode;
115 rootNode = oldChild.parentNode;
121 replacedChild = rootNode.replaceChild(newChild,oldChild);
/external/webkit/Source/WebCore/dom/
H A DChildNodeList.h34 static PassRefPtr<ChildNodeList> create(PassRefPtr<Node> rootNode, Caches* caches) argument
36 return adoptRef(new ChildNodeList(rootNode, caches));
43 ChildNodeList(PassRefPtr<Node> rootNode, Caches*);
H A DClassNodeList.h41 static PassRefPtr<ClassNodeList> create(PassRefPtr<Node> rootNode, const String& classNames) argument
43 return adoptRef(new ClassNodeList(rootNode, classNames));
49 ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames);
H A DNameNodeList.cpp34 NameNodeList::NameNodeList(PassRefPtr<Node> rootNode, const String& name) argument
35 : DynamicNodeList(rootNode)
H A DSelectorNodeList.cpp44 PassRefPtr<StaticNodeList> createSelectorNodeList(Node* rootNode, const CSSSelectorList& querySelectorList) argument
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)) {
H A DNameNodeList.h36 static PassRefPtr<NameNodeList> create(PassRefPtr<Node> rootNode, const String& name) argument
38 return adoptRef(new NameNodeList(rootNode, name));
44 NameNodeList(PassRefPtr<Node> rootNode, const String& name);
H A DTagNodeList.h35 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName) argument
37 return adoptRef(new TagNodeList(rootNode, namespaceURI, localName));
43 TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName);
H A DSelectorNodeList.h40 PassRefPtr<StaticNodeList> createSelectorNodeList(Node* rootNode, const CSSSelectorList&);
H A DClassNodeList.cpp38 ClassNodeList::ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames) argument
39 : DynamicNodeList(rootNode)
H A DTraversal.cpp33 Traversal::Traversal(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> nodeFilter, bool expandEntityReferences) argument
34 : m_root(rootNode)
H A DTagNodeList.cpp32 TagNodeList::TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName) argument
33 : DynamicNodeList(rootNode)
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_nodeelementnodetype.js91 var rootNode;
99 rootNode = doc.documentElement;
101 nodeType = rootNode.nodeType;
H A Dhc_noderemovechild.js95 var rootNode;
106 rootNode = doc.documentElement;
108 childList = rootNode.childNodes;
111 removedChild = rootNode.removeChild(childToRemove);
H A Dhc_nodeappendchildinvalidnodetype.js99 var rootNode;
108 rootNode = doc.documentElement;
115 appendedChild = rootNode.appendChild(newChild);
H A Dhc_nodeinsertbeforeinvalidnodetype.js101 var rootNode;
115 rootNode = refChild.parentNode;
121 insertedNode = rootNode.insertBefore(newChild,refChild);
H A Dhc_nodereplacechildinvalidnodetype.js101 var rootNode;
115 rootNode = oldChild.parentNode;
121 replacedChild = rootNode.replaceChild(newChild,oldChild);
/external/jmonkeyengine/engine/src/test/jme3test/model/anim/
H A DTestBlenderAnim.java65 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) { argument
88 if (name.equals(rootNode.getName())) {
89 return rootNode;
91 return rootNode.getChild(name);
H A DTestBlenderObjectAnim.java65 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) { argument
88 if (name.equals(rootNode.getName())) {
89 return rootNode;
91 return rootNode.getChild(name);
/external/jmonkeyengine/engine/src/test/jme3test/blender/
H A DTestBlenderLoader.java54 rootNode.attachChild(ogre);
58 rootNode.attachChild(track);
64 rootNode.addLight(dl);
70 rootNode.addLight(dl);
76 rootNode.addLight(dl);
/external/jmonkeyengine/engine/src/test/jme3test/light/
H A DTestManyLights.java50 rootNode.attachChild(scene);

Completed in 314 milliseconds

123456789