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

  /frameworks/av/media/libaaudio/src/fifo/
FifoControllerBase.h 110 return mThreshold;
120 fifo_frames_t mThreshold;
  /cts/tests/sensor/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/sensor/src/android/hardware/cts/helpers/
SensorCalibratedUncalibratedVerifier.java 40 private final float mThreshold;
50 mThreshold = threshold;
68 mThreshold);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
MSSIMComparer.java 37 private double mThreshold;
40 mThreshold = threshold;
76 return (SSIMTotal >= mThreshold);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
SensorManagerFacade.java 110 private volatile Float mThreshold;
192 mThreshold = ((float) threshold) / ((float) 1000);
195 mThreshold = (float) threshold;
321 if ((Math.abs(mXForce) > mThreshold) && (mXAxis == 1)) {
326 if ((Math.abs(mYForce) > mThreshold) && (mYAxis == 2)) {
331 if ((Math.abs(mZForce) > mThreshold) && (mZAxis == 4)) {
353 if ((Math.abs(mXMag) > mThreshold) && (mXAxis == 1)) {
357 if ((Math.abs(mYMag) > mThreshold) && (mYAxis == 2)) {
361 if ((Math.abs(mZMag) > mThreshold) && (mZAxis == 4)) {
378 if (mLight > mThreshold) {
    [all...]
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 114 private int mThreshold;
285 mThreshold = a.getInt(R.styleable.AutoCompleteTextView_completionThreshold, 2);
605 return mThreshold;
627 mThreshold = threshold;
849 + " threshold=" + mThreshold);
850 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-nodeps.jar 
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 

Completed in 138 milliseconds