Searched defs:child (Results 76 - 88 of 88) sorted by relevance

1234

/frameworks/base/core/java/android/webkit/
H A DWebView.java66 * <p>This must be a child of the <a
1165 * a child node. If a phone number is found, the HitTestResult type is set
1735 public void onChildViewAdded(View parent, View child) {} argument
1744 public void onChildViewRemoved(View p, View child) {} argument
2326 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) { argument
2327 return mProvider.getViewDelegate().requestChildRectangleOnScreen(child, rect, immediate);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java77 * If a child does not specify the row and column indices of the cell it
107 * A child's ability to stretch is inferred from the alignment properties of
109 * {@link LayoutParams#setGravity(int) gravity} property of the child's layout parameters).
441 * based on the child's visual characteristics. Each of the
691 private int getTotalMargin(View child, boolean horizontal) { argument
692 return getMargin(child, horizontal, true) + getMargin(child, horizontal, false);
804 protected void onSetLayoutParams(View child, ViewGroup.LayoutParams layoutParams) { argument
805 super.onSetLayoutParams(child, layoutParams);
940 protected void onViewAdded(View child) { argument
949 onViewRemoved(View child) argument
961 onChildVisibilityChanged(View child, int oldVisibility, int newVisibility) argument
994 measureChildWithMargins2(View child, int parentWidthSpec, int parentHeightSpec, int childWidth, int childHeight) argument
[all...]
H A DAbsListView.java572 * The select child's view (from the adapter's getView) is enabled.
1130 final View child = getChildAt(i);
1133 if (child instanceof Checkable) {
1134 ((Checkable) child).setChecked(mCheckStates.get(position));
1136 child.setActivated(mCheckStates.get(position));
1425 // child count have not changed we will avoid sending duplicate accessibility
1748 // Remember the position of the first child.
2132 View child = getChildAt(0);
2133 canScrollUp = child.getTop() < mListPadding.top;
2149 View child
2958 performLongPress(final View child, final int longPressPosition, final long longPressId) argument
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp814 sp<XMLNode> child = children.editItemAt(i); local
815 String8 tag(child->getElementName());
817 fullyQualifyClassName(origPackage, child, String16("name"));
819 fullyQualifyClassName(origPackage, child, String16("name"));
820 fullyQualifyClassName(origPackage, child, String16("targetActivity"));
832 sp<XMLNode> child = children.editItemAt(i); local
833 String8 tag(child->getElementName());
835 XMLNode::attribute_entry* attr = child->editAttribute(
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java338 * Used internally to tag special types of child views that should be added as
455 final View child = getChildAt(i);
456 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
901 final View child = getChildAt(i);
902 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
1074 final View child = getChildAt(i);
1075 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
1079 final ItemInfo ii = infoForChild(child);
1093 View child = getChildAt(i);
1094 ii = infoForChild(child);
1291 addView(View child, int index, ViewGroup.LayoutParams params) argument
1325 infoForChild(View child) argument
1335 infoForAnyChild(View child) argument
2579 getChildRectInPagerCoordinates(Rect outRect, View child) argument
[all...]
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java78 * If a child does not specify the row and column indices of the cell it
108 * A child's ability to stretch is inferred from the alignment properties of
110 * {@link LayoutParams#setGravity(int) gravity} property of the child's layout parameters).
441 * based on the child's visual characteristics. Each of the
691 private int getTotalMargin(View child, boolean horizontal) { argument
692 return getMargin(child, horizontal, true) + getMargin(child, horizontal, false);
895 private void measureChildWithMargins2(View child, int parentWidthSpec, int parentHeightSpec, argument
898 getTotalMargin(child, true), childWidth);
900 getTotalMargin(child, fals
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java157 static void completeWindowCreation(WebView parent, WebView child) { argument
160 child == null ? null : ((WebViewChromium) child.getWebViewProvider()).mAwContents;
1904 public boolean requestChildRectangleOnScreen(final View child, final Rect rect, argument
1911 return requestChildRectangleOnScreen(child, rect, immediate);
1916 return mAwContents.requestChildRectangleOnScreen(child, rect, immediate);
/frameworks/base/core/java/android/app/
H A DActivity.java446 * <p>If a child activity fails for any reason (such as crashing), the parent
796 /** Return the parent activity if this view is an embedded child. */
1640 * it should return either a mapping from child activity id strings to arbitrary objects,
1642 * set of child activities, such as ActivityGroup. The same guarantees and restrictions apply
2808 * This is called when a child activity of this one attempts to navigate up.
2811 * @param child The activity making the call.
2813 public boolean onNavigateUpFromChild(Activity child) { argument
3448 // TODO Consider clearing/flushing other event sources and events for child windows.
3472 throw new RuntimeException("Called be called from a child");
3762 * called from a child activit
3880 startActivityFromChild(Activity child, Intent intent, int requestCode) argument
3904 startActivityFromChild(Activity child, Intent intent, int requestCode, Bundle options) argument
3972 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags) argument
3986 startIntentSenderFromChild(Activity child, IntentSender intent, int requestCode, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
4267 finishFromChild(Activity child) argument
4301 finishActivityFromChild(Activity child, int requestCode) argument
5129 navigateUpToFromChild(Activity child, Intent upIntent) argument
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DPagedView.java694 final View child = getPageAt(i);
695 final LayoutParams lp = (LayoutParams) child.getLayoutParams();
716 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
778 final View child = getPageAt(i);
780 if (child.getVisibility() != View.GONE) {
781 final int childWidth = getScaledMeasuredWidth(child);
782 final int childHeight = child.getMeasuredHeight();
784 if (DEBUG) Log.d(TAG, "\tlayout-child" + i + ": " + childLeft + ", " + childTop);
785 child.layout(childLeft, childTop,
786 childLeft + child
808 onChildViewAdded(View parent, View child) argument
817 onChildViewRemoved(View parent, View child) argument
881 getScaledMeasuredWidth(View child) argument
933 shouldDrawChild(View child) argument
986 requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) argument
1771 requestChildFocus(View child, View focused) argument
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java132 // mDecor itself, or a child of mDecor where the contents go.
2172 // if we are showing a feature that should be announced and one child
2173 // make this child the event source since this is the feature itself
3271 st.child = drawable;
3301 drawable = st.child;
3472 Drawable child; field in class:PhoneWindow.DrawableFeatureState
/frameworks/base/core/java/android/view/
H A DViewGroup.java132 * apply on the child being drawn.
154 // Does this group have a child that can accept the current drag payload?
217 // When set, ViewGroup invalidates only the child's rectangle
226 // a child needs to be invalidated and FLAG_OPTIMIZE_INVALIDATE is set
261 * to get the index of the child to draw for that iteration.
270 * invoked when a child is drawn.
339 * When set, this ViewGroup will split MotionEvents to multiple child Views when appropriate.
413 // Index of the child's left position in the mLocation array
415 // Index of the child's top position in the mLocation array
454 // Indicates how many of this container's child subtree
610 requestChildFocus(View child, View focused) argument
691 requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) argument
699 requestSendAccessibilityEvent(View child, AccessibilityEvent event) argument
727 onRequestSendAccessibilityEvent(View child, AccessibilityEvent event) argument
740 onRequestSendAccessibilityEventInternal(View child, AccessibilityEvent event) argument
747 childHasTransientStateChanged(View child, boolean childHasTransientState) argument
783 clearChildFocus(View child) argument
1029 onChildVisibilityChanged(View child, int oldVisibility, int newVisibility) argument
1097 recomputeViewAttributes(View child) argument
1121 bringChildToFront(View child) argument
1323 notifyChildOfDrag(View child) argument
1811 dispatchTransformedGenericPointerEvent(MotionEvent event, View child) argument
2063 getTouchTarget(View child) argument
2076 addTouchTarget(View child, int pointerIdBits) argument
2139 canViewReceivePointerEvents(View child) argument
2150 isTransformedTouchPointInView(float x, float y, View child, PointF outLocalPoint) argument
2174 dispatchTransformedTouchEvent(MotionEvent event, boolean cancel, View child, int desiredPointerIdBits) argument
2532 notifySubtreeAccessibilityStateChanged(View child, View source, int changeType) argument
3102 drawChild(Canvas canvas, View child, long drawingTime) argument
3231 getChildStaticTransformation(View child, Transformation t) argument
3335 addView(View child) argument
3352 addView(View child, int index) argument
3373 addView(View child, int width, int height) argument
3390 addView(View child, LayoutParams params) argument
3405 addView(View child, int index, LayoutParams params) argument
3450 onChildViewAdded(View parent, View child) argument
3458 onChildViewRemoved(View parent, View child) argument
3474 onViewAdded(View child) argument
3483 onViewRemoved(View child) argument
3518 addViewInLayout(View child, int index, LayoutParams params) argument
3535 addViewInLayout(View child, int index, LayoutParams params, boolean preventRequestLayout) argument
3548 cleanupLayoutState(View child) argument
3552 addViewInner(View child, int index, LayoutParams params, boolean preventRequestLayout) argument
3627 addInArray(View child, int index) argument
3714 bindLayoutAnimation(View child) argument
3729 attachLayoutAnimationParameters(View child, LayoutParams params, int index, int count) argument
4068 removeDetachedView(View child, boolean animate) argument
4119 attachViewToParent(View child, int index, LayoutParams params) argument
4156 detachViewFromParent(View child) argument
4237 invalidateChild(View child, final Rect dirty) argument
4408 invalidateChildFast(View child, final Rect dirty) argument
4582 getChildVisibleRect(View child, Rect r, android.graphics.Point offset) argument
5023 indexOfChild(View child) argument
5087 measureChild(View child, int parentWidthMeasureSpec, int parentHeightMeasureSpec) argument
5113 measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed, int parentHeightMeasureSpec, int heightUsed) argument
5424 requestTransparentRegion(View child) argument
5551 childDrawableStateChanged(View child) argument
5797 onSetLayoutParams(View child, LayoutParams layoutParams) argument
6478 public View child; field in class:ViewGroup.TouchTarget
6489 obtain(View child, int pointerIdBits) argument
6528 public View child; field in class:ViewGroup.HoverTarget
6536 obtain(View child) argument
6603 getChildIndex(View child) argument
[all...]
H A DViewRootImpl.java426 * We have one child
851 public void invalidateChild(View child, Rect dirty) { argument
858 if (DEBUG_DRAW) Log.v(TAG, "Invalidate child: " + dirty);
919 public boolean getChildVisibleRect(View child, Rect r, android.graphics.Point offset) { argument
920 if (child != mView) {
921 throw new RuntimeException("child is not mine, honest!");
929 public void bringChildToFront(View child) { argument
2110 public void requestTransparentRegion(View child) { argument
2113 if (mView == child) {
2466 // need to clear it before drawing so that the child wil
2776 requestChildFocus(View child, View focused) argument
2785 clearChildFocus(View child) argument
2821 recomputeViewAttributes(View child) argument
2923 isViewDescendantOf(View child, View parent) argument
5964 childDrawableStateChanged(View child) argument
5968 requestSendAccessibilityEvent(View child, AccessibilityEvent event) argument
6008 notifySubtreeAccessibilityStateChanged(View child, View source, int changeType) argument
6105 requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) argument
6121 childHasTransientStateChanged(View child, boolean hasTransientState) argument
[all...]
H A DView.java387 * its children. For example, the parent may measure each child once with
413 * child. A MeasureSpec can be in one of three modes:
416 * of a child view. For example, a LinearLayout may call measure() on its child
418 * tall the child view wants to be given a width of 240 pixels.
420 * child. The child must use this size, and guarantee that all of its
423 * child. The child must gurantee that it and all of its descendants will fit
1744 * child vie
19388 onRequestSendAccessibilityEvent(ViewGroup host, View child, AccessibilityEvent event) argument
[all...]

Completed in 542 milliseconds

1234