| /third_party/python/Lib/test/test_tools/ |
| H A D | test_pindent.py | 66 broken = self.lstriplines(closed) 68 f.write(broken) 73 self.assertEqual(f.read(), broken) 77 self.assertEqual(self.pindent(broken, '-r'), indented) 82 broken = self.lstriplines(closed) 83 self.assertEqual(self.pindent(broken, '-r', '-e', '-s', '4'), closed) 271 broken = self.lstriplines(closed) 272 self.assertEqual(self.pindent(broken, '-r', '-e', '-s', '9'), closed) 287 broken = self.lstriplines(closed) 288 self.assertEqual(self.pindent(broken, ' [all...] |
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
| H A D | base_printer.py | 77 def outputBrokenLinks(self, checker, broken): 78 """Output the collection of broken links. 80 `broken` is a dictionary of entity names: usage contexts. 118 """Outputs broken links and missing includes, if desired. 124 broken = checker.getBrokenLinks() 125 if broken: 126 self.outputBrokenLinks(checker, broken)
|
| H A D | console_printer.py | 156 Includes the diagnostics, broken links (if desired), 161 broken = checker.getBrokenLinks() 162 if broken: 163 self.outputBrokenLinks(checker, broken) 169 def outputBrokenLinks(self, checker, broken): 170 """Output a table of broken links. 174 print('Missing API includes that are referenced by a linking macro: these result in broken links in the spec!') 183 for entity, uses in sorted(broken.items())),
|
| H A D | html_printer.py | 116 Includes the diagnostics, broken links (if desired), 259 def outputBrokenLinks(self, checker, broken): 260 """Output a table of broken links. 267 <p>Items here have been referenced by a linking macro, so these are all broken links in the spec!</p> 275 for entity_name, uses in sorted(broken.items()): 294 linkBackTooltip='Link broken in spec: {} not seen'.format( 310 However, as they also are not referenced by any linking macros, they aren't broken links - at worst they are undocumented entities,
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | enumAssignmentCompat4.js | 20 let broken = [ 48 var broken = [
variable
|
| H A D | typeGuardFunctionOfFormThis.js | 90 broken: boolean; 103 crate.contents.broken = true; 259 crate.contents.broken = true;
334 broken: boolean;
|
| /third_party/node/test/tick-processor/ |
| H A D | test-tick-processor-polyfill-brokenfile.js | 11 // This test will produce a broken profile log. 24 const WARN_REG_EXP = /\(node:\d+\) \[BROKEN_PROFILE_FILE] Warning: Profile file .* is broken/; 25 const WARN_DETAIL_REG_EXP = /".*tick," at the file end is broken/;
|
| /third_party/python/Lib/test/test_asyncio/ |
| H A D | test_locks.py | 13 r'(set|unset|locked|unlocked|filling|draining|resetting|broken)' 1119 self.assertIn("broken", repr(barrier)) 1120 self.assertTrue(barrier.broken) 1144 self.assertFalse(barrier.broken) 1157 self.assertFalse(barrier.broken) 1173 self.assertFalse(barrier.broken) 1195 self.assertFalse(barrier.broken) 1215 self.assertFalse(barrier.broken) 1239 self.assertFalse(barrier.broken) 1257 self.assertFalse(barrier.broken) [all...] |
| /third_party/node/lib/internal/ |
| H A D | v8_prof_polyfill.js | 113 process.emitWarning(`Profile file ${logFile} is broken`, { 115 detail: `${JSON.stringify(line)} at the file end is broken`,
|
| /third_party/musl/dist/ |
| H A D | config.mak | 20 # Uncomment to fix broken distro-patched toolchains where hash-style=gnu(only) 23 # Uncomment to fix broken distro-patched toolchains where stack-protector=on
|
| /third_party/libwebsockets/lib/system/dhcpclient/ |
| H A D | dhcpc4.c | 380 goto broken; in lws_dhcpc4_parse() 386 goto broken; in lws_dhcpc4_parse() 448 goto broken; in lws_dhcpc4_parse() 451 goto broken; in lws_dhcpc4_parse() 465 broken: in lws_dhcpc4_parse()
|
| /third_party/ltp/tools/sparse/sparse-src/validation/ |
| H A D | struct-as.c | 13 static int broken(struct hello __user *sp) in broken() function
|
| /third_party/node/test/parallel/ |
| H A D | test-timers-ordering.js | 38 assert.strictEqual(i, last_i + 1, `order is broken: ${i} != ${last_i} + 1`);
|
| /third_party/skia/tests/ |
| H A D | BlendTest.cpp | 57 // These are all temptingly close but fundamentally broken. in DEF_TEST() 58 int (*broken[])(int, int) = { in DEF_TEST() 63 for (auto multiply : broken) { REPORTER_ASSERT(r, !acceptable(test(multiply))); } in DEF_TEST()
|
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| H A D | ParseExceptionsTest.java | 262 // using a "broken" stream that will throw part-way through reading the message in verifyExceptions() 263 parseTester.parse(broken(new ByteArrayInputStream(serializedProto))); in verifyExceptions() 282 private InputStream broken(InputStream i) { in broken() method in ParseExceptionsTest 289 throw new IOException("I'm broken!"); in broken() 297 throw new IOException("I'm broken!"); in broken()
|
| /third_party/skia/third_party/externals/libpng/ |
| H A D | autogen.sh | 21 # have been broken. If (b) is required the script prompts for the correct 156 mode="broken" 218 broken)
|
| /third_party/python/Lib/asyncio/ |
| H A D | locks.py | 443 BROKEN = 'broken' 469 if not self.broken: 506 # or raise an exception if it is broken. 516 # see if the barrier is in a broken state 530 # if the barrier is reset or broken. 563 """Place the barrier into a 'broken' state. 585 def broken(self): member in Barrier 586 """Return True if the barrier is in a broken state."""
|
| /third_party/ltp/lib/ |
| H A D | tst_test.c | 69 int broken; member 194 tst_atomic_inc(&results->broken); in update_results() 883 if (results->broken) { in do_exit() 891 fprintf(stderr, "broken %d\n", results->broken); in do_exit() 928 if (a->broken != b->broken) in results_equal()
|
| /third_party/python/Tools/wasm/ |
| H A D | wasm_build.py | 261 broken = EMSDK_BROKEN_VERSION.get(version_tuple) 262 if broken is not None: 267 f"bugs, see {broken}." 421 experimental = "experimental, may be broken" 422 broken = "broken / unavailable" variable in SupportLevel 726 support_level=SupportLevel.broken, 751 # support_level=SupportLevel.broken, 793 # Don't list broken and experimental variants in help
|
| /third_party/gn/src/gn/ |
| H A D | rust_variables.cc | 75 be broken in the future.
|
| /third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/regres/ |
| H A D | main.go | 624 // TODO(b/152192800): Generating coverage data is currently broken. 1405 broken, fixed, failing, removed, changed := []string{}, []string{}, []string{}, []string{}, []string{} 1415 broken = append(broken, test) 1423 failing = append(failing, test) // Still broken 1469 if n := len(broken); n > 0 { 1470 sort.Strings(broken) 1472 list(broken) 1490 if len(broken) == 0 && len(fixed) == 0 && len(removed) == 0 && len(changed) == 0 {
|
| /third_party/python/Lib/ |
| H A D | threading.py | 636 # and a 'broken' state in which all threads get the exception. 659 self._state = 0 # 0 filling, 1 draining, -1 resetting, -2 broken 664 if self.broken: 665 return f"<{cls.__module__}.{cls.__qualname__} at {id(self):#x}: broken>" 698 # if it is broken. 703 #see if the barrier is in a broken state 723 # if the barrier is reset or broken. 755 #was broken, set it to reset state 763 """Place the barrier into a 'broken' state. 774 # a broken stat 793 def broken(self): global() member in Barrier [all...] |
| /third_party/ffmpeg/tests/fate/ |
| H A D | lavf-container.mak | 61 # The RealMedia muxer is broken.
|
| /third_party/ltp/testcases/lib/ |
| H A D | tst_test.sh | 91 broken $TST_BROK
|
| /third_party/ffmpeg/libavformat/ |
| H A D | hls.c | 128 int broken; member 1957 pls->broken = 1; in hls_read_header() 1968 c->variants[i]->playlists[0]->broken = 1; in hls_read_header() 2211 if (pls->broken) { in recheck_discard_flags()
|