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

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

Completed in 310 milliseconds