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

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

Completed in 355 milliseconds