/third_party/rust/crates/regex/regex-capi/ctest/ |
D | test.c | 14 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 = false; in test_find() [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/gles31/ |
D | es31cLayoutBindingTests.cpp | 221 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 notRunforThisCon… in LayoutBindingTestResult() argument 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 = true; in drawTestCompute() local [all …]
|
/third_party/rust/crates/libc/ci/ |
D | run.sh | 90 passed=0 93 if [ "$passed" = "0" ]; then 95 passed=$((passed+1)) 98 elif [ "$passed" = "1" ]; then 100 passed=$((passed+1)) 103 elif [ "$passed" = "2" ]; then
|
/third_party/jerryscript/tools/runners/ |
D | run-test-suite.py | 117 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 += 1 [all …]
|
D | util.py | 48 def print_test_summary(summary_string, total, passed, failed): argument 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/mesa3d/src/compiler/glsl/glcpp/tests/ |
D | glcpp_test.py | 93 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/parallel/ |
D | test-worker-stdio.js | 27 const passed = new BufferingWritable(); constant 33 w.stdout.pipe(passed); 35 passed.on('finish', common.mustCall(() => { 36 assert.strictEqual(original.buffer.compare(passed.buffer), 0, 38 `Actual: ${util.inspect(passed.buffer)}`);
|
D | test-stream-big-packet.js | 27 let passed = false; variable 31 if (!passed) { 33 passed = chunk.toString().includes('a'); 64 assert(passed, 'Large buffer is not handled properly by Writable Stream');
|
D | test-stream-pipe-event.js | 41 let passed = false; variable 45 passed = true; 51 assert.ok(passed);
|
/third_party/googletest/googletest/test/ |
D | googletest-test-part-test.cc | 79 EXPECT_TRUE(success.passed()); in TEST_F() 89 EXPECT_FALSE(nonfatal_failure.passed()); in TEST_F() 99 EXPECT_FALSE(fatal_failure.passed()); in TEST_F() 106 EXPECT_FALSE(skip.passed()); in TEST_F() 143 EXPECT_TRUE(r1_.passed()); in TEST_F() 144 EXPECT_FALSE(r2_.passed()); in TEST_F() 145 EXPECT_FALSE(r3_.passed()); in TEST_F() 146 EXPECT_FALSE(r4_.passed()); in TEST_F()
|
/third_party/json/doc/mkdocs/docs/features/parsing/ |
D | sax_interface.md | 33 // called when a boolean is parsed; value is passed 36 // called when a signed or unsigned integer number is parsed; value is passed 40 // called when a floating-point number is parsed; value and original string is passed 43 // called when a string is parsed; value is passed and can be safely moved away 45 // called when a binary value is parsed; value is passed and can be safely moved away 48 // called when an object or array begins or ends, resp. The number of elements is passed (or -1 if … 53 // called when an object key is parsed; value is passed and can be safely moved away 56 // called when a parse error occurs; byte position, the last token, and an exception is passed 68 … of a parse error - it is up to you what to do with the exception object passed to your `parse_err…
|
/third_party/typescript/tests/baselines/reference/ |
D | noImplicitReturnsInAsync1.types | 14 let x = await Promise.resolve("The test is passed without an error."); 16 >await Promise.resolve("The test is passed without an error.") : string 17 >Promise.resolve("The test is passed without an error.") : Promise<string> 21 >"The test is passed without an error." : "The test is passed without an error."
|
/third_party/ltp/doc/ |
D | shell-test-api.txt | 85 tst_res TPASS "Test $1 passed" 90 tst_res TPASS "Test $1 passed" 95 # foo 1 TPASS: Test 1 passed 96 # foo 2 TPASS: Test 2 passed 101 found they are executed one by one. The test number is passed to it in the '$1'. 116 1) tst_res TPASS "Test $1 passed";; 117 2) tst_res TPASS "Test $1 passed";; 123 # foo 1 TPASS: Test 1 passed 124 # foo 2 TPASS: Test 2 passed 128 the '$TST_TESTFUNC' is executed '$TST_CNT' times and the test number is passed [all …]
|
/third_party/jerryscript/tests/unit-libm/ |
D | test-libm.c | 25 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/vk-gl-cts/external/openglcts/docs/specs/ |
D | CTS_ARB_shader_group_vote.txt | 67 * Test new built-in function allInvocationsARB. Condition passed 71 * Test new built-in function allInvocationsARB. Condition passed 77 * Test new built-in function anyInvocationARB. Condition passed 81 * Test new build-in function anyInvocationARB. Condition passed 88 passed as a parameter should diverge between invocations. 92 passed as a parameter should be true for all invocations. 96 passed as a parameter should be false for all invocations.
|
/third_party/openssl/doc/man7/ |
D | provider-object.pod | 24 An object may be passed in the following manners: 32 This means that the I<object data> is passed as an octet string or an UTF8 47 This means that the I<object data> isn't passed directly, an I<object 48 reference> is passed instead. It's an octet string that only the correct 99 The object data I<passed by value>. 103 The object data I<passed by reference>. 114 The object data may only be I<passed by value>, and should be a UTF8 123 object data may be I<passed by value> or I<passed by reference>. 128 object type can only be I<passed by value>, and should be an octet string. 137 only be I<passed by value>, and should be an octet string. [all …]
|
/third_party/flutter/flutter/packages/flutter_test/test/ |
D | accessibility_test.dart | 124 expect(result.passed, false); 150 expect(result.passed, true); 176 expect(result.passed, true); 257 expect(result.passed, false); 289 expect(overlappingTopResult.passed, true); 306 expect(overlappingLeftResult.passed, true); 322 expect(overlappingBottomResult.passed, true); 338 expect(overlappingRightResult.passed, true); 364 expect(overlappingRightResult.passed, true); 379 expect(result.passed, true); [all …]
|
/third_party/mesa3d/src/compiler/glsl/tests/ |
D | warnings_test.py | 60 passed = 0 90 passed += 1 94 print('{}/{} tests returned correct results'.format(passed, len(files))) 95 exit(0 if passed == len(files) else 1)
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/ |
D | hb_test_tools.py | 173 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, total, failed, 100. * failed / to… 227 self.passed = True [all …]
|
/third_party/harfbuzz/test/shaping/ |
D | hb_test_tools.py | 173 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, total, failed, 100. * failed / to… 227 self.passed = True [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86CallingConv.td | 507 // The 'nest' parameter, if any, is passed in R10. 514 // A SwiftError is passed in R12. 521 // The first 6 integer arguments are passed in integer registers. 525 // The first 8 MMX vector arguments are passed in XMM registers on Darwin. 531 // Boolean vectors of AVX-512 are passed in SIMD registers. 541 // The first 8 FP/Vector arguments are passed in XMM registers. 546 // The first 8 256-bit vector arguments are passed in YMM registers, unless 549 // fixed arguments to vararg functions are supposed to be passed in 556 // The first 8 512-bit vector arguments are passed in ZMM registers. 602 // Byval aggregates are passed by pointer [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcCallingConv.td | 20 // i32 f32 arguments get passed in integer registers if there is space. 22 // f64 arguments are split and passed through registers or through stack. 59 // Structs up to 16 bytes in size are passed by value. They are right-aligned 62 // struct containing two floats would thus be passed in %f0 and %f1, while two 63 // float function arguments would occupy 8 bytes each, and be passed in %f1 and 66 // When a struct { int, float } is passed by value, the int goes in the high 107 // Function return values are passed exactly like function arguments, except a 121 // arguments whether they are passed in registers or not. 130 // Otherwise, return values are passed exactly like arguments.
|
/third_party/skia/src/gpu/ |
D | GrRenderTaskCluster.cpp | 136 for (GrRenderTask* passed = clusterHead; passed != movedHead; passed = passed->fNext) { in task_cluster_visit() local 137 if (depends_on(moved, passed)) { in task_cluster_visit()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/ |
D | hb_test_tools.py | 252 self.passed = Stat () 258 if test.passed: 259 self.passed.add (test) 264 return float (self.passed.count) / self.total.count 267 return (float (self.passed.count) / self.total.count) * \ 290 passed = 0 295 passed += 1 298 total = passed + failed 299 …print ("%d out of %d tests passed. %d failed (%g%%)" % (passed, total, failed, 100. * failed / to… 306 self.passed = True [all …]
|
/third_party/flutter/flutter/dev/devicelab/bin/tasks/ |
D | uncaught_image_error_linux.dart | 22 bool passed = false; 43 passed = true; 47 passed = false; 51 if (passed) {
|