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

<<31323334353637383940>>

  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 34 public List<ViewNode> children = new ArrayList<ViewNode>(); field in class:ViewNode
128 index = parent == null ? 0 : parent.children.indexOf(this);
  /sdk/ide_common/src/com/android/ide/common/rendering/
LayoutLibrary.java 590 * Converts a {@link ILayoutViewInfo} (and its children) to a {@link ViewInfo}.
597 // then convert the children
598 ILayoutViewInfo[] children = view.getChildren(); local
599 if (children != null) {
600 ArrayList<ViewInfo> convertedChildren = new ArrayList<ViewInfo>(children.length);
601 for (ILayoutViewInfo child : children) {
681 List<ViewInfo> children = info.getChildren(); local
682 for (ViewInfo child : children) {
  /system/extras/tests/sdcard/
testcase.cpp 121 // Block until all the children have reported for
137 // Parent is waiting for children to exit.
  /external/clang/include/clang/AST/
ExprObjC.h 57 child_range children() { return child_range(&String, &String+1); } function in class:clang::ObjCStringLiteral
87 child_range children() { return child_range(); } function in class:clang::ObjCBoolLiteralExpr
127 child_range children() { return child_range(&SubExpr, &SubExpr+1); } function in class:clang::ObjCBoxedExpr
187 child_range children() { function in class:clang::ObjCArrayLiteral
325 child_range children() { function in class:clang::ObjCDictionaryLiteral
378 child_range children() { return child_range(); } function in class:clang::ObjCEncodeExpr
415 child_range children() { return child_range(); } function in class:clang::ObjCSelectorExpr
452 child_range children() { return child_range(); } function in class:clang::ObjCProtocolExpr
503 child_range children() { return child_range(&Base, &Base+1); } function in class:clang::ObjCIvarRefExpr
717 child_range children() { function in class:clang::ObjCPropertyRefExpr
832 child_range children() { function in class:clang::ObjCSubscriptRefExpr
1417 child_range children() { return child_range(&Base, &Base+1); } function in class:clang::ObjCMessageExpr
1475 child_range children() { return child_range(&Operand, &Operand+1); } function in class:clang::ObjCIndirectCopyRestoreExpr
    [all...]
  /cts/tools/utils/
DescriptionGenerator.java 359 Collection<Node> children = getSuiteChildren(elem); local
364 for (Node child : children) {
394 NodeList children = elem.getChildNodes(); local
395 for (int i = 0; i < children.getLength(); i++) {
396 Node child = children.item(i);
  /development/ide/xcode/libpng.xcodeproj/
project.pbxproj 65 children = (
76 children = (
101 children = (
109 children = (
116 children = (
  /development/ide/xcode/views.xcodeproj/
project.pbxproj 83 children = (
111 children = (
122 children = (
135 children = (
143 children = (
  /development/ide/xcode/zlib.xcodeproj/
project.pbxproj 98 children = (
109 children = (
127 children = (
135 children = (
142 children = (
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3commontree.c 321 tree->baseTree.children = NULL;
376 tree->children = ((pANTLR3_COMMON_TREE)(tree->super))->factory->vFactory->newVector(((pANTLR3_COMMON_TREE)(tree->super))->factory->vFactory);
539 if (cTree->baseTree.children != NULL)
542 cTree->baseTree.children->clear(cTree->baseTree.children);
  /external/bluetooth/bluez/gdbus/
object.c 158 char **children; local
178 if (!dbus_connection_list_registered(conn, path, &children))
181 for (i = 0; children[i]; i++)
183 children[i]);
185 dbus_free_string_array(children);
  /external/chromium/net/disk_cache/
disk_format.h 142 PARENT_ENTRY = 1, // This entry has children (sparse) entries.
207 // name (key). The key includes a signature to be able to identify children
227 // the children.
235 int64 signature; // The parent and children signature.
247 uint32 bitmap[32]; // Bitmap representation of known children (if this
  /external/chromium/webkit/glue/
glue_serialize.cc 337 const WebVector<WebHistoryItem>& children = item.children(); local
338 WriteInteger(static_cast<int>(children.size()), obj);
339 for (size_t i = 0, c = children.size(); i < c; ++i)
340 WriteHistoryItem(children[i], obj);
webaccessibility.cc 390 // Recursively create children.
398 // Don't add children that are invalid thus preventing a crash.
404 // Children may duplicated in the webkit accessibility tree. Only add a
417 // As an exception, also add children of an iframe element.
420 children.push_back(WebAccessibility(child, cache, include_children));
webkit_glue.cc 225 const WebVector<WebHistoryItem>& children = item.children(); local
226 if (!children.isEmpty()) {
231 for (size_t i = 0; i < children.size(); ++i)
232 sorted_children.push_back(children[i]);
  /external/iproute2/misc/
nstat.c 312 static int children; variable
400 if (children >= 5) {
404 children++;
417 while (children && waitpid(-1, &status, WNOHANG) > 0)
418 children--;
rtacct.c 294 static int children; variable
394 if (children >= 5) {
398 children++;
408 while (children && waitpid(-1, &status, WNOHANG) > 0)
409 children--;
  /external/libmtp/libmtp.xcodeproj/
project.pbxproj 105 children = (
119 children = (
143 children = (
151 children = (
159 children = (
  /external/quake/quake/src/QW/client/
r_bsp.c 299 pn = pnode->children[i];
314 R_RecursiveClipBPoly (psideedges[i], pnode->children[i],
555 // recurse down the children, front side first
556 R_RecursiveWorldNode (node->children[side], clipflags);
637 R_RecursiveWorldNode (node->children[!side], clipflags);
  /external/quake/quake/src/WinQuake/
r_bsp.cpp 299 pn = pnode->children[i];
314 R_RecursiveClipBPoly (psideedges[i], pnode->children[i],
555 // recurse down the children, front side first
556 R_RecursiveWorldNode (node->children[side], clipflags);
637 R_RecursiveWorldNode (node->children[!side], clipflags);
  /external/valgrind/main/coregrind/
pub_core_options.h 91 that should not be traced into even when --trace-children=yes */
100 VG_(clo_child_silent_after_fork) causes children to fall silent
260 This involves considering --trace-children=,
261 --trace-children-skip=, --trace-children-skip-by-arg=, and the name
  /frameworks/base/docs/html/training/displaying-bitmaps/
display-bitmap.jd 59 android.widget.ImageView} children. The main activity holds the {@link
106 <p>The details {@link android.app.Fragment} holds the {@link android.widget.ImageView} children:</p>
229 the way {@link android.widget.GridView} recycles its children views).</p>
232 android.widget.ImageView} children placed inside a {@link android.app.Fragment}:</p>
317 recycles its children views. To handle this, use the techniques discussed in the <a
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 109 * "alogger" and for all its children in the naming hierarchy. Log levels
250 // find children
261 oldParent.children.remove(child);
496 newParent.children.add(logger);
522 for (Logger child : logger.children) {
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMResult.java 63 * In other words, a node that accepts children.</p>
84 * In other words, a node that accepts children.</p>
104 * In other words, a node that accepts children.</p>
154 * In other words, a node that accepts children.</p>
202 * In other words, a node that accepts children.</p>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
AccordionControl.java 52 * This control allows the children to be created lazily. You can also customize the
53 * composite which is created to hold the children items, to for example allow multiple
82 * overridden to lay out the children with a different layout than the default
108 * Creates the children under a particular header
327 /** Toggles the visibility of the children of the given label */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 279 List<UiElementNode> children = appUiNode.getUiChildren(); local
282 processMarker(marker, children, IResourceDelta.ADDED);
301 List<UiElementNode> children = app_ui_node.getUiChildren(); local
304 processMarker(markerDelta.getMarker(), children, markerDelta.getKind()); local
397 null /*children*/, false /*mandatory*/);

Completed in 593 milliseconds

<<31323334353637383940>>