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

1 2 3 4 5 6 78 91011>>

  /external/quake/quake/src/WinQuake/
gl_rlight.cpp 207 R_MarkLights (light, bit, node->children[0]);
212 R_MarkLights (light, bit, node->children[1]);
228 R_MarkLights (light, bit, node->children[0]);
229 R_MarkLights (light, bit, node->children[1]);
297 return RecursiveLightPoint (node->children[side], start, end);
305 r = RecursiveLightPoint (node->children[side], start, mid);
366 return RecursiveLightPoint (node->children[!side], mid, end);
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
Context.java 418 ArrayList<Object> children = new ArrayList<Object>(); local
423 children.add(GLEnum.valueOf(key).name() + " = " + value);
430 children.add(GLEnum.valueOf(key).name() + " : " +
433 children.add(GLEnum.valueOf(key).name() + " : default");
440 children.add(Function.valueOf(key).name() + " : default");
442 children.add(Function.valueOf(key).name() + " : "
448 children.add(new Entry("[" + sa.keyAt(i) + "]", sa.valueAt(i)));
453 children.add(new Entry(e.getKey().toString(), e.getValue()));
458 children.add("[" + sa.keyAt(i) + "] = " + sa.valueAt(i));
462 children.add(new Entry("[?]", o))
    [all...]
  /external/libxslt/libxslt/
attributes.c 325 child = cur->children;
707 * "Adding an attribute to an element after children have been added
715 if (targetElem->children != NULL) {
722 "element if children have been already added "
922 if (inst->children == NULL) {
928 } else if ((inst->children->next == NULL) &&
929 ((inst->children->type == XML_TEXT_NODE) ||
930 (inst->children->type == XML_CDATA_SECTION_NODE)))
954 copyTxt->content = inst->children->content;
960 if (inst->children->name == xmlStringTextNoenc
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
Context.java 414 ArrayList<Object> children = new ArrayList<Object>(); local
419 children.add(GLEnum.valueOf(key).name() + " = " + value);
426 children.add(GLEnum.valueOf(key).name() + " : " +
429 children.add(GLEnum.valueOf(key).name() + " : default");
436 children.add(Function.valueOf(key).name() + " : default");
438 children.add(Function.valueOf(key).name() + " : "
444 children.add(new Entry("[" + sa.keyAt(i) + "]", sa.valueAt(i)));
449 children.add(new Entry(e.getKey().toString(), e.getValue()));
454 children.add("[" + sa.keyAt(i) + "] = " + sa.valueAt(i));
458 children.add(new Entry("[?]", o))
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
malware_details.cc 123 const std::vector<GURL>* children) {
140 if (children) {
141 for (std::vector<GURL>::const_iterator it = children->begin();
142 it != children->end(); it++) {
236 AddUrl(node.url, node.parent, node.tag_name, &(node.children));
  /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 150 final List<? extends INode> children) {
151 super.addLayoutActions(actions, parentNode, children);
166 if (children != null && children.size() > 0) {
168 actions.add(createMarginAction(parentNode, children));
169 actions.add(createGravityAction(children, ATTR_LAYOUT_GRAVITY));
198 grid.addRow(children);
200 grid.removeRows(children);
202 grid.addColumn(children);
204 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);

Completed in 840 milliseconds

1 2 3 4 5 6 78 91011>>