Searched defs:EXACTLY (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/view/
H A DView.java445 * with the height set to UNSPECIFIED and a width of EXACTLY 240 to find out how
447 * <li>EXACTLY: This is used by the parent to impose an exact size on the
806 * Ignore an optimization that skips unnecessary EXACTLY layout passes.
4026 // LinearLayout measurement passes using EXACTLY and non-EXACTLY
4027 // modes, so we always need to run an additional EXACTLY pass.
19709 // Optimize layout by avoiding an extra EXACTLY pass when the view is
19714 final boolean isSpecExactly = MeasureSpec.getMode(widthMeasureSpec) == MeasureSpec.EXACTLY
19715 && MeasureSpec.getMode(heightMeasureSpec) == MeasureSpec.EXACTLY;
19901 case MeasureSpec.EXACTLY
22101 public static final int EXACTLY = 1 << MODE_SHIFT; field in class:View.MeasureSpec
[all...]

Completed in 873 milliseconds