Home
last modified time | relevance | path

Searched refs:passed (Results 1 - 25 of 218) sorted by relevance

123456789

/third_party/rust/crates/regex/regex-capi/ctest/
H A Dtest.c14 bool passed = true; in test_is_match() local
25 passed = false; in test_is_match()
28 return passed; in test_is_match()
32 bool passed = true; in test_shortest_match() local
45 passed = false; in test_shortest_match()
54 passed = false; in test_shortest_match()
57 return passed; in test_shortest_match()
61 bool passed = true; in test_find() local
72 passed = false; in test_find()
83 passed in test_find()
90 bool passed = true; test_captures() local
151 bool passed = true; test_iter() local
212 bool passed = true; test_iter_capture_name() local
226 bool passed = true; test_iter_capture_names() local
274 bool passed = true; test_flags() local
293 bool passed = true; test_compile_error() local
320 bool passed = true; test_compile_error_size_limit() local
353 bool passed = true; test_regex_set_matches() local
419 bool passed = true; test_regex_set_match_start() local
500 bool passed = true; test_regex_set_options() local
535 bool passed = true; test_escape() local
569 bool passed = true; main() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cLayoutBindingTests.cpp221 bool passed = true; in getUniformLocations() local
227 passed &= (0 <= location); in getUniformLocations()
228 if (passed) in getUniformLocations()
331 LayoutBindingTestResult(bool passed = true, const String& reason = String(), bool notRunforThisContext = false) in LayoutBindingTestResult()
332 : m_passed(passed), m_notRunForThisContext(notRunforThisContext), m_reason(reason) in LayoutBindingTestResult()
1098 bool passed = true; in iterate() local
1138 passed &= result.testPassed(); in iterate()
1148 getContext().getTestContext().setTestResult(passed ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL, in iterate()
1149 passed ? "Pass" : "Fail"); in iterate()
1161 bool passed in drawTestCompute() local
1254 bool passed = true; drawTest() local
1297 bool passed = true; binding_basic_default() local
1338 bool passed = true; binding_basic_explicit() local
1385 bool passed = true; binding_basic_multiple() local
1438 bool passed = true; binding_basic_render() local
1473 bool passed = true; binding_integer_constant() local
1572 bool passed = true; binding_array_size() local
1632 bool passed = true; binding_array_implicit() local
1691 bool passed = true; binding_array_multiple() local
1769 bool passed = true; binding_api_update() local
1815 bool passed = true; binding_compilation_errors() local
1905 bool passed = true; binding_link_errors() local
2137 bool passed = true; binding_mixed_order() local
2340 bool passed = true; binding_array_size() local
2431 bool passed = true; binding_examples_many_bindings() local
2464 bool passed = true; binding_examples_many_bindings() local
2513 bool passed = true; binding_examples_many_bindings() local
2534 bool passed = true; binding_examples_many_bindings() local
2558 bool passed = true; binding_examples_many_bindings() local
2606 bool passed = true; binding_examples_many_bindings() local
2655 bool passed = true; binding_examples_one_binding() local
2687 bool passed = true; binding_examples_one_binding() local
2736 bool passed = true; binding_examples_one_binding() local
2757 bool passed = true; binding_examples_one_binding() local
2779 bool passed = true; binding_examples_one_binding() local
2823 bool passed = true; binding_examples_one_binding() local
2881 bool passed = true; binding_mixed_order() local
[all...]
/kernel/linux/linux-6.6/drivers/of/
H A Dunittest.c37 int passed; member
47 unittest_results.passed++; \
215 "Updating an existing property should have passed\n"); in of_unittest_dynamic()
223 "Updating a missing property should have passed\n"); in of_unittest_dynamic()
227 "Removing a property should have passed\n"); in of_unittest_dynamic()
237 "Adding a large property should have passed\n"); in of_unittest_dynamic()
412 bool passed = true; in of_unittest_parse_phandle_with_args() local
421 passed &= !rc; in of_unittest_parse_phandle_with_args()
422 passed &= (args.args_count == 1); in of_unittest_parse_phandle_with_args()
423 passed in of_unittest_parse_phandle_with_args()
586 bool passed = true; of_unittest_parse_phandle_with_args_map() local
1223 bool passed = true; of_unittest_parse_interrupts() local
1244 bool passed = true; of_unittest_parse_interrupts() local
1300 bool passed = true; of_unittest_parse_interrupts_extended() local
3491 int passed = 1; overlay_data_apply() local
[all...]
/kernel/linux/linux-5.10/drivers/of/
H A Dunittest.c35 int passed; member
45 unittest_results.passed++; \
206 "Updating an existing property should have passed\n"); in of_unittest_dynamic()
214 "Updating a missing property should have passed\n"); in of_unittest_dynamic()
218 "Removing a property should have passed\n"); in of_unittest_dynamic()
228 "Adding a large property should have passed\n"); in of_unittest_dynamic()
403 bool passed = true; in of_unittest_parse_phandle_with_args() local
412 passed &= !rc; in of_unittest_parse_phandle_with_args()
413 passed &= (args.args_count == 1); in of_unittest_parse_phandle_with_args()
414 passed in of_unittest_parse_phandle_with_args()
577 bool passed = true; of_unittest_parse_phandle_with_args_map() local
1037 bool passed = true; of_unittest_parse_interrupts() local
1058 bool passed = true; of_unittest_parse_interrupts() local
1114 bool passed = true; of_unittest_parse_interrupts_extended() local
[all...]
/third_party/jerryscript/tools/runners/
H A Drun-test-suite.py117 passed = run_snapshot_tests(args, tests)
119 passed = run_normal_tests(args, tests)
124 failed = total - passed
133 util.print_test_summary(' '.join(summary_list), total, passed, failed)
146 passed = 0
154 passed += 1
165 return passed
185 passed = 0
204 passed += 1
211 passed
[all...]
H A Dutil.py48 def print_test_summary(summary_string, total, passed, failed):
51 print("%sPASS: %d%s" % (TERM_GREEN, passed, TERM_NORMAL))
54 success_color = TERM_GREEN if passed == total else TERM_RED
55 print("%sSuccess: %d%%%s" % (success_color, passed*100/total, TERM_NORMAL))
/third_party/node/test/common/
H A Dchild_process.js48 return { passed: false, reason: `did not match ${util.inspect(check)}` };
55 passed: false,
60 return { passed: true };
96 const { passed, reason } = checkOutput(trim ? stderrStr.trim() : stderrStr, stderrCheck);
97 if (!passed) {
103 const { passed, reason } = checkOutput(trim ? stdoutStr.trim() : stdoutStr, stdoutCheck);
104 if (!passed) {
/kernel/linux/linux-5.10/tools/testing/selftests/
H A Dkselftest_harness.h132 _metadata->passed = 1; \
210 * the *self* is being passed to a helper directly.
382 if (!_metadata->passed) \
684 if (_metadata->passed && _metadata->step < 253) \
730 _metadata->passed = 0; \
742 _metadata->passed = 0; \
820 int passed; member
888 t->passed = 0; in __wait_for_test()
900 t->passed = 0; in __wait_for_test()
909 t->passed in __wait_for_test()
[all...]
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A Dglcpp_test.py93 passed = 0
108 passed += 1
118 print('{}/{}'.format(passed, total), 'tests returned correct results')
119 return total == passed
125 passed = 0
142 passed += 1
152 print('{}/{}'.format(passed, total), 'tests returned correct results')
153 return total == passed
/third_party/jerryscript/tests/unit-libm/
H A Dtest-libm.c25 static bool passed = true; variable
35 passed &= result; in check_int()
86 passed &= result; in check_double()
95 return passed ? 0 : 1; in main()
/third_party/googletest/googletest/test/
H A Dgoogletest-test-part-test.cc73 EXPECT_TRUE(success.passed()); in TEST_F()
81 EXPECT_FALSE(nonfatal_failure.passed()); in TEST_F()
89 EXPECT_FALSE(fatal_failure.passed()); in TEST_F()
96 EXPECT_FALSE(skip.passed()); in TEST_F()
131 // Tests TestPartResult::passed().
133 EXPECT_TRUE(r1_.passed()); in TEST_F()
134 EXPECT_FALSE(r2_.passed()); in TEST_F()
135 EXPECT_FALSE(r3_.passed()); in TEST_F()
136 EXPECT_FALSE(r4_.passed()); in TEST_F()
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/tm/
H A Dtm-vmx-unavail.c25 int passed; variable
76 passed = 0; in worker()
96 passed = 1; in tm_vmx_unavail_test()
111 return passed ? EXIT_SUCCESS : EXIT_FAILURE; in tm_vmx_unavail_test()
H A Dtm-tmspr.c37 int passed = 1; variable
59 passed = 0; in tfiar_tfhar()
85 passed = 0; in texasr()
126 if (passed) in test_tmspr()
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/tm/
H A Dtm-vmx-unavail.c24 int passed; variable
75 passed = 0; in worker()
96 passed = 1; in tm_vmx_unavail_test()
111 return passed ? EXIT_SUCCESS : EXIT_FAILURE; in tm_vmx_unavail_test()
H A Dtm-tmspr.c37 int passed = 1; variable
59 passed = 0; in tfiar_tfhar()
85 passed = 0; in texasr()
127 if (passed) in test_tmspr()
/kernel/linux/linux-6.6/tools/testing/selftests/
H A Dkselftest_harness.h138 _metadata->passed = 1; \
219 * the *self* is being passed to a helper directly.
391 if (!_metadata->passed || _metadata->skip) \
699 if (_metadata->passed && _metadata->step < 253) \
745 _metadata->passed = 0; \
757 _metadata->passed = 0; \
835 int passed; member
916 t->passed = 0; in __wait_for_test()
928 t->passed = 0; in __wait_for_test()
937 t->passed in __wait_for_test()
[all...]
/kernel/linux/linux-5.10/kernel/kcsan/
H A Dselftest.c112 int passed = 0; in kcsan_selftest() local
119 ++passed; \ in kcsan_selftest()
128 pr_info("selftest: %d/%d tests passed\n", passed, total); in kcsan_selftest()
129 if (passed != total) in kcsan_selftest()
/third_party/mesa3d/src/compiler/glsl/tests/
H A Dwarnings_test.py60 passed = 0
90 passed += 1
94 print('{}/{} tests returned correct results'.format(passed, len(files)))
95 exit(0 if passed == len(files) else 1)
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/tests/
H A Dunittest.h26 int passed; member
39 ++unittest_results.passed; \
59 pr_info("end of comedi:\"%s\" unittests - %i passed, %i failed\n", name, in exec_unittests()
60 unittest_results.passed, unittest_results.failed); in exec_unittests()
/kernel/linux/linux-6.6/drivers/comedi/drivers/tests/
H A Dunittest.h25 int passed; member
38 ++unittest_results.passed; \
58 pr_info("end of comedi:\"%s\" unittests - %i passed, %i failed\n", name, in exec_unittests()
59 unittest_results.passed, unittest_results.failed); in exec_unittests()
/third_party/node/test/parallel/
H A Dtest-stream-pipe-event.js41 let passed = false;
45 passed = true;
51 assert.ok(passed);
/third_party/skia/third_party/externals/harfbuzz/test/shape/
H A Dhb_test_tools.py173 self.passed = Stat ()
179 if test.passed:
180 self.passed.add (test)
185 return float (self.passed.count) / self.total.count
188 return (float (self.passed.count) / self.total.count) * \
211 passed = 0
216 passed += 1
219 total = passed + failed
220 print ("%d out of %d tests passed. %d failed (%g%%)" % (passed, tota
[all...]
/third_party/skia/src/gpu/
H A DGrRenderTaskCluster.cpp136 for (GrRenderTask* passed = clusterHead; passed != movedHead; passed = passed->fNext) { in task_cluster_visit()
137 if (depends_on(moved, passed)) { in task_cluster_visit()
/third_party/gn/src/util/test/
H A Dgn_test.cc162 bool passed = true; in main() local
175 passed = false; in main()
179 printf("\n%s\n", passed ? "PASSED" : "FAILED"); in main()
181 return passed ? EXIT_SUCCESS : EXIT_FAILURE; in main()
/third_party/vixl/tools/
H A Dprinter.py106 # prefix [time| progress|+ passed|- failed] name
107 def UpdateProgress(start_time, passed, failed, count, skipped, known_failures,
111 progress = float(passed + failed + skipped) / max(1, count) * 100
112 passed_colour = COLOUR_GREEN if passed != 0 else ''
121 progress_string += indicator % (minutes, seconds, progress, passed, failed,

Completed in 20 milliseconds

123456789