HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 176 - 200 of 736) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/collada/include/dae/
daeElement.h 112 * Finds the last index into the array of children of the name specified.
114 * @return Returns the index into the children array of the last element with name elementName. -1 if
115 * there are no children of name elementName.
451 * Gets the children/sub-elements of this element.
452 * This is a helper function used to easily access an element's children without the use of the
455 * @return The return value. An elementref array to append this element's children to.
462 * @param array The return value. An elementref array to append this element's children to.
468 * Gets all the children of a particular type.
486 daeTArray< daeSmartRef<daeElement> > children; local
487 getChildren(children);
    [all...]
  /external/llvm/include/llvm/Analysis/
RegionInfo.h 222 RegionSet children; member in class:llvm::Region
238 /// verifyRegionNest - Verify if the region and its children are valid
433 /// @param moveChildren Move the children of this region, that are also
469 iterator begin() { return children.begin(); }
470 iterator end() { return children.end(); }
472 const_iterator begin() const { return children.begin(); }
473 const_iterator end() const { return children.end(); }
500 /// are direct children of this Region. It does not iterate over any
  /external/webkit/Source/WebCore/inspector/front-end/
WatchExpressionsSidebarPane.js 171 var children = this.propertiesTreeOutline.children;
172 for (var i = 0; i < children.length; ++i)
173 if (children[i].property.name === WebInspector.WatchExpressionsSection.NewWatchExpression)
174 return children[i];
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_introspect.c 178 char **children; local
182 dbus_connection_list_registered(con, path, &children);
183 for (i = 0; children[i]; i++)
184 wpabuf_printf(xml, "<node name=\"%s\"/>", children[i]);
185 dbus_free_string_array(children);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
CustomViewDescriptorService.java 246 // A custom view accepts children if its parent descriptor also does.
247 // The only exception to this is ViewGroup, which accepts children even though
251 ViewElementDescriptor[] children = null; local
253 // We can't figure out what the allowable children are by just
255 children = builtInList.toArray(new ViewElementDescriptor[builtInList.size()]);
260 children);
308 ElementDescriptor[] children) {
317 children,
  /external/libxml2/
tree.c 121 xmlNodePtr ulccur = (n)->children; \
900 cur = doc->children;
979 if (doc->children == NULL) {
980 doc->children = (xmlNodePtr) cur;
986 prev = doc->children;
989 doc->children = (xmlNodePtr) cur;
993 next = doc->children;
1005 doc->children = (xmlNodePtr) cur;
1085 if (cur->children != NULL) {
1086 xmlNodePtr next, c = cur->children;
    [all...]
xmlsave.c 431 xmlNodePtr children; local
433 children = attr->children;
434 while (children != NULL) {
435 switch (children->type) {
438 attr, children->content);
442 xmlBufferAdd(buf->buffer, children->name,
443 xmlStrlen(children->name));
450 children = children->next
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 90 // Sample data set. children[i] contains the children (String[]) for groups[i].
92 private String[][] children = { field in class:ExpandableList1.MyExpandableListAdapter
100 return children[groupPosition][childPosition];
108 return children[groupPosition].length;
  /external/bluetooth/glib/glib/
gnode.h 88 GNode *children; member in struct:_GNode
111 * (i.e. it has no children)
113 #define G_NODE_IS_LEAF(node) (((GNode*) (node))->children == NULL)
276 * or has no children
279 ((GNode*) (node))->children : NULL)
  /external/collada/src/dae/
daeRawResolver.cpp 58 daeElementRefArray children; local
59 accessor->getChildren( children );
60 bool hasInts = children[0]->getAttribute("type") == "int";
  /external/doclava/src/com/google/doclava/
Hierarchy.java 129 Data children = hdf.getChild("derived"); local
134 children.setValue(index, "");
135 recurse(nodes, s, children.getChild(index), totalDepth, remainingDepth);
  /external/v8/src/
global-handles.h 79 // a list of children objects. If the parent is alive, all the children
84 Object*** children,
91 CopyWords(group->children_, children, static_cast<int>(length));
190 Object*** children,
  /external/webkit/Source/WebCore/accessibility/
AccessibilityListBox.cpp 88 void AccessibilityListBox::setSelectedChildren(AccessibilityChildrenVector& children)
105 length = children.size();
107 AccessibilityObject* obj = children[i].get();
  /external/webkit/Source/WebCore/rendering/
RenderRubyBase.cpp 58 // Tests whether all children in the base before beforeChild are either floated/positioned,
60 // Note that beforeChild may be 0, in which case all children are looked at.
70 // This function removes all children that are before (!) beforeChild
75 // Inline children might be wrapped in an anonymous block if there's a continuation.
95 // The standard and easy case: move the children into the target base
105 toBase->children()->appendChildNode(toBase, toBlock);
108 // Move our inline children into the target block we determined above.
124 anonBlock->moveAllChildrenTo(toBase, toBase->children());
133 // Moving block children -> have to set toBase as block flow
135 // Move children, potentially collapsing anonymous block wrappers
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpContext.java 124 List<MtpObjectInfo> children) {
129 for (MtpObjectInfo child : children) {
139 return success == children.size();
MtpDevice.java 92 List<MtpObjectInfo> children = mMtpContext.getMtpClient().getObjectList( local
94 if (children == null) return;
96 for (MtpObjectInfo obj : children) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDiff.java 92 // Build lookup maps for children on both sides
96 // Walk through "before" children looking for deletes and updates
119 // Walk through remaining "after" children, which are inserts
139 final ArrayList<NamedContentValues> children = entity.getSubValues(); local
141 children.size());
142 for (NamedContentValues child : children) {
  /sdk/chimpchat/src/com/android/chimpchat/core/
ChimpView.java 158 * Gets the children of the view.
159 * @return the children of the view as a List of IChimpViews
164 * many children there are, but we know all children will return a pair of accessibility ids
167 List<IChimpView> children = new ArrayList<IChimpView>(); local
172 children.add(child);
174 return children;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 146 final List<? extends INode> children) {
147 super.addLayoutActions(actions, parentNode, children);
162 if (children != null && children.size() > 0) {
164 actions.add(createMarginAction(parentNode, children));
165 actions.add(createGravityAction(children, ATTR_LAYOUT_GRAVITY));
194 grid.addRow(children);
196 grid.removeRows(children);
198 grid.addColumn(children);
200 grid.removeColumns(children);
    [all...]
  /sdk/ide_common/src/com/android/ide/common/resources/
FrameworkResources.java 128 NodeList children = document.getDocumentElement().getChildNodes(); local
129 for (int i = 0, n = children.getLength(); i < n; i++) {
130 Node node = children.item(i);
  /sdk/layoutlib_api/sample/src/com/example/android/render/
Main.java 155 // display the children
156 List<ViewInfo> children = info.getChildren(); local
157 if (children != null) {
159 for (ViewInfo child : children) {
  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data_unittest.cc 69 EXPECT_EQ(0, drag_data.elements[0].children.size());
154 // Tests reading/writing a folder with children.
179 ASSERT_EQ(1, read_data.elements[0].children.size());
181 read_data.elements[0].children[0];
222 ASSERT_EQ(1, read_data.elements[0].children.size());
227 EXPECT_EQ(1, read_folder.children.size());
232 EXPECT_EQ(0, read_url.children.size());
  /external/chromium/chrome/browser/extensions/
extension_bookmark_manager_api.cc 91 ListValue* children = new ListValue(); local
93 AddNodeToList(children, *node.GetChild(i));
94 dict->Set(keys::kChildrenKey, children);
111 ListValue* children = new ListValue(); local
112 for (size_t i = 0; i < element.children.size(); ++i)
113 AddElementToList(children, element.children[i]);
114 dict->Set(keys::kChildrenKey, children);
  /external/elfutils/libelf/
common.h 80 /* Acquire lock for the descriptor and all children. */
88 Elf *child = elf->state.ar.children;
99 /* Release own lock and those of the children. */
105 Elf *child = elf->state.ar.children;
  /external/quake/quake/src/QW/client/
bspfile.h 145 short children[2]; // negative numbers are -(leafs+1), not nodes member in struct:__anon10154
155 short children[2]; // negative numbers are contents member in struct:__anon10155

Completed in 573 milliseconds

1 2 3 4 5 6 78 91011>>