HomeSort by relevance Sort by last modified time
    Searched refs:childNodes (Results 1 - 25 of 523) 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);
  /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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/dom/
minidom.py 64 if self.childNodes:
70 return self.childNodes
73 if self.childNodes:
74 return self.childNodes[0]
77 if self.childNodes:
78 return self.childNodes[-1]
82 for c in tuple(newChild.childNodes):
95 index = self.childNodes.index(refChild)
100 self.childNodes.insert(index, newChild)
104 node = self.childNodes[index-1
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
minidom.py 64 if self.childNodes:
70 return self.childNodes
73 if self.childNodes:
74 return self.childNodes[0]
77 if self.childNodes:
78 return self.childNodes[-1]
82 for c in tuple(newChild.childNodes):
95 index = self.childNodes.index(refChild)
100 self.childNodes.insert(index, newChild)
104 node = self.childNodes[index-1
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 64 if self.childNodes:
70 return self.childNodes
73 if self.childNodes:
74 return self.childNodes[0]
77 if self.childNodes:
78 return self.childNodes[-1]
82 for c in tuple(newChild.childNodes):
95 index = self.childNodes.index(refChild)
100 self.childNodes.insert(index, newChild)
104 node = self.childNodes[index-1
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minidom.py 64 if self.childNodes:
70 return self.childNodes
73 if self.childNodes:
74 return self.childNodes[0]
77 if self.childNodes:
78 return self.childNodes[-1]
82 for c in tuple(newChild.childNodes):
95 index = self.childNodes.index(refChild)
100 self.childNodes.insert(index, newChild)
104 node = self.childNodes[index-1
    [all...]

Completed in 422 milliseconds

1 2 3 4 5 6 7 8 91011>>