Lines Matching defs:padding

249     // When set, ViewGroup excludes the padding area from the invalidate rectangle
265 // If set, this ViewGroup has padding; if unset there is no padding and we don't need
522 * We clip to padding when FLAG_CLIP_TO_PADDING and FLAG_PADDING_NOT_NULL
4340 // If we have padding and we're supposed to clip children to that
4341 // padding, offset the scroll indicators to match our clip bounds.
4387 * Sets whether this ViewGroup will clip its children to its padding and resize (but not
4388 * clip) any EdgeEffect to the padded region, if padding is present.
4390 * By default, children are clipped to the padding of their parent
4391 * ViewGroup. This clipping behavior is only enabled if padding is non-zero.
4393 * @param clipToPadding true to clip children to the padding of the group, and resize (but
4405 * Returns whether this ViewGroup will clip its children to its padding, and resize (but
4406 * not clip) any EdgeEffect to the padded region, if padding is present.
4408 * By default, children are clipped to the padding of their parent
4409 * Viewgroup. This clipping behavior is only enabled if padding is non-zero.
4411 * @return true if this ViewGroup clips children to its padding and resizes (but doesn't
6164 // Clip to padding.
6684 * account both the MeasureSpec requirements for this view and its padding.
6704 * account both the MeasureSpec requirements for this view and its padding.
6725 * account both the MeasureSpec requirements for this view and its padding
6765 * @param padding The padding of this view for the current dimension and
6771 public static int getChildMeasureSpec(int spec, int padding, int childDimension) {
6775 int size = Math.max(0, specSize - padding);
7620 * means that the view wants to be as big as its parent (minus padding)
7622 * to enclose its content (plus padding)
7642 * minus the parent's padding, if any. This value is deprecated
7652 * minus the parent's padding, if any. Introduced in API Level 8.
7659 * its own internal content, taking its own padding into account.