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

<<11121314151617181920>>

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
SyncService.java 392 // get the children
393 FileEntry[] children = fls.getChildren(e, false, null); local
394 count += getTotalRemoteFileSize(children, fls) + 1;
459 FileEntry[] children = fileListingService.getChildren(e, true, null); local
460 doPull(children, dest, fileListingService, monitor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
RulesEngine.java 249 * @param children The selected children of the node, if any (used to
256 NodeProxy parentNode, List<NodeProxy> children ) {
263 rule.addLayoutActions(actions, parentNode, children);
545 // (For example, a ScrollView parent can go and set all its children's layout params to
595 List<INode> children) {
600 parentRule.onRemovingChildren(children, parentNode);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
AndroidManifestDescriptors.java 167 * It first computes the new children of the descriptor and then updates them
357 * It then finds all children of the descriptor, inflates them recursively and sets them
402 ArrayList<ElementDescriptor> children = new ArrayList<ElementDescriptor>(); local
425 children.add(child);
435 elemDesc.setChildren(children.toArray(new ElementDescriptor[children.size()]));
  /external/clang/lib/CodeGen/
CGDecl.cpp 463 for (Stmt::const_child_range children = s->children(); children; ++children)
464 // children might be null; as in missing decl or conditional of an if-stmt.
465 if ((*children) && isAccessedBy(var, *children))
905 for (Stmt::const_child_range children = e->children(); children; ++children
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 99 node.children = Array();
199 mom.children[i] = new_node(me, mom, node_data[0], node_data[1],
273 me.node.children = new Array();
288 mom = mom.children[j];
  /external/chromium/chrome/common/extensions/docs/examples/api/contextMenus/basic/
sample.js 24 // Create a parent item and two children.
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodehaschildnodes.js 79 has children.
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodehaschildnodes.js 79 has children.
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodereplacechild02.js 80 children, and returns the oldChild node.
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTable.cpp 301 // and add them as children
340 m_children.append(row->children());
431 AccessibilityChildrenVector rowChildren = m_rows[row]->children();
  /external/webkit/Source/WebCore/inspector/
InspectorTimelineAgent.cpp 365 parent.children->pushObject(record.release());
389 entry.record->setArray("children", entry.children);
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadGroupTest.java 348 // No API to get the count of immediate children only
374 ThreadGroup[] children = groups(group); local
375 for (ThreadGroup element : children) {
  /build/tools/releasetools/
ota_from_target_files 123 self.parent.children.append(self)
127 self.children = []
137 for i in self.children:
175 i.children.sort(key=lambda i: i.name)
184 """Count up the (uid, gid, mode) tuples for all children and
198 for i in self.children:
237 # item (and all its children) have already been set to. We only
249 for i in item.children:
  /external/chromium/chrome/browser/sync/engine/
syncer_util.cc 81 syncable::Directory::ChildHandles* children) {
92 trans->directory()->GetChildHandles(trans, old_id, children);
93 Directory::ChildHandles::iterator i = children->begin();
94 while (i != children->end()) {
100 // among the children will be valid after the loop, since we update all
101 // the children at once.
125 syncable::Directory::ChildHandles children; local
126 ChangeEntryIDAndUpdateChildren(trans, entry, new_id, &children);
283 // If we have still-existing children, then we need to deal with
    [all...]
  /external/v8/src/
profile-generator.cc 383 return node->children()->at(child_idx_);
386 return child_idx_ < node->children()->length();
995 Vector<HeapGraphEdge> children = entry->children(); local
996 for (int i = 0; i < children.length(); ++i) {
997 if (children[i].type() == HeapGraphEdge::kShortcut) continue;
998 HeapEntry* child = children[i].to();
1037 Vector<HeapGraphEdge> ch = children();
1126 Vector<HeapGraphEdge> children = curr->children(); local
2605 Vector<HeapGraphEdge> children = entry->children(); local
2897 Vector<HeapGraphEdge> children = entry->children(); local
    [all...]
  /external/libxml2/
valid.c     [all...]
c14n.c 928 value = xmlNodeListGetString(attr->doc, attr->children, 1);
    [all...]
schematron.c 884 cur = rule->children;
976 cur = pat->children;
1155 cur = root->children;
    [all...]
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;
  /external/webkit/Source/WebCore/inspector/front-end/
inspector.css 1237 .outline-disclosure ol.children {
1241 .outline-disclosure ol.children.expanded {
1458 .event-listener-breakpoints.properties-tree .children li {
    [all...]
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/rendering/
RenderObject.cpp 281 RenderObjectChildList* children = virtualChildren(); local
282 ASSERT(children);
283 if (!children)
302 if (needsTable && isTableCell() && !children->firstChild() && !newChild->isTableCell())
308 RenderObject* afterChild = beforeChild ? beforeChild->previousSibling() : children->lastChild();
322 children->insertChildNode(this, newChild, beforeChild);
333 RenderObjectChildList* children = virtualChildren(); local
334 ASSERT(children);
335 if (!children)
344 children->removeChildNode(this, oldChild)
2048 RenderObjectChildList* children = virtualChildren(); local
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 173 struct TimedMethod *children[2]; /* 0=normal, 1=recursive */ member in struct:MethodEntry
317 method->children[0] = NULL;
318 method->children[1] = NULL;
1315 TimedMethod *children = parent->children[parentIsRecursive]; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java 879 NodeList children = root.getChildNodes(); local
967 NodeList children = root.getChildNodes(); local
1018 NodeList children = root.getChildNodes(); local
    [all...]
  /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) {

Completed in 673 milliseconds

<<11121314151617181920>>