/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_documentcreatedocumentfragment.java | 63 NodeList children; local 70 children = newDocFragment.getChildNodes(); 71 length = (int) children.getLength();
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
importNode04.java | 76 NodeList children; local 85 children = aNode.getChildNodes(); 86 assertSize("throw_Size", 1, children);
|
/libcore/support/src/test/java/tests/support/ |
Support_Xml.java | 42 NodeList children = doc.getFirstChild().getChildNodes(); local 43 assertEquals(1, children.getLength()); 44 return children.item(0).getNodeValue();
|
/packages/apps/Mms/src/com/android/mms/dom/smil/ |
ElementSequentialTimeContainerImpl.java | 61 NodeList children = getTimeChildren(); local 62 for (int i = 0; i < children.getLength(); ++i) { 63 ElementTime child = (ElementTime) children.item(i);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 154 children = [] 155 children.append(self.test) 156 children.append(self.fail) 157 return tuple(children) 176 children = [] 177 children.extend(flatten(self.nodes)) 178 children.append(self.expr) 179 return tuple(children) 290 children = [] 291 children.append(self.node [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
ast.py | 154 children = [] 155 children.append(self.test) 156 children.append(self.fail) 157 return tuple(children) 176 children = [] 177 children.extend(flatten(self.nodes)) 178 children.append(self.expr) 179 return tuple(children) 290 children = [] 291 children.append(self.node [all...] |
/external/chromium_org/cc/layers/ |
layer_unittest.cc | 86 ASSERT_EQ(3U, parent_->children().size()); 87 EXPECT_EQ(child1_, parent_->children()[0]); 88 EXPECT_EQ(child2_, parent_->children()[1]); 89 EXPECT_EQ(child3_, parent_->children()[2]); 94 ASSERT_EQ(2U, child1_->children().size()); 95 EXPECT_EQ(grand_child1_, child1_->children()[0]); 96 EXPECT_EQ(grand_child2_, child1_->children()[1]); 100 ASSERT_EQ(1U, child2_->children().size()); 101 EXPECT_EQ(grand_child3_, child2_->children()[0]); 104 ASSERT_EQ(0U, child3_->children().size()) [all...] |
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_editor_base_controller.h | 126 @property(nonatomic, retain) NSMutableArray* children; variable 135 // already exist in the bookmark model, |folderNode| and |children| (if any 136 // children are already attached to this folder) must be provided and 139 // YES and |folderNode| and |children| should be NULL/nil. 142 children:(NSMutableArray*)children 146 // structure. |folderName| and |folderNode| must be provided. |children| 150 children:(NSMutableArray*)children;
|
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_editor_base_controller.h | 140 @property(nonatomic, retain) NSMutableArray* children; variable 149 // already exist in the bookmark model, |folderNode| and |children| (if any 150 // children are already attached to this folder) must be provided and 153 // YES and |folderNode| and |children| should be NULL/nil. 156 children:(NSMutableArray*)children 160 // structure. |folderName| and |folderNode| must be provided. |children| 164 children:(NSMutableArray*)children;
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/ |
manual.js | 29 tests[i].children[0].textContent = run.tests[i].name; 35 tests[i].children[1].appendChild(step); 38 step.children[0].textContent = run.tests[i].steps[j].messages[0]; 41 step.children[k].textContent = run.tests[i].steps[j].messages[k]; 42 step.children[k].setAttribute('class', 'difference');
|
/frameworks/base/sax/java/android/sax/ |
Element.java | 39 Children children; field in class:Element 69 + " text element listener. It cannot have children."); 72 if (children == null) { 73 children = new Children(); 76 return children.getOrCreate(this, uri, localName); 158 if (children != null) { 159 throw new IllegalStateException("This element already has children." 176 * Clears flags on required children [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
MenuLoader.java | 68 NodeList children = node.getChildNodes(); local 69 if (children != null && children.getLength() != 0) { 70 for (int i = 0; i < children.getLength(); i++) { 71 Node nodei = children.item(i); 133 private List<MenuNode> children = new ArrayList<MenuNode>(); field in class:MenuLoader.MenuNode 142 return children; 146 children.add(MenuNode); 150 List<MenuLoader.MenuNode> ch = child.children; 155 for (MenuNode child : source.children) { [all...] |
/external/chromium/testing/gtest/test/ |
gtest_xml_test_utils.py | 66 order of the children as they are not guaranteed to be in any 117 children. For <testsuites>, <testsuite> and <testcase> elements, the ID 126 children = {} 132 self.assert_(childID not in children) 133 children[childID] = child 135 if "detail" not in children: 138 children["detail"] = child.ownerDocument.createCDATASection( 141 children["detail"].nodeValue += child.nodeValue 144 return children
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
malware_dom_details_browsertest.cc | 73 EXPECT_EQ(0u, params[0].children.size()); 78 EXPECT_EQ(1u, params[1].children.size()); 79 EXPECT_EQ(iframe1_url, params[1].children[0]); 83 EXPECT_EQ(0u, params[2].children.size()); 87 // and once with the correct children. The caller in the browser 91 EXPECT_EQ(1u, params[3].children.size()); 92 EXPECT_EQ(iframe2_url, params[3].children[0]); 96 EXPECT_EQ(0u, params[4].children.size());
|
/external/chromium_org/testing/gtest/test/ |
gtest_xml_test_utils.py | 66 order of the children as they are not guaranteed to be in any 117 children. For <testsuites>, <testsuite> and <testcase> elements, the ID 126 children = {} 132 self.assert_(childID not in children) 133 children[childID] = child 135 if 'detail' not in children: 138 children['detail'] = child.ownerDocument.createCDATASection( 141 children['detail'].nodeValue += child.nodeValue 144 return children
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
malloc-tree | 65 self.children = {} 69 return len(self.children) > 0 72 if not name in self.children: 74 self.children[name] = newChild 76 return self.children[name] 112 sortedChildren = sorted(self.children.values(), key=sortKeyByBytes, reverse=True) 114 if showBars and len(self.children) > 1:
|
/external/gtest/test/ |
gtest_xml_test_utils.py | 66 order of the children as they are not guaranteed to be in any 117 children. For <testsuites>, <testsuite> and <testcase> elements, the ID 126 children = {} 132 self.assert_(childID not in children) 133 children[childID] = child 135 if "detail" not in children: 138 children["detail"] = child.ownerDocument.createCDATASection( 141 children["detail"].nodeValue += child.nodeValue 144 return children
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
CompoundCollisionShape.java | 55 protected ArrayList<ChildCollisionShape> children = new ArrayList<ChildCollisionShape>(); field in class:CompoundCollisionShape 70 // children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape)); 82 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!"); 87 children.add(new ChildCollisionShape(location.clone(), rotation.clone(), shape)); 94 throw new IllegalStateException("CompoundCollisionShapes cannot have CompoundCollisionShapes as children!"); 110 for (Iterator<ChildCollisionShape> it = children.iterator(); it.hasNext();) { 119 return children; 139 capsule.writeSavableArrayList(children, "children", new ArrayList<ChildCollisionShape>()); 145 children = capsule.readSavableArrayList("children", new ArrayList<ChildCollisionShape>()) [all...] |
/external/protobuf/gtest/test/ |
gtest_xml_test_utils.py | 65 order of the children as they are not guaranteed to be in any 116 children. For <testsuites>, <testsuite> and <testcase> elements, the ID 125 children = {} 131 self.assert_(childID not in children) 132 children[childID] = child 134 if "detail" not in children: 137 children["detail"] = child.ownerDocument.createCDATASection( 140 children["detail"].nodeValue += child.nodeValue 143 return children
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_xml_test_utils.py | 66 order of the children as they are not guaranteed to be in any 119 children. For <testsuites>, <testsuite> and <testcase> elements, the ID 128 children = {} 134 self.assert_(childID not in children) 135 children[childID] = child 137 if 'detail' not in children: 140 children['detail'] = child.ownerDocument.createCDATASection( 143 children['detail'].nodeValue += child.nodeValue 146 return children
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
pytree.py | 46 children = () # Tuple of subnodes variable in class:Base 140 for ch in self.parent.children: 142 assert not found, (self.parent.children, self, new) 148 assert found, (self.children, self, new) 150 self.parent.children = l_children 159 if not node.children: 161 node = node.children[0] 172 parent's children before it was removed. 175 for i, node in enumerate(self.parent.children): 178 del self.parent.children[i [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
pytree.py | 46 children = () # Tuple of subnodes variable in class:Base 140 for ch in self.parent.children: 142 assert not found, (self.parent.children, self, new) 148 assert found, (self.children, self, new) 150 self.parent.children = l_children 159 if not node.children: 161 node = node.children[0] 172 parent's children before it was removed. 175 for i, node in enumerate(self.parent.children): 178 del self.parent.children[i [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
ResultsElement.java | 60 ResultsElement[] children; field in class:ResultsElement 204 * Iterate the element children. 210 if (this.children == null) { 213 return this.children; 223 if (this.children == null) { 226 return this.children; 351 ResultsElement searchedResults = this.children[i]; 396 * For {@link ComponentResultsElement}, and {@link ScenarioResultsElement}, it's the merge of all the children status 437 this.children = new ResultsElement[length]; 442 this.children[count++] = childElement [all...] |
/external/oprofile/daemon/ |
opd_perfmon.c | 98 static struct child * children; variable in typeref:struct:child 121 if (children[i].pid == getpid()) { 122 children[i].sigusr1 = 1; 134 if (children[i].pid == getpid()) { 135 children[i].sigusr2 = 1; 319 struct child * self = &children[cpu]; 433 children = xmalloc(sizeof(struct child) * nr_cpus); 434 bzero(children, sizeof(struct child) * nr_cpus); 439 if (pipe(children[i].up_pipe)) { 449 close(children[i].up_pipe[0]) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPNode.java | 47 private List children = null; field in class:XMPNode 101 children = null; 142 * <em>Note:</em> The node children are indexed from [1..size]! 158 * <em>Note:</em> The node children are indexed from [1..size]! 181 * If its a schema node and doesn't have any children anymore, its deleted. 193 * Removes the children list if this node has no children anymore; 194 * checks if the provided node is a schema node and doesn't have any children anymore, 199 if (children.isEmpty()) 201 children = null [all...] |