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

1 2 3 4 5 6 78 91011>>

  /external/emma/core/java12/com/vladium/util/
IPathEnumerator.java 163 final String [] children = fullDir.list (); local
166 for (int c = 0, cLimit = children.length; c < cLimit; ++ c)
168 final String childName = children [c];
  /external/webkit/WebCore/inspector/
InspectorTimelineAgent.cpp 217 parent.children.set(parent.children.length(), record);
230 entry.record.set("children", entry.children);
  /external/webkit/WebKit/chromium/src/
WebAccessibilityObject.cpp 104 return m_private->children().size();
113 if (m_private->children().size() <= index)
116 return WebAccessibilityObject(m_private->children()[index]);
  /frameworks/base/tools/localize/
xmb.cpp 72 vector<XMLNode*>& children = node->EditChildren(); local
73 const size_t I = children.size();
75 err |= convert_xliff_to_ph(children[i], phID);
99 for (vector<XMLNode*>::const_iterator it=value->Children().begin();
100 it!=value->Children().end(); it++) {
  /external/webkit/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm     [all...]
  /cts/tools/utils/
DescriptionGenerator.java 347 Collection<Node> children = getSuiteChildren(elem); local
352 for (Node child : children) {
382 NodeList children = elem.getChildNodes(); local
383 for (int i = 0; i < children.getLength(); i++) {
384 Node child = children.item(i);
  /external/iproute2/misc/
rtacct.c 294 static int children; variable
394 if (children >= 5) {
398 children++;
408 while (children && waitpid(-1, &status, WNOHANG) > 0)
409 children--;
  /external/skia/src/animator/
SkAnimateMaker.cpp 140 //this code checks to see if helpers are among the children, but it is not complete -
141 //it should check the children of the children
143 SkTDArray<SkDisplayable*> children(fChildren.begin(), fChildren.count());
144 SkQSort(children.begin(), children.count(), sizeof(SkDisplayable*),compare_disp);
147 result = SkTSearch(children.begin(), children.count(), helper, sizeof(SkDisplayable*));
  /external/webkit/WebCore/rendering/
RenderCounter.cpp 120 // children or subsequent siblings of the renderer that owns the root of the tree
206 // We are no longer interested in previous siblings of the currentRenderer or their children
260 // should become children of this node now.
349 RenderObjectChildList* children = child->renderer()->virtualChildren(); local
350 if (children)
351 children->invalidateCounters(child->renderer(), identifier);
357 if (RenderObjectChildList* children = renderer->virtualChildren())
358 children->invalidateCounters(renderer, identifier);
461 // not catch the change if the node had no children.
478 // not catch the change if the node had no children
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebhistoryitem.cpp 495 const WebCore::HistoryItemVector& children = item->children(); local
496 if (!children.size())
499 unsigned size = children.size();
502 kids = g_list_prepend(kids, kit(children[i].get()));
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
FileListingService.java 276 * Returns the cached children of the entry. This returns the cache created from calling
285 * This uses the cached children list.
407 * @param currentChildren The list of current children. To prevent
410 * @param entryList the list of new children to be filled by the
588 public void setChildren(FileEntry entry, FileEntry[] children);
620 * Returns the children of a {@link FileEntry}.
640 * @return The list of children or <code>null</code> for asynchronous calls.
647 // enough children list, we just return that.
669 final FileEntry[] children = entry.getCachedChildren();
670 if (children.length > 0 && children[0].isApplicationPackage())
    [all...]
  /sdk/traceview/src/com/android/traceview/
MethodData.java 53 // The children of this method when this method was in a recursive call
176 // Sort the parents and children into decreasing inclusive time
187 // Add "self" time to the top of the sorted children
199 profileNode = new ProfileNode("Children", this, sortedChildren,
209 profileNode = new ProfileNode("Children while recursive", this,
231 private ProfileData[] addSelf(ProfileData[] children) {
233 if (children == null) {
236 pdata = new ProfileData[children.length + 1];
237 System.arraycopy(children, 0, pdata, 1, children.length)
    [all...]
  /frameworks/base/awt/javax/imageio/metadata/
IIOMetadataFormatImpl.java 97 * the minimum number of children.
99 * the maximum number of children
344 parent.children.add(element.name);
370 parent.children.add(elementName);
403 parent.children.add(elementName);
610 // children
613 return element.children.toArray(new String[element.children.size()]);
759 e.children.remove(element.name);
803 * The children
805 ArrayList<String> children = new ArrayList<String>(); field in class:IIOMetadataFormatImpl.Element
    [all...]
  /external/webkit/WebCore/accessibility/gtk/
AccessibilityObjectWrapperAtk.cpp 151 AccessibilityRenderObject::AccessibilityChildrenVector children = object->children();
154 for (unsigned i = 0; i < children.size(); ++i)
155 name += children.at(i).get()->stringValue();
265 return core(object)->children().size();
271 AccessibilityObject::AccessibilityChildrenVector children = coreObject->children(); local
272 if (index < 0 || static_cast<unsigned>(index) >= children.size())
275 AccessibilityObject* coreChild = children.at(index).get();
307 AccessibilityObject::AccessibilityChildrenVector children = parent->children() local
    [all...]
  /external/v8/tools/
profile_view.js 147 nodesToTraverse.concat(node.children);
172 this.children = [];
210 this.children.push(node);
215 * Sorts all the node's children recursively.
223 this.children.sort(sortFunc);
  /external/webkit/WebCore/inspector/front-end/
ElementsTreeOutline.js 414 if (this.children.length || this._showInlineText(this.representedObject))
442 var currentTreeElement = treeElement.children[treeChildIndex];
444 // Find any existing element that is later in the children list.
446 for (var i = (treeChildIndex + 1); i < treeElement.children.length; ++i) {
447 if (treeElement.children[i].representedObject === child) {
448 existingTreeElement = treeElement.children[i];
474 for (var i = (this.children.length - 1); i >= 0; --i) {
475 if ("elementCloseTag" in this.children[i])
478 var currentChild = this.children[i];
494 var lastChild = this.children[this.children.length - 1]
    [all...]
ProfilesPanel.js 274 var index = sidebarParent.children.indexOf(group[0]._profilesTreeElement);
466 var sidebarTreeChildrenCount = this.sidebarTree.children.length;
468 var treeElement = this.sidebarTree.children[i];
469 if (treeElement.children.length)
565 WebInspector.panels.profiles.showProfile(this.children[this.children.length - 1].profile);
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 253 const QList<QGraphicsItem*> children = childItems(); local
254 for (QList<QGraphicsItem*>::const_iterator it = children.begin(); it != children.end(); ++it) {
270 // optimization: we make sure all our children have ItemCoordinateCache -
272 const QList<QGraphicsItem*> children = childItems(); local
274 for (QList<QGraphicsItem*>::const_iterator it = children.begin(); it != children.end(); ++it) {
377 // we basically do an XOR operation on the list of current children
378 // and the list of wanted children, and remove/add
380 const Vector<GraphicsLayer*> newChildrenVector = (m_layer->children());
    [all...]
  /external/libxml2/
debugXML.c 313 } else if ((node->parent != NULL) && (node->parent->children != node))
834 if (attr->children != NULL) {
836 xmlCtxtDumpNodeList(ctxt, attr->children);
1070 (node->children != NULL) && (node->type != XML_ENTITY_REF_NODE)) {
1072 xmlCtxtDumpNodeList(ctxt, node->children);
    [all...]
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 122 NodeList children = par.getTimeChildren(); local
123 for (int i = 0; i < children.getLength(); ++i) {
124 ElementTime child = (ElementTime) children.item(i);
131 // Add end-event to timeline for all active children
180 // Get children's timelines
181 NodeList children = seq.getTimeChildren(); local
182 for (int i = 0; i < children.getLength(); ++i) {
183 ElementTime child = (ElementTime) children.item(i);
191 // Add end-event to timeline for all active children
  /dalvik/libcore/logging/src/main/java/java/util/logging/
LogManager.java 118 * "alogger" and for all its children in the naming hierarchy. Log levels
327 // find children
345 oldParent.children.remove(child);
626 newParent.children.add(logger);
652 for (Logger child : logger.children) {
  /external/qemu/hw/
qdev.c 101 LIST_INSERT_HEAD(&bus->children, dev, sibling);
332 LIST_INIT(&bus->children);
399 LIST_FOREACH(dev, &bus->children, sibling) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 118 // first compute for each children
119 NodeList children = view.getChildNodes(); local
120 int count = children.getLength();
122 // compute the padding for all the children.
125 Node child = children.item(i);
134 // since the non ELEMENT_NODE children were filtered out, count must be updated.
158 // unknown layout. For now, let's consider it's better to add the children
176 * Combines the padding of the children of a linear layout.
177 * <p/>For this layout, the padding of the children are added in the direction of
179 * @param paddings the list of the padding for the children
    [all...]
UiElementPullParser.java 347 // get the current node, and look for text or children (children first)
349 List<UiElementNode> children = node.getUiChildren(); local
350 if (children.size() > 0) {
352 push(children.get(0));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteComposite.java 173 Control[] children = mRoot.getChildren(); local
174 findVisibleItem: for (int i = children.length - 1; i >= 0; i--) {
175 Control ci = children[i];

Completed in 449 milliseconds

1 2 3 4 5 6 78 91011>>