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

<<41424344454647484950>>

  /development/ide/xcode/jpeg.xcodeproj/
project.pbxproj 131 children = (
142 children = (
196 children = (
204 children = (
211 children = (
  /development/ide/xcode/svg.xcodeproj/
project.pbxproj 148 children = (
208 children = (
218 children = (
226 children = (
234 children = (
  /external/chromium/chrome/browser/bookmarks/
bookmark_utils.cc 103 for (int i = 0; i < static_cast<int>(element.children.size()); ++i)
104 CloneBookmarkNodeImpl(model, element.children[i], new_folder, i);
108 // Returns the number of children of |node| that are of type url.
119 // Implementation of OpenAll. Opens all nodes of type URL and any children of
150 // For folders only open direct children.
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 401 // Size our children to the available content area.
509 // We paint our children in an unconventional way.
516 // Instead, we paint all our children into a second canvas and use that as a
524 // the children since they paint text, and GDI will reset this alpha data if
550 // We paint our children inside OnPaint().
  /external/iproute2/misc/
ifstat.c 420 static int children; variable
515 if (children >= 5) {
519 children++;
532 while (children && waitpid(-1, &status, WNOHANG) > 0)
533 children--;
  /external/libxml2/
entities.c 105 if ((entity->children) && (entity->owner == 1) &&
106 (entity == (xmlEntityPtr) entity->children->parent))
107 xmlFreeNodeList(entity->children);
325 dtd->children = dtd->last = (xmlNodePtr) ret;
374 dtd->children = dtd->last = (xmlNodePtr) ret;
valid.c     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 61 // Emit whether it has children DIEs.
111 for (unsigned i = 0, N = Children.size(); i < N; ++i)
112 delete Children[i];
155 for (unsigned j = 0, M = Children.size(); j < M; ++j) {
156 Children[j]->print(O, 4);
  /external/webkit/Source/WebCore/dom/
Node.h 395 // Like traverseNextNode, but skips children and starts with the next sibling.
401 // Like traverseNextNode, but visits parents after their children.
404 // Like traversePreviousNode, but visits parents before their children.
413 // This method is used to do strict error-checking when adding children via
497 // Notifies the node that it's list of children have changed (either by adding or removing child nodes), or a child
  /external/webkit/Source/WebCore/inspector/front-end/
DetailedHeapshotGridNodes.js 73 atIndex = atIndex || this.children.length;
116 for (var i = 0, childrenCount = this.children.length; i < childrenCount; ++i) {
117 var child = this.children[i];
136 for (var i = 0, l = this.children.length; i < l; ++i) {
137 var child = this.children[i];
  /external/webkit/Source/WebCore/page/
Page.cpp 893 const HashSet<RefPtr<Widget> >* children = view->children(); local
894 ASSERT(children);
896 HashSet<RefPtr<Widget> >::const_iterator end = children->end();
897 for (HashSet<RefPtr<Widget> >::const_iterator it = children->begin(); it != end; ++it) {
  /external/webkit/Source/WebCore/rendering/
RenderCounter.cpp 284 // children or subsequent siblings of the renderer that owns the root of the tree
370 // We are no longer interested in previous siblings of the currentRenderer or their children
426 // should become children of this node now.
660 // not catch the change if the node had no children.
677 // not catch the change if the node had no children.
  /external/webkit/Tools/DumpRenderTree/chromium/
TestShell.cpp 407 const WebVector<WebHistoryItem>& children = item.children(); local
408 if (!children.isEmpty()) {
413 for (size_t i = 0; i < children.size(); ++i)
414 sortedChildren.push_back(children[i]);
  /frameworks/base/core/java/android/widget/
GridLayout.java 50 * A layout that places its children in a rectangular <em>grid</em>.
63 * Children occupy one or more contiguous cells, as defined
67 * occupied; and how children should be aligned within the resulting group of cells.
69 * not prevent children being defined to occupy the same cell or group of cells.
70 * In this case however, there is no guarantee that children will not themselves
83 * Space between children may be specified either by using instances of the
93 * property is set, default margins around children are automatically
187 * children that belong to a row group that uses {@link #TOP} alignment will
202 * the quantity {@code top - layoutParams.topMargin} is the same for all children that
311 * one of GridLayout's children is dependent on its width - and its width is, in turn
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon/
ICalendar.java 105 * Helper that lazily gets/creates the list of children.
106 * @return The list of children.
124 * Returns a list of the Component children of this component. May be
125 * null, if there are no children.
127 * @return A list of the children.
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 233 * array if this node has no children. The names of cached children are not
236 * @return the names of this node's children.
717 final AbstractPreferences[] children = values.toArray(new AbstractPreferences[values.size()]); local
718 for (AbstractPreferences child : children) {
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java 78 * Internal map of children values from {@link Entity#getSubValues()}, which
288 // Search all children for requested entry
320 // Equality failed if any children unmatched
431 // Build operations for all children
434 // Ignore children if parent was deleted
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntityDelta.java 68 * Internal map of children values from {@link Entity#getSubValues()}, which
251 // Search all children for requested entry
283 // Equality failed if any children unmatched
391 // Build operations for all children
394 // Ignore children if parent was deleted
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
SyncService.java 397 // get the children
398 FileEntry[] children = fls.getChildren(e, false, null); local
399 count += getTotalRemoteFileSize(children, fls) + 1;
464 FileEntry[] children = fileListingService.getChildren(e, true, null); local
465 doPull(children, dest, fileListingService, monitor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 466 // get the current node, and look for text or children (children first)
468 List<UiElementNode> children = node.getUiChildren(); local
469 if (children.size() > 0) {
471 push(children.get(0));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DynamicContextMenu.java 250 List<CanvasViewInfo> children = info.getChildren(); local
251 if (children.size() == 2) {
252 String first = children.get(0).getName();
253 String second = children.get(1).getName();
475 * where the children are {@link RuleAction}'s themselves.
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/testdata/
mock_attrs.xml 191 attributes that this class processes in its children. -->
194 This is useful with animations that scale the size of the children to more
196 to allow the children to draw outside of their bounds. The default value of
280 aligned, it can specify which of its children to baseline align to
284 by adding the layout_weight of all of the children. This can be
  /external/webkit/Source/WebKit2/WebKit2.xcodeproj/
project.pbxproj     [all...]
  /frameworks/support/v7/gridlayout/src/android/support/v7/widget/
GridLayout.java 50 * A layout that places its children in a rectangular <em>grid</em>.
63 * Children occupy one or more contiguous cells, as defined
67 * occupied; and how children should be aligned within the resulting group of cells.
69 * not prevent children being defined to occupy the same cell or group of cells.
70 * In this case however, there is no guarantee that children will not themselves
83 * Space between children may be specified either by using instances of the
93 * property is set, default margins around children are automatically
186 * children that belong to a row group that uses {@link #TOP} alignment will
201 * the quantity {@code top - layoutParams.topMargin} is the same for all children that
401 * When {@code true}, GridLayout allocates default margins around children
    [all...]
  /development/ide/xcode/chipmunk.xcodeproj/
project.pbxproj 70 children = (
78 children = (
113 children = (

Completed in 621 milliseconds

<<41424344454647484950>>