Searched defs:expected (Results 26 - 50 of 1173) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/test/testsupport/
H A Dperf_test_unittest.cc21 std::string expected = "RESULT measurementmodifier: trace= 42 units\n"; local
24 EXPECT_EQ(expected, output);
27 expected += "*RESULT foobar: baz= 7 widgets\n";
29 EXPECT_EQ(expected, output);
/external/chromium_org/tools/gn/
H A Dninja_group_target_writer_unittest.cc49 const char expected[] = local
51 EXPECT_EQ(expected, out.str());
/external/chromium_org/tools/json_schema_compiler/test/
H A Dcallbacks_unittest.cc19 base::ListValue expected; local
20 expected.Append(expected_dict);
21 EXPECT_TRUE(results->Equals(&expected));
32 base::ListValue expected; local
33 expected.Append(new base::FundamentalValue(5));
34 expected.Append(expected_dict);
35 EXPECT_TRUE(results->Equals(&expected));
/external/chromium_org/v8/test/cctest/
H A Dtest-js-arm64-variables.cc65 static void ExpectInt32(int32_t expected, Local<Value> result) { argument
67 CHECK_EQ(expected, result->Int32Value());
/external/chromium_org/v8/test/mjsunit/
H A Denumeration-order.js97 var expected = ['23', '42', // indexed from 'o' variable
105 assertArrayEquals(expected, actual);
/external/chromium_org/v8/test/mjsunit/es7/
H A Dobject-observe-debug-event.js11 var expected = [ variable
19 assertTrue(expected.length > 0);
20 assertEquals(expected.shift(), msg);
21 if (!expected.length) {
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-320922.js31 var expected = "Hello " + "world"; variable
36 assertEquals(expected, string);
38 assertEquals(expected, string);
46 assertEquals(expected, twobyte);
48 assertEquals(expected, twobyte);
/external/chromium_org/v8/test/webkit/
H A Ddfg-arguments-osr-exit-multiple-blocks.js51 var expected = "74"; variable
56 expected = "\"4232\"";
59 shouldBe("bar(42)", expected);
H A Ddfg-arguments-osr-exit.js47 var expected = "74"; variable
52 expected = "\"4232\"";
55 shouldBe("bar(42)", expected);
H A Ddfg-call-method-hit-watchpoint.js46 var expected; variable
48 expected = 42;
50 expected = 56;
51 shouldBe("callFoo(o)", "" + expected);
H A Ddfg-dead-speculation.js35 var expected = 84; variable
40 expected = 24;
43 shouldBe("variable", "" + expected);
H A Ddfg-to-string-toString-becomes-bad.js34 var expected = "\"hello\""; variable
38 expected = "\"42\"";
40 shouldBe("\"\" + foo(\"hello\")", expected);
/external/compiler-rt/test/builtins/Unit/
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 Dextebdsfdf2vfp_test.c25 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;
H A Dfixdfsivfp_test.c25 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;
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.c25 unsigned int expected = a; local
26 if (actual != expected)
27 printf("error in test__fixunsdfsivfp(%f) = %u, expected %u\n",
28 a, actual, expected);
29 return actual != expected;
H A Dfixunssfsivfp_test.c25 unsigned int expected = a; local
26 if (actual != expected)
27 printf("error in test__fixunssfsivfp(%f) = %u, expected %u\n",
28 a, actual, expected);
29 return actual != expected;
H A Dfloatsidfvfp_test.c25 double expected = a; local
26 if (actual != expected)
27 printf("error in test__ floatsidfvfp(%d) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;
H A Dfloatsisfvfp_test.c25 float expected = a; local
26 if (actual != expected)
27 printf("error in test__floatsisfvfp(%d) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;
H A Dfloatunssidfvfp_test.c25 double expected = a; local
26 if (actual != expected)
27 printf("error in test__floatunssidfvfp(%u) = %f, expected %f\n",
28 a, actual, expected);
29 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 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.c25 float expected = -a; local
26 if (actual != expected)
27 printf("error in test__negsf2vfp(%f) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;

Completed in 620 milliseconds

1234567891011>>