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

1 2

  /art/tools/
generate_cmake_lists.py 81 if (os.path.samefile(root, out_art_cmakelists_dir)):
  /external/python/cpython3/Lib/
genericpath.py 10 'getsize', 'isdir', 'isfile', 'samefile', 'sameopenfile',
94 def samefile(f1, f2): function
zipapp.py 191 os.path.samefile(args.source, args.output)):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
file_util.py 139 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
142 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
  /external/python/cpython2/Lib/distutils/
file_util.py 140 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
150 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
  /external/python/cpython3/Lib/distutils/
file_util.py 135 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
145 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
file_util.py 139 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
142 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
file_util.py 139 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
142 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
file_util.py 139 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
142 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
file_util.py 139 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
142 if not (os.path.exists(dst) and os.path.samefile(src, dst)):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_posixpath.py 107 posixpath.samefile(
114 # inode information and thus, that samefile() doesn't work
121 posixpath.samefile(
132 posixpath.samefile(
155 # inode information and thus, that samefile() doesn't work
340 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']
  /prebuilts/go/darwin-x86/src/path/filepath/
symlink_windows.go 162 func samefile(path1, path2 string) bool { func
171 return os.SameFile(fi1, fi2)
204 if samefile(newpath, newpath2) {
  /prebuilts/go/linux-x86/src/path/filepath/
symlink_windows.go 162 func samefile(path1, path2 string) bool { func
171 return os.SameFile(fi1, fi2)
204 if samefile(newpath, newpath2) {
  /external/python/cpython3/Lib/test/
test_genericpath.py 190 self.assertTrue(self.pathmodule.samefile(file1, file1))
193 self.assertFalse(self.pathmodule.samefile(file1, file2))
195 self.assertRaises(TypeError, self.pathmodule.samefile)
206 self.assertTrue(self.pathmodule.samefile(test_fn1, test_fn2))
210 self.assertFalse(self.pathmodule.samefile(test_fn1, test_fn2))
530 self.assertTrue(os.path.samefile(self.file_path, self.file_name))
  /external/python/cpython2/Lib/test/
test_posixpath.py 125 posixpath.samefile(
133 # reasonable inode information and thus, that samefile() doesn't
141 posixpath.samefile(
152 posixpath.samefile(
495 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_posixpath.py 117 posixpath.samefile(
125 # reasonable inode information and thus, that samefile() doesn't
133 posixpath.samefile(
144 posixpath.samefile(
415 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_posixpath.py 117 posixpath.samefile(
125 # reasonable inode information and thus, that samefile() doesn't
133 posixpath.samefile(
144 posixpath.samefile(
415 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 117 posixpath.samefile(
125 # reasonable inode information and thus, that samefile() doesn't
133 posixpath.samefile(
144 posixpath.samefile(
415 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_posixpath.py 117 posixpath.samefile(
125 # reasonable inode information and thus, that samefile() doesn't
133 posixpath.samefile(
144 posixpath.samefile(
415 attributes = ['relpath', 'samefile', 'sameopenfile', 'samestat']
  /external/python/cpython2/Lib/plat-riscos/
riscospath.py 248 # samefile works on filename comparison since there is no ST_DEV and ST_INO is
250 # pathnames, which it can do 'properly' using OS_FSControl since samefile can
253 def samefile(fa, fb): function
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_window.py 355 if not os.path.samefile(self.gtk_symlink, real_gtk_dir):
362 if not os.path.samefile(self.gtk_symlink, real_gtk_dir):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixpath.py 24 "samefile","sameopenfile","samestat",
151 def samefile(f1, f2): function
  /external/python/cpython2/Lib/
posixpath.py 25 "samefile","sameopenfile","samestat",
153 def samefile(f1, f2): function
  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixpath.py 32 "samefile","sameopenfile","samestat",
160 def samefile(f1, f2): function
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixpath.py 32 "samefile","sameopenfile","samestat",
160 def samefile(f1, f2): function

Completed in 943 milliseconds

1 2