/third_party/node/test/fixtures/wpt/FileAPI/url/ |
D | url-in-tags-revoke.window.js | 3 const run_result = 'test_frame_OK'; constant 5 '<script>window.test_result = "' + run_result + '";</script>'; 16 assert_equals(frame.contentWindow.test_result, run_result); 21 const run_result = 'test_frame_OK'; constant 23 '<script>window.test_result = "' + run_result + '";</script>'; 36 assert_equals(frame.contentWindow.test_result, run_result); 42 const run_result = 'test_frame_OK'; constant 44 '<script>window.test_result = "' + run_result + '";</script>'; 52 assert_equals(win.test_result, run_result); 87 const run_result = 'test_script_OK'; constant [all …]
|
D | url-in-tags.window.js | 2 const run_result = 'test_script_OK'; constant 3 const blob_contents = 'window.test_result = "' + run_result + '";'; 10 assert_equals(window.test_result, run_result); 17 const run_result = 'test_frame_OK'; constant 19 '<script>window.test_result = "' + run_result + '";</script>'; 29 assert_equals(frame.contentWindow.test_result, run_result);
|
D | url-reload.window.js | 2 const run_result = 'test_frame_OK'; 4 '<script>window.test_result = "' + run_result + '";</script>'; 16 assert_equals(frame.contentWindow.test_result, run_result); 19 assert_equals(frame.contentWindow.test_result, run_result);
|
/third_party/jerryscript/tests/unit-core/ |
D | test-resource-name.cpp | 106 jerry_value_t run_result = jerry_run (program); variable 107 TEST_ASSERT (!jerry_value_is_error (run_result)); 108 TEST_ASSERT (jerry_value_is_object (run_result)); 110 jerry_value_t resource_value = jerry_get_resource_name (run_result); 116 jerry_release_value (run_result); 137 run_result = jerry_run (program); 138 ASSERT_TRUE (jerry_value_is_error (run_result)); 139 ASSERT_TRUE (!(jerry_value_is_object (run_result))); 141 resource_value = jerry_get_resource_name (run_result); 147 jerry_release_value (run_result);
|
D | test-api-promise.cpp | 173 jerry_value_t run_result = jerry_run_all_enqueued_jobs (); in test_promise_from_js() local 174 TEST_ASSERT (jerry_value_is_undefined (run_result)); in test_promise_from_js() 175 jerry_release_value (run_result); in test_promise_from_js()
|
D | test-api.cpp | 895 jerry_value_t run_result = jerry_run (parse_result); variable 896 TEST_ASSERT (!jerry_value_is_error (run_result)); 897 jerry_release_value (run_result); 900 run_result = jerry_run (parse_result); 901 TEST_ASSERT (jerry_value_is_error (run_result)); 902 jerry_release_value (run_result);
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cPipelineStatisticsQueryTests.cpp | 1206 …const _test_execution_result& run_result, unsigned int n_expected_values, const glw::GLuint64* exp… in verifyResultValues() argument 1251 (glw::GLuint64)run_result.result_int == expected_value) || in verifyResultValues() 1253 (glw::GLuint64)run_result.result_int >= expected_value)) in verifyResultValues() 1258 if (run_result.int64_written && ((verification_type == VERIFICATION_TYPE_EXACT_MATCH && in verifyResultValues() 1259 run_result.result_int64 == (glw::GLint64)expected_value) || in verifyResultValues() 1261 run_result.result_int64 >= (glw::GLint64)expected_value))) in verifyResultValues() 1267 (glw::GLuint64)run_result.result_uint == expected_value) || in verifyResultValues() 1269 (glw::GLuint64)run_result.result_uint >= expected_value)) in verifyResultValues() 1274 if (run_result.uint64_written && in verifyResultValues() 1275 …((verification_type == VERIFICATION_TYPE_EXACT_MATCH && run_result.result_uint64 == expected_value… in verifyResultValues() [all …]
|
D | gl4cPipelineStatisticsQueryTests.hpp | 286 …static bool verifyResultValues(const _test_execution_result& run_result, unsigned int n_expected_v…
|
/third_party/flutter/engine/flutter/shell/common/ |
D | ace_shell.cc | 336 result_callback](Engine::RunStatus run_result) { in RunEngine() argument 341 [result_callback, run_result]() { result_callback(run_result); }); in RunEngine() 360 auto run_result = weak_engine->Run(std::move(run_configuration)); in RunEngine() local 361 if (run_result == flutter::Engine::RunStatus::Failure) { in RunEngine() 364 result(run_result); in RunEngine()
|
D | shell.cc | 379 result_callback](Engine::RunStatus run_result) { in RunEngine() argument 384 [result_callback, run_result]() { result_callback(run_result); }); in RunEngine() 403 auto run_result = weak_engine->Run(std::move(run_configuration)); in RunEngine() local 404 if (run_result == flutter::Engine::RunStatus::Failure) { in RunEngine() 407 result(run_result); in RunEngine()
|
/third_party/jerryscript/jerry-main/ |
D | main-unix.c | 785 jerry_value_t run_result; in main() local 789 &run_result); in main() 802 if (jerry_value_is_abort (run_result)) in main() 804 ret_value = jerry_acquire_value (run_result); in main() 807 jerry_release_value (run_result); in main()
|
/third_party/jerryscript/docs/ |
D | 07.DEBUGGER.md | 349 jerry_value_t run_result; 353 &run_result); 355 jerry_release_value (run_result);
|
D | 02.API-REFERENCE.md | 7802 jerry_value_t run_result = jerry_run (program); 7803 jerry_release_value (run_result); 7899 /* `run_result` contains "demo.js" */ 7900 jerry_value_t run_result = jerry_run (program); 7902 /* usage of `run_result` */ 7904 jerry_release_value (run_result);
|
/third_party/gstreamer/gst_libav/ |
D | meson.build | 210 run_result = run_command(extract_release_date, gst_version, files('gst-libav.doap'), check: true) variable 211 release_date = run_result.stdout().strip()
|
/third_party/gstreamer/gstplugins_base/ |
D | meson.build | 527 …run_result = run_command(extract_release_date, gst_version, files('gst-plugins-base.doap'), check:… variable 528 release_date = run_result.stdout().strip()
|
/third_party/gstreamer/gstplugins_good/ |
D | meson.build | 486 …run_result = run_command(extract_release_date, gst_version, files('gst-plugins-good.doap'), check:… variable 487 release_date = run_result.stdout().strip()
|
/third_party/gstreamer/gstreamer/ |
D | meson.build | 615 run_result = run_command(extract_release_date, gst_version, files('gstreamer.doap'), check: true) variable 616 release_date = run_result.stdout().strip()
|
/third_party/gstreamer/gstplugins_bad/ |
D | meson.build | 553 …run_result = run_command(extract_release_date, gst_version, files('gst-plugins-bad.doap'), check: … variable 554 release_date = run_result.stdout().strip()
|