/external/webkit/Source/WebKit/mac/WebView/ |
WebRenderNode.h | 35 NSArray *children; variable 43 - (NSArray *)children;
|
WebRenderNode.mm | 59 - (id)_initWithName:(NSString *)n position:(NSPoint)p rect:(NSRect)r coreFrame:(Frame*)coreFrame children:(NSArray *)c 79 children = [collectChildren copy]; 87 NSMutableArray *children = [[NSMutableArray alloc] init]; 90 [children addObject:childCopy]; 132 coreFrame:frame children:children]; 135 [children release]; 147 [children release]; 152 - (NSArray *)children 154 return children; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/ |
DocumentDescriptor.java | 28 * It has a children list which represent all the possible roots of the document. 36 * Constructs a new {@link DocumentDescriptor} based on its XML name and children list. 44 * @param children The list of allowed children. Can be null or empty. 46 public DocumentDescriptor(String xml_name, ElementDescriptor[] children) { 47 super(xml_name, children, Mandatory.MANDATORY);
|
/external/junit/src/org/junit/runners/model/ |
RunnerBuilder.java | 75 * {@code children}. Care is taken to avoid infinite recursion: 79 public List<Runner> runners(Class<?> parent, Class<?>[] children) 84 return runners(children); 90 public List<Runner> runners(Class<?> parent, List<Class<?>> children) 92 return runners(parent, children.toArray(new Class<?>[0])); 95 private List<Runner> runners(Class<?>[] children) { 97 for (Class<?> each : children) {
|
/external/webkit/Source/WebCore/inspector/front-end/ |
ProfileDataGridTree.js | 132 // If the grid node is collapsed, then don't sort children (save operation for later). 135 if (gridNode.children.length) 142 var children = gridNode.children; 143 var childCount = children.length; 146 children.sort(comparator); 149 children[childIndex]._recalculateSiblings(childIndex); 151 gridNodeGroups.push(children); 236 this._savedChildren = this.children.slice(); 252 var children = this._savedChildren [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/db/ |
AbstractResults.java | 24 * Each results gives access to specific children depending on model. 41 List children; field in class:AbstractResults 47 this.children = new ArrayList(); 53 this.children = new ArrayList(); 63 int size = this.children.size(); 65 Object results = this.children.get(i); 67 this.children.add(i, child); 72 this.children.add(child); 105 * Return an array built on the current results children list. 107 * @return An array of the children lis [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
ProfileData.java | 41 public ArrayList<Node> children; field in class:ProfileData.Node 82 if (node.children == null) { 83 node.children = new ArrayList<Node>(); 87 ArrayList<Node> children = node.children; local 89 for (j = 0; j < children.size(); j++) { 90 if (children.get(j).id == id) break; 92 if (j == children.size()) { 93 children.add(new Node(node, id)); 96 node = children.get(j) 145 ArrayList<Node> children = node.children; local [all...] |
/external/chromium/chrome/browser/accessibility/ |
renderer_accessibility_browsertest.cc | 52 for (size_t i = 0; i < node.children.size(); i++) 53 RecursiveAssertUniqueIds(node.children[i], ids); 119 ASSERT_EQ(1U, tree.children.size()); 120 const WebAccessibility& body = tree.children[0]; 125 // Check properties of the two children of the BODY element. 126 ASSERT_EQ(2U, body.children.size()); 128 const WebAccessibility& button = body.children[0]; 141 const WebAccessibility& checkbox = body.children[1]; 168 ASSERT_EQ(1U, tree.children.size()); 169 const WebAccessibility& body = tree.children[0] [all...] |
browser_accessibility_manager_unittest.cc | 77 root.children.push_back(button); 78 root.children.push_back(checkbox); 161 tree1_root.children.push_back(tree1_child1); 162 tree1_root.children.push_back(tree1_child2); 163 tree1_root.children.push_back(tree1_child3); 196 tree2_root.children.push_back(tree2_child0); 197 tree2_root.children.push_back(tree2_child1); 198 tree2_root.children.push_back(tree2_child2); 292 tree1_child1.children.push_back(tree1_grandchild1); 305 tree1_child2.children.push_back(tree1_grandchild2) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXPolicyNode.java | 13 protected List children; field in class:PKIXPolicyNode 36 children = _children; 48 children.add(_child); 54 return children.iterator(); 84 return !children.isEmpty(); 94 children.remove(_child); 119 for(int i = 0; i < children.size(); i++) 121 _buf.append(((PKIXPolicyNode)children.get(i)).toString(_indent + " ")); 158 _iter = children.iterator();
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
ViewsTreeModel.java | 37 return ((ViewNode) o).children.get(i); 41 return ((ViewNode) o).children.size(); 46 return node.children == null || node.children.size() == 0; 54 return ((ViewNode) parent).children.indexOf(child);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/ |
MockNodeList.java | 33 * Constructs a node list from a given children list. 35 * @param children The children list. Can be null. 37 public MockNodeList(MockXmlNode[] children) { 39 if (children != null) { 40 for (MockXmlNode n : children) {
|
/external/chromium/chrome/browser/extensions/ |
browser_action_test_util_gtk.cc | 23 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); local 25 static_cast<GtkWidget*>(g_list_nth(children, index)->data); 27 g_list_free(children); 40 GList* children = gtk_container_get_children(GTK_CONTAINER(toolbar)); local 41 count = g_list_length(children); 42 g_list_free(children);
|
/cts/tools/utils/ |
android_api_description_splitter.py | 104 children = []
107 children.append(child)
109 for child in children:
112 children.remove(child)
114 for child in children:
137 children = []
139 children.append(child)
141 for child in children:
|
/external/webkit/Source/WebCore/html/ |
HTMLTableSectionElement.cpp | 66 RefPtr<HTMLCollection> children = rows(); local 67 int numRows = children ? (int)children->length() : 0; 79 n = children->item(index); 88 RefPtr<HTMLCollection> children = rows(); local 89 int numRows = children ? (int)children->length() : 0; 93 RefPtr<Node> row = children->item(index);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
InnerNodeImpl.java | 38 * (potentially) a number of children. 45 List<LeafNodeImpl> children = new ArrayList<LeafNodeImpl>(); field in class:InnerNodeImpl 52 return insertChildAt(newChild, children.size()); 58 for (NodeImpl node : children) { 66 return (!children.isEmpty() ? children.get(0) : null); 70 return (!children.isEmpty() ? children.get(children.size() - 1) : null); 74 if (parent == null || index + 1 >= parent.children.size()) [all...] |
/external/elfutils/tests/ |
run-show-abbrev.sh | 32 abbrev[0]: code = 1, tag = 17, children = 1 40 abbrev[19]: code = 2, tag = 46, children = 1 51 abbrev[44]: code = 3, tag = 46, children = 1 59 abbrev[63]: code = 4, tag = 24, children = 0 60 abbrev[68]: code = 5, tag = 46, children = 1 67 abbrev[85]: code = 6, tag = 36, children = 0 71 abbrev[96]: code = 7, tag = 52, children = 0 78 abbrev[0]: code = 1, tag = 17, children = 1 86 abbrev[19]: code = 2, tag = 46, children = 0 96 abbrev[42]: code = 3, tag = 36, children = [all...] |
/external/webkit/Tools/Scripts/ |
parallelcl | 116 my @children; 120 while (@sources && @children < $numJobs) { 127 push(@children, $pid); 131 $status |= waitForChild(@children); 134 while (@children) { 135 $status |= waitForChild(@children); 200 my ($children) = @_; 202 return unless @{$children}; 207 for (my $i = 0; $i < @{$children}; $i++) { 208 if ($children->[$i] == $deceased) [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowViewGroup.java | 21 private List<View> children = new ArrayList<View>(); field in class:ShadowViewGroup 32 for (View child : children) { 48 for (View child : children) { 66 children.add(child); 68 children.add(index, child); 92 if (children.get(i) == child) { 101 return children.size(); 106 if( index >= children.size() ){ return null; } 107 return children.get(index); 112 for (View child : children) { [all...] |
/external/doclava/src/com/google/doclava/ |
NavTree.java | 29 List<Node> children = new ArrayList<Node>(); local 31 children.add(makePackageNode(pkg)); 33 Node node = new Node("Reference", dir + refPrefix + "packages.html", children, null); 126 data = makeYamlHDF(cl2, base + ".children." + j, data); 134 List<Node> children = new ArrayList<Node>(); local 136 addClassNodes(children, "Interfaces", pkg.interfaces()); 137 addClassNodes(children, "Classes", pkg.ordinaryClasses()); 138 addClassNodes(children, "Enums", pkg.enums()); 139 addClassNodes(children, "Exceptions", pkg.exceptions()); 140 addClassNodes(children, "Errors", pkg.errors()) 146 List<Node> children = new ArrayList<Node>(); local [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderTableRow.h | 36 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderTableRow 37 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderTableRow 45 virtual RenderObjectChildList* virtualChildren() { return children(); } 46 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGContainer.h | 39 const RenderObjectChildList* children() const { return &m_children; } function in class:WebCore::RenderSVGContainer 40 RenderObjectChildList* children() { return &m_children; } function in class:WebCore::RenderSVGContainer 46 virtual RenderObjectChildList* virtualChildren() { return children(); } 47 virtual const RenderObjectChildList* virtualChildren() const { return children(); }
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
CommonTree.java | 139 if ( children==null ) { 145 for (int i=0; i<children.size(); i++) { 146 ((CommonTree)children.get(i)).setUnknownTokenBoundaries(); 149 if ( children.size() > 0 ) { 150 CommonTree firstChild = (CommonTree)children.get(0); 151 CommonTree lastChild = (CommonTree)children.get(children.size()-1);
|
/frameworks/base/core/tests/benchmarks/src/com/android/internal/util/ |
IndentingPrintWriterBenchmark.java | 101 public ArrayList<Node> children; field in class:IndentingPrintWriterBenchmark.Node 105 public static Node build(String name, Node... children) { 108 if (children != null && children.length > 0) { 109 node.children = Lists.newArrayList(children); 129 if (children != null) { 130 for (Node child : children) { 141 if (children != null) { 143 for (Node child : children) { [all...] |
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8ScriptProfileNodeCustom.cpp | 46 const ProfileNodesList& children = imp->children(); local 47 v8::Handle<v8::Array> result = v8::Array::New(children.size()); 49 ProfileNodesList::const_iterator end = children.end(); 50 for (ProfileNodesList::const_iterator iter = children.begin(); iter != end; ++iter)
|