Searched refs:filecmp (Results 1 – 25 of 26) sorted by relevance
12
/external/python/cpython2/Lib/test/ |
D | test_filecmp.py | 2 import os, filecmp, shutil, tempfile 28 self.assertTrue(filecmp.cmp(self.name, self.name_same), 30 self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False), 32 self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False), 34 self.assertTrue(filecmp.cmp(self.name, self.name), 38 self.assertFalse(filecmp.cmp(self.name, self.name_diff), 40 self.assertFalse(filecmp.cmp(self.name, self.dir), 72 self.assertTrue(filecmp.cmpfiles(self.dir, self.dir, ['file']) == 75 self.assertTrue(filecmp.cmpfiles(self.dir, self.dir_same, ['file']) == 80 self.assertTrue(filecmp.cmpfiles(self.dir, self.dir, ['file'], [all …]
|
D | regrtest.py | 1195 filecmp = sys.modules['filecmp'] 1199 filecmp._cache.clear()
|
/external/python/cpython2/Doc/library/ |
D | filecmp.rst | 1 :mod:`filecmp` --- File and Directory Comparisons 4 .. module:: filecmp 8 **Source code:** :source:`Lib/filecmp.py` 12 The :mod:`filecmp` module defines functions to compare files and directories, 16 The :mod:`filecmp` module defines the following functions: 47 :func:`filecmp.cmp`. 56 >>> import filecmp 57 >>> filecmp.cmp('undoc.rst', 'undoc.rst') # doctest: +SKIP 59 >>> filecmp.cmp('undoc.rst', 'index.rst') # doctest: +SKIP 79 as described for :func:`filecmp.cmp`. [all …]
|
D | filesys.rst | 20 filecmp.rst
|
D | difflib.rst | 20 diffs. For comparing directories and files, see also, the :mod:`filecmp` module.
|
/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))
|
D | zip_utils_test.py | 12 import filecmp
|
/external/autotest/server/site_tests/brillo_ADBFileTransfer/ |
D | brillo_ADBFileTransfer.py | 5 import filecmp 48 if not filecmp.cmp(self.temp_file.name,
|
/external/lz4/tests/ |
D | test-lz4-versions.py | 12 import filecmp 121 if filecmp.cmp(lz4, lz4t): 146 if not filecmp.cmp(dec, test_dat):
|
/external/autotest/server/site_tests/brillo_ADBDirectoryTransfer/ |
D | brillo_ADBDirectoryTransfer.py | 5 import filecmp 62 if not filecmp.cmp(original, returned, shallow=False):
|
/external/python/cpython2/Tools/freeze/ |
D | bkfile.py | 38 import filecmp 39 if filecmp.cmp(self.__backup, self.__filename, shallow = 0):
|
/external/clang/utils/check_cfc/ |
D | obj_diff.py | 7 import filecmp 90 return filecmp.cmp(objfilea, objfileb)
|
/external/brotli/python/tests/ |
D | _test_utils.py | 2 import filecmp 109 filecmp.cmp(first, second, shallow=False),
|
/external/owasp/sanitizer/tools/ |
D | update_tree_in_svn.py | 8 import filecmp 77 if not filecmp.cmp(src, dst, shallow=0): copy(src, dst)
|
/external/ltp/testcases/kernel/io/direct_io/ |
D | diotest_routines.h | 4 extern int filecmp(char *f1, char *f2);
|
D | diotest1.c | 157 if (filecmp(infile, outfile) != 0) { in main()
|
D | diotest_routines.c | 111 int filecmp(char *f1, char *f2) in filecmp() function
|
/external/mesa3d/src/ |
D | SConscript | 1 import filecmp 46 if not os.path.exists(filename) or not filecmp.cmp(tempfile, filename):
|
/external/llvm/utils/abtest/ |
D | abtest.py | 45 import filecmp 157 if filecmp.cmp(goodfile, badfile):
|
/external/toolchain-utils/ |
D | image_chromeos.py | 14 import filecmp 299 if filecmp.cmp(potential_image, image):
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | main.py | 2 import filecmp 430 elif filecmp.cmp(output_path, output_path+'.new'):
|
/external/python/cpython2/Misc/ |
D | maintainers.rst | 109 filecmp
|
D | cheatsheet | 1881 filecmp File comparison.
|
D | NEWS | 4179 - Issue #15250: Document that filecmp.dircmp compares files shallowly. Patch 4608 - Issue #11802: The cache in filecmp now has a maximum size of 100 so that 9377 - Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread. 9430 filecmp, fileinput, inspect, logging, modulefinder, pdb, pickle, profile,
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.0.rst | 1089 * :mod:`filecmp`: Supersedes the old :mod:`cmp`, :mod:`cmpcache` and
|
12