HomeSort by relevance Sort by last modified time
    Searched refs:filecmp (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/skia/platform_tools/android/tests/
utils.py 11 import filecmp namespace
36 assert_true(filecmp.cmp(actual_name, full_expectations_path), msg)
  /external/skia/platform_tools/android/tests/
utils.py 11 import filecmp namespace
36 assert_true(filecmp.cmp(actual_name, full_expectations_path), msg)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_filecmp.py 2 import os, filecmp, shutil, tempfile namespace
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...]
regrtest.py 1054 import struct, filecmp namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_filecmp.py 2 import os, filecmp, shutil, tempfile namespace
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...]
  /external/chromium_org/tools/gyp/test/win/win-tool/
gyptest-win-tool-handles-readonly-files.py 13 import filecmp namespace
52 if not filecmp.cmp(f, test.built_file_path(os.path.join('dest', f))):
  /external/chromium_org/third_party/mesa/src/src/mesa/
SConscript 6 import filecmp
474 if not os.path.exists(filename) or not filecmp.cmp(tempfile, filename):
  /external/mesa3d/src/mesa/
SConscript 6 import filecmp
474 if not os.path.exists(filename) or not filecmp.cmp(tempfile, filename):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
main.py 26 import filecmp namespace
159 if not filecmp.cmp(reference_filename, output_filename):
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
base_unittest.py 13 import filecmp namespace
113 dircmp = filecmp.dircmp(dir1, dir2, ignore=ignore_subtree_names)
  /external/chromium_org/third_party/skia/tools/tests/
skimage_self_test.py 8 import filecmp namespace
37 if not filecmp.cmp(expected, actual):
  /external/owasp/sanitizer/tools/
update_tree_in_svn.py 8 import filecmp namespace
77 if not filecmp.cmp(src, dst, shallow=0): copy(src, dst)
  /external/skia/gm/rebaseline_server/
base_unittest.py 13 import filecmp namespace
113 dircmp = filecmp.dircmp(dir1, dir2, ignore=ignore_subtree_names)
  /external/skia/tools/tests/
skimage_self_test.py 8 import filecmp namespace
37 if not filecmp.cmp(expected, actual):
  /frameworks/compile/slang/tests/
test.py 10 import filecmp namespace
40 return filecmp.cmp(actual, expect, False)
  /external/chromium_org/third_party/skia/experimental/benchtools/
rebase.py 20 import filecmp namespace
104 filecmp.cmp(repo_file, os.path.join(exp_dir, exp_filename))):
191 if not filecmp.cmp(__file__, file_in_repo):
greenify.py 21 import filecmp namespace
174 if not filecmp.cmp(__file__, file_in_repo):
  /external/skia/experimental/benchtools/
rebase.py 20 import filecmp namespace
104 filecmp.cmp(repo_file, os.path.join(exp_dir, exp_filename))):
191 if not filecmp.cmp(__file__, file_in_repo):
greenify.py 21 import filecmp namespace
174 if not filecmp.cmp(__file__, file_in_repo):
  /external/chromium_org/mojo/tools/
check_mojom_golden_files.py 9 from filecmp import dircmp
  /frameworks/base/packages/Keyguard/scripts/
new_merge.py 6 import filecmp namespace
73 if (filecmp.cmp(TEMP_FILE1, TEMP_FILE2)):
  /bionic/libc/tools/
gensyscalls.py 8 import filecmp namespace
510 elif not filecmp.cmp(bionic_temp + stub, bionic_libc_root + stub):
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 9 import filecmp namespace
358 same = filecmp.cmp(self.tmp_path, filename, False)
  /external/chromium_org/tools/grit/grit/tool/
build.py 10 import filecmp namespace
300 #files_match = filecmp.cmp(output.GetOutputFilename(),
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
xcode.py 5 import filecmp namespace
450 same = filecmp.cmp(pbxproj_path, new_pbxproj_path, False)
    [all...]

Completed in 730 milliseconds

1 2