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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm     [all...]
  /external/v8/tools/
profile_view.js 142 nodesToTraverse.concat(node.children);
167 this.children = [];
205 this.children.push(node);
210 * Sorts all the node's children recursively.
218 this.children.sort(sortFunc);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 127 final List<? extends INode> children) {
128 super.addLayoutActions(actions, parentNode, children);
158 if (children != null && children.size() > 0) {
162 actions.add(createMarginAction(parentNode, children));
165 actions.add(createGravityAction(children, ATTR_LAYOUT_GRAVITY));
176 children.get(0).getStringAttr(ANDROID_URI, ATTR_LAYOUT_WEIGHT);
183 for (INode child : children) {
195 children.toArray(new INode[children.size()]))
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PackagesPage.java 769 Object[] children = provider.getElements(elem); local
770 if (children == null) {
774 if (children.length > 0) {
775 // If the element has children, expand/collapse it.
810 // when de-selecting, we deselect all children too
830 Object[] children = provider.getChildren(elem); local
852 Object[] children = provider.getChildren(parent); local
930 Object[] children = provider.getElements(cat); local
    [all...]
  /external/libxslt/libxslt/
xsltutils.c 109 tmp = xmlNodeListGetString(node->doc, prop->children, 1);
200 ret = xmlNodeListGetString(node->doc, prop->children, 1);
    [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...]
  /external/webkit/Source/WebCore/inspector/front-end/
BreakpointsSidebarPane.js 471 categoryItem.children = {};
490 categoryItem.children[eventName] = breakpointItem;
506 for (var eventName in categoryItem.children) {
507 var breakpointItem = categoryItem.children[eventName];
550 for (var eventName in categoryItem.children) {
551 var breakpointItem = categoryItem.children[eventName];
DOMBreakpointsSidebarPane.js 145 if (!node.children)
147 for (var i = 0; i < node.children.length; ++i)
148 this._removeBreakpointsForNode(node.children[i]);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 121 NodeList children = par.getTimeChildren(); local
122 for (int i = 0; i < children.getLength(); ++i) {
123 ElementTime child = (ElementTime) children.item(i);
130 // Add end-event to timeline for all active children
179 // Get children's timelines
180 NodeList children = seq.getTimeChildren(); local
181 for (int i = 0; i < children.getLength(); ++i) {
182 ElementTime child = (ElementTime) children.item(i);
190 // Add end-event to timeline for all active children
  /sdk/ide_common/src/com/android/ide/common/rendering/
LayoutLibrary.java 587 * Converts a {@link ILayoutViewInfo} (and its children) to a {@link ViewInfo}.
594 // then convert the children
595 ILayoutViewInfo[] children = view.getChildren(); local
596 if (children != null) {
597 ArrayList<ViewInfo> convertedChildren = new ArrayList<ViewInfo>(children.length);
598 for (ILayoutViewInfo child : children) {
678 List<ViewInfo> children = info.getChildren(); local
679 for (ViewInfo child : children) {
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.cc 72 // Start of the children of a folder.
74 // End of the children for a folder.
227 // Writes the node and all its children, returning true on success.
318 // Write the children.
319 ListValue* children = static_cast<ListValue*>(child_values); local
320 for (size_t i = 0; i < children->GetSize(); ++i) {
322 if (!children->Get(i, &child_value) ||
  /external/chromium/chrome/browser/history/
query_parser.cc 138 QueryNodeVector* children() { return &children_; } function in class:QueryNodeList
174 if (list_node->children()->empty()) {
280 nodes->swap(*root.children());
  /external/chromium/chrome/common/
web_apps.cc 157 WebNodeList children = head.childNodes(); local
158 for (unsigned i = 0; i < children.length(); ++i) {
159 WebNode child = children.item(i);
  /external/webkit/Source/WebCore/inspector/
InspectorDOMAgent.cpp 461 RefPtr<InspectorArray> children = buildArrayForContainerChildren(node, 1, nodeMap); local
462 m_frontend->setChildNodes(nodeId, children.release());
548 RefPtr<InspectorArray> children = InspectorArray::create(); local
549 children->pushObject(buildObjectForNode(node, 0, danglingMap));
550 m_frontend->setChildNodes(0, children);
634 // Copy over the original node's children.
1043 RefPtr<InspectorArray> children = buildArrayForContainerChildren(node, depth, nodesMap); local
1090 RefPtr<InspectorArray> children = InspectorArray::create(); local
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebAccessibilityObject.cpp 126 return m_private->children().size();
135 if (m_private->children().size() <= index)
138 return WebAccessibilityObject(m_private->children()[index]);
  /libcore/luni/src/main/java/java/net/
NetworkInterface.java 49 private final List<NetworkInterface> children = new LinkedList<NetworkInterface>(); field in class:NetworkInterface
281 // Checks whether the following interfaces are children.
289 interfaces[counter].children.add(interfaces[counter2]);
370 return Collections.enumeration(children);
  /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) {
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
MiscFilesHandler.java 148 String[] children = dir.list(); local
149 for (int i=0; i < children.length; i++) {
150 boolean success = deleteDir(new File(dir, children[i]));
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 105 * Returns true if the given node has one or more element children
107 * @param node the node to test for element children
108 * @return true if the node has one or more element children
111 NodeList children = node.getChildNodes(); local
112 for (int i = 0, n = children.getLength(); i < n; i++) {
113 if (children.item(i).getNodeType() == Node.ELEMENT_NODE) {
507 * Returns the element children of the given element
514 NodeList children = element.getChildNodes(); local
517 List<Element> result = new ArrayList<Element>(children.getLength());
518 for (int i = 0, n = children.getLength(); i < n; i++)
716 NodeList children = element.getChildNodes(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizardPage.java 225 File[] children = file.listFiles(); local
226 if (children != null && children.length > 0) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfoTest.java 245 // between view info and ui element node children
302 // between view info and ui element node children
345 // between view info and ui element node children
375 List<ViewInfo> children = new ArrayList<ViewInfo>(); local
404 children.add(childView);
418 root.setChildren(children);
458 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>(); local
462 children.add(childView);
464 root.setChildren(children);
494 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>() local
546 ArrayList<ViewInfo> children = new ArrayList<ViewInfo>(); local
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 57 // recurse into children of |src| and build the whole subtree.
80 // Returns the number of children of this object.
139 const std::vector<BrowserAccessibility*>& children() const { function in class:BrowserAccessibility
197 // The children of this object.
  /external/chromium/webkit/glue/
webaccessibility.h 218 std::vector<WebAccessibility> children; member in struct:webkit_glue::WebAccessibility
  /external/clang/lib/AST/
ParentMap.cpp 24 for (Stmt::child_range I = S->children(); I; ++I)

Completed in 967 milliseconds

<<11121314151617181920>>