HomeSort by relevance Sort by last modified time
    Searched refs:children (Results 226 - 250 of 1052) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/bookmarks/
bookmark_node_data.h 57 // Children, only used for non-URL nodes.
58 std::vector<Element> children; member in struct:BookmarkNodeData::Element
  /external/chromium/chrome/browser/resources/
collected_cookies.js 16 $('block-button').disabled = !allowedCookies.children.length ||
22 $('allow-this-session-button').disabled = !blockedCookies.children.length ||
  /external/chromium/chrome/browser/ui/gtk/infobars/
infobar_container_gtk.cc 150 GList* children = gtk_container_get_children(GTK_CONTAINER(widget())); local
151 if (!children)
157 for (GList* iter = children; iter != NULL; iter = iter->next) {
175 g_list_free(children);
  /external/chromium/chrome/common/extensions/
update_manifest.cc 61 for (xmlNode* child = root->children; child != NULL; child = child->next) {
74 if (!xmlStrcmp(attr->name, name) && attr->children &&
75 attr->children->content) {
77 attr->children->content));
  /external/clang/include/clang/AST/
EvaluatedExprVisitor.h 75 /// \brief The basis case walks all of the children of the statement or
78 for (Stmt::child_range C = S->children(); C; ++C)
StmtCXX.h 58 child_range children() { return child_range(&HandlerBlock, &HandlerBlock+1); } function in class:clang::CXXCatchStmt
115 child_range children() { function in class:clang::CXXTryStmt
202 child_range children() { function in class:clang::CXXForRangeStmt
281 child_range children() { function in class:clang::MSDependentExistsStmt
  /external/elfutils/libelf/
elf_end.c 96 if (elf->state.ar.children != NULL)
100 /* Remove this structure from the children list. */
113 if (parent->state.ar.children == elf)
114 parent->state.ar.children = elf->next;
117 struct Elf *child = parent->state.ar.children;
elf_readall.c 68 Elf *child = elf->state.ar.children;
133 /* Propagate the information down to all children and
134 their children. */
146 /* Free the locks on the children. */
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 36 /** The children of this context. */
37 private List<BoneContext> children = new ArrayList<BoneContext>(); field in class:BoneContext
96 this.children.add(new BoneContext(child, this, objectToArmatureMatrix, bonesPoseChannels, blenderContext));
124 for (BoneContext child : this.children) {
157 * This method builds the bone. It recursively builds the bone's children.
182 for (BoneContext child : children) {
  /external/libxslt/libxslt/
attrvt.c 179 if ((style == NULL) || (attr == NULL) || (attr->children == NULL))
181 if ((attr->children->type != XML_TEXT_NODE) ||
182 (attr->children->next != NULL)) {
189 str = attr->children->content;
xslt.c 892 if (cur->children) {
893 cur = cur->children;
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
PreferenceLoader.java 87 private List<PreferenceNode> children = new ArrayList<PreferenceNode>(); field in class:PreferenceLoader.PreferenceNode
95 return children;
99 children.add(prefNode);
105 for (PreferenceNode child : children) {
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableRow.cpp 105 AccessibilityChildrenVector rowChildren = children();
  /external/webkit/Source/WebCore/inspector/front-end/
ShowMoreDataGridNode.js 35 var index = this.parent.children.indexOf(this);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Transform.java 57 mTransformData.children = childRSData;
  /ndk/sources/host-tools/make-3.81/
job.h 67 extern struct child *children;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodeRenderingHelperTest.java 103 * Children of the relative layouts, one below the other.
136 * Children of the relative layouts, one above the other.
242 private MockXmlNode createLinearLayout(boolean horizontal, MockXmlNode[] children) {
243 MockXmlNode layout = new MockXmlNode(null, "LinearLayout", Node.ELEMENT_NODE, children);
251 private MockXmlNode createRelativeLayout(MockXmlNode[] children) {
252 MockXmlNode layout = new MockXmlNode(null, "RelativeLayout", Node.ELEMENT_NODE, children);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
LayoutRenderer.java 114 for (ViewNode node : root.children) {
119 if (node.children.size() > 0) {
160 for (ViewNode node : root.children) {
169 if (node.children.size() > 0) {
  /external/linux-tools-perf/util/
callchain.c 30 list_for_each_entry(child, &parent->children, siblings)
33 list_for_each_entry_safe(child, next, &parent->children, siblings)
168 * will become the new parent of it's parent children
181 INIT_LIST_HEAD(&new->children);
187 list_splice(&parent->children, &new->children);
188 INIT_LIST_HEAD(&parent->children);
193 list_add_tail(&new->siblings, &parent->children);
307 /* nothing in children, add to the current node */
  /frameworks/base/test-runner/src/android/test/
TestRunner.java 286 String[] children = getChildren(method); local
287 run(children);
376 + " children method: " + className);
541 return clazz.getMethod("children", (Class[]) null);
560 throw new RuntimeException("couldn't get children method for "
564 String[] children = getChildren(m); local
566 String[] allChildren = new String[testChildren.length + children.length];
567 System.arraycopy(children, 0, allChildren, 0, children.length);
568 System.arraycopy(testChildren, 0, allChildren, children.length, testChildren.length)
692 String[] children = getChildren(method); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ViewHierarchy.java 250 List<UiElementNode> children = model.getUiChildren(); local
251 return new ViewInfo(VIEW_MERGE, children.get(0), 0, 0, layoutSize.x, layoutSize.y);
263 List<UiElementNode> children = model.getUiChildren(); local
264 if (children != null && children.size() > 0
265 && VIEW_MERGE.equals(children.get(0).getDescriptor().getXmlName())) {
302 * <li>Invisible parents. These are nodes that can hold children and have empty
369 * they have no children and zero layout bounds).
499 List<CanvasViewInfo> children = canvasViewInfo.getChildren(); local
500 assert children instanceof RandomAccess
    [all...]
  /external/libxml2/
xmlreader.c 258 ID = xmlNodeListGetString(doc, attr->children, 1);
295 if (cur->children != NULL)
296 xmlTextReaderFreeNodeList(reader, cur->children);
314 * Free a property and all its siblings, all the children are freed too.
333 * the children are freed too.
356 if ((cur->children != NULL) &&
358 if (cur->children->parent == cur)
359 xmlTextReaderFreeNodeList(reader, cur->children);
360 cur->children = NULL;
410 * Free a node, this is a recursive behaviour, all the children are freed too
    [all...]
  /external/chromium/webkit/glue/
webkit_glue.cc 225 const WebVector<WebHistoryItem>& children = item.children(); local
226 if (!children.isEmpty()) {
231 for (size_t i = 0; i < children.size(); ++i)
232 sorted_children.push_back(children[i]);
  /external/llvm/include/llvm/Analysis/
RegionInfo.h 218 RegionSet children; member in class:llvm::Region
234 /// verifyRegionNest - Verify if the region and its children are valid
429 /// @param moveChildren Move the children of this region, that are also
465 iterator begin() { return children.begin(); }
466 iterator end() { return children.end(); }
468 const_iterator begin() const { return children.begin(); }
469 const_iterator end() const { return children.end(); }
494 // Mark the exit of the region as visited, so that the children of the
535 /// are direct children of this Region. It does not iterate over any
  /external/openfst/src/include/fst/extensions/ngram/
ngram-fst.h 565 const Label *children = root_children_; local
566 const Label *loc = lower_bound(children, children + root_num_children_,
568 if (loc == children + root_num_children_ || *loc != future) {
571 size_t node = root_first_child_ + loc - children;
579 children = context_words_ + context_index_.Rank1(first_child);
580 loc = lower_bound(children, children + last_child - first_child + 1,
582 if (loc == children + last_child - first_child + 1 ||
586 node = first_child + loc - children;
602 const Label *children = root_children_; local
    [all...]

Completed in 2042 milliseconds

1 2 3 4 5 6 7 8 91011>>