HomeSort by relevance Sort by last modified time
    Searched full:rootnode (Results 1 - 25 of 334) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/third_party/WebKit/Source/core/dom/
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...]
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...]
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);
ChildNodeList.h 34 static PassRefPtr<ChildNodeList> create(PassRefPtr<Node> rootNode)
36 return adoptRef(new ChildNodeList(rootNode));
42 explicit ChildNodeList(PassRefPtr<Node> rootNode);
TreeScope.cpp 65 TreeScope::TreeScope(ContainerNode* rootNode, Document* document)
66 : m_rootNode(rootNode)
72 ASSERT(rootNode);
74 ASSERT(rootNode != document);
114 return rootNode()->hasTreeSharedParent();
126 ASSERT(rootNode()->isDocumentNode());
133 ASSERT(!rootNode()->isDocumentNode());
211 if (rootNode()->document().isHTMLDocument())
244 RenderObject* renderer = rendererFromPoint(&rootNode()->document(), x, y);
279 ASSERT(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);
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)
  /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/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/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);
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventPath.cpp 61 Node* rootNode = referenceNode->treeScope().rootNode();
62 Element* shadowHostElement = rootNode->isShadowRoot() ? toShadowRoot(rootNode)->host() : 0;
75 return target->toNode() && target->toNode()->treeScope().rootNode() == shadowRoot;
202 Node* rootNode = lastTreeScope.rootNode();
203 return rootNode->isShadowRoot() && toShadowRoot(rootNode)->youngerShadowRoot() == currentTreeScope.rootNode();
    [all...]
  /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);
  /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...]

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>