/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/chromium_org/third_party/WebKit/Source/core/dom/ |
ChildNodeList.h | 34 static PassRefPtr<ChildNodeList> create(PassRefPtr<Node> rootNode) 36 return adoptRef(new ChildNodeList(rootNode)); 42 explicit ChildNodeList(PassRefPtr<Node> rootNode);
|
SelectorQuery.h | 49 PassRefPtr<NodeList> queryAll(Node& rootNode) const; 50 PassRefPtr<Element> queryFirst(Node& rootNode) const; 59 bool canUseFastQuery(const Node& rootNode) const; 61 void collectElementsByClassName(Node& rootNode, const AtomicString& className, Vector<RefPtr<Node> >&) const; 62 Element* findElementByClassName(Node& rootNode, const AtomicString& className) const; 63 void collectElementsByTagName(Node& rootNode, const QualifiedName& tagName, Vector<RefPtr<Node> >&) const; 64 Element* findElementByTagName(Node& rootNode, const QualifiedName& tagName) const; 65 PassOwnPtr<SimpleNodeList> findTraverseRoots(Node& rootNode, bool& matchTraverseRoots) const; 66 void executeSlowQueryAll(Node& rootNode, Vector<RefPtr<Node> >& matchedElements) const; 67 void executeQueryAll(Node& rootNode, Vector<RefPtr<Node> >& matchedElements) const [all...] |
LiveNodeList.cpp | 31 Node& LiveNodeListBase::rootNode() const 40 Node& rootNode = this->rootNode(); 41 if (!rootNode.isContainerNode()) 43 return toContainerNode(&rootNode); 72 Node& rootNode = this->rootNode(); 74 if (rootNode.inDocument()) { 75 Element* element = rootNode.treeScope().getElementById(elementId); 76 if (element && nodeMatches(element) && element->isDescendantOf(&rootNode)) [all...] |
NameNodeList.h | 36 static PassRefPtr<NameNodeList> create(PassRefPtr<Node> rootNode, CollectionType type, const AtomicString& name) 39 return adoptRef(new NameNodeList(rootNode, name)); 45 NameNodeList(PassRefPtr<Node> rootNode, const AtomicString& name);
|
SelectorQuery.cpp | 50 explicit SingleNodeList(Node* rootNode) : m_currentNode(rootNode) { } 67 ClassRootNodeList(Node& rootNode, const AtomicString& className) 69 , m_rootNode(rootNode) 99 ClassElementList(Node& rootNode, const AtomicString& className) 101 , m_rootNode(rootNode) 102 , m_currentElement(nextInternal(ElementTraversal::firstWithin(rootNode))) { } 142 inline bool SelectorDataList::selectorMatches(const SelectorData& selectorData, Element& element, const Node& rootNode) const 154 selectorCheckingContext.scope = !rootNode.isDocumentNode() && rootNode.isContainerNode() ? &toContainerNode(rootNode) : 0 [all...] |
ClassNodeList.cpp | 38 ClassNodeList::ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames) 39 : LiveNodeList(rootNode, ClassNodeListType, InvalidateOnClassAttrChange)
|
NameNodeList.cpp | 34 NameNodeList::NameNodeList(PassRefPtr<Node> rootNode, const AtomicString& name) 35 : LiveNodeList(rootNode, NameNodeListType, InvalidateOnNameAttrChange)
|
TagNodeList.h | 36 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName) 39 return adoptRef(new TagNodeList(rootNode, TagNodeListType, namespaceURI, localName)); 42 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, CollectionType type, const AtomicString& localName) 45 return adoptRef(new TagNodeList(rootNode, TagNodeListType, starAtom, localName)); 51 TagNodeList(PassRefPtr<Node> rootNode, CollectionType, const AtomicString& namespaceURI, const AtomicString& localName); 61 static PassRefPtr<HTMLTagNodeList> create(PassRefPtr<Node> rootNode, CollectionType type, const AtomicString& localName) 64 return adoptRef(new HTMLTagNodeList(rootNode, localName)); 70 HTMLTagNodeList(PassRefPtr<Node> rootNode, const AtomicString& localName);
|
ClassNodeList.h | 42 static PassRefPtr<ClassNodeList> create(PassRefPtr<Node> rootNode, const String& classNames) 44 return adoptRef(new ClassNodeList(rootNode, classNames)); 52 ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames);
|
TagNodeList.cpp | 32 TagNodeList::TagNodeList(PassRefPtr<Node> rootNode, CollectionType type, const AtomicString& namespaceURI, const AtomicString& localName) 33 : LiveNodeList(rootNode, type, DoNotInvalidateOnAttributeChanges) 57 HTMLTagNodeList::HTMLTagNodeList(PassRefPtr<Node> rootNode, const AtomicString& localName) 58 : TagNodeList(rootNode, HTMLTagNodeListType, starAtom, localName)
|
Traversal.cpp | 33 Traversal::Traversal(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> nodeFilter) 34 : m_root(rootNode)
|
/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");
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
DOMStorageItemsView.js | 77 this._dataGrid.rootNode().removeChildren(); 92 var rootNode = this._dataGrid.rootNode(); 93 var children = rootNode.children; 100 rootNode.removeChild(childNode); 116 var rootNode = this._dataGrid.rootNode(); 117 var children = rootNode.children; 127 rootNode.insertChild(childNode, children.length - 1); 139 var rootNode = this._dataGrid.rootNode() [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowUriMatcher.java | 27 public MatchNode rootNode; 30 rootNode = new MatchNode(code); 35 MatchNode authNode = rootNode.map.get(authority); 37 authNode = new MatchNode(rootNode.code); 38 rootNode.map.put(authority, authNode); 50 if (!rootNode.map.containsKey(auth)) { 51 return rootNode.code; 54 return matchSegments(rootNode.map.get(auth), segments); 79 return rootNode.code; 89 nextNode = new MatchNode(rootNode.code) [all...] |