/third_party/rust/crates/clap/tests/builder/ |
H A D | ignore_errors.rs | 5 let cmd = Command::new("cmd").ignore_errors(true).arg(arg!( in single_short_arg_without_value() 18 let cmd = Command::new("cmd").ignore_errors(true).arg(arg!( in single_long_arg_without_value() 32 .ignore_errors(true) in multiple_args_and_final_arg_without_value() 58 .ignore_errors(true) in multiple_args_and_intermittent_arg_without_value() 85 .ignore_errors(true) in subcommand()
|
H A D | main.rs | 31 mod ignore_errors; modules
|
/third_party/python/Lib/ |
H A D | tempfile.py | 875 ignore_errors=self._ignore_cleanup_errors) 878 def _rmtree(cls, name, ignore_errors=False): 890 cls._rmtree(path, ignore_errors=ignore_errors) 896 if not ignore_errors: 902 def _cleanup(cls, name, warn_message, ignore_errors=False): 903 cls._rmtree(name, ignore_errors=ignore_errors) 917 self._rmtree(self.name, ignore_errors=self._ignore_cleanup_errors)
|
H A D | codecs.py | 30 "strict_errors", "ignore_errors", "replace_errors", 1099 ignore_errors = lookup_error("ignore") variable 1107 ignore_errors = None variable
|
H A D | shutil.py | 690 def rmtree(path, ignore_errors=False, onerror=None, *, dir_fd=None): 698 If ignore_errors is set, errors are ignored; otherwise, if onerror 702 exc_info is a tuple returned by sys.exc_info(). If ignore_errors 707 if ignore_errors:
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
H A D | tokenize.py | 132 ignore_errors = False 222 ignore_errors = False 245 ignore_errors = True 252 elif ignore_errors:
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/text-rendering-tests/ |
H A D | update.py | 76 shutil.rmtree ('fonts', ignore_errors=True) 81 shutil.rmtree ('tests', ignore_errors=True)
|
/third_party/vk-gl-cts/external/ |
H A D | fetch_sources.py | 63 shutil.rmtree(fullDstPath, ignore_errors=False) 90 shutil.rmtree(archiveDir, ignore_errors=False) 160 shutil.rmtree(tmpPath, ignore_errors=False) 182 shutil.rmtree(tmpPath, ignore_errors=True)
|
/third_party/vk-gl-cts/scripts/ |
H A D | make_release.py | 265 shutil.rmtree(os.path.join(packageBuildInfo.dstBasePath, "src"), ignore_errors=False) 346 shutil.rmtree(path, ignore_errors=False) 355 shutil.rmtree(os.path.join(dstBasePath, "src"), ignore_errors=False) 366 shutil.rmtree(path, ignore_errors=False)
|
/third_party/python/Lib/test/ |
H A D | test_codeccallbacks.py | 434 codecs.ignore_errors, 440 codecs.ignore_errors, 445 codecs.ignore_errors( 450 codecs.ignore_errors( 455 codecs.ignore_errors( 784 self.assertEqual(codecs.ignore_errors, codecs.lookup_error("ignore")) 1217 codecs.ignore_errors,
|
H A D | test_reprlib.py | 238 shutil.rmtree(self.pkgname, ignore_errors=True) 241 shutil.rmtree(self.subpkgname, ignore_errors=True)
|
H A D | test_shutil.py | 285 # test that ignore_errors option is honored 286 shutil.rmtree(filename, ignore_errors=True) 296 # test that ignore_errors option is honored 297 shutil.rmtree(filename, ignore_errors=True) 450 shutil.rmtree(dst, ignore_errors=True) 452 shutil.rmtree(TESTFN, ignore_errors=True) 464 shutil.rmtree(dst, ignore_errors=True) 466 shutil.rmtree(TESTFN, ignore_errors=True) 737 shutil.rmtree(TESTFN, ignore_errors=True) 738 shutil.rmtree(TESTFN2, ignore_errors [all...] |
H A D | test_string_literals.py | 73 shutil.rmtree(self.tmpdir, ignore_errors=True)
|
H A D | test_multibytecodec.py | 55 codecs.register_error("test.ignore", codecs.ignore_errors)
|
/third_party/mesa3d/ohos/ |
H A D | build_mesa3d.py | 83 shutil.rmtree(mesa3d_install_dir, ignore_errors=True)
|
/third_party/vk-gl-cts/external/openglcts/scripts/ |
H A D | verify_kc_cts_rev.py | 49 shutil.rmtree(fullDstPath, ignore_errors=False)
|
/third_party/googletest/googletest/test/ |
H A D | gtest_test_utils.py | 133 shutil.rmtree(_temp_dir, ignore_errors=True)
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | environment.py | 691 ignore_errors=True, 706 syntax errors to abort the compilation you can set `ignore_errors` 774 if not ignore_errors:
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | environment.py | 640 ignore_errors=True, py_compile=False): 653 syntax errors to abort the compilation you can set `ignore_errors` 711 if not ignore_errors:
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | environment.py | 691 ignore_errors=True, 706 syntax errors to abort the compilation you can set `ignore_errors` 774 if not ignore_errors:
|
/third_party/node/src/ |
H A D | node_credentials.cc | 93 TryCatch ignore_errors(isolate); in SafeGetenv()
|
/third_party/jinja2/ |
H A D | environment.py | 822 ignore_errors: bool = True, 836 syntax errors to abort the compilation you can set `ignore_errors` 878 if not ignore_errors:
|
/third_party/python/Python/ |
H A D | codecs.c | 1369 static PyObject *ignore_errors(PyObject *self, PyObject *exc) in ignore_errors() function 1427 "ignore_errors", in _PyCodecRegistry_Init() 1428 ignore_errors, in _PyCodecRegistry_Init()
|
/third_party/node/deps/v8/tools/mb/ |
H A D | mb.py | 1216 shutil.rmtree(abs_path, ignore_errors=True)
|
/third_party/rust/crates/clap/src/builder/ |
H A D | command.rs | 956 /// .ignore_errors(true) 970 pub fn ignore_errors(self, yes: bool) -> Self { in ignore_errors() functions 3565 /// Report whether [`Command::ignore_errors`] is set
|