Searched refs:filecmp (Results 1 – 25 of 87) sorted by relevance
1234
/external/python/cpython3/Lib/test/ |
D | test_filecmp.py | 1 import filecmp 52 self.assertTrue(filecmp.cmp(self.name, self.name), 54 self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False), 56 self.assertTrue(filecmp.cmp(self.name, self.name_same), 58 self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False), 60 self.assertTrue(filecmp.cmp(self.name, self.name_same_shallow), 64 self.assertFalse(filecmp.cmp(self.name, self.name_diff), 66 self.assertFalse(filecmp.cmp(self.name, self.dir), 68 self.assertFalse(filecmp.cmp(self.name, self.name_same_shallow, 73 first_compare = filecmp.cmp(self.name, self.name_same, shallow=False) [all …]
|
/external/python/cpython3/Doc/library/ |
D | filecmp.rst | 1 :mod:`!filecmp` --- File and Directory Comparisons 4 .. module:: filecmp 9 **Source code:** :source:`Lib/filecmp.py` 13 The :mod:`filecmp` module defines functions to compare files and directories, 17 The :mod:`filecmp` module defines the following functions: 52 :func:`filecmp.cmp`. 61 Clear the filecmp cache. This may be useful if a file is compared so quickly 77 :const:`filecmp.DEFAULT_IGNORES`. *hide* is a list of names to hide, and 81 as described for :func:`filecmp.cmp` by default using the *shallow* 202 >>> from filecmp import dircmp
|
/external/executorch/devtools/bundled_program/schema/test/ |
D | test_schema.py | 9 import filecmp 22 filecmp.cmp(
|
/external/skia/infra/bots/ |
D | test_utils.py | 12 import filecmp 59 test.assertTrue(filecmp.cmp(pathA, pathB, shallow=False)) 73 _cmp('', filecmp.dircmp(a, b))
|
/external/vulkan-validation-layers/scripts/ |
D | generate_source.py | 22 import filecmp 106 elif not filecmp.cmp(os.path.join(temp_dir, filename), 124 not filecmp.cmp(temp_filename, repo_filename, shallow=False):
|
/external/python/cpython3/Tools/freeze/ |
D | bkfile.py | 20 import filecmp 21 if filecmp.cmp(backup, file, shallow=False):
|
/external/pytorch/test/distributed/elastic/multiprocessing/errors/ |
D | error_handler_test.py | 4 import filecmp 87 self.assertTrue(filecmp.cmp(src_error_file, self.test_error_file)) 107 self.assertTrue(filecmp.cmp(src_error_file, dst_error_file))
|
/external/puffin/scripts/ |
D | test_corpus.py | 9 import filecmp 110 if not filecmp.cmp(src, tgt_file.name): 178 if not filecmp.cmp(tgt, new_tgt.name):
|
/external/pdfium/testing/tools/ |
D | generate_cas_paths.py | 9 import filecmp 75 filecmp.cmp(new_output_path, output_path, shallow=False)):
|
/external/mesa3d/src/compiler/spirv/tests/ |
D | spirv-to-c-array.py | 4 import filecmp 58 if not filecmp.cmp(generated, generated_check, shallow=False):
|
/external/clang/utils/check_cfc/ |
D | obj_diff.py | 7 import filecmp 90 return filecmp.cmp(objfilea, objfileb)
|
/external/angle/build/ |
D | action_helpers.py | 7 import filecmp 50 and filecmp.cmp(f.name, path)):
|
/external/cronet/stable/build/ |
D | action_helpers.py | 7 import filecmp 50 and filecmp.cmp(f.name, path)):
|
/external/cronet/tot/build/ |
D | action_helpers.py | 7 import filecmp 50 and filecmp.cmp(f.name, path)):
|
/external/lz4/tests/ |
D | test-lz4-versions.py | 13 import filecmp 151 if filecmp.cmp(lz4, lz4t): 176 if not filecmp.cmp(dec, test_dat):
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | tempfile_ext_unittest.py | 5 import filecmp 71 self.assertTrue(filecmp.cmp(filepath, filepath + '.bak'))
|
/external/zstd/tests/ |
D | test-zstd-versions.py | 14 import filecmp 181 if filecmp.cmp(ref_zst, compared_zst): 193 if not filecmp.cmp(file_dec, test_dat): 214 if not filecmp.cmp(file_dec, test_dat):
|
/external/brotli/python/tests/ |
D | _test_utils.py | 2 import filecmp 111 filecmp.cmp(first, second, shallow=False),
|
/external/angle/build/android/gyp/ |
D | copy_ex.py | 10 import filecmp 42 if filecmp.cmp(dest, f, shallow=False):
|
/external/perfetto/tools/ |
D | gen_c_protos | 17 import filecmp 183 if not filecmp.cmp(tmpfilename, targetfilename):
|
/external/cronet/stable/build/android/gyp/ |
D | copy_ex.py | 10 import filecmp 42 if filecmp.cmp(dest, f, shallow=False):
|
/external/cronet/tot/build/android/gyp/ |
D | copy_ex.py | 10 import filecmp 42 if filecmp.cmp(dest, f, shallow=False):
|
/external/cronet/stable/third_party/jni_zero/ |
D | common.py | 8 import filecmp 143 if not (os.path.exists(path) and filecmp.cmp(f.name, path)):
|
/external/angle/build/win/ |
D | message_compiler.py | 11 import filecmp 127 diff = filecmp.dircmp(tmp_dir, source)
|
/external/cronet/tot/third_party/jni_zero/ |
D | common.py | 8 import filecmp 143 if not (os.path.exists(path) and filecmp.cmp(f.name, path)):
|
1234