HomeSort by relevance Sort by last modified time
    Searched full:children (Results 276 - 300 of 2686) sorted by null

<<11121314151617181920>>

  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_editor_base_controller_unittest.mm 170 // Create 2 folders which are children of the bar.
223 NSMutableArray* children = [NSMutableArray arrayWithObject:@"child"];
226 reinterpret_cast<const BookmarkNode*>(&children);
230 children:children];
233 EXPECT_EQ([info children], children);
  /external/quake/quake/src/QW/client/
r_light.c 84 R_MarkLights (light, bit, node->children[0]);
89 R_MarkLights (light, bit, node->children[1]);
105 R_MarkLights (light, bit, node->children[0]);
106 R_MarkLights (light, bit, node->children[1]);
168 return RecursiveLightPoint (node->children[side], start, end);
176 r = RecursiveLightPoint (node->children[side], start, mid);
235 return RecursiveLightPoint (node->children[!side], mid, end);
  /external/quake/quake/src/WinQuake/
r_light.cpp 84 R_MarkLights (light, bit, node->children[0]);
89 R_MarkLights (light, bit, node->children[1]);
105 R_MarkLights (light, bit, node->children[0]);
106 R_MarkLights (light, bit, node->children[1]);
168 return RecursiveLightPoint (node->children[side], start, end);
176 r = RecursiveLightPoint (node->children[side], start, mid);
235 return RecursiveLightPoint (node->children[!side], mid, end);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 60 * Each view also knows its parent and children.
156 * It is null for the root and non-null for children.
166 * Returns the list of children of this {@link CanvasViewInfo}.
170 * @return the children, never null
179 * children of a {@code <merge>} tag included into a separate layout, return the
218 * Returns all the children of the canvas view info where each child corresponds to a
228 * @return list of {@link CanvasViewInfo} objects that are children of this view,
237 // We have secondary children; must create a new collection containing
238 // only non-secondary children
239 List<CanvasViewInfo> children = new ArrayList<CanvasViewInfo>() local
254 List<CanvasViewInfo> children = new ArrayList<CanvasViewInfo>(mChildren.size()); local
860 List<ViewInfo> children = viewInfo.getChildren(); local
    [all...]
OutlineDropListener.java 116 // Record children of the target right before the drop (such that we can
117 // find out after the drop which exact children were inserted)
118 Set<INode> children = new HashSet<INode>(); local
120 children.add(node);
147 if (!children.contains(node)) {
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeAdaptor.as 61 * a list of element as the children. If you want a flat tree (a list)
86 * in list children of t. Warning: if t has no children, but child does
87 * and child isNil then you can decide it is ok to move children to t via
88 * t.children = child.children; i.e., without copying the array. Just
94 /** If oldRoot is a nil root, just copy or move the children to newRoot.
116 * children; i.e., you don't have to copy the list. We are
190 * all children? Each rule that creates AST nodes will call this
192 * still usually have a nil root node just to hold the children list
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
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/chromium/chrome/browser/accessibility/
browser_accessibility_win_unittest.cc 91 root.children.push_back(button);
92 root.children.push_back(checkbox);
161 root.children.push_back(text);
240 div.children.push_back(text);
242 div.children.push_back(text);
248 root.children.push_back(div);
263 // Notify the BrowserAccessibilityManager that the div node and its children
265 root.children.clear();
293 root.children.push_back(text1);
  /external/linux-tools-perf/util/
callchain.c 30 list_for_each_entry(child, &parent->children, siblings)
33 list_for_each_entry_safe(child, next, &parent->children, siblings)
168 * will become the new parent of it's parent children
181 INIT_LIST_HEAD(&new->children);
187 list_splice(&parent->children, &new->children);
188 INIT_LIST_HEAD(&parent->children);
193 list_add_tail(&new->siblings, &parent->children);
307 /* nothing in children, add to the current node */
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 28 * A layout animation controller is used to animated a grid layout's children.
54 * Animates the children starting from the left of the grid to the right.
59 * Animates the children starting from the right of the grid to the left.
64 * Animates the children starting from the top of the grid to the bottom.
69 * Animates the children starting from the bottom of the grid to the top.
158 * Returns the delay by which the children's animation are offset from one
174 * children's animations are offset from one column to the other.
187 * Returns the delay by which the children's animation are offset from one
203 * children's animations are offset from one row to the other.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/
ViewElementDescriptor.java 42 * The base class {@link ElementDescriptor} has a notion of "children", that is an XML element
44 * XML files all possible views are children of the document and of themselves (that is any
47 * that deals with the children hierarchy must also deal with potential infinite loops since views
53 * The super class hierarchy is very different from the descriptor's children hierarchy: the
75 * its children list and its mandatory flag.
85 * @param children The list of allowed children. Can be null or empty.
95 ElementDescriptor[] children, boolean mandatory) {
96 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
  /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/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 31 * Class used to clone a node, possibly including its children to
39 // * Clone an element with or without children.
45 // * clone children attributes
122 * Clone an element with or without children.
128 * clone children attributes
  /external/bluetooth/glib/gobject/
gobject-query.c 61 GType *children; local
67 children = g_type_children (type, NULL);
84 if (children && recursion)
94 for (child = children; *child; child++)
100 g_free (children);
  /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/iproute2/man/man8/
tc-htb.8 61 children), we enqueue the packet there. If it is not yet a leaf node, we do
108 class is going to have children.
116 Maximum rate this class and all its children are guaranteed. Mandatory.
129 Should be at least as high as the highest burst of all children.
135 packet. Should be at least as high as the highest cburst of all children.
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
FastOctnode.java 160 FastOctnode children = child;
161 while (children != null){
162 str += children.toStringVerbose(indent+1);
163 children = children.next;
  /external/regex-re2/re2/
mimics_pcre.cc 50 // Called after visiting each of re's children and accumulating
55 // If children failed, so do we.
130 // Called after visiting re's children. child_args contains the return
131 // value from each of the children's PostVisits (i.e., whether each child
157 case kRegexpConcat: // can be empty if all children can
  /external/v8/tools/
profile_view.js 142 nodesToTraverse.concat(node.children);
167 this.children = [];
205 this.children.push(node);
210 * Sorts all the node's children recursively.
218 this.children.sort(sortFunc);
  /external/webkit/Source/WebCore/accessibility/gtk/
AXObjectCacheAtk.cpp 57 AccessibilityObject::AccessibilityChildrenVector children = object->children();
58 if (!children.size())
61 AccessibilityObject* listObject = children.at(0).get();
96 AccessibilityObject::AccessibilityChildrenVector items = listObject->children();
  /external/webkit/Source/WebCore/bindings/js/
PageScriptDebugServer.cpp 201 const HashSet<RefPtr<Widget> >* children = view->children(); local
202 ASSERT(children);
204 HashSet<RefPtr<Widget> >::const_iterator end = children->end();
205 for (HashSet<RefPtr<Widget> >::const_iterator it = children->begin(); it != end; ++it) {
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderLayer.mm 166 [children release];
176 // Build children in back to front order.
238 children = childWebLayers;
241 - (NSArray *)children
243 return children;
  /frameworks/base/sax/java/android/sax/
RootElement.java 130 Children children = current.children; local
131 if (children != null) {
132 Element child = children.get(uri, localName);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectTree.java 59 List<ViewNode> children = ((ViewNode) element).children; local
60 return children.toArray(new ViewNode[children.size()]);
76 return ((ViewNode) element).children.size() != 0;
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
ViewInfo.java 62 * Sets the list of children {@link ViewInfo}.
64 public void setChildren(List<ViewInfo> children) {
65 if (children != null) {
66 mChildren = Collections.unmodifiableList(children);
82 * Returns the list of children views. This is never null, but can be empty.

Completed in 263 milliseconds

<<11121314151617181920>>