Home
last modified time | relevance | path

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

1234567

/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...]
/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))
H A Drun-unittests.py62 passed = 0
69 passed += 1
79 util.print_test_summary(os.path.join(os.path.relpath(args.path), "unit-*"), total, passed, failed)
/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/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) {
/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()
/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/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)
H A Dlower_precision_test.py2304 passed = 0
2313 passed += 1
2317 print('{}/{} tests returned correct results'.format(passed, len(TESTS)))
2318 sys.exit(0 if passed == len(TESTS) else 1)
/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/node/test/parallel/
H A Dtest-stream-pipe-event.js41 let passed = false;
45 passed = true;
51 assert.ok(passed);
/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,
/third_party/pulseaudio/sonic/
H A Dwave.c294 int passed = 1; in closeWaveFile() local
299 passed = 0; in closeWaveFile()
305 passed = 0; in closeWaveFile()
309 passed = 0; in closeWaveFile()
315 passed = 0; in closeWaveFile()
321 return passed; in closeWaveFile()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libEGL/
H A DConfig.cpp346 vector<const Config*> passed;
347 passed.reserve(mSet.size());
431 passed.push_back(&*config);
437 sort(passed.begin(), passed.end(), SortConfig(attribList));
440 for(index = 0; index < configSize && index < static_cast<EGLint>(passed.size()); index++)
442 configs[index] = passed[index]->getHandle();
449 *numConfig = static_cast<EGLint>(passed.size());
/third_party/rust/crates/syn/tests/
H A Dtest_precedence.rs70 let passed = AtomicUsize::new(0); in test_rustc_precedence()
82 "=== {}: {} passed | {} failed\n", in test_rustc_precedence()
95 passed.fetch_add(l_passed, Ordering::Relaxed); in test_rustc_precedence()
103 let passed = passed.load(Ordering::Relaxed); in test_rustc_precedence()
107 errorf!("{} passed | {} failed\n", passed, failed); in test_rustc_precedence()
115 let mut passed = 0; in test_expressions() variables
178 passed += 1; in test_expressions()
182 (passed, faile in test_expressions()
[all...]
/third_party/node/test/fixtures/wpt/resources/
H A Dcheck-layout-th.js221 var passed = false;
225 passed = true;
227 if (!passed && highlightError) {
237 checkedLayout |= !passed;
/third_party/python/Lib/test/
H A Dtest_threading_local.py82 passed = False
87 nonlocal passed
101 passed = all(not hasattr(local, 'foo') for local in locals)
114 self.assertTrue(passed)
145 self._failed = "" # passed
/third_party/gn/src/gn/
H A Drust_variables.cc100 "rustflags: [string list] Flags passed to the Rust compiler.";
102 R"(rustflags: Flags passed to the Rust compiler.
106 "rustflags" are passed to all invocations of the Rust compiler.
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/
H A DSerializableChecker.java120 boolean passed = true; in visit()
152 passed = false; in visit()
157 if (passed) { in visit()
158 System.out.print("test passed."); in visit()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
H A DSerializableChecker.java117 boolean passed = true; in visit()
149 passed = false; in visit()
154 if (passed) { in visit()
155 System.out.print("test passed."); in visit()
/third_party/mesa3d/src/gallium/tests/unit/
H A Dtranslate_test.c66 unsigned passed = 0; in main() local
317 ++passed; in main()
326 printf("%u/%u tests passed for translate_%s\n", passed, total, argv[1]); in main()
327 return passed != total; in main()

Completed in 14 milliseconds

1234567