Searched refs:expected (Results 276 - 300 of 2227) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2980.js29 function test(expected, holder) {
30 assertEquals(expected, holder.property);
46 function test2(expected, holder) {
47 assertEquals(expected, holder.prop2);
/external/chromium_org/v8/test/webkit/
H A Ddfg-dead-min-two-args.js41 var expected = 42; variable
47 expected = 37;
58 expected = 42;
63 expected = 37;
/external/compiler-rt/test/builtins/Unit/
H A Dclzdi2_test.c23 int test__clzdi2(di_int a, si_int expected) argument
26 if (x != expected)
27 printf("error in __clzdi2(0x%llX) = %d, expected %d\n", a, x, expected);
28 return x != expected;
H A Dcmpdi2_test.c23 int test__cmpdi2(di_int a, di_int b, si_int expected) argument
26 if (x != expected)
27 printf("error in __cmpdi2(0x%llX, 0x%llX) = %d, expected %d\n",
28 a, b, x, expected);
29 return x != expected;
H A Dctzti2_test.c25 int test__ctzti2(ti_int a, si_int expected) argument
28 if (x != expected)
32 printf("error in __ctzti2(0x%llX%.16llX) = %d, expected %d\n",
33 at.s.high, at.s.low, x, expected);
35 return x != expected;
H A Dffsdi2_test.c22 int test__ffsdi2(di_int a, si_int expected) argument
25 if (x != expected)
26 printf("error in __ffsdi2(0x%llX) = %d, expected %d\n", a, x, expected);
27 return x != expected;
H A Dffsti2_test.c24 int test__ffsti2(ti_int a, si_int expected) argument
27 if (x != expected)
31 printf("error in __ffsti2(0x%llX%.16llX) = %d, expected %d\n",
32 at.s.high, at.s.low, x, expected);
34 return x != expected;
H A Dfixdfdi_test.c27 int test__fixdfdi(double a, di_int expected) argument
30 if (x != expected)
31 printf("error in __fixdfdi(%A) = %llX, expected %llX\n", a, x, expected);
32 return x != expected;
H A Dfixsfdi_test.c27 int test__fixsfdi(float a, di_int expected) argument
30 if (x != expected)
31 printf("error in __fixsfdi(%A) = %llX, expected %llX\n", a, x, expected);
32 return x != expected;
H A Dfixunsdfsi_test.c29 int test__fixunsdfsi(double a, su_int expected) argument
32 if (x != expected)
33 printf("error in __fixunsdfsi(%A) = %X, expected %X\n", a, x, expected);
34 return x != expected;
H A Dfixunsxfsi_test.c31 int test__fixunsxfsi(long double a, su_int expected) argument
34 if (x != expected)
35 printf("error in __fixunsxfsi(%LA) = %X, expected %X\n", a, x, expected);
36 return x != expected;
H A Dparityti2_test.c35 si_int expected = naive_parity(a); local
36 if (x != expected)
40 printf("error in __parityti2(0x%.16llX%.16llX) = %d, expected %d\n",
41 at.s.high, at.s.low, x, expected);
43 return x != expected;
H A Dpopcountdi2_test.c33 si_int expected = naive_popcount(a); local
34 if (x != expected)
35 printf("error in __popcountdi2(0x%llX) = %d, expected %d\n",
36 a, x, expected);
37 return x != expected;
H A Dpopcountsi2_test.c33 si_int expected = naive_popcount(a); local
34 if (x != expected)
35 printf("error in __popcountsi2(0x%X) = %d, expected %d\n",
36 a, x, expected);
37 return x != expected;
H A Ducmpdi2_test.c23 int test__ucmpdi2(du_int a, du_int b, si_int expected) argument
26 if (x != expected)
27 printf("error in __ucmpdi2(0x%llX, 0x%llX) = %d, expected %d\n",
28 a, b, x, expected);
29 return x != expected;
/external/easymock/src/org/easymock/internal/
H A DAlwaysMatcher.java25 public boolean matches(Object[] expected, Object[] actual) { argument
/external/icu/icu4c/source/test/cintltst/
H A Dcdtdptst.h53 void tryPat994(UDateFormat* format, const char* pat, const char* s, UDate expected);
H A Dcnormtst.h35 /* static void assertEqual(const UChar* result, const UChar* expected, int32_t index);
37 static void assertEqual(const UChar* result, const char* expected, int32_t index);
/external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
H A Dinvoke_int_0.pass.cpp22 test(F f, R expected) argument
24 assert(f() == expected);
29 test_const(const F& f, R expected) argument
31 assert(f() == expected);
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
H A DHttpParsingTest.java16 char expected = (char) i;
17 assertEquals("" + expected, testServer.decodePercent(input));
23 String expected = "Chinese \u738b Letters";
25 assertEquals(expected, testServer.decodePercent(input));
/external/chromium_org/base/android/javatests/src/org/chromium/base/
H A DCommandLineTest.java76 void checkTokenizer(String[] expected, String toParse) { argument
78 assertEquals(expected.length, actual.length);
79 for (int i = 0; i < expected.length; ++i) {
80 assertEquals("comparing element " + i, expected[i], actual[i]);
104 String[] expected = { "a\\bc de\"f g\\h",
107 checkTokenizer(expected, toParse);
110 expected = new String[0];
111 checkTokenizer(expected, toParse);
114 checkTokenizer(expected, toParse);
118 expected
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Daddress_i18n_unittest.cc113 AddressData expected; local
114 expected.region_code = "US";
115 expected.address_line.push_back("666 Erebus St.");
116 expected.address_line.push_back("Apt 8");
117 expected.administrative_area = "CA";
118 expected.locality = "Elysium";
119 expected.postal_code = "91111";
120 expected.language_code = "en";
121 expected.organization = "Underworld";
122 expected
[all...]
/external/chromium_org/remoting/base/
H A Drate_counter_unittest.cc33 double expected = 0.0; local
36 expected += kTestValues[i];
39 EXPECT_EQ(expected, rate_counter.Rate());
54 double expected = kTestValues[i]; local
56 expected += kTestValues[i-1];
57 expected /= 2;
58 EXPECT_EQ(expected, rate_counter.Rate());
70 double expected = 0.0; local
77 expected += kTestValues[i];
79 expected /
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRUnwantedTokenException.h39 + (ANTLRUnwantedTokenException *)newANTLRUnwantedTokenException:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput;
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRUnwantedTokenException.h39 + (ANTLRUnwantedTokenException *)newANTLRUnwantedTokenException:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput;
42 - (id) initWithStream:(id<ANTLRIntStream>)anInput And:(NSInteger)expected;

Completed in 288 milliseconds

<<11121314151617181920>>