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

12 3 4 5 6 7 8 91011>>

  /external/elfutils/libelf/
elf_readall.c 33 Elf *child = elf->state.ar.children; local
35 while (child != NULL)
37 if (child->map_address == NULL)
39 child->map_address = elf->map_address;
40 child->start_offset -= offset;
41 if (child->kind == ELF_K_AR)
42 child->state.ar.offset -= offset;
44 set_address (child, offset);
47 child = child->next
    [all...]
common.h 88 Elf *child = elf->state.ar.children; local
90 while (child != NULL)
92 if (child->ref_count != 0)
93 libelf_acquire_all (child);
94 child = child->next;
105 Elf *child = elf->state.ar.children; local
107 while (child != NULL)
109 if (child->ref_count != 0)
110 libelf_release_all (child);
    [all...]
  /external/webkit/WebCore/editing/
WrapContentsInDummySpanCommand.cpp 44 for (Node* child = m_element->firstChild(); child; child = child->nextSibling())
45 children.append(child);
71 for (Node* child = m_dummySpan->firstChild(); child; child = child->nextSibling())
72 children.append(child);
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
FolderWrapper.java 32 * Creates a new File instance from a parent abstract pathname and a child pathname string.
34 * @param child the child name
38 public FolderWrapper(File parent, String child) {
39 super(parent, child);
54 * Creates a new File instance from a parent abstract pathname and a child pathname string.
56 * @param child the child name
60 public FolderWrapper(String parent, String child) {
61 super(parent, child);
    [all...]
  /frameworks/base/core/java/android/widget/
LinearLayout.java 34 * You can also specify gravity, which specifies the alignment of all the child elements by
58 * use the child at this index as the baseline.
67 * The additional offset to the child's baseline.
181 final View child = getChildAt(mBaselineAlignedChildIndex); local
182 final int childBaseline = child.getBaseline();
200 // getLocationOffset(child)
219 LinearLayout.LayoutParams lp = (LinearLayout.LayoutParams) child.getLayoutParams();
224 * @return The index of the child that will be used if this layout is
233 * @param i The index of the child that will be used if this layout is
241 throw new IllegalArgumentException("base aligned child index out
343 final View child = getVirtualChildAt(i); local
451 final View child = getVirtualChildAt(i); local
492 final View child = getVirtualChildAt(i); local
578 final View child = getVirtualChildAt(i); local
642 final View child = getVirtualChildAt(i); local
783 final View child = getVirtualChildAt(i); local
832 final View child = getVirtualChildAt(i); local
955 final View child = getVirtualChildAt(i); local
1090 final View child = getVirtualChildAt(i); local
1180 final View child = getVirtualChildAt(i); local
    [all...]
ExpandableListAdapter.java 60 * @return the data child for the specified group
65 * Gets the data associated with the given child within the given group.
67 * @param groupPosition the position of the group that the child resides in
68 * @param childPosition the position of the child with respect to other
70 * @return the data of the child
86 * Gets the ID for the given child within the given group. This ID must be
91 * @param groupPosition the position of the group that contains the child
92 * @param childPosition the position of the child within the group for which
94 * @return the ID associated with the child
99 * Indicates whether the child and group IDs are stable across changes to th
    [all...]
ExpandableListPosition.java 22 * ExpandableListPosition can refer to either a group's position or a child's
23 * position. Referring to a child's position requires both a group position (the
24 * group containing the child) and a child position (the child's position within
35 * This data type represents a child position
37 public final static int CHILD = 1;
46 * group of the child being referred to
51 * The position of the child within its parent group
57 * the corresponding flat list position for the group or child is known
    [all...]
AbsoluteLayout.java 65 // Find rightmost and bottom-most child
67 View child = getChildAt(i); local
68 if (child.getVisibility() != GONE) {
73 = (AbsoluteLayout.LayoutParams) child.getLayoutParams();
75 childRight = lp.x + child.getMeasuredWidth();
76 childBottom = lp.y + child.getMeasuredHeight();
112 View child = getChildAt(i); local
113 if (child.getVisibility() != GONE) {
116 (AbsoluteLayout.LayoutParams) child.getLayoutParams();
120 child.layout(childLeft, childTop
    [all...]
ViewAnimator.java 89 * Sets which child view will be displayed.
91 * @param whichChild the index of the child view to display
110 * Returns the index of the currently displayed child view.
117 * Manually shows the next child.
124 * Manually shows the previous child.
131 * Shows only the specified child. The other displays Views exit the screen
132 * with the {@link #getOutAnimation() out animation} and the specified child
135 * @param childIndex The index of the child to be shown.
140 final View child = getChildAt(i); local
144 child.startAnimation(mInAnimation)
    [all...]
  /external/webkit/WebCore/page/
FrameTree.cpp 38 for (Frame* child = firstChild(); child; child = child->tree()->nextSibling())
39 child->setView(0);
64 void FrameTree::appendChild(PassRefPtr<Frame> child)
66 ASSERT(child->page() == m_thisFrame->page());
67 child->tree()->m_parent = m_thisFrame;
70 m_lastChild = child.get();
73 child->tree()->m_previousSibling = oldLast
152 Frame* FrameTree::child(unsigned index) const function in class:WebCore::FrameTree
160 Frame* FrameTree::child(const AtomicString& name) const function in class:WebCore::FrameTree
232 Frame* child = firstChild(); local
    [all...]
  /cts/tools/utils/
android_api_description_splitter.py 105 for child in elem.childNodes:
106 if child.nodeType == xml.dom.minidom.Node.ELEMENT_NODE:
107 children.append(child)
109 for child in children:
110 if child.nodeName == "doc":
111 elem.removeChild(child)
112 children.remove(child)
114 for child in children:
115 child = self.__trimElem(child)
    [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityARIAGrid.cpp 62 void AccessibilityARIAGrid::addChild(AccessibilityObject* child, HashSet<AccessibilityObject*>& appendedRows, unsigned& columnCount)
64 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole)
67 AccessibilityTableRow* row = static_cast<AccessibilityTableRow*>(child);
100 for (RefPtr<AccessibilityObject> child = firstChild(); child; child = child->nextSibling()) {
103 if (child->accessibilityIsIgnored())
    [all...]
  /external/webkit/WebCore/css/
StyleList.cpp 31 void StyleList::append(PassRefPtr<StyleBase> child)
33 StyleBase* c = child.get();
34 m_children.append(child);
38 void StyleList::insert(unsigned position, PassRefPtr<StyleBase> child)
40 StyleBase* c = child.get();
42 m_children.append(child);
44 m_children.insert(position, child);
  /dalvik/libcore/xml/src/main/java/org/kxml2/kdom/
Node.java 44 /** inserts the given child object of the given type at the
47 public void addChild(int index, int type, Object child) {
49 if (child == null)
58 if (!(child instanceof Element))
61 ((Element) child).setParent(this);
63 else if (!(child instanceof String))
66 children.insertElementAt(child, index);
70 /** convenience method for addChild (getChildCount (), child) */
72 public void addChild(int type, Object child) {
73 addChild(getChildCount(), type, child); local
110 Object child = getChild(index); local
204 Element child = getElement(i); local
237 Element child = local
327 Object child = children.elementAt(i); local
    [all...]
  /external/webkit/WebCore/rendering/
RenderRubyRun.cpp 84 RenderObject* child = firstChild(); local
85 return child && child->isRubyText() ? static_cast<RenderRubyText*>(child) : 0;
90 RenderObject* child = lastChild(); local
91 return child && child->isRubyBase() ? static_cast<RenderRubyBase*>(child) : 0;
113 bool RenderRubyRun::isChildAllowed(RenderObject* child, RenderStyle*) const
115 return child->isRubyText() || child->isInline()
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
PrimitiveElement.java 73 for (PrimitiveElement child : getChildren()) {
74 if (tagName.equals(child.getTagName())) {
75 children.add(child);
83 for (PrimitiveElement child : getChildren()) {
84 if (tagName.equals(child.getTagName())) {
85 return child;
92 PrimitiveElement child = getChild(tagName); local
93 return child == null ? null : child.getContents();
111 public PrimitiveElement addChild(PrimitiveElement child) {
    [all...]
  /dalvik/tests/063-process-manager/src/
Main.java 7 System.out.println("\nspawning child #" + i);
8 child(); method
15 static private void child() throws Exception { method in class:Main
16 System.out.println("spawning child");
22 System.out.println("child died");
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
ViewsTreeModel.java 44 public boolean isLeaf(Object child) {
45 ViewNode node = (ViewNode) child;
49 public void valueForPathChanged(TreePath treePath, Object child) {
52 public int getIndexOfChild(Object parent, Object child) {
54 return ((ViewNode) parent).children.indexOf(child);
  /frameworks/base/core/java/android/view/
ViewGroup.java 89 // The current transformation to apply on the child being drawn
109 // When set, ViewGroup invalidates only the child's rectangle
118 // a child needs to be invalidated and FLAG_OPTIMIZE_INVALIDATE is set
153 * to get the index of the child to draw for that iteration.
162 * invoked when a child is drawn.
262 // Index of the child's left position in the mLocation array
264 // Index of the child's top position in the mLocation array
267 // Child views of this ViewGroup
411 public void requestChildFocus(View child, View focused) {
423 if (mFocused != child) {
602 final View child = children[i]; local
634 final View child = children[i]; local
677 final View child = children[i]; local
853 final View child = children[i]; local
1071 View child = children[i]; local
1250 final View child = children[i]; local
1283 View child = getChildAt(i); local
1315 final View child = children[i]; local
1365 final View child = children[i]; local
1372 final View child = children[getChildDrawingOrder(count, i)]; local
1385 final View child = disappearingChildren.get(i); local
3011 View child = mChildren[i]; local
3078 final View child = children[i]; local
3300 final View child = children[i]; local
3363 final View child = children[i]; local
    [all...]
  /external/clearsilver/util/
neo_server.c 73 ne_warn("nserver child loop handled %d connections", loop-1);
157 pid_t child; local
162 child = fork();
163 if (child == -1)
165 err = nerr_raise_errno(NERR_SYSTEM, "Unable to fork child");
168 if (!child)
174 ne_warn("Starting child pid %d", child);
179 child = wait3(&status, 0, NULL);
180 if (child == -1
    [all...]
  /dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockNodeChangeListener.java 48 Preferences child = e.getChild(); local
49 if (child == null) {
52 if (child.name() == "mock1") {
78 Preferences child = e.getChild(); local
79 if (child == null) {
82 if (child.name() == "mock1") {
  /external/gtest/test/
gtest_xml_test_utils.py 62 * It has an equivalent set of child nodes (including elements and
89 for child_id, child in expected_children.iteritems():
92 self.AssertEquivalentNodes(child, actual_children[child_id])
102 Fetches all of the child nodes of element, a DOM Element object.
108 above four is encountered, if two child elements with the same
115 for child in element.childNodes:
116 if child.nodeType == Node.ELEMENT_NODE:
117 self.assert_(child.tagName in self.identifying_attribute,
118 "Encountered unknown element <%s>" % child.tagName)
119 childID = child.getAttribute(self.identifying_attribute[child.tagName]
    [all...]
  /external/webkit/WebCore/svg/
SVGTSpanElement.cpp 41 bool SVGTSpanElement::childShouldCreateRenderer(Node* child) const
43 if (child->isTextNode()
45 || child->hasTagName(SVGNames::altGlyphTag)
47 || child->hasTagName(SVGNames::tspanTag) || child->hasTagName(SVGNames::trefTag) || child->hasTagName(SVGNames::textPathTag))
  /dalvik/docs/
dex-format.css 115 table.bnf td:first-child {
120 table.bnf td:first-child td {
144 table.guide td:first-child {
149 table.guide td:first-child + td {
184 table.leb128 td:first-child {
190 table.leb128 td:first-child + td {
196 table.leb128 td:first-child + td + td {
202 table.leb128 td:first-child + td + td + td {
216 table.format td:first-child {
221 table.format td:first-child + td
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 99 * Inserts a new child node into this node at a given position. If the new
100 * node is already child of another node, it is first removed from there.
104 * @param newChild The new child node to add.
105 * @param index The index at which to insert the new child node.
215 Node child = getFirstChild(); local
216 if (child == null) {
220 Node next = child.getNextSibling();
222 return hasTextContent(child) ? child.getTextContent() : "";
231 Node child = getFirstChild() local
    [all...]

Completed in 96 milliseconds

12 3 4 5 6 7 8 91011>>