/third_party/skia/third_party/externals/libpng/contrib/visupng/ |
H A D | cexcept.h | 134 by the Try clause), and the exception is not caught by a nested 141 caught, which is significant if it has side effects, for example: 158 caught. Therefore, variables modified inside the Try block whose 170 exception must be caught, otherwise the program may crash. 199 int caught; \ 220 while (the_exception_context->caught = 0, \ 221 the_exception_context->caught); \ 224 the_exception_context->caught = 1; \ 228 if (!the_exception_context->caught || action) { } \
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_settime/speculative/ |
H A D | 4-4.c | 44 static int caught = 0; variable 51 caught++; in handler() 116 caught = 0; in main() 120 if (caught == 1) { in main() 129 if (caught >= 2) { in main() 132 printf("Caught %d < 2 signals\n", caught); in main()
|
H A D | 4-3.c | 46 static int caught = 0; variable 53 caught++; in handler() 126 if (caught == 1) { in main() 129 printf("FAIL: Caught %d signals, not 1\n", caught); in main()
|
/third_party/node/test/parallel/ |
H A D | test-repl-syntax-error-handling.js | 63 let caught; 67 caught = true; 69 assert(caught);
|
/third_party/node/test/sequential/ |
H A D | test-child-process-execsync.js | 53 let caught = false; 60 caught = true; 66 assert.ok(caught, 'execSync should throw');
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigaction/ |
H A D | 16-1.c | 48 char caught; member 107 s->caught = 1; in handler() 183 while (!s->caught) in test_sig()
|
/third_party/node/lib/ |
H A D | domain.js | 239 let caught = false; 266 // that these exceptions are caught, and thus would prevent it from 279 caught = this.emit('error', er); 289 // 1. There is a handler, caught = true 290 // 2. There is no handler, caught = false 291 // 3. It throws, caught = false 293 // If caught is false after this, then there's no need to exit() 295 caught = this.emit('error', er); 303 caught = process.domain._errorHandler(er2); 316 return caught; [all...] |
/third_party/python/Lib/test/test_importlib/ |
H A D | test_metadata_api.py | 133 with suppress_known_deprecation() as caught: 140 expected = next(iter(caught)) 152 with suppress_known_deprecation() as caught: 156 expected = next(iter(caught))
|
/third_party/rust/crates/proc-macro-error/src/ |
H A D | lib.rs | 432 let caught = catch_unwind(f); in entry_point() 454 match caught { in entry_point()
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_events.py | 446 caught = 0 449 nonlocal caught 450 caught += 1 479 test_utils.run_until(self.loop, lambda: caught) 493 caught = 0 496 nonlocal caught 497 caught += 1 505 self.assertEqual(caught, 1) 512 caught = 0 515 nonlocal caught [all...] |
/third_party/node/lib/internal/test_runner/ |
H A D | harness.js | 65 `triggered an ${eventName} event, caught by the test runner.`;
|
/third_party/python/Lib/test/ |
H A D | test__xxsubinterpreters.py | 873 with self.assertRaises(interpreters.RunFailedError) as caught: 876 self.assertEqual(str(caught.exception).split(':')[0], 879 self.assertEqual(str(caught.exception),
|
H A D | test_codecs.py | 2908 with self.assertRaisesRegex(exc_type, full_msg) as caught: 2909 yield caught 2910 self.assertIsInstance(caught.exception.__cause__, exc_type) 2911 self.assertIsNotNone(caught.exception.__cause__.__traceback__)
|
H A D | test_sys_settrace.py | 1789 with self.assertRaises(ValueError) as caught: 1792 self.assertIs(caught.exception, exception)
|
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/ |
H A D | api.js | [all...] |
/third_party/node/deps/v8/src/wasm/baseline/ |
H A D | liftoff-compiler.cc | 1243 CODE_COMMENT("load caught exception tag"); in CatchException() 1259 Label caught; in CatchException() local 1260 __ emit_cond_jump(kEqual, &caught, kI32, imm_tag, caught_tag.gp()); in CatchException() 1266 __ bind(&caught); in CatchException()
|