Home
last modified time | relevance | path

Searched refs:result2 (Results 1 – 25 of 179) sorted by relevance

12345678

/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DTimerQueriesTest.cpp142 GLuint64 result2 = 0; in TEST_P() local
144 glGetQueryObjectui64vEXT(query2, GL_QUERY_RESULT_EXT, &result2); in TEST_P()
152 std::cout << "Elapsed time: " << result2 << " costly quad" << std::endl; in TEST_P()
156 EXPECT_LT(0ul, result2); in TEST_P()
162 EXPECT_LT(result2, 1000000000ul); in TEST_P()
385 GLuint64 result2 = 0; in TEST_P() local
393 glGetQueryObjectui64vEXT(contexts[1].query, GL_QUERY_RESULT_EXT, &result2); in TEST_P()
404 std::cout << "Elapsed time: " << result2 << " costly quad" << std::endl; in TEST_P()
406 EXPECT_LT(0ul, result2); in TEST_P()
408 EXPECT_LT(result2, 1000000000ul); in TEST_P()
[all …]
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DTimerQueriesTest.cpp148 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/
DconvertToAsyncFunction_MultipleThens.ts9 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/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_hints.c79 char *result2; in hints_getHint() local
85 result2 = (char *)SDL_GetHint((char *)_HintsVerbose[i]); in hints_getHint()
88 (result1 == NULL && result2 == NULL) || (SDL_strcmp(result1, result2) == 0), in hints_getHint()
91 (result2 == NULL) ? "null" : result2); in hints_getHint()
Dtestautomation_timer.c74 Uint32 result2; in timer_delayAndGetTicks() local
96 result2 = SDL_GetTicks(); in timer_delayAndGetTicks()
98 SDLTest_AssertCheck(result2 > 0, "Check result value, expected: >0, got: %d", result2); in timer_delayAndGetTicks()
99 difference = result2 - result; in timer_delayAndGetTicks()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/test/
DtestLockFreeQueue.cpp66 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/icu/icu4c/source/samples/citer/
Dciter.cpp70 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/
Dciter.cpp70 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/flutter/skia/third_party/externals/icu/source/samples/citer/
Dciter.cpp70 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/typescript/tests/baselines/reference/
DtypeGuardsWithInstanceOf.js4 var result2!: I; variable
7 result = result2;
46 var result2; variable
48 result = result2;
DtypeGuardsWithInstanceOf.symbols10 var result2!: I;
11 >result2 : Symbol(result2, Decl(typeGuardsWithInstanceOf.ts, 2, 3))
18 result = result2;
20 >result2 : Symbol(result2, Decl(typeGuardsWithInstanceOf.ts, 2, 3))
DtypeGuardsWithInstanceOf.types8 var result2!: I;
9 >result2 : I
18 result = result2;
19 >result = result2 : I
21 >result2 : I
DplusOperatorInvalidOperations.symbols12 var result2 =+;
13 >result2 : Symbol(result2, Decl(plusOperatorInvalidOperations.ts, 7, 3))
DdefaultBestCommonTypesHaveDecls.symbols41 var result2 = concat2(1, ""); // result2 will be number|string
42 >result2 : Symbol(result2, Decl(defaultBestCommonTypesHaveDecls.ts, 11, 3))
DdefaultBestCommonTypesHaveDecls.types43 var result2 = concat2(1, ""); // result2 will be number|string
44 >result2 : any
DplusOperatorInvalidOperations.js9 var result2 =+; variable
17 var result2 = +;
DfixingTypeParametersRepeatedly3.symbols42 // result2 should have the same type as result
65 var result2 = bar(derived, d => d.toBase());
66 >result2 : Symbol(result2, Decl(fixingTypeParametersRepeatedly3.ts, 16, 3))
/third_party/skia/tests/graphite/
DUniformCacheTest.cpp66 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/
Dsdp.c445 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/flutter/skia/tests/
DPathOpsLineIntersectionTest.cpp91 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/skia/tests/
DPathOpsLineIntersectionTest.cpp91 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/interfaces/1_interface_declarations/
Dinterface_declarations_1.ts58 let result2: { velocity: number,rate: number,} = { variable
71 return result2
111 Assert.equal(point.getS(), result2);
/third_party/jerryscript/tests/unit-ext/
Dtest-ext-module-canonical.c85 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/iowow/src/json/tests/
Djbl_test1.c329 char *result2 = result ? iwu_replace_char(strdup(result), '\'', '"') : 0; in apply_patch() local
341 if (result2) { in apply_patch()
342 CU_ASSERT_STRING_EQUAL(result2, iwxstr_ptr(xstr)); in apply_patch()
352 if (result2) { in apply_patch()
353 free(result2); in apply_patch()
366 char *result2 = result ? iwu_replace_char(strdup(result), '\'', '"') : 0; in apply_merge_patch() local
378 if (result2) { in apply_merge_patch()
379 CU_ASSERT_STRING_EQUAL(result2, iwxstr_ptr(xstr)); in apply_merge_patch()
389 if (result2) { in apply_merge_patch()
390 free(result2); in apply_merge_patch()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/expressions/arrow_function/
Darrow_function_1.ts33 const result2 = greet("Alice"); constant
34 Assert.equal(result2, "Alice");

12345678