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

1 2 3 4 5 6 7

  /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);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilLayoutElementImpl.java 46 NodeList childNodes = this.getChildNodes();
48 int childrenCount = childNodes.getLength();
50 if (childNodes.item(i).getNodeName().equals("root-layout")) {
51 rootLayoutNode = (SMILRootLayoutElement)childNodes.item(i);
  /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_org/third_party/WebKit/Tools/GardeningServer/scripts/ui/
results_unittests.js 136 equals(topPanel.childNodes[0], topPanel.querySelector('.active'));;
140 equals(topPanel.childNodes[0], topPanel.querySelector('.active'));;
145 equals(topPanel.childNodes[1], topPanel.querySelector('.active'));;
150 equals(topPanel.childNodes[0], topPanel.querySelector('.active'));;
154 equals(topPanel.childNodes[1], topPanel.querySelector('.active'));;
159 equals(topPanel.childNodes[0], topPanel.querySelector('.active'));;
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
xml_writer_base_unittest.py 26 child.toprettyxml(indent=' ') for child in parent.childNodes)
  /external/chromium_org/tools/grit/grit/gather/
policy_json.py 38 for node1 in placeholder.childNodes:
43 for node2 in node1.childNodes:
67 node = minidom.parseString(xml).childNodes[0]
72 for child in node.childNodes:
98 for child in node.childNodes:
111 for child in node.childNodes:
  /external/robolectric/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/smack/src/org/jivesoftware/smackx/provider/
VCardProvider.java 139 NodeList childNodes = photoNode.getChildNodes();
141 int childNodeCount = childNodes.getLength();
144 nodes.add(childNodes.item(i));
224 NodeList childNodes = addressNode.getChildNodes();
225 for (int j = 0; j < childNodes.getLength(); j++) {
226 Node node = childNodes.item(j);
257 NodeList childNodes = document.getDocumentElement().getChildNodes();
258 for (int i = 0; i < childNodes.getLength(); i++) {
259 Node node = childNodes.item(i);
282 NodeList childNodes = node.getChildNodes()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
AuditLauncherView.js 198 var childNodes = this._categoriesElement.childNodes;
199 for (var i = 0, length = childNodes.length; i < length; ++i)
200 childNodes[i].firstChild.checked = checkCategories;
296 var childNodes = this._categoriesElement.childNodes;
297 for (var i = 0, length = childNodes.length; i < length; ++i)
298 selectedCategories[childNodes[i].__displayName] = childNodes[i].firstChild.checked;
  /external/chromium/chrome/browser/resources/shared/js/
parse_html_subset.js 38 for (var i = 0; i < n.childNodes.length; i++) {
39 walk(n.childNodes[i], f);
  /external/chromium_org/third_party/tlslite/tlslite/utils/
xmltools.py 43 if element.childNodes.length==0: #DON'T DO len(element.childNodes) - doesn't work in Jython
47 if element.childNodes.length==1:
92 child = element.childNodes.item(index)
105 if self.index < len(self.element.childNodes):
106 retVal = self.element.childNodes.item(self.index)
113 if self.index != len(self.element.childNodes):
120 child = element.childNodes.item(index)
127 child = element.childNodes.item(index)
  /external/chromium_org/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...]
  /external/libvpx/libvpx/examples/includes/ASCIIMathPHP-2.0/
htmlMathML.js 21 for (var i=0; i<node.childNodes.length; i++) {
22 var st = node.childNodes[i].nodeValue;
24 newnode.appendChild(convertMath(node.childNodes[i]));
40 for (var j=0;j<tmp_node.childNodes.length;j++) {
41 if (tmp_node.childNodes[j].nodeType != 3) {
  /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_org/tools/gyp/pylib/gyp/
xml_fix.py 42 if self.childNodes:
44 for node in self.childNodes:
  /external/chromium_org/chrome/browser/resources/
about_stats.js 7 return node.childNodes[1];
12 return node.childNodes[3];
17 return node.childNodes[5];
22 return node.childNodes[1];
27 return node.childNodes[3];
32 return node.childNodes[5];
37 return node.childNodes[7];

Completed in 560 milliseconds

1 2 3 4 5 6 7