Lines Matching defs:height

3160      * specified width and height.
3168 public void addView(View child, int width, int height) {
3171 params.height = height;
4765 * @param heightMeasureSpec The height requirements for this view
4785 * @param parentHeightMeasureSpec The height requirements for this view
4794 mPaddingTop + mPaddingBottom, lp.height);
4809 * @param parentHeightMeasureSpec The height requirements for this view
4823 + heightUsed, lp.height);
4831 * for one dimension (height or width) of one child view.
5474 * for both width and height. For each dimension, it can specify one of:
5497 * Special value for the height or width requested by a View.
5507 * Special value for the height or width requested by a View.
5514 * Special value for the height or width requested by a View.
5540 public int height;
5556 * <li><code>layout_height</code>: the height, either an exact value,
5575 * and height.
5580 * @param height the height, either {@link #WRAP_CONTENT},
5584 public LayoutParams(int width, int height) {
5586 this.height = height;
5590 * Copy constructor. Clones the width and height values of the source.
5596 this.height = source.height;
5611 * @param heightAttr the identifier of the height attribute
5615 height = a.getLayoutDimension(heightAttr, "layout_height");
5636 * "ViewGroup.LayoutParams={ width=WIDTH, height=HEIGHT }"
5642 + sizeToString(width) + ", height=" + sizeToString(height) + " }";
5791 public MarginLayoutParams(int width, int height) {
5792 super(width, height);
5796 * Copy constructor. Clones the width, height and margin values of the source.
5802 this.height = source.height;
6303 // Break tie by height.
6304 final int heightDiference = mLocation.height() - another.mLocation.height();