/third_party/node/test/fixtures/wpt/streams/readable-byte-streams/ |
D | tee.any.js | 83 const [result1, result2] = await Promise.all([reader1.read(), reader2.read()]); constant 85 assert_equals(result2.done, false, 'reader2 done'); 88 const view2 = result2.value; 504 const result2 = await read2; constant 505 assert_object_equals(result2, { value: undefined, done: true }); 532 const result2 = await read2; constant 533 assert_object_equals(result2, { value: undefined, done: true }); 581 const result2 = await read2; constant 582 assert_equals(result2.done, true); 583 assert_equals(result2.value, undefined); [all …]
|
D | general.any.js | 2397 const result2 = await read2; constant 2398 assert_false(result2.done, 'second result.done'); 2399 const view2 = result2.value; 2439 const result2 = await read2; constant 2440 assert_false(result2.done, 'second result.done'); 2441 …assert_typed_array_equals(result2.value, new Uint8Array([11, 5, 6]).subarray(0, 1), 'second result… 2482 const result2 = await read2; constant 2483 assert_false(result2.done, 'second result.done'); 2484 const view2 = result2.value; 2526 const result2 = await read2; constant [all …]
|
/third_party/musl/libc-test/src/functionalext/supplement/network/network_gtest/ |
D | arpa_inet_test.cpp | 156 int result2 = inet_aton("127.0.0.1", &addr); variable 157 EXPECT_EQ(1, result2); 171 int result2 = inet_aton("a", &addr); variable 176 EXPECT_EQ(0, result2); 193 int result2 = inet_aton("9.8.7.6.", &addr); variable 195 EXPECT_EQ(0, result2); 209 int result2 = inet_aton("0.333.0.9", &addr); variable 213 EXPECT_EQ(0, result2); 229 int result2 = inet_aton("0.260.0", &addr); variable 232 EXPECT_EQ(0, result2); [all …]
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | TimerQueriesTest.cpp | 148 GLuint64 result2 = 0; in TEST_P() local 150 glGetQueryObjectui64vEXT(query2, GL_QUERY_RESULT_EXT, &result2); in TEST_P() 158 std::cout << "Elapsed time: " << result2 << " costly quad" << std::endl; in TEST_P() 162 EXPECT_LT(0ul, result2); in TEST_P() 168 EXPECT_LT(result2, 1000000000ul); in TEST_P() 394 GLuint64 result2 = 0; in TEST_P() local 402 glGetQueryObjectui64vEXT(contexts[1].query, GL_QUERY_RESULT_EXT, &result2); in TEST_P() 413 std::cout << "Elapsed time: " << result2 << " costly quad" << std::endl; in TEST_P() 415 EXPECT_LT(0ul, result2); in TEST_P() 417 EXPECT_LT(result2, 1000000000ul); in TEST_P() [all …]
|
/third_party/typescript/tests/baselines/reference/convertToAsyncFunction/ |
D | convertToAsyncFunction_MultipleThens.ts | 9 function res2(result2){ 10 console.log(result2); 16 const result2 = await res(result); constant 17 return res2(result2); 22 function res2(result2){ 23 console.log(result2);
|
/third_party/musl/libc-test/src/functionalext/supplement/misc/misc_gtest/ |
D | misc_getpriority_test.cpp | 38 int result2 = getpriority(PRIO_PROCESS, getpid()); variable 39 EXPECT_EQ(result2, PRIORITY); 53 int result2 = getpriority(PRIO_PGRP, getpgid(getpid())); variable 54 EXPECT_EQ(result2, PRIORITY); 68 int result2 = getpriority(PRIO_USER, getuid()); variable 69 EXPECT_EQ(result2, PRIORITY);
|
/third_party/node/test/fixtures/wpt/streams/transform-streams/ |
D | flush.any.js | 77 return reader.read().then(result2 => { 78 … assert_equals(result2.value, 'y', 'the second chunk read is the second one enqueued in flush'); 79 … assert_equals(result2.done, false, 'the second chunk read is the second one enqueued in flush'); 110 return reader.read().then(result2 => { 111 … assert_equals(result2.value, 'y', 'the second chunk read is the second one enqueued in flush'); 112 … assert_equals(result2.done, false, 'the second chunk read is the second one enqueued in flush');
|
D | general.any.js | 81 return reader.read().then(result2 => { 82 assert_equals(result2.value, 'A', 84 assert_false(result2.done, 'stream should not be done'); 134 return reader.read().then(result2 => { 135 assert_equals(result2.value, 'A', 137 assert_false(result2.done, 'stream should not be done');
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/test/ |
D | testLockFreeQueue.cpp | 66 int result2; member in TestLockFreeQueue 92 q.pop(result2); in TEST_F() 94 ASSERT_EQ(result2, 456); in TEST_F() 112 q.pop(result2); in TEST_F() 113 ASSERT_EQ(result2, 234); in TEST_F() 136 q.peek(result2); in TEST_F() 137 ASSERT_EQ(result2, 456); in TEST_F()
|
/third_party/typescript/tests/baselines/reference/ |
D | typeGuardsWithInstanceOf.js | 4 var result2!: I; variable 7 result = result2; 46 var result2; variable 48 result = result2;
|
D | typeGuardsWithInstanceOf.symbols | 10 var result2!: I; 11 >result2 : Symbol(result2, Decl(typeGuardsWithInstanceOf.ts, 2, 3)) 18 result = result2; 20 >result2 : Symbol(result2, Decl(typeGuardsWithInstanceOf.ts, 2, 3))
|
D | typeGuardsWithInstanceOf.types | 8 var result2!: I; 9 >result2 : I 18 result = result2; 19 >result = result2 : I 21 >result2 : I
|
D | plusOperatorInvalidOperations.symbols | 12 var result2 =+; 13 >result2 : Symbol(result2, Decl(plusOperatorInvalidOperations.ts, 7, 3))
|
D | defaultBestCommonTypesHaveDecls.symbols | 41 var result2 = concat2(1, ""); // result2 will be number|string 42 >result2 : Symbol(result2, Decl(defaultBestCommonTypesHaveDecls.ts, 11, 3))
|
D | defaultBestCommonTypesHaveDecls.types | 43 var result2 = concat2(1, ""); // result2 will be number|string 44 >result2 : any
|
D | plusOperatorInvalidOperations.js | 9 var result2 =+; variable 17 var result2 = +;
|
/third_party/icu/icu4c/source/samples/citer/ |
D | citer.cpp | 70 UnicodeString result1, result2; in TestUChariter() local 73 test2->getText(result2); in TestUChariter() 74 if (result1 != result2) { in TestUChariter() 135 UnicodeString result1, result2; in TestStringiter() local 138 test2->getText(result2); in TestStringiter() 139 if (result1 != result2) { in TestStringiter()
|
/third_party/skia/third_party/externals/icu/source/samples/citer/ |
D | citer.cpp | 70 UnicodeString result1, result2; in TestUChariter() local 73 test2->getText(result2); in TestUChariter() 74 if (result1 != result2) { in TestUChariter() 135 UnicodeString result1, result2; in TestStringiter() local 138 test2->getText(result2); in TestStringiter() 139 if (result1 != result2) { in TestStringiter()
|
/third_party/skia/tests/graphite/ |
D | UniformCacheTest.cpp | 66 sk_sp<UniformData> result2 = cache->findOrCreate(ud2); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local 67 REPORTER_ASSERT(reporter, result2->id() != UniformData::kInvalidUniformID); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 69 REPORTER_ASSERT(reporter, result2->id() == result1->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 70 sk_sp<UniformData> lookup = cache->lookup(result2->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 71 REPORTER_ASSERT(reporter, lookup->id() == result2->id()); in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|
/third_party/gstreamer/gstplugins_base/tests/check/libs/ |
D | sdp.c | 445 GstCaps *result1, *result2, *result3; in GST_START_TEST() local 461 result2 = gst_caps_from_string (caps_video_rtcp_fb_pt_101); in GST_START_TEST() 462 fail_unless (gst_caps_is_strictly_equal (caps2, result2)); in GST_START_TEST() 464 gst_caps_unref (result2); in GST_START_TEST() 485 GstCaps *result1, *result2, *result3; in GST_START_TEST() local 501 result2 = gst_caps_from_string (caps_video_rtcp_fb_all_pt_101); in GST_START_TEST() 502 fail_unless (gst_caps_is_strictly_equal (caps2, result2)); in GST_START_TEST() 504 gst_caps_unref (result2); in GST_START_TEST() 629 GstCaps *result1, *result2; in GST_START_TEST() local 650 result2 = gst_caps_from_string (caps_application_raptor_fec_pt_110); in GST_START_TEST() [all …]
|
/third_party/node/deps/v8/src/base/ |
D | ubsan.cc | 41 uint64_t result2 = result1 + (r_mid2 << 32); in __mulodi4() local 42 if (result2 < result1) r_high++; in __mulodi4() 44 int64_t result = static_cast<int64_t>(result2); in __mulodi4()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/interfaces/1_interface_declarations/ |
D | interface_declarations_1.ts | 58 let result2: { velocity: number,rate: number,} = { variable 71 return result2 111 Assert.equal(point.getS(), result2);
|
/third_party/jerryscript/tests/unit-ext/ |
D | test-ext-module-canonical.c | 85 jerry_value_t result2 = jerryx_module_resolve (alias_name, &resolver, 1); in main() local 96 prop_value = jerry_get_property (result2, prop_name); in main() 102 jerry_release_value (result2); in main()
|
/third_party/skia/tests/ |
D | PathOpsLineIntersectionTest.cpp | 91 SkDPoint result2 = line2.ptAtT(ts[1][i]); in check_results() local 92 if (nearAllowed && result1.roughlyEqual(result2)) { in check_results() 95 if (!result1.approximatelyEqual(result2) && !ts.nearlySame(i)) { in check_results() 97 result2 = line2.ptAtT(ts[1][i ^ 1]); in check_results() 98 if (!result1.approximatelyEqual(result2)) { in check_results() 101 REPORTER_ASSERT(reporter, result1.approximatelyEqual(result2)); in check_results()
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/arrow_function/ |
D | arrow_function_1.ts | 33 const result2 = greet("Alice"); constant 34 Assert.equal(result2, "Alice");
|