HomeSort by relevance Sort by last modified time
    Searched defs:mThreshold (Results 1 - 15 of 15) 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 43 private double mThreshold;
47 mThreshold = threshold;
83 return (SSIMTotal >= mThreshold);
108 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 43 private final float[] mThreshold;
55 mThreshold = threshold;
107 if (stdDevs[i] > mThreshold[i]) {
112 expectedSb.append(String.format("<%.2f", mThreshold[i]));
134 return new StandardDeviationVerification(mThreshold);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCalibratedUncalibratedVerifier.java 38 private final float mThreshold;
46 mThreshold = threshold;
66 mThreshold);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SearchPanelView.java 63 private int mThreshold;
80 mThreshold = context.getResources().getDimensionPixelSize(R.dimen.search_panel_threshold);
283 || Math.abs(mStartTouch - currentTouch) > mThreshold)) {
290 mDraggedFarEnough = Math.abs(mStartTouch - currentTouch) > mThreshold;
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 90 private float mThreshold;
542 mThreshold = isHorizontal() ? THRESHOLD : 1.0f - THRESHOLD;
547 mThreshold = isHorizontal() ? 1.0f - THRESHOLD : THRESHOLD;
595 float target = mThreshold * (isHorizontal() ? getWidth() : getHeight());
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AssetAtlasService.java 657 private final int mThreshold;
686 mThreshold = threshold;
698 if (width * height <= mThreshold) continue;
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 102 private int mThreshold;
150 mThreshold = a.getInt(R.styleable.AutoCompleteTextView_completionThreshold, 2);
493 return mThreshold;
515 mThreshold = threshold;
737 + " threshold=" + mThreshold);
738 return getText().length() >= mThreshold;
    [all...]
SearchView.java     [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 228 milliseconds