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

<<11121314151617181920>>

  /frameworks/base/core/java/android/view/
ViewManager.java 19 /** Interface to let you add and remove child views to an Activity. To get an instance
  /frameworks/base/core/java/android/widget/
ViewFlipper.java 32 * that have been added to it. Only one child is shown at a time. If
33 * requested, can automatically flip between each child at a regular interval.
127 * Start a timer to cycle through child views
165 * Returns true if the child views are flipping.
  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuView.java 269 View child = getChildAt(itemPos++); local
270 LayoutParams lp = (LayoutParams) child.getLayoutParams();
378 * just computes positions for each child, and then stores them in the child's layout params.
394 View child; local
416 // Tell the child to be exactly this size
417 child = getChildAt(itemPos);
418 child.measure(MeasureSpec.makeMeasureSpec((int) itemWidth, MeasureSpec.EXACTLY),
421 // Remember the child's position for layout
422 childLayoutParams = (IconMenuView.LayoutParams) child.getLayoutParams()
494 View child; local
    [all...]
  /frameworks/base/core/tests/coretests/res/layout/
weight_sum.xml 28 <Button android:id="@+id/child"
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
FillInWrapTest.java 51 assertTrue("the child's height should be less than the parent's",
WeightSumTest.java 40 mChild = activity.findViewById(R.id.child);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListOfItemsTallerThanScreenTest.java 47 assertEquals("should only be one visible child", 1, mListView.getChildCount());
76 assertEquals("child count", 2, mListView.getChildCount());
91 // remember top of peeking child
125 assertEquals("off screen item shouldn't be a child of list view",
  /frameworks/base/docs/html/resources/tutorials/views/
hello-linearlayout.jd 6 <p>{@link android.widget.LinearLayout} is a {@link android.view.ViewGroup} that displays child
93 its orientation to be vertical&mdash;all child {@link android.view.View}s (of which it has two) will
94 be stacked vertically. The first child is
95 another {@link android.widget.LinearLayout} that uses a horizontal orientation and the second child
  /frameworks/base/media/libdrm/mobile2/src/util/domcore/
NodeImpl.cpp 139 * NULL, means the child node is the last node of parent.so set the
148 * NULL,means the node is neither first child nor last children of its parent.
155 * so adjust the first child and last child to NULL when remove the children node.
  /frameworks/base/sax/java/android/sax/
RootElement.java 129 // Look for a child to push onto the stack.
132 Element child = children.get(uri, localName); local
133 if (child != null) {
134 start(child, attributes);
  /packages/apps/Camera/src/com/android/camera/ui/
PopupWindow.java 84 GLView child = mRotatePane; local
85 child.measure(widthSpec, heightSpec);
86 setMeasuredSize(child.getMeasuredWidth()
88 child.getMeasuredHeight() + p.top + p.bottom);
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementExclusiveTimeContainer.java 20 * with the additional constraint that only one child element may play at a
TimeList.java 35 * The number of times in the list. The range of valid child time indices
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
INode.java 84 * Creates a new XML element as a child of this node's XML element.
97 * Creates a new XML element as a child of this node's XML element and inserts
106 * @param index Index of the child to insert before. If the index is out of bounds
107 * (less than zero or larger that current last child), appends at the end.
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
IAbstractFolder.java 33 * returns an {@link IAbstractFile} representing a child of the current folder with the
  /sdk/traceview/src/com/android/traceview/
ProfileData.java 24 /** mContext is either the parent or child of mElement */
  /system/core/logwrapper/
logwrapper.c 90 if (wait(&status) != -1) { // Wait for child
107 void child(int argc, char* argv[]) { function
159 fatal("Problem with child ptty\n");
168 child(argc - 1, &argv[1]);
  /system/extras/tests/sdcard/
sysutil.h 43 // .forkOrExit Fork a child or exit.
49 // .writePidAndWaitForReply To instruct the parent the child is ready.
54 // .waitForChildrenOrExit Wait and exit if a child exit with errors.
141 // If a child did not exit cleanly, exit.
  /system/netd/
logwrapper.c 73 if (wait(&status) != -1) { // Wait for child
92 void child(int argc, const char**argv) { function
137 LOG(LOG_ERROR, "logwrapper", "Problem with child ptty");
164 child(argc, argv);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/parts/
UiElementEditPart.java 116 for (Object child : children) {
117 if (child instanceof UiElementEditPart) {
118 UiElementEditPart childPart = (UiElementEditPart)child;
256 * on the child in an AbsoluteLayout.
259 protected EditPolicy createChildEditPolicy(EditPart child) {
260 if (child instanceof UiElementEditPart) {
261 return new NonResizableSelectionEditPolicy((UiElementEditPart) child);
  /cts/tests/tests/widget/src/android/widget/cts/
TabWidgetTest.java 216 "1. not clear what is supposed to happen if child is null." +
217 "2. not clear what is supposed to happen if child is a kind of AdapterView." +
218 "3. In javadoc, it says that the default parameters are set on the child " +
219 " if no layout parameters are already set on the child, but the default width " +
252 fail("did not throw NullPointerException when child is null");
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Object/
regress-137000.js 76 * to chain constructors from child to parent.
108 * the parameter to both the Base and Child constructors,
114 function Child(id)
118 Child.prototype=Base;
121 var c1 = new Child('child1');
  /external/webkit/WebCore/editing/
ModifySelectionListLevel.cpp 54 // start must be in a list child
59 // end must be in a list child
149 // start must not be the first child (because you need a prior one
266 // at start of sublist, move the child(ren) to before the sublist
272 // at end of list, move the child(ren) to after the sublist
  /frameworks/base/awt/javax/imageio/metadata/
IIOMetadataFormat.java 62 * The maximum value for the child policy.
280 * Gets the names of the possible child elements for the given element.
284 * @return the child names.
289 * Gets the constant describing the element's child policy.
293 * @return the child policy.
  /frameworks/base/core/tests/coretests/src/android/widget/expandablelistview/
ExpandableListTester.java 103 // Check child index in context menu
106 View child = mExpandableListView.getChildAt(index local
108 mExpandableListView.showContextMenuForChild(child);
183 Assert.assertEquals("Wrong flat position for child ",
187 Assert.assertEquals("Wrong flat position for child ",

Completed in 275 milliseconds

<<11121314151617181920>>