HomeSort by relevance Sort by last modified time
    Searched defs:child (Results 201 - 225 of 654) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodelisttraverselist.java 31 * The range of valid child node indices is 0 thru length -1
67 Node child; local
101 child = (Node) employeeList.item(indexN100A4);
102 childName = child.getNodeName();
noderemovechildnode.java 31 * Retrieve the second employee and remove its first child.
33 * children and the first child should now be the child
66 Node child; local
78 child = childList.item(0);
79 childName = child.getNodeName();
nodereplacechild.java 70 Node child; local
80 child = childList.item(0);
81 childName = child.getNodeName();
textparseintolistofelements.java 31 * Retrieve the textual data from the last child of the
36 * EntityReferences containing one child.
69 Node child; local
90 child = (Node) childList.item(indexN1007F);
91 value = child.getNodeValue();
94 grandChild = child.getFirstChild();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
getElementsByTagNameNS03.java 77 Node child; local
100 child = (Node) elementList.item(indexN10076);
101 childName = child.getNodeName();
getElementsByTagNameNS04.java 77 Node child; local
91 child = (Node) elementList.item(indexN10059);
92 childName = child.getNodeName();
getElementsByTagNameNS10.java 79 Node child; local
103 child = (Node) elementList.item(indexN1007E);
104 childName = child.getNodeName();
getElementsByTagNameNS11.java 78 Node child; local
93 child = (Node) elementList.item(indexN1005E);
94 childName = child.getNodeName();
importNode01.java 41 * Create a child Text node with value "importedText" for the attribute node above.
44 * Method should return a node whose name matches "elem:attr1" and a child node
86 Node child; local
113 child = aNode.getFirstChild();
114 childValue = child.getNodeValue();
importNode04.java 39 * Create a Comment child node for the Document Fragment.
42 * Method should return a node of type DocumentFragment whose child has
77 Node child; local
87 child = aNode.getFirstChild();
88 childValue = child.getNodeValue();
importNode06.java 76 Node child; local
89 child = aNode.getFirstChild();
90 value = child.getNodeValue();
importNode12.java 79 Node child; local
94 child = entity1.getFirstChild();
95 assertNotNull("notnull", child);
96 childName = child.getNodeName();
removeNamedItemNS03.java 39 * which contains an ENTITY_REFERENCE child node. Try to remove the attribute
83 Node child; local
93 child = nList.item(0);
94 nodeType = (int) child.getNodeType();
97 child = doc.createEntityReference("ent4");
98 assertNotNull("createdEntRefNotNull", child);
100 n2List = child.getChildNodes();
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 49 Node child = node.getFirstChild(); local
50 while (child != null) {
51 result = result + getTextContent(child);
52 child = child.getNextSibling();
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
Entity.java 105 ContentTypeField child = local
112 return ContentTypeField.getMimeType(child, parent);
  /packages/apps/Email/src/com/android/email/view/
NonLockingScrollView.java 69 // An up event after a drag should be intercepted so that child views don't handle
110 final View child = viewGroup.getChildAt(i); local
111 excludeChildrenFromInterceptions(child);
122 for (View child : children) {
123 if (!canViewReceivePointerEvents(child)) {
126 child.getHitRect(sHitFrame);
128 // child can receive the motion event.
136 private static boolean canViewReceivePointerEvents(View child) {
137 return child.getVisibility() == VISIBLE || (child.getAnimation() != null)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
HorizontalScrollViewRule.java 42 public void onChildInserted(INode child, INode parent, InsertType insertType) {
43 super.onChildInserted(child, parent, insertType);
45 // The child of the ScrollView should fill in both directions
47 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
48 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, fillParent);
69 // HorizontalScrollViews only allow a single child
ScrollViewRule.java 40 public void onChildInserted(INode child, INode parent, InsertType insertType) {
41 super.onChildInserted(child, parent, insertType);
43 // The child of the ScrollView should fill in both directions
45 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_WIDTH, fillParent);
46 child.setAttribute(ANDROID_URI, ATTR_LAYOUT_HEIGHT, fillParent);
55 // a child of this node and the create child method above will set its
66 // ScrollViews only allow a single child
  /system/netd/
logwrapper.c 73 if (wait(&status) != -1) { // Wait for child
92 void child(int argc, const char**argv) { function
135 * Child
140 LOG(LOG_ERROR, "logwrapper", "Problem with child ptty");
166 child(argc, argv);
227 case 0: /* child */
  /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...]
  /frameworks/base/core/java/android/app/
FragmentBreadCrumbs.java 166 final View child = getChildAt(i); local
168 int childRight = mPaddingLeft + child.getMeasuredWidth() - mPaddingRight;
169 int childBottom = mPaddingTop + child.getMeasuredHeight() - mPaddingBottom;
170 child.layout(mPaddingLeft, mPaddingTop, childRight, childBottom);
182 // Find rightmost and bottom-most child
184 final View child = getChildAt(i); local
185 if (child.getVisibility() != GONE) {
186 measureChild(child, widthMeasureSpec, heightMeasureSpec);
187 maxWidth = Math.max(maxWidth, child.getMeasuredWidth());
188 maxHeight = Math.max(maxHeight, child.getMeasuredHeight())
    [all...]
  /frameworks/base/core/java/android/widget/
ViewAnimator.java 95 * Sets which child view will be displayed.
97 * @param whichChild the index of the child view to display
117 * Returns the index of the currently displayed child view.
124 * Manually shows the next child.
132 * Manually shows the previous child.
140 * Shows only the specified child. The other displays Views exit the screen,
142 * the specified child enters the screen, optionally with the
145 * @param childIndex The index of the child to be shown.
152 final View child = getChildAt(i); local
155 child.startAnimation(mInAnimation)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
FloatingChildLayout.java 36 * Layout containing single child {@link View} which it attempts to center
39 * Updates drawable state to be {@link android.R.attr#state_first} when child is
40 * above target, and {@link android.R.attr#state_last} when child is below
41 * target. Also updates {@link Drawable#setLevel(int)} on child
103 final View child = mChild; local
106 final int childWidth = child.getMeasuredWidth();
107 final int childHeight = child.getMeasuredHeight();
113 layoutChild(child, childLeft, childTop);
120 // when child is outside bounds, nudge back inside
124 layoutChild(child, clampedChildLeft, clampedChildTop)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
MasterClear.java 221 TextView child = (TextView)inflater.inflate(R.layout.master_clear_account, local
223 child.setText(account.name);
225 child.setCompoundDrawablesWithIntrinsicBounds(icon, null, null, null);
227 contents.addView(child);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartView.java 111 final View child = getChildAt(i); local
112 final LayoutParams params = (LayoutParams) child.getLayoutParams();
116 if (child instanceof ChartNetworkSeriesView || child instanceof ChartGridView) {
120 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom);
122 } else if (child instanceof ChartSweepView) {
123 layoutSweep((ChartSweepView) child, parentRect, childRect);
124 child.layout(childRect.left, childRect.top, childRect.right, childRect.bottom);

Completed in 1975 milliseconds

1 2 3 4 5 6 7 891011>>