Searched refs:tolerance (Results 1 - 18 of 18) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DAvoidXfermode.java40 * There are two modes, and each mode interprets a tolerance value.
52 public AvoidXfermode(int opColor, int tolerance, Mode mode) { argument
53 if (tolerance < 0 || tolerance > 255) {
54 throw new IllegalArgumentException("tolerance must be 0..255");
56 native_instance = nativeCreate(opColor, tolerance, mode.nativeInt);
59 private static native long nativeCreate(int opColor, int tolerance, argument
/frameworks/base/core/java/android/test/
H A DFlakyTest.java27 * the test fails. The total number of executions is specified by the tolerance and
35 * as a failed test. If the tolerance factor is less than 1, the test runs
40 int tolerance() default 1;
H A DInstrumentationTestCase.java175 runCount = method.getAnnotation(FlakyTest.class).tolerance();
182 final int tolerance = runCount;
189 runMethod(testMethod, tolerance, repetitive);
204 private void runMethod(Method runMethod, int tolerance) throws Throwable { argument
205 runMethod(runMethod, tolerance, false);
208 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { argument
231 } while ((runCount < tolerance) && (isRepetitive || exception != null));
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DAvoidXfermode_Delegate.java64 /*package*/ static long nativeCreate(int opColor, int tolerance, int nativeMode) { argument
/frameworks/base/core/tests/coretests/src/android/view/
H A DGlobalFocusChangeTest.java51 @FlakyTest(tolerance = 4)
63 @FlakyTest(tolerance = 4)
74 @FlakyTest(tolerance = 4)
/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewCallbacks.java35 @FlakyTest(tolerance=3)
60 @FlakyTest(tolerance=3)
109 @FlakyTest(tolerance=3)
H A DAutoCompleteTextViewPopup.java44 @FlakyTest(tolerance=3)
76 @FlakyTest(tolerance=3)
103 @FlakyTest(tolerance=3)
136 @FlakyTest(tolerance=3)
170 @FlakyTest(tolerance=3)
/frameworks/base/core/jni/android/graphics/
H A DXfermode.cpp36 jint tolerance, jint modeHandle)
39 return reinterpret_cast<jlong>(SkAvoidXfermode::Create(opColor, tolerance, mode));
35 avoid_create(JNIEnv* env, jobject, jint opColor, jint tolerance, jint modeHandle) argument
/frameworks/native/libs/gui/tests/
H A DGLTest.h54 int r, int g, int b, int a, int tolerance = 2);
56 int tolerance = 1);
H A DGLTest.cpp176 int r, int g, int b, int a, int tolerance) {
188 if (r >= 0 && abs(r - int(pixel[0])) > tolerance) {
191 if (g >= 0 && abs(g - int(pixel[1])) > tolerance) {
197 if (b >= 0 && abs(b - int(pixel[2])) > tolerance) {
203 if (a >= 0 && abs(a - int(pixel[3])) > tolerance) {
217 int tolerance) {
220 if (abs(r1.left - r2.left) > tolerance) {
223 if (abs(r1.top - r2.top) > tolerance) {
229 if (abs(r1.right - r2.right) > tolerance) {
235 if (abs(r1.bottom - r2.bottom) > tolerance) {
175 checkPixel(int x, int y, int r, int g, int b, int a, int tolerance) argument
216 assertRectEq(const Rect &r1, const Rect &r2, int tolerance) argument
[all...]
/frameworks/base/core/tests/utillib/src/android/test/
H A DBandwidthTestCase.java66 runCount = method.getAnnotation(FlakyTest.class).tolerance();
73 final int tolerance = runCount;
80 runMethod(testMethod, tolerance, repetitive);
116 private void runMethod(Method runMethod, int tolerance, boolean isRepetitive) throws Throwable { argument
140 } while ((runCount < tolerance) && (isRepetitive || exception != null));
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapTest.java195 final int tolerance = 1;
214 assertTrue("red", Math.abs(rr - r1) <= tolerance);
219 assertTrue("green", Math.abs(gg - g1) <= tolerance);
224 assertTrue("blue", Math.abs(bb - b1) <= tolerance);
/frameworks/base/core/tests/coretests/src/android/widget/listview/focus/
H A DListWithEditTextHeaderTest.java51 @FlakyTest(tolerance=2)
/frameworks/base/tools/aapt/
H A DMain.cpp60 " [-0 extension [-0 extension ...]] [-g tolerance] [-j jarfile] \\\n"
111 " -g specify a pixel tolerance to force images to grayscale, default 0\n"
253 int tolerance = 0; local
325 tolerance = atoi(argv[0]);
326 bundle.setGrayscaleTolerance(tolerance);
327 printf("%s: Images with deviation <= %d will be forced to grayscale.\n", prog, tolerance);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DBroadcastTest.java233 @FlakyTest(tolerance=2)
250 @FlakyTest(tolerance=2)
255 @FlakyTest(tolerance=2)
350 @FlakyTest(tolerance=2)
360 @FlakyTest(tolerance=2)
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListManagedCursorTest.java113 @FlakyTest(tolerance=3)
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp292 int g, int b, int a, int tolerance=2) {
306 if (r >= 0 && abs(r - int(pixel[0])) > tolerance) {
309 if (g >= 0 && abs(g - int(pixel[1])) > tolerance) {
315 if (b >= 0 && abs(b - int(pixel[2])) > tolerance) {
321 if (a >= 0 && abs(a - int(pixel[3])) > tolerance) {
291 checkPixel(int x, int y, int r, int g, int b, int a, int tolerance=2) argument
/frameworks/native/services/sensorservice/
H A Dmat.h308 static bool isPositiveSemidefinite(const mat<TYPE, C, C>& m, TYPE tolerance) { argument
315 if (fabs(m[i][j] - m[j][i]) > tolerance)

Completed in 441 milliseconds