HomeSort by relevance Sort by last modified time
    Searched full:children (Results 576 - 600 of 2686) sorted by null

<<21222324252627282930>>

  /packages/apps/LegacyCamera/src/com/android/camera/ui/
StackLayout.java 24 // A layout designed to make the children same size as the first child.
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 27 // Creates a ViewHolder and store references to the two children views
  /sdk/chimpchat/src/com/android/chimpchat/core/
IChimpView.java 84 * Get the children of this view as a list of IChimpViews.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
IgnoredLayoutRule.java 27 * children so we don't want to expose the normal configuration options).
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UnwrapRefactoring.java 52 * children, removes the current layout), and migrates namespace and layout attributes.
117 "Cannot remove container when it has no children");
199 List<Element> children = DomUtilities.getChildren(mContainer); local
200 if (children.size() == 1) {
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
UselessViewDetectorTest.java 36 "useless.xml:85: Warning: This FrameLayout view is useless (no children, " +
  /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/C/src/
antlr3basetreeadaptor.c 229 // And now define the children of this child (if any)
267 // and children of this child in the same way
539 * in list children of t. Warning: if t has no children, but child does
540 * and child isNilNode then it is ok to move children to t via
541 * t.children = child.children; i.e., without copying the array. This
545 * if it's not ok to move children to t with a simple assignment.
587 /** If oldRoot is a nil root, just copy or move the children to newRoot.
615 * children; i.e., you don't have to copy the list. We ar
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
ASTTreeParser.stg 27 tree(root, actionsAfterRoot, children, nullableChildList,
48 <children:element()>
53 <children:element()>
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCopy.java 74 * copied as well, but the attributes and children of the node are not
76 * template for the attributes and children of the created node;
78 * attributes or children (i.e. root nodes and element nodes).</p>
  /external/bluetooth/glib/docs/reference/glib/tmpl/
trees-binary.sgml 187 @G_PRE_ORDER: visits a node, then its children.
188 @G_POST_ORDER: visits the node's children, then the node itself.
192 node first, then its children, then its grandchildren, and so on. Note that
  /external/chromium/chrome/browser/bookmarks/
bookmark_codec.h 54 // children are removed from the bookmark bar and other folder nodes. On exit
94 // Encodes node and all its children into a Value object and returns it.
103 // Decodes the children of the specified node. Returns true on success.
  /external/chromium/chrome/browser/ui/views/infobars/
after_translate_infobar.cc 118 // This must happen after adding all other children so InfoBarView can ensure
122 // These must happen after adding all children because they trigger layout,
123 // which assumes that particular children (e.g. the close button) have already
before_translate_infobar.cc 137 // This must happen after adding all other children so InfoBarView can ensure
141 // This must happen after adding all children because it triggers layout,
142 // which assumes that particular children (e.g. the close button) have already
extension_infobar.cc 86 // This must happen after adding all other children so InfoBarView can ensure
90 // This must happen after adding all children because it can trigger layout,
91 // which assumes that particular children (e.g. the close button) have already
  /external/doclava/src/com/google/doclava/
Hierarchy.java 129 Data children = hdf.getChild("derived"); local
134 children.setValue(index, "");
135 recurse(nodes, s, children.getChild(index), totalDepth, remainingDepth);
  /external/emma/core/java12/com/vladium/emma/report/
Item.java 82 for (Iterator children = m_children.iterator (); children.hasNext (); )
84 value += ((IItem) children.next ()).getAggregate (type);
  /external/llvm/lib/Analysis/
DominanceFrontier.cpp 75 // At this point, S is DFlocal. Now we union in DFup's of our children...
77 // children in the IDomTree)
90 // If all children are visited or there is any child then pop this block
  /external/regex-re2/re2/
prefilter_tree.h 63 // How many children should match before this node triggers the
65 // node, it is the number of unique children.
96 // children of node has already been assigned unique ids.
  /external/webkit/LayoutTests/fast/xpath/4XPath/Core/
test_parser.html 20 checkSnapshot("child::*", result, CHILDREN);
26 checkSnapshot("/*/*", result, CHILDREN);
94 checkSnapshot("(child::*)", result, CHILDREN);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
parseConst.cpp 58 // continue on to children. If you process children yourself,
224 // type of node. It's children will still be processed.
  /external/webkit/Source/WebCore/accessibility/
AccessibilityListBox.cpp 88 void AccessibilityListBox::setSelectedChildren(AccessibilityChildrenVector& children)
105 length = children.size();
107 AccessibilityObject* obj = children[i].get();
  /external/webkit/Source/WebCore/inspector/front-end/
RemoteObject.js 218 var children = this._children();
219 for (var i = 0; i < children.length; ++i) {
220 var itemDescription = formatProperty(children[i]);
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapperNode.cpp 231 // DefaultLayer: draws itself and its children directly to the current framebuffer.
247 // A clip layer is a layer that masks to bounds, doesn't preserve 3D, has children, and has a transparency/mask or a non-rectangular transform.
253 // ScissorLayer: draws to the current framebuffer, and applies an extra scissor before drawing its children.
254 // A scissor layer is a layer with children that masks to bounds, is not a transparency layer, and has a rectangular clip.
264 // Used for layers with children and transparency/mask that preserve 3D or don't mask to bounds.
768 for (size_t i = 0; i < graphicsLayer->children().size(); ++i) {
769 if (TextureMapperNode* child = toTextureMapperNode(graphicsLayer->children()[i])) {
868 Vector<GraphicsLayer*> children = graphicsLayer->children();
869 for (int i = children.size() - 1; i >= 0; --i)
    [all...]
  /external/webkit/Source/WebCore/xml/
XPathNodeSet.cpp 88 // The attribute nodes and namespace nodes of an element occur before the children of the element.
106 // Children nodes of the common ancestor induce a subdivision of our node-set.
115 // If parentNodes contains the node, perform a linear search to move its children in the node-set to the beginning.

Completed in 513 milliseconds

<<21222324252627282930>>