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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/www/analyzer/scripts/
menu.js 4 for (i=0; i<navRoot.childNodes.length; i++) {
5 node = navRoot.childNodes[i];
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrchildnodes2.java 31 * Checks Node.childNodes for an attribute with multiple child nodes.
65 NodeList childNodes;
72 childNodes = titleAttr.getChildNodes();
75 assertSize("childNodesSize", 2, childNodes);
76 textNode = (Text) childNodes.item(0);
79 textNode = (Text) childNodes.item(1);
82 textNode = (Text) childNodes.item(2);
hc_attrchildnodes1.java 31 * Checks that Node.childNodes for an attribute node contains
66 NodeList childNodes;
72 childNodes = titleAttr.getChildNodes();
73 assertSize("childNodesSize", 1, childNodes);
74 textNode = (Text) childNodes.item(0);
77 textNode = (Text) childNodes.item(1);
processinginstructiongetdata.java 68 NodeList childNodes;
72 childNodes = doc.getChildNodes();
73 piNode = (ProcessingInstruction) childNodes.item(0);
processinginstructiongettarget.java 67 NodeList childNodes;
71 childNodes = doc.getChildNodes();
72 piNode = (ProcessingInstruction) childNodes.item(0);
cdatasectionnormalize.java 66 NodeList childNodes;
73 childNodes = lChild.getChildNodes();
74 cdataN = (CDATASection) childNodes.item(1);
78 cdataN = (CDATASection) childNodes.item(3);
hc_nodechildnodes.java 68 NodeList childNodes;
84 childNodes = employeeNode.getChildNodes();
85 for (int indexN1006C = 0; indexN1006C < childNodes.getLength(); indexN1006C++) {
86 childNode = (Node) childNodes.item(indexN1006C);
nodechildnodes.java 31 * Collect the element names from Node.childNodes and check against expectations.
61 NodeList childNodes;
78 childNodes = employeeNode.getChildNodes();
79 for (int indexN1006C = 0; indexN1006C < childNodes.getLength(); indexN1006C++) {
80 childNode = (Node) childNodes.item(indexN1006C);
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_adapters/
default.js 8 childNodes: []
16 childNodes: []
26 childNodes: [],
52 for (var i = 0; i < document.childNodes.length; i++) {
53 if (document.childNodes[i].nodeName === '#documentType') {
54 doctypeNode = document.childNodes[i];
84 parentNode.childNodes.push(newNode);
89 var insertionIdx = parentNode.childNodes.indexOf(referenceNode);
91 parentNode.childNodes.splice(insertionIdx, 0, newNode);
97 var idx = node.parentNode.childNodes.indexOf(node);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_minidom.py 70 elem = root.childNodes[0]
73 self.confirm(len(root.childNodes) == 2
74 and root.childNodes.length == 2
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
77 and root.childNodes[1] is elem
78 and root.childNodes.item(1) is elem
85 self.confirm(len(root.childNodes) == 3
86 and root.childNodes.length == 3
87 and root.childNodes[1] is ele
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_minidom.py 70 elem = root.childNodes[0]
73 self.confirm(len(root.childNodes) == 2
74 and root.childNodes.length == 2
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
77 and root.childNodes[1] is elem
78 and root.childNodes.item(1) is elem
85 self.confirm(len(root.childNodes) == 3
86 and root.childNodes.length == 3
87 and root.childNodes[1] is ele
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 70 elem = root.childNodes[0]
73 self.confirm(len(root.childNodes) == 2
74 and root.childNodes.length == 2
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
77 and root.childNodes[1] is elem
78 and root.childNodes.item(1) is elem
85 self.confirm(len(root.childNodes) == 3
86 and root.childNodes.length == 3
87 and root.childNodes[1] is ele
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 70 elem = root.childNodes[0]
73 self.confirm(len(root.childNodes) == 2
74 and root.childNodes.length == 2
75 and root.childNodes[0] is nelem
76 and root.childNodes.item(0) is nelem
77 and root.childNodes[1] is elem
78 and root.childNodes.item(1) is elem
85 self.confirm(len(root.childNodes) == 3
86 and root.childNodes.length == 3
87 and root.childNodes[1] is ele
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/docs/web/
site.js 14 if (title.childNodes[0].tagName != 'A') {
16 while (title.childNodes.length) {
17 anchor.appendChild(title.childNodes[0]);
23 anchor = title.childNodes[0];
  /external/testng/src/main/java/org/testng/xml/dom/
Wrapper.java 46 NodeList childNodes = element.getChildNodes();
47 for (int i = 0; i < childNodes.getLength(); i++) {
48 if (childNodes.item(i).hasAttributes()) {
49 Element item = (Element) childNodes.item(i);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
StringArrayResourceLoader.java 31 NodeList childNodes = (NodeList) itemXPath.evaluate(node, XPathConstants.NODESET);
33 for (int j = 0; j < childNodes.getLength(); j++) {
34 Node childNode = childNodes.item(j);
PluralResourceLoader.java 38 NodeList childNodes = (NodeList) itemXPath.evaluate(node, XPathConstants.NODESET);
40 for (int j = 0; j < childNodes.getLength(); j++) {
41 Node childNode = childNodes.item(j);
  /external/v8/build/android/pylib/utils/
findbugs.py 25 for en in (n for n in results_doc.documentElement.childNodes
33 for c in (n for n in node.childNodes
36 if (len(c.childNodes) == 1
37 and c.childNodes[0].nodeType == xml.dom.Node.TEXT_NODE):
38 return c.childNodes[0].data
45 for c in (n for n in node.childNodes
60 elif (c.tagName == 'ShortMessage' and len(c.childNodes) == 1
61 and c.childNodes[0].nodeType == xml.dom.Node.TEXT_NODE):
62 msg_parts.append(c.childNodes[0].data)
  /external/v8/tools/gyp/tools/
pretty_vcproj.py 67 if node.childNodes:
90 for sub_node in node.childNodes:
104 for current in node.childNodes:
146 for sub_node in node.childNodes:
151 for sub_node in node.childNodes:
170 if node.childNodes:
175 while node.childNodes and node.childNodes[0]:
177 current = node.childNodes[0]
206 for node in vcproj.childNodes
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypographyFix.java 62 NodeList childNodes = element.getChildNodes();
63 for (int i = 0, n = childNodes.getLength(); i < n; i++) {
64 Node child = childNodes.item(i);
  /external/chromium-trace/catapult/tracing/third_party/css-element-queries/src/
ResizeSensor.js 84 var expand = element.resizeSensor.childNodes[0];
85 var expandChild = expand.childNodes[0];
86 var shrink = element.resizeSensor.childNodes[1];
87 var shrinkChild = shrink.childNodes[0];
  /packages/apps/Browser2/test/resources/
js-test.js 22 // also check for childNodes, an arbitrary DOM-related object that is
25 typeof document.childNodes === 'undefined') && !!self.importScripts;
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_parser2.py 33 self.assertTrue(doc.childNodes[0].namespaceURI == namespaces["html"])
38 self.assertTrue(doc.childNodes[0].namespaceURI is None)
  /external/v8/tools/gyp/pylib/gyp/
xml_fix.py 42 if self.childNodes:
44 for node in self.childNodes:
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tiledmappacker/
TiledMapPacker.java 410 NodeList childNodes = parent.getChildNodes();
411 for (int i = 0; i < childNodes.getLength(); i++) {
412 if (childNodes.item(i).getNodeName().equals(child)) {
413 return childNodes.item(i);
419 if (childNodes.item(0) != null)
420 return parent.insertBefore(newNode, childNodes.item(0));
428 NodeList childNodes = node.getChildNodes();
429 for (int i = 0; i < childNodes.getLength(); i++) {
430 if (childNodes.item(i).getNodeName().equals(childName)) {
431 NamedNodeMap attributes = childNodes.item(i).getAttributes()
    [all...]

Completed in 940 milliseconds

1 2 3 4 5 6 7 8 91011>>