Searched refs:expected (Results 76 - 100 of 2886) sorted by relevance

1234567891011>>

/external/compiler-rt/test/builtins/Unit/
H A Dfloatsidfvfp_test.c26 double expected = a; local
27 if (actual != expected)
28 printf("error in test__ floatsidfvfp(%d) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dfloatsisfvfp_test.c26 float expected = a; local
27 if (actual != expected)
28 printf("error in test__floatsisfvfp(%d) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dfloatunssidfvfp_test.c26 double expected = a; local
27 if (actual != expected)
28 printf("error in test__floatunssidfvfp(%u) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dfloatunssisfvfp_test.c25 float expected = a; local
26 if (actual != expected)
27 printf("error in test__floatunssisfvfp(%u) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;
H A Dltdf2vfp_test.c26 int expected = (a < b) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __ltdf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dmuldf3vfp_test.c26 double expected = a * b; local
27 if (actual != expected)
28 printf("error in test__muldf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dmulsf3vfp_test.c26 float expected = a * b; local
27 if (actual != expected)
28 printf("error in test__mulsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dnedf2vfp_test.c26 int expected = (a != b) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __nedf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dnegdf2vfp_test.c25 double expected = -a; local
26 if (actual != expected)
27 printf("error in test__negdf2vfp(%f) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;
H A Dnegsf2vfp_test.c26 float expected = -a; local
27 if (actual != expected)
28 printf("error in test__negsf2vfp(%f) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dnesf2vfp_test.c26 int expected = (a != b) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __nesf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dsubdf3vfp_test.c25 double expected = a - b; local
26 if (actual != expected)
27 printf("error in test__subdf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
H A Dsubsf3vfp_test.c26 float expected = a - b; local
27 if (actual != expected)
28 printf("error in test__subsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dtruncdfsf2vfp_test.c26 float expected = a; local
27 if (actual != expected)
28 printf("error in test__truncdfsf2vfp(%f) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
/external/guice/core/test/com/google/inject/internal/
H A DUniqueAnnotationsTest.java34 Annotation expected = getClass().getFields()[0].getAnnotations()[0];
36 assertEquals(expected.toString(), actual.toString());
37 assertEquals(expected.hashCode(), actual.hashCode());
38 assertEquals(expected, actual);
/external/junit/src/org/junit/internal/
H A DInexactComparisonCriteria.java13 protected void assertElementsEqual(Object expected, Object actual) { argument
14 if (expected instanceof Double)
15 Assert.assertEquals((Double)expected, (Double)actual, fDelta);
17 Assert.assertEquals((Float)expected, (Float)actual, fDelta);
/external/smali/baksmali/src/test/java/org/jf/baksmali/
H A DImplicitReferenceTest.java53 String expected = "" +
68 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
84 String expected = "" +
99 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
112 String expected = "" +
124 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
137 String expected = "" +
149 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, options);
165 String expected = "" +
180 BaksmaliTestUtils.assertSmaliCompiledEquals(source, expected, option
[all...]
/external/testng/src/main/java/org/testng/internal/junit/
H A DInexactComparisonCriteria.java13 protected void assertElementsEqual(Object expected, Object actual) { argument
14 if (expected instanceof Double)
15 AssertJUnit.assertEquals((Double)expected, (Double)actual, fDelta);
17 AssertJUnit.assertEquals((Float)expected, (Float)actual, fDelta);
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-346636.js7 function assertSame(expected, found) {
8 if (found === expected) {
9 if (expected !== 0 || (1 / expected) == (1 / found)) return;
/external/v8/test/webkit/
H A Ddfg-arith-add-overflow-check-elimination-tower-of-large-numbers.js48 var expected;
52 expected = 0;
56 expected = -10;
58 shouldBe("bar(" + a + ", " + b + ")", "" + expected);
H A Ddfg-cfg-simplify-eliminate-set-local-type-check-then-branch-not-null-and-decrement.js44 var expected;
47 expected = "true";
50 expected = "false";
52 shouldBe("foo(o)", expected);
H A Ddfg-cfg-simplify-eliminate-set-local-type-check-then-branch-not-null.js42 var expected;
45 expected = "" + (i - 1);
48 expected = "null";
50 shouldBe("foo(o)", expected);
H A Ddfg-inline-arguments-osr-exit-and-capture.js44 var expected;
49 expected = i + 1 + 42 + i;
52 expected = 1.5 + 42 + i;
54 shouldBe("baz(arg1, arg2)", "" + expected);
/external/valgrind/none/tests/amd64/
H A Dtm1.stdout.exp1 transactionally_apply: ok = 0 (expected 0)
2 xtest: rflags.Z = 1 (expected 1)
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DDimensionMismatchException.java39 * @param expected Expected dimension.
42 int expected) {
43 super(LocalizedFormats.DIMENSIONS_MISMATCH_SIMPLE, wrong, expected);
44 dimension = expected;
48 * @return the expected dimension.
41 DimensionMismatchException(int wrong, int expected) argument

Completed in 969 milliseconds

1234567891011>>