HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 301 - 325 of 1029) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebKit/chromium/public/
WebHistoryItem.h 120 WEBKIT_API WebVector<WebHistoryItem> children() const;
  /packages/apps/Mms/src/com/android/mms/ui/
SlideshowActivity.java 85 NodeList children = head.getChildNodes(); local
86 if (children == null || children.getLength() != 1) {
90 Node layout = children.item(0);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
MiscFilesHandler.java 147 String[] children = dir.list(); local
148 if (children != null) {
149 for (int i=0; i < children.length; i++) {
150 boolean success = deleteDir(new File(dir, children[i]));
  /cts/tests/src/android/app/cts/
ExpandableListTestActivity.java 58 final List<Map<String, String>> children = Lists.newArrayList(); local
61 children.add(curChildMap);
65 childData.add(children);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
46 // is nil, add all children of t to this' children.
56 // Indicates the node is a nil node but may still have children, meaning
77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
100 NSMutableArray *children; variable
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
121 // is nil, add all children of t to this' children.
130 // Indicates the node is a nil node but may still have children, meanin
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
46 // is nil, add all children of t to this' children.
56 // Indicates the node is a nil node but may still have children, meaning
77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
100 NSMutableArray *children; variable
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
121 // is nil, add all children of t to this' children.
130 // Indicates the node is a nil node but may still have children, meanin
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
46 // is nil, add all children of t to this' children.
56 // Indicates the node is a nil node but may still have children, meaning
77 - (id) copyWithZone:(NSZone *)aZone; // the children themselves are not copied here!
100 NSMutableArray *children; variable
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; variable
121 // is nil, add all children of t to this' children.
130 // Indicates the node is a nil node but may still have children, meanin
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_manager.cc 18 // child IDs of 1, 2, 3, ... to access the children of an object by
275 DCHECK_EQ(0U, src.children.size());
316 // new reference to it and retrieve its children vector.
329 // and any children. If not, that means we have a serious bug somewhere,
349 for (int i = 0; i < static_cast<int>(src.children.size()); ++i) {
351 instance, src.children[i], i);
  /external/chromium/chrome/browser/chromeos/
native_dialog_window.cc 30 GList* children = gtk_container_get_children( local
33 GList* current = children;
44 g_list_free(children);
  /external/chromium/webkit/glue/
dom_operations.cc 321 WebNodeList children = head.childNodes();
322 for (size_t i = 0; i < children.length(); ++i) {
323 WebNode node = children.item(i);
  /external/emma/core/java12/com/vladium/emma/report/
SrcFileItem.java 106 for (Iterator children = getChildren (); children.hasNext (); )
112 value += ((IItem) children.next ()).getAggregate (COVERAGE_CLASS_COUNT);
  /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/jmonkeyengine/engine/src/core/com/jme3/animation/
Skeleton.java 130 List<Bone> children = sourceRoot.getChildren(); local
131 for (int i = 0; i < children.size(); i++) {
132 Bone sourceChild = children.get(i);
  /external/webkit/Source/WebCore/inspector/front-end/
AuditLauncherView.js 104 this._categoriesElement.insertBefore(categoryElement, this._categoriesElement.children[insertBefore]);
167 for (var child = 0; child < this._contentElement.children.length; ++child)
168 this._contentElement.removeChild(this._contentElement.children[child]);
RemoteObject.js 218 var children = this._children();
219 for (var i = 0; i < children.length; ++i) {
220 var itemDescription = formatProperty(children[i]);
TimelinePanel.js 270 this._overviewPane.showMemoryGraph(this._rootRecord.children);
351 if (record.type == recordTypes.TimerFire && record.children && record.children.length) {
352 var childRecord = record.children[0];
356 record.children.shift();
357 record.children = childRecord.children.concat(record.children);
371 var childrenCount = record.children ? record.children.length : 0
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPMetaParser.java 326 NodeList children = root.getChildNodes(); local
327 for (int i = 0; i < children.getLength(); i++)
329 root = children.item(i);
  /frameworks/base/core/java/android/view/
AccessibilityInteractionController.java 749 ArrayList<View> children = mTempViewList; local
788 ArrayList<View> children = mTempViewList; local
    [all...]
  /libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java 47 new ObjectStreamField("children", Object.class),
340 putFields.put("children", map);
357 Map<String, PropertyChangeSupport> children local
358 = (Map<String, PropertyChangeSupport>) readFields.get("children", null);
359 if (children != null) {
360 for (Map.Entry<String, PropertyChangeSupport> entry : children.entrySet()) {
  /libcore/luni/src/test/java/libcore/xml/
KxmlSerializerTest.java 155 NodeList children = doc.getFirstChild().getChildNodes(); local
157 for (int i = 0; i < children.getLength(); ++i) {
158 text += children.item(i).getNodeValue();
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
FileUtils.java 278 final String[] children = dir.list(); local
279 for (int i = 0; i < children.length; i++) {
280 final File f = new File(dir, children[i]);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
GridLayoutRule.java 158 final @NonNull List<? extends INode> children) {
159 super.addLayoutActions(actions, parentNode, children);
175 if (children != null && children.size() > 0) {
177 actions.add(createMarginAction(parentNode, children));
178 actions.add(createGravityAction(children, ATTR_LAYOUT_GRAVITY));
212 grid.addRow(children);
214 grid.removeRows(children);
216 grid.addColumn(children);
218 grid.removeColumns(children);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
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)) {
SelectionOverlay.java 172 List<INode> children = new ArrayList<INode>(); local
176 children.add(node);
183 (NodeProxy) parent, children, view);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinterTest.java 91 NodeList children = node.getChildNodes(); local
92 for (int i = 0, n = children.getLength(); i < n; i++) {
93 Node child = children.item(i);
    [all...]

Completed in 1095 milliseconds

<<11121314151617181920>>