HomeSort by relevance Sort by last modified time
    Searched defs:expected (Results 1 - 25 of 967) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/webkit/
dfg-resolve-global-specific-dictionary.js 34 var expected = "\"function () { }\""; variable
40 expected = "\"42\"";
42 shouldBe("\"\" + foo()", expected);
dfg-call-function-hit-watchpoint.js 39 var expected; variable
41 expected = i + i + 1;
43 expected = -1;
44 shouldBe("bar(i, i + 1)", "" + expected);
dfg-inline-arguments-out-of-bounds.js 40 var expected = "\"undefined\""; variable
44 expected = "\"[object Arguments]\"";
48 expected = "\"undefined\"";
51 shouldBe("result", expected);
dfg-to-string-toString-in-string.js 35 var expected = "\"hello\""; variable
40 expected = "\"42\"";
42 shouldBe("\"\" + foo(argument)", expected);
  /external/chromium/base/
sha1_unittest.cc 16 int expected[] = { 0xa9, 0x99, 0x3e, 0x36, local
24 EXPECT_EQ(expected[i], output[i] & 0xFF);
32 int expected[] = { 0x84, 0x98, 0x3e, 0x44, local
40 EXPECT_EQ(expected[i], output[i] & 0xFF);
47 int expected[] = { 0x34, 0xaa, 0x97, 0x3c, local
55 EXPECT_EQ(expected[i], output[i] & 0xFF);
63 unsigned char expected[] = { 0xa9, 0x99, 0x3e, 0x36, local
72 EXPECT_EQ(expected[i], output[i]);
81 unsigned char expected[] = { 0x84, 0x98, 0x3e, 0x44, local
90 EXPECT_EQ(expected[i], output[i])
98 unsigned char expected[] = { 0x34, 0xaa, 0x97, 0x3c, local
    [all...]
  /external/chromium/net/websockets/
websocket_net_log_params_unittest.cc 26 DictionaryValue expected; local
27 expected.Set("headers", list);
46 EXPECT_TRUE(expected.Equals(actual.get()));
  /external/chromium_org/base/
sha1_unittest.cc 16 int expected[] = { 0xa9, 0x99, 0x3e, 0x36, local
24 EXPECT_EQ(expected[i], output[i] & 0xFF);
32 int expected[] = { 0x84, 0x98, 0x3e, 0x44, local
40 EXPECT_EQ(expected[i], output[i] & 0xFF);
47 int expected[] = { 0x34, 0xaa, 0x97, 0x3c, local
55 EXPECT_EQ(expected[i], output[i] & 0xFF);
63 unsigned char expected[] = { 0xa9, 0x99, 0x3e, 0x36, local
72 EXPECT_EQ(expected[i], output[i]);
81 unsigned char expected[] = { 0x84, 0x98, 0x3e, 0x44, local
90 EXPECT_EQ(expected[i], output[i])
98 unsigned char expected[] = { 0x34, 0xaa, 0x97, 0x3c, local
    [all...]
  /external/chromium_org/net/websockets/
websocket_net_log_params_unittest.cc 29 base::DictionaryValue expected; local
30 expected.Set("headers", list);
49 EXPECT_TRUE(expected.Equals(actual.get()));
  /external/chromium_org/remoting/base/
running_average_unittest.cc 31 double expected = kTestValues[i]; local
33 expected = (expected + kTestValues[i-1]) / 2;
35 EXPECT_EQ(expected, running_average.Average());
47 double expected = 0.0; local
49 expected += kTestValues[j];
50 expected /= i + 1;
52 EXPECT_EQ(expected, running_average.Average());
  /external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
error_test.cpp 17 const char* expected = "\n"; local
24 preprocess(str, expected);
30 const char* expected = "\n"; local
38 preprocess(str, expected);
44 const char* expected = "\n"; local
52 preprocess(str, expected);
68 const char* expected = "\n"; local
76 preprocess(str, expected);
82 const char* expected = ""; local
91 preprocess(str, expected);
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
additional_properties_unittest.cc 52 ListValue expected; local
57 expected.Append(dict);
62 &expected));
  /external/chromium_org/v8/test/mjsunit/
regexp-call-as-function.js 34 var expected = 'abc,b,c'; variable
35 assertEquals(expected, String(regexp.exec(subject)));
string-split-cache.js 39 var expected = ["a", "b", "c", "d", "e", "f"]; variable
40 assertArrayEquals(expected, array);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2193.js 44 var expected = [1,2,3,3,4,5,6,7,8,9,bozo]; variable
50 assertEquals(expected, closure1(true));
52 assertEquals(expected, closure1(true));
58 assertEquals(expected, closure2(true));
regress-crbug-84186.js 28 // Test that the expected string is parsed in the json parser when the length
34 var expected = ''; variable
37 expected = expected + "TESTING" + i + "\n";
41 assertEquals(expected, out.key);
  /external/compiler-rt/test/Unit/
adddf3vfp_test.c 25 double expected = a + b; local
26 if (actual != expected)
27 printf("error in test__adddf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
addsf3vfp_test.c 25 float expected = a + b; local
26 if (actual != expected)
27 printf("error in test__addsf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
addvdi3_test.c 26 di_int expected = a + b; local
27 if (x != expected)
28 printf("error in test__addvdi3(0x%llX, 0x%llX) = %lld, expected %lld\n",
29 a, b, x, expected);
30 return x != expected;
addvsi3_test.c 26 si_int expected = a + b; local
27 if (x != expected)
28 printf("error in test__addvsi3(0x%X, 0x%X) = %d, expected %d\n",
29 a, b, x, expected);
30 return x != expected;
divdf3vfp_test.c 25 double expected = a / b; local
26 if (actual != expected)
27 printf("error in test__divdf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
divsf3vfp_test.c 25 float expected = a / b; local
26 if (actual != expected)
27 printf("error in test__divsf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
eqdf2vfp_test.c 26 int expected = (a == b) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __eqdf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
eqsf2vfp_test.c 26 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;
extebdsfdf2vfp_test.c 25 double expected = a; local
26 if (actual != expected)
27 printf("error in test__extendsfdf2vfp(%f) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;
fixdfsivfp_test.c 25 int expected = a; local
26 if (actual != expected)
27 printf("error in test__fixdfsivfp(%f) = %d, expected %d\n",
28 a, actual, expected);
29 return actual != expected;

Completed in 1248 milliseconds

1 2 3 4 5 6 7 8 91011>>