HomeSort by relevance Sort by last modified time
    Searched full:child (Results 26 - 50 of 3947) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Gallery/src/com/android/camera/
EvenlySpacedLayout.java 54 View child = getChildAt(i); local
55 if (child.getVisibility() == GONE) continue;
56 measureChild(child, widthMeasureSpec, heightMeasureSpec);
58 width += child.getMeasuredWidth();
59 height = Math.max(height, child.getMeasuredHeight());
61 height += child.getMeasuredHeight();
62 width = Math.max(width, child.getMeasuredWidth());
75 View child = getChildAt(i); local
76 if (child.getVisibility() == GONE) continue;
77 usedWidth += child.getMeasuredWidth()
86 View child = getChildAt(i); local
102 View child = getChildAt(i); local
113 View child = getChildAt(i); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemUnknown.java 58 for (ElemTemplateElement child = m_firstChild; child != null;
59 child = child.m_nextSibling)
61 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
65 transformer.pushElemTemplateElement(child);
66 ((ElemFallback) child).executeFallback(transformer);
78 * Return true if this extension element has a <xsl:fallback> child element.
80 * @return true if this extension element has a <xsl:fallback> child element.
84 for (ElemTemplateElement child = m_firstChild; child != null
    [all...]
  /external/skia/src/core/
SkTSort.h 26 int child = root * 2 + 1; local
27 if (child+1 <= bottom && array[child] < array[child+1]) {
28 child += 1;
30 if (array[root] < array[child]) {
31 SkTSwap<T>(array[root], array[child]);
32 root = child;
  /external/webkit/LayoutTests/fast/xpath/
document-order-expected.txt 12 PASS //CHILD | //@attr1
13 PASS //CHILD | //@attr1 | //*[@name='GCHILD12'] | //@attr31
14 PASS (//CHILD | //@attr1 | //*[@name='GCHILD12'] | //@attr31)[3]
15 PASS (//CHILD | //@attr1 | //*[@name='GCHILD12'] | //@attr31)[position() = last()]
16 PASS //CHILD[2]/GCHILD | //CHILD[1]/GCHILD
17 PASS doc.evaluate("string(//*[@name='GCHILD12'] | //CHILD | //@attr1 | //@attr31)", doc, null, XPathResult.STRING_TYPE, null).stringValue is "TEXT1"
19 PASS child::node() (context = attr1)
  /external/webkit/Source/WebCore/dom/
ContainerNode.cpp 61 for (Node* child = node->firstChild(); child; child = child->nextSibling())
62 nodes.append(child);
90 RefPtr<Node> child = document()->adoptNode(children[i].release(), ec); local
92 parserAddChild(child.get());
93 if (attached() && !child->attached())
94 child->attach();
115 // Make sure adding the new child is OK
138 Node* child = it->get(); local
161 InspectorInstrumentation::willInsertDOMNode(document(), child, this); local
231 Node* child = it->get(); local
234 InspectorInstrumentation::willInsertDOMNode(document(), child, this); local
283 RefPtr<Node> child = isFragment ? newChild->firstChild() : newChild; local
394 Node* child = it->get(); local
421 RefPtr<Node> child = oldChild; local
595 Node* child = it->get(); local
610 InspectorInstrumentation::willInsertDOMNode(document(), child, this); local
758 Node* child = it->get(); local
    [all...]
  /frameworks/base/sax/java/android/sax/
Children.java 25 Child[] children = new Child[16];
28 * Looks up a child by name and creates a new one if necessary.
34 Child current = children[index];
37 current = new Child(parent, uri, localName, parent.depth + 1, hash);
42 Child previous;
47 // We already have a child with that name.
55 // Add a new child to the bucket.
56 current = new Child(parent, uri, localName, parent.depth + 1, hash);
63 * Looks up a child by name
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PictureLayout.java 41 public void addView(View child) {
43 throw new IllegalStateException("PictureLayout can host only one direct child");
46 super.addView(child);
50 public void addView(View child, int index) {
52 throw new IllegalStateException("PictureLayout can host only one direct child");
55 super.addView(child, index);
59 public void addView(View child, LayoutParams params) {
61 throw new IllegalStateException("PictureLayout can host only one direct child");
64 super.addView(child, params);
68 public void addView(View child, int index, LayoutParams params)
89 final View child = getChildAt(i); local
150 final View child = getChildAt(i); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ANoopCommand.java 34 void removeChild(@SuppressWarnings("unused") Node child)
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
ANoopExpression.java 34 void removeChild(@SuppressWarnings("unused") Node child)
36 // Remove child
37 throw new RuntimeException("Not a child.");
43 // Replace child
44 throw new RuntimeException("Not a child.");
  /external/oprofile/libutil++/
child_reader.h 3 * Facility for reading from child processes
21 * a class to read stdout / stderr from a child process.
25 * stderr child output
32 * child. in this case child stderr is acumulated in buf2 and can be read
33 * through get_data(). get_data() is blocking until the child close stderr /
34 * stdout (even if the child die by a signal ?). The following corner case must
36 * child stdout have not necessarilly a LF terminator. the child can output any
46 /** wait for the termination of the child process if this have no
    [all...]
  /external/webkit/Source/WebCore/page/
FrameTree.cpp 38 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
39 child->setView(0);
66 bool FrameTree::transferChild(PassRefPtr<Frame> child)
68 Frame* oldParent = child->tree()->parent();
70 return false; // |child| is already a child of m_thisFrame.
73 oldParent->tree()->removeChild(child.get())
178 Frame* FrameTree::child(unsigned index) const function in class:WebCore::FrameTree
186 Frame* FrameTree::child(const AtomicString& name) const function in class:WebCore::FrameTree
258 Frame* child = firstChild(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLoggerTest.java 148 // child part
150 "testGetLogger_WithParent_ParentLogger.child"));
151 // create the child logger
152 Logger child = Logger local
153 .getLogger("testGetLogger_WithParent_ParentLogger.child");
154 assertNull(child.getFilter());
155 assertEquals(0, child.getHandlers().length);
156 assertNull(child.getLevel());
157 assertEquals("testGetLogger_WithParent_ParentLogger.child", child
192 assertSame(childOfChild.getParent(), child); local
    [all...]
  /frameworks/base/core/java/android/view/
ViewParent.java 30 * child of this view parent. This will schedule a layout pass of the view
43 * Called when a child wants the view hierarchy to gather and report
50 * @param child the view requesting the transparent region computation
53 public void requestTransparentRegion(View child);
56 * All or part of a child is dirty and needs to be redrawn.
58 * @param child The child which is dirty
59 * @param r The area within the child that is invalid
61 public void invalidateChild(View child, Rect r);
64 * All or part of a child is dirty and needs to be redrawn
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.cc 25 // Maximum child width when |homogeneous| is TRUE.
29 void CountVisibleChildren(GtkWidget* child, gpointer userdata) {
30 if (GTK_WIDGET_VISIBLE(child))
34 void SumChildrenWidthRequisition(GtkWidget* child, gpointer userdata) {
35 if (GTK_WIDGET_VISIBLE(child)) {
37 gtk_widget_get_child_requisition(child, &req);
42 void ShowInvisibleChildren(GtkWidget* child, gpointer userdata) {
43 if (!GTK_WIDGET_VISIBLE(child)) {
44 gtk_widget_show(child);
49 void ChildSizeAllocate(GtkWidget* child, gpointer userdata)
263 gtk_box_pack_start(GTK_BOX(box), child, FALSE, FALSE, 0); local
272 gtk_box_pack_end(GTK_BOX(box), child, FALSE, FALSE, 0); local
    [all...]
gtk_floating_container.cc 32 GtkFloatingContainerChild* child = local
35 if (child->widget == widget)
36 return child;
57 GtkWidget* child,
62 GtkWidget* child,
96 "X position of child widget",
107 "Y position of child widget",
136 if (bin->child == widget) {
145 GtkFloatingContainerChild* child = local
148 if (child->widget == widget)
185 GtkFloatingContainerChild* child = local
235 GtkFloatingContainerChild* child = local
    [all...]
  /external/collada/src/dae/
daeMetaElementAttribute.cpp 106 daeMetaElementAttribute::placeElement(daeElement* parent, daeElement* child, daeUInt &ordinal, daeInt offset, daeElement* before, daeElement *after )
111 if ((parent == NULL)||(child == NULL))
113 if ( child->getMeta() != _elementType || strcmp( child->getElementName(), _name ) != 0 ) {
116 if (child->getParentElement() == parent) {
117 //I Don't know why this gets called when the child already has this as parent.
118 return child;
127 daeElement::removeFromParent( child );
128 child->setParentElement( parent );
130 *er = child;
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGRootInlineBox.cpp 51 for (InlineBox* child = firstChild(); child; child = child->nextOnLine()) {
52 if (child->isSVGInlineTextBox())
53 static_cast<SVGInlineTextBox*>(child)->paintSelectionBackground(childPaintInfo);
54 else if (child->isSVGInlineFlowBox())
55 static_cast<SVGInlineFlowBox*>(child)->paintSelectionBackground(childPaintInfo);
62 for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
EventRedirectingFrameLayout.java 52 View child = getChildAt(mTargetChild); local
53 if (child != null)
54 return child.dispatchTouchEvent(ev);
60 View child = getChildAt(mTargetChild); local
61 if (child != null)
62 return child.dispatchKeyEvent(event);
68 View child = getChildAt(mTargetChild); local
69 if (child != null)
70 return child.dispatchKeyEventPreIme(event);
  /packages/apps/Camera/src/com/android/camera/ui/
StackLayout.java 24 // A layout designed to make the children same size as the first child.
36 // Measure only the first child.
37 final View child = getChildAt(0); local
38 measureChild(child, widthMeasureSpec, heightMeasureSpec);
41 int width = child.getMeasuredWidth();
42 int height = child.getMeasuredHeight();
53 final View child = getChildAt(i); local
54 if (child.getVisibility() != View.GONE) {
55 child.layout(0, 0, r - l, b - t);
  /external/webkit/Source/WebCore/rendering/
RenderTable.cpp 111 void RenderTable::addChild(RenderObject* child, RenderObject* beforeChild)
117 bool wrapInAnonymousSection = !child->isPositioned();
119 if (child->isRenderBlock() && child->style()->display() == TABLE_CAPTION) {
131 m_caption = toRenderBlock(child);
135 } else if (child->isTableCol()) {
138 } else if (child->isTableSection()) {
139 switch (child->style()->display()) {
143 m_head = toRenderTableSection(child);
147 m_firstBody = toRenderTableSection(child);
315 RenderObject* child = firstChild(); local
1016 RenderObject* child; local
    [all...]
RenderTableRow.cpp 83 void RenderTableRow::addChild(RenderObject* child, RenderObject* beforeChild)
89 if (!child->isTableCell()) {
96 last->addChild(child, beforeChild);
102 last->parent()->addChild(child, beforeChild);
112 cell->addChild(child);
120 RenderTableCell* cell = toRenderTableCell(child);
142 for (RenderObject* child = firstChild(); child; child = child->nextSibling())
    [all...]
  /external/skia/src/views/
SkView.cpp 119 SkView* child; local
123 while ((child = iter.next()) != NULL)
124 child->draw(childCanvas);
208 SkView* child, *focus; local
209 while ((child = iter.next()) != NULL)
210 if ((focus = child->acceptFocus(dir)) != NULL)
216 SkView* child, *focus; local
217 while ((child = iter.next()) != NULL)
218 if ((focus = child->acceptFocus(dir)) != NULL)
239 SkView* child, *parent local
363 SkView* child; local
657 SkView* child; local
762 SkView* child; local
    [all...]
  /sdk/layoutopt/libs/uix/src/resources/rules/
TooManyChildren.rule 6 // - The layout is a ScrollView and has more than 1 child
7 // - The layout is a list or grid ans has at least 1 child
10 analysis << "A scroll view can have only one child"
  /external/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 50 TreeOutline._appendChild = function(child)
52 if (!child)
53 throw("child can't be undefined or null");
57 lastChild.nextSibling = child;
58 child.previousSibling = lastChild;
60 child.previousSibling = null;
61 child.nextSibling = null;
64 this.children.push(child);
66 child.parent = this;
67 child.treeOutline = this.treeOutline
    [all...]
  /dalvik/tests/084-class-init/
expected.txt 7 Fields (child thread): 111222333444

Completed in 474 milliseconds

12 3 4 5 6 7 8 91011>>