Searched refs:expected (Results 51 - 75 of 2886) sorted by relevance

1234567891011>>

/external/easymock/src/org/easymock/internal/matchers/
H A DSame.java27 private final Object expected; field in class:Same
29 public Same(Object expected) { argument
30 this.expected = expected;
34 return expected == actual;
39 ArgumentToString.appendArgument(expected, buffer);
/external/v8/test/mjsunit/regress/
H A Dregress-325676.js36 var expected; variable
42 assertEquals(expected, exec_state.frame(0).evaluate('arg').value());
52 expected = arg;
54 assertEquals(expected, arg);
57 expected = arg;
59 assertEquals(expected, arg);
/external/v8/test/webkit/
H A Ddfg-store-unexpected-value-into-argument-and-osr-exit.js25 "Tests what happens when you store an unexpected value into an argument (where the original argument value was the expected one) and then OSR exit."
39 var expected;
46 expected = 85;
49 expected = 1;
56 expected = 85.5;
59 expected = 0.5;
62 shouldBe("foo(3, {f:f, g:g}, p)", "" + expected);
H A Ddfg-arith-add-overflow-check-elimination-predicted-but-not-proven-int.js38 {a:2147483645, b:2147483644, c:9007199254740990, expected:-8},
39 {a:2147483643, b:2147483643, c:18014398509481980, expected:-16},
40 {a:2147483643, b:2147483642, c:36028797018963960, expected:-16},
41 {a:2147483642, b:2147483642, c:36028797018963960, expected:-16},
42 {a:2147483641, b:2147483640, c:144115188075855840, expected:-32},
43 {a:2147483640, b:2147483640, c:144115188075855840, expected:-64},
44 {a:2147483640, b:2147483639, c:288230376151711680, expected:-64},
45 {a:2147483639, b:2147483639, c:288230376151711680, expected:-64}
52 var expected;
57 expected
[all...]
/external/webrtc/webrtc/modules/audio_processing/beamformer/
H A Dmatrix_test_helpers.h30 static void ValidateMatrixEquality(const Matrix<T>& expected, argument
32 EXPECT_EQ(expected.num_rows(), actual.num_rows());
33 EXPECT_EQ(expected.num_columns(), actual.num_columns());
35 const T* const* expected_elements = expected.elements();
37 for (size_t i = 0; i < expected.num_rows(); ++i) {
38 for (size_t j = 0; j < expected.num_columns(); ++j) {
44 static void ValidateMatrixEqualityFloat(const Matrix<float>& expected, argument
46 EXPECT_EQ(expected.num_rows(), actual.num_rows());
47 EXPECT_EQ(expected.num_columns(), actual.num_columns());
49 const float* const* expected_elements = expected
58 ValidateMatrixEqualityComplexFloat( const Matrix<complex<float> >& expected, const Matrix<complex<float> >& actual) argument
78 ValidateMatrixNearEqualityComplexFloat( const Matrix<complex<float> >& expected, const Matrix<complex<float> >& actual, float tolerance) argument
[all...]
/external/curl/tests/libtest/
H A Dlib557.c60 const char *expected; /* expected string */ member in struct:unsshort_st
67 const char *expected; /* expected string */ member in struct:sigshort_st
74 const char *expected; /* expected string */ member in struct:unsint_st
81 const char *expected; /* expected string */ member in struct:sigint_st
88 const char *expected; /* expected strin member in struct:unslong_st
95 const char *expected; /* expected string */ member in struct:siglong_st
102 const char *expected; /* expected string */ member in struct:curloff_st
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_code_completion.py3 def check_completion_results(cr, expected):
9 for c in expected:
30 expected = [
35 check_completion_results(cr, expected)
59 expected = [
66 check_completion_results(cr, expected)
69 expected = [
75 check_completion_results(cr, expected)
/external/clang/test/Sema/
H A Ddecl-invalid.c4 typedef union <anonymous> __mbstate_t; // expected-error {{declaration of anonymous union must be a definition}} expected-warning {{typedef requires a name}}
10 int r[x()]; // expected-error {{size of array has non-integer type 'void'}}
12 static y ?; // expected-error{{unknown type name 'y'}} \
13 expected-error{{expected identifier or '('}}
16 int; // expected-warning {{declaration does not declare anything}}
17 typedef int; // expected-warning {{typedef requires a name}}
18 const int; // expected-warning {{declaration does not declare anything}}
19 struct; // expected
[all...]
/external/compiler-rt/test/builtins/Unit/
H A Dabsvdi2_test.c27 di_int expected = a; local
28 if (expected < 0)
29 expected = -expected;
30 if (x != expected || expected < 0)
31 printf("error in __absvdi2(0x%llX) = %lld, expected positive %lld\n",
32 a, x, expected);
33 return x != expected;
H A Dadddf3vfp_test.c26 double expected = a + b; local
27 if (actual != expected)
28 printf("error in test__adddf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Daddsf3vfp_test.c26 float expected = a + b; local
27 if (actual != expected)
28 printf("error in test__addsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dbswapdi2_test.c23 int test__bswapdi2(uint64_t a, uint64_t expected) argument
26 if (actual != expected)
27 printf("error in test__bswapsi2(0x%0llX) = 0x%0llX, expected 0x%0llX\n",
28 a, actual, expected);
29 return actual != expected;
H A Dbswapsi2_test.c23 int test__bswapsi2(uint32_t a, uint32_t expected) argument
26 if (actual != expected)
27 printf("error in test__bswapsi2(0x%0X) = 0x%0X, expected 0x%0X\n",
28 a, actual, expected);
29 return actual != expected;
H A Ddivdf3vfp_test.c26 double expected = a / b; local
27 if (actual != expected)
28 printf("error in test__divdf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Ddivsf3vfp_test.c26 float expected = a / b; local
27 if (actual != expected)
28 printf("error in test__divsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Deqsf2vfp_test.c26 int expected = (a == b) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __eqsf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dfixsfsivfp_test.c25 int expected = a; local
26 if (actual != expected)
27 printf("error in test__fixsfsivfp(%f) = %u, expected %u\n",
28 a, actual, expected);
29 return actual != expected;
H A Dfixunsdfsivfp_test.c26 unsigned int expected = a; local
27 if (actual != expected)
28 printf("error in test__fixunsdfsivfp(%f) = %u, expected %u\n",
29 a, actual, expected);
30 return actual != expected;
/external/compiler-rt/test/builtins/Unit/ppc/
H A Dfloatditf_test.c12 DD expected; local
16 expected.hi = tests[i].hi;
17 expected.lo = tests[i].lo;
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
23 printf("\tExpected %La = ( %a , %a )\n", expected.ld, expected.hi, expected.lo);
H A Dfloatunditf_test.c12 DD expected; local
16 expected.hi = tests[i].hi;
17 expected.lo = tests[i].lo;
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
23 printf("\tExpected %La = ( %a , %a )\n", expected.ld, expected.hi, expected.lo);
/external/junit/src/org/junit/internal/
H A DExactComparisonCriteria.java7 protected void assertElementsEqual(Object expected, Object actual) { argument
8 Assert.assertEquals(expected, actual);
/external/llvm/test/MC/Mips/dspr2/
H A Dinvalid.s5 append $2, $3, -1 # CHECK: :[[@LINE]]:18: error: expected 5-bit unsigned immediate
6 append $2, $3, 32 # CHECK: :[[@LINE]]:18: error: expected 5-bit unsigned immediate
7 balign $2, $3, -1 # CHECK: :[[@LINE]]:18: error: expected 2-bit unsigned immediate
8 balign $2, $3, 4 # CHECK: :[[@LINE]]:18: error: expected 2-bit unsigned immediate
9 precr_sra.ph.w $24, $25, -1 # CHECK: :[[@LINE]]:28: error: expected 5-bit unsigned immediate
10 precr_sra.ph.w $24, $25, 32 # CHECK: :[[@LINE]]:28: error: expected 5-bit unsigned immediate
11 precr_sra_r.ph.w $25 ,$26, -1 # CHECK: :[[@LINE]]:30: error: expected 5-bit unsigned immediate
12 precr_sra_r.ph.w $25 ,$26, 32 # CHECK: :[[@LINE]]:30: error: expected 5-bit unsigned immediate
13 prepend $2, $3, -1 # CHECK: :[[@LINE]]:19: error: expected 5-bit unsigned immediate
14 prepend $2, $3, 32 # CHECK: :[[@LINE]]:19: error: expected
[all...]
/external/testng/src/main/java/org/testng/internal/junit/
H A DExactComparisonCriteria.java7 protected void assertElementsEqual(Object expected, Object actual) { argument
8 AssertJUnit.assertEquals(expected, actual);
/external/compiler-rt/test/builtins/Unit/arm/
H A Daeabi_drsub_test.c22 int test__aeabi_drsub(double a, double b, double expected) argument
25 if (actual != expected)
26 printf("error in __aeabi_drsub(%f, %f) = %f, expected %f\n",
27 a, b, actual, expected);
28 return actual != expected;
H A Daeabi_frsub_test.c22 int test__aeabi_frsub(float a, float b, float expected) argument
25 if (actual != expected)
26 printf("error in __aeabi_frsub(%f, %f) = %f, expected %f\n",
27 a, b, actual, expected);
28 return actual != expected;

Completed in 731 milliseconds

1234567891011>>