/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...] |
/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...] |
/external/webkit/Source/WebCore/dom/ |
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)) {
|
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*);
|
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);
|
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);
|
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);
|
/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/app/state/ |
RootNodeState.java | 40 private Node rootNode = new Node("Root Node"); 43 return rootNode; 50 rootNode.updateLogicalState(tpf); 51 rootNode.updateGeometricState();
|
/external/jmonkeyengine/engine/src/android/jme3test/android/ |
TestUnshadedModel.java | 33 rootNode.attachChild(sphere); 38 rootNode.addLight(pl); 42 rootNode.addLight(al);
|
SimpleSoundTest.java | 31 rootNode.attachChild(gun);
32 rootNode.attachChild(nature);
|
/external/jmonkeyengine/engine/src/test/jme3test/material/ |
TestUnshadedModel.java | 33 rootNode.attachChild(sphere); 38 rootNode.addLight(pl); 42 rootNode.addLight(al);
|
TestBumpModel.java | 64 rootNode.attachChild(signpost); 68 rootNode.attachChild(lightMdl); 73 rootNode.addLight(pl); 79 rootNode.addLight(dl); 85 rootNode.addLight(dl); 91 rootNode.addLight(dl);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CanvasViewInfoTest.java | 81 UiViewElementNode rootNode = createNode("android.widget.LinearLayout", true); 82 ViewInfo root = new ViewInfo("LinearLayout", rootNode, 10, 10, 100, 100); 83 UiViewElementNode child1Node = createNode(rootNode, "android.widget.Button", false); 85 UiViewElementNode child2Node = createNode(rootNode, "android.widget.Button", false); 95 assertSame(rootView.getUiViewNode(), rootNode); 164 UiViewElementNode rootNode = createNode("android.widget.LinearLayout", true); 165 ViewInfo root = new ViewInfo("LinearLayout", rootNode, 10, 10, 100, 100); 166 UiViewElementNode child1Node = createNode(rootNode, "android.widget.Button", false); 168 UiViewElementNode child2Node = createNode(rootNode, "include", true); 180 assertSame(rootNode, rootView.getUiViewNode()) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/post/ |
TestTransparentSSAO.java | 42 rootNode.attachChild(geom); 51 rootNode.addLight(al); 56 rootNode.addLight(dl1); 61 rootNode.addLight(dl); 63 rootNode.attachChild(teaGeom);
|
/external/jmonkeyengine/engine/src/test/jme3test/model/ |
TestOgreLoading.java | 61 // rootNode.addLight(pl);
68 rootNode.addLight(dl);
73 rootNode.attachChild(lightMdl);
77 rootNode.attachChild(lightMd2);
83 rootNode.addLight(pl);
88 rootNode.addLight(p2);
95 rootNode.attachChild(elephant);
|
TestMonkeyHead.java | 61 rootNode.attachChild(bumpy); 65 rootNode.attachChild(lightMdl); 70 rootNode.addLight(pl); 76 rootNode.addLight(dl); 82 rootNode.addLight(dl); 88 rootNode.addLight(dl);
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
PhysicsTestHelper.java | 36 * @param rootNode 40 public static void createPhysicsTestWorld(Node rootNode, AssetManager assetManager, PhysicsSpace space) { 43 rootNode.addLight(light); 56 rootNode.attachChild(floorGeometry); 67 rootNode.attachChild(boxGeometry); 77 rootNode.attachChild(sphereGeometry); 82 public static void createPhysicsTestWorldSoccer(Node rootNode, AssetManager assetManager, PhysicsSpace space) { 85 rootNode.addLight(light); 98 rootNode.attachChild(floorGeometry); 110 rootNode.attachChild(ballGeometry) [all...] |
TestKinematicAddToPhysicsSpaceIssue.java | 40 rootNode.attachChild(physicsSphere); 52 rootNode.attachChild(physicsSphere2); 66 rootNode.attachChild(node2); 72 rootNode.attachChild(node3);
|
TestPhysicsReadWrite.java | 74 rootNode.attachChild(physicsRootNode); 79 rootNode.attachChild(physicsSphere); 85 rootNode.attachChild(physicsSphere2); 92 rootNode.attachChild(physicsBox); 98 rootNode.attachChild(physicsCylinder); 104 rootNode.attachChild(node2); 110 rootNode.attachChild(node3); 132 rootNode.attachChild(newPhysicsRootNode);
|
/external/e2fsprogs/debugfs/ |
htree.c | 33 struct ext2_dx_root_info * rootnode, 63 hash_alg = rootnode->hash_version; 111 struct ext2_dx_root_info * rootnode, 117 struct ext2_dx_root_info * rootnode, 148 htree_dump_int_block(fs, ino, inode, rootnode, 151 htree_dump_leaf_node(fs, ino, inode, rootnode, 160 struct ext2_dx_root_info * rootnode, 187 htree_dump_int_node(fs, ino, inode, rootnode, 204 struct ext2_dx_root_info *rootnode; local 271 rootnode = (struct ext2_dx_root_info *) (buf + 24) [all...] |
/external/webkit/LayoutTests/dom/xhtml/level1/core/ |
hc_noderemovechild.js | 95 var rootNode; 106 rootNode = doc.documentElement; 108 childList = rootNode.childNodes; 117 rootNode = childList.item(1); 118 childList = rootNode.childNodes; 121 removedChild = rootNode.removeChild(childToRemove);
|
/external/jmonkeyengine/engine/src/test/jme3test/export/ |
TestAssetLinkNode.java | 74 // rootNode.attachChild(loaderNode); 86 //attach to rootNode 87 rootNode.attachChild(newLoaderNode); 93 rootNode.attachChild(loaderNode); 97 rootNode.attachChild(lightMdl); 102 rootNode.addLight(pl); 108 rootNode.addLight(dl); 114 rootNode.addLight(dl); 120 rootNode.addLight(dl);
|
/external/webkit/LayoutTests/dom/html/level1/core/ |
hc_noderemovechild.js | 95 var rootNode; 106 rootNode = doc.documentElement; 108 childList = rootNode.childNodes; 111 removedChild = rootNode.removeChild(childToRemove);
|