HomeSort by relevance Sort by last modified time
    Searched defs:measure (Results 1 - 25 of 307) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
MeasureTime.java 20 * Provides a mechanism to measure the time taken to run a piece of code.
26 * measure time taken for each run for given count
32 public static double[] measure(int count, MeasureRun run) throws Exception { method in class:MeasureTime
  /frameworks/base/core/tests/coretests/src/com/android/internal/widget/
ImageFloatingTextViewTest.java 124 mTextView.measure(widthMeasureSpec, heightMeasureSpec);
125 mView.measure(widthMeasureSpec, heightMeasureSpec);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
LineRegion.java 37 public static Number measure(Number val1, Number val2) { method in class:LineRegion
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
MacrobenchmarkAllocationWorker.java 47 @Override public ImmutableList<Measurement> measure() throws Exception { method in class:MacrobenchmarkAllocationWorker
Worker.java 58 * Called immediately before {@link #measure()}.
65 /** Called immediately after {@link #measure()}. */
69 public abstract Iterable<Measurement> measure() throws Exception; method in class:Worker
ArbitraryMeasurementWorker.java 57 @Override public Iterable<Measurement> measure() throws Exception { method in class:ArbitraryMeasurementWorker
MacrobenchmarkWorker.java 67 @Override public Iterable<Measurement> measure() throws Exception { method in class:MacrobenchmarkWorker
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
EastAsianWidth.java 36 public native static void measure(char[] charArray, int start, int end, method in class:EastAsianWidth
45 measure(testInput, 0, 1, testResult, true); method
  /frameworks/layoutlib/bridge/src/android/view/
View_Delegate.java 76 /*package*/ static void measure(View thisView, int widthMeasureSpec, int heightMeasureSpec) { method in class:View_Delegate
82 Bridge.getLog().error(LayoutLog.TAG_BROKEN, "View measure failed", t, null);
  /frameworks/minikin/libs/minikin/
MeasuredText.cpp 27 void MeasuredText::measure(const U16StringPiece& textBuf, bool computeHyphenation, function in class:minikin::MeasuredText
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
BrowseRowsFrameLayout.java 56 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
CalculatorScrollView.java 65 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
81 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
  /cts/hostsidetests/theme/app/src/android/theme/app/
ReferenceViewGroup.java 59 child.measure(width, height);
  /frameworks/layoutlib/legacy/src/com/android/layoutlib/bridge/
Bridge.java 55 public Result measure(long timeout) { method in class:Bridge.BridgeRenderSession
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MeasureHelper.java 45 public void measure(int widthSpec, int heightSpec) { method in class:MeasureHelper
  /packages/apps/Settings/tests/robotests/src/com/android/settings/widget/
AspectRatioFrameLayoutTest.java 50 mLayout.measure(widthMeasureSpec, heightMeasureSpec);
63 mLayout.measure(widthMeasureSpec, heightMeasureSpec);
76 mLayout.measure(widthMeasureSpec, heightMeasureSpec);
91 mLayout.measure(widthMeasureSpec, heightMeasureSpec);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 105 PathMeasure measure = new PathMeasure(circle, false); local
106 assertTrue(measure.isClosed());
107 measure.setPath(circle, true);
108 assertTrue(measure.isClosed());
113 measure.setPath(line, false);
114 assertFalse(measure.isClosed());
115 measure.setPath(line, true);
116 assertTrue(measure.isClosed());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationChildrenContainer.java 198 mOverflowNumber.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.AT_MOST),
208 // We need to measure all children even the GONE ones, such that the heights are
214 child.measure(widthMeasureSpec, newHeightSpec);
217 divider.measure(widthMeasureSpec, dividerHeightSpec);
229 mNotificationHeader.measure(widthMeasureSpec, headerHeightSpec);
233 mNotificationHeaderLowPriority.measure(widthMeasureSpec, headerHeightSpec);
237 mNotificationHeaderAmbient.measure(widthMeasureSpec, headerHeightSpec);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AlertDialogLayout.java 117 topPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);
126 buttonPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);
144 middlePanel.measure(widthMeasureSpec, childHeightSpec);
153 // Time for the "real" button measure pass. If we have remaining space,
167 buttonPanel.measure(widthMeasureSpec, childHeightSpec);
187 middlePanel.measure(widthMeasureSpec, childHeightSpec);
209 // another measure pass to for MATCH_PARENT widths.
221 * @param heightMeasureSpec the original height measure spec
DialogViewAnimator.java 51 // First measure all children and record maximum dimensions where the
106 // Measure remaining MATCH_PARENT children again using real dimensions.
136 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
AlertDialogLayout.java 107 topPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);
116 buttonPanel.measure(widthMeasureSpec, MeasureSpec.UNSPECIFIED);
134 middlePanel.measure(widthMeasureSpec, childHeightSpec);
143 // Time for the "real" button measure pass. If we have remaining space,
157 buttonPanel.measure(widthMeasureSpec, childHeightSpec);
177 middlePanel.measure(widthMeasureSpec, childHeightSpec);
201 // another measure pass to for MATCH_PARENT widths.
213 * @param heightMeasureSpec the original height measure spec
  /external/libusb/examples/
sam3u_benchmark.c 2 * libusb example program to measure Atmel SAM3U isochronous performance
125 static void measure(void) function
143 measure();
  /frameworks/base/apct-tests/perftests/core/src/android/widget/
TextViewOnMeasurePerfTest.java 119 textView.measure(AT_MOST | VIEW_WIDTH, AT_MOST | VIEW_HEIGHT);
136 textView.measure(EXACTLY | VIEW_WIDTH, EXACTLY | VIEW_HEIGHT);
153 textView.measure(UNSPECIFIED, UNSPECIFIED);
  /frameworks/base/core/java/android/widget/
DayPickerViewPager.java 132 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationContentViewTest.java 68 mView.measure(View.MeasureSpec.UNSPECIFIED, View.MeasureSpec.UNSPECIFIED);

Completed in 604 milliseconds

1 2 3 4 5 6 7 8 91011>>