HomeSort by relevance Sort by last modified time
    Searched defs:mThreshold (Results 1 - 14 of 14) sorted by null

  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
PSNRComparer.java 29 private float mThreshold;
36 mThreshold = threshold;
79 return (fraction > mThreshold);
ThresholdDifferenceComparer.java 34 private int mThreshold;
42 mThreshold = threshold;
55 if (error > mThreshold) {
75 mScript.set_THRESHOLD(mThreshold);
WeightedPixelDifference.java 31 private float mThreshold;
34 mThreshold = threshold;
106 return totalError < mThreshold;
MSSIMComparer.java 42 private double mThreshold;
46 mThreshold = threshold;
82 return (SSIMTotal >= mThreshold);
107 return (MSSIM >= mThreshold);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
MagnitudeVerification.java 46 private final float mThreshold;
59 mThreshold = threshold;
99 boolean failed = Math.abs(mean - mExpected) > mThreshold;
106 mean, mExpected, mThreshold));
115 return new MagnitudeVerification(mExpected, mThreshold);
MeanVerification.java 43 private final float[] mThreshold;
53 mThreshold = threshold;
103 if (Math.abs(means[i] - mExpected[i]) > mThreshold[i]) {
108 expectedSb.append(String.format("%.2f+/-%.2f", mExpected[i], mThreshold[i]));
127 return new MeanVerification(mExpected, mThreshold);
StandardDeviationVerification.java 48 private final float[] mThreshold;
60 mThreshold = threshold;
153 if (stdDevs[i] > mThreshold[i]) {
158 expectedSb.append(String.format("<%.6f", mThreshold[i]));
180 return new StandardDeviationVerification(mThreshold);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCalibratedUncalibratedVerifier.java 40 private final float mThreshold;
50 mThreshold = threshold;
68 mThreshold);
  /frameworks/base/services/core/java/com/android/server/
AssetAtlasService.java 630 private final int mThreshold;
659 mThreshold = threshold;
671 if (width * height <= mThreshold) continue;
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 103 private int mThreshold;
151 mThreshold = a.getInt(R.styleable.AutoCompleteTextView_completionThreshold, 2);
494 return mThreshold;
516 mThreshold = threshold;
738 + " threshold=" + mThreshold);
739 return getText().length() >= mThreshold;
    [all...]
SearchView.java     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 90 private float mThreshold;
544 mThreshold = isHorizontal() ? THRESHOLD : 1.0f - THRESHOLD;
549 mThreshold = isHorizontal() ? 1.0f - THRESHOLD : THRESHOLD;
597 float target = mThreshold * (isHorizontal() ? getWidth() : getHeight());
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SearchView.java     [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 146 milliseconds