HomeSort by relevance Sort by last modified time
    Searched full:child (Results 1 - 25 of 1967) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/063-process-manager/
expected.txt 3 spawning child #1
4 spawning child
6 child died
9 spawning child #2
10 spawning child
12 child died
info.txt 1 Test that spawning a child process and then reaping it (a) works and (b)
  /external/webkit/WebCore/rendering/
RenderFlexibleBox.cpp 54 RenderBox* child = box->firstChildBox(); local
55 while (child) {
56 if (child->style()->boxOrdinalGroup() > lastOrdinal)
57 lastOrdinal = child->style()->boxOrdinalGroup();
58 child = child->nextSiblingBox();
123 for (RenderBox* child = firstChildBox(); child; child = child->nextSiblingBox())
311 RenderBox* child = iterator.first(); local
350 RenderBox* child; local
660 RenderBox* child; local
    [all...]
RenderRuby.cpp 44 RenderObject* child = ruby->lastChild(); local
45 if (child && ruby->isAfterContent(child))
46 child = child->previousSibling();
47 ASSERT(!child || child->isRubyRun());
48 return static_cast<RenderRubyRun*>(child);
51 static inline RenderRubyRun* findRubyRunParent(RenderObject* child)
53 while (child && !child->isRubyRun()
    [all...]
RenderTableRow.cpp 65 void RenderTableRow::addChild(RenderObject* child, RenderObject* beforeChild)
71 if (!child->isTableCell()) {
76 last->addChild(child);
82 last->parent()->addChild(child, beforeChild);
92 cell->addChild(child);
100 RenderTableCell* cell = toRenderTableCell(child);
120 for (RenderObject* child = firstChild(); child; child = child->nextSibling())
    [all...]
RenderRubyBase.cpp 48 bool RenderRubyBase::isChildAllowed(RenderObject* child, RenderStyle*) const
50 return child->isInline();
58 for (RenderObject* child = firstChild(); child != beforeChild; child = child->nextSibling()) {
59 if (!child->isFloatingOrPositioned() && !(child->isAnonymousBlock() && child->childrenInline()))
71 // First make sure that beforeChild (if set) is indeed a direct child of this
    [all...]
RenderTable.cpp 103 void RenderTable::addChild(RenderObject* child, RenderObject* beforeChild)
109 bool wrapInAnonymousSection = !child->isPositioned();
111 if (child->isRenderBlock() && child->style()->display() == TABLE_CAPTION) {
121 m_caption = toRenderBlock(child);
123 } else if (child->isTableCol()) {
126 } else if (child->isTableSection()) {
127 switch (child->style()->display()) {
131 m_head = toRenderTableSection(child);
135 m_firstBody = toRenderTableSection(child);
290 RenderObject* child = firstChild(); local
937 RenderObject* child; local
    [all...]
RenderFrameSet.cpp 128 RenderObject* child = firstChild();
129 if (!child)
144 child->paint(paintInfo, tx, ty);
150 child = child->nextSibling();
151 if (!child)
413 RenderObject* child = firstChild(); local
414 if (!child)
422 if (child->isFrameSet())
423 edgeInfo = toRenderFrameSet(child)->edgeInfo()
487 RenderObject* child = firstChild(); local
521 RenderBox* child = firstChildBox(); local
644 RenderBox* child = firstChildBox(); local
    [all...]
  /external/webkit/WebCore/html/
HTMLTableRowsCollection.cpp 57 Node* child = 0; local
62 for (child = previous->nextSibling(); child; child = child->nextSibling()) {
63 if (child->hasTagName(trTag))
64 return static_cast<HTMLTableRowElement*>(child);
70 child = table->firstChild();
72 child = previous->parent()->nextSibling();
73 for (; child; child = child->nextSibling())
    [all...]
  /system/extras/tests/bionic/libc/common/
test_clone.c 35 int pid,child; local
45 printf ("child pid %d\n", pid);
48 child = waitpid (pid, &status, 0);
49 printf("waitpid returned %d\n", child);
50 if (child < 0) {
54 printf ("child %d, status 0x%x\n", child, status);
  /external/webkit/WebCore/dom/
ContainerNode.cpp 77 // Make sure adding the new child is OK.
82 // NOT_FOUND_ERR: Raised if refChild is not a child of this node
95 // Now actually add the child(ren)
102 RefPtr<Node> child = isFragment ? newChild->firstChild() : newChild; local
103 while (child) {
104 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0;
106 // If child is already present in the tree, first remove it from the old location.
107 if (Node* oldParent = child->parentNode())
108 oldParent->removeChild(child.get(), ec);
118 // possible that "next" is no longer a child of "this"
206 RefPtr<Node> child = isFragment ? newChild->firstChild() : newChild; local
322 RefPtr<Node> child = oldChild; local
454 RefPtr<Node> child = isFragment ? newChild->firstChild() : newChild; local
    [all...]
  /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...]
  /dalvik/libcore/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...]
  /frameworks/base/core/java/android/view/
ViewParent.java 29 * child of this view parent. This will schedule a layout pass of the view
42 * Called when a child wants the view hierarchy to gather and report
49 * @param child the view requesting the transparent region computation
52 public void requestTransparentRegion(View child);
55 * All or part of a child is dirty and needs to be redrawn.
57 * @param child The child which is dirty
58 * @param r The area within the child that is invalid
60 public void invalidateChild(View child, Rect r);
63 * All or part of a child is dirty and needs to be redrawn
    [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;
  /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 42 public void addView(View child) {
44 throw new IllegalStateException("PictureLayout can host only one direct child");
47 super.addView(child);
51 public void addView(View child, int index) {
53 throw new IllegalStateException("PictureLayout can host only one direct child");
56 super.addView(child, index);
60 public void addView(View child, LayoutParams params) {
62 throw new IllegalStateException("PictureLayout can host only one direct child");
65 super.addView(child, params);
69 public void addView(View child, int index, LayoutParams params)
90 final View child = getChildAt(i); local
151 final View child = getChildAt(i); local
    [all...]
  /frameworks/base/services/java/com/android/server/status/
IconMerger.java 45 final View child = getChildAt(i); local
46 if (child.getVisibility() != GONE) {
47 fitRight = child.getRight();
57 final View child = getChildAt(i); local
58 if (com.android.internal.R.drawable.stat_notify_more == child.getId()) {
59 moreView = child;
62 else if (child.getVisibility() != GONE) {
63 fitLeft = child.getLeft();
87 final View child = getChildAt(i); local
88 if (child.getVisibility() != GONE)
    [all...]
  /external/skia/src/views/
SkView.cpp 111 SkView* child; local
115 while ((child = iter.next()) != NULL)
116 child->draw(childCanvas);
201 SkView* child, *focus; local
202 while ((child = iter.next()) != NULL)
203 if ((focus = child->acceptFocus(dir)) != NULL)
209 SkView* child, *focus; local
210 while ((child = iter.next()) != NULL)
211 if ((focus = child->acceptFocus(dir)) != NULL)
232 SkView* child, *parent local
356 SkView* child; local
650 SkView* child; local
755 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/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...]
  /external/webkit/WebCore/editing/
MergeIdenticalElementsCommand.cpp 53 for (Node* child = m_element1->firstChild(); child; child = child->nextSibling())
54 children.append(child);
81 for (Node* child = m_element2->firstChild(); child && child != atChild; child = child->nextSibling()
    [all...]
RemoveNodePreservingChildrenCommand.cpp 44 for (Node* child = m_node->firstChild(); child; child = child->nextSibling())
45 children.append(child);
49 RefPtr<Node> child = children[i].release(); local
50 removeNode(child);
51 insertNodeBefore(child.release(), m_node);
  /external/clearsilver/man/man3/
hdf_get_child.3 14 hdf_get_child - return the first child of the named node
31 name, and return the first child of that node
  /external/webkit/WebCore/svg/
SVGFontFaceSrcElement.cpp 44 for (Node* child = firstChild(); child; child = child->nextSibling()) {
45 if (child->hasTagName(font_face_uriTag))
46 list->append(static_cast<SVGFontFaceUriElement*>(child)->srcValue());
47 else if (child->hasTagName(font_face_nameTag))
48 list->append(static_cast<SVGFontFaceNameElement*>(child)->srcValue());

Completed in 936 milliseconds

1 2 3 4 5 6 7 8 91011>>