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

/frameworks/base/tools/preload/
H A DMemoryUsage.java213 MemoryUsage measured = measure();
221 private MemoryUsage measure() { method in class:MemoryUsage.MeasureWithTimeout
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java399 public void measure() { method in class:SlidingTab.Slider
400 tab.measure(View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED),
402 text.measure(View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED),
407 * Get the measured tab width. Must be called after {@link Slider#measure()}.
415 * Get the measured tab width. Must be called after {@link Slider#measure()}.
485 mLeftSlider.measure();
486 mRightSlider.measure();
/frameworks/base/core/java/android/view/
H A DView.java331 * To measure its dimensions, a view takes into account its padding. The padding
351 * Layout is a two pass process: a measure pass and a layout pass. The measuring
352 * pass is implemented in {@link #measure(int, int)} and is a top-down traversal
354 * during the recursion. At the end of the measure pass, every view has stored
358 * using the sizes computed in the measure pass.
362 * When a view's measure() method returns, its {@link #getMeasuredWidth()} and
366 * that at the end of the measure pass, all parents accept all of their
367 * children's measurements. A parent view may call measure() more than once on
368 * its children. For example, the parent may measure each child once with
370 * measure() o
7951 public final void measure(int widthMeasureSpec, int heightMeasureSpec) { method in class:View
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java162 * // Activities and WebViews measure progress with different scales.
407 * depends on the layout parameters and the measure specs.
2106 * View system was able to measure us, we have to send a height of 0 to
5108 // Log.d(LOGTAG, "------- measure " + heightMode);
6079 private native void nativeSetHeightCanMeasure(boolean measure); argument

Completed in 79 milliseconds