HomeSort by relevance Sort by last modified time
    Searched defs:copytree (Results 1 - 10 of 10) sorted by null

  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
macostools.py 130 def copytree(src, dst, copydates=1): function
136 copytree(os.path.join(src, f), os.path.join(dst, f), copydates)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macostools.py 130 def copytree(src, dst, copydates=1): function
136 copytree(os.path.join(src, f), os.path.join(dst, f), copydates)
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
fake_filesystem_shutil.py 33 >>> shutil_module.copytree('/src', '/dst')
165 def copytree(self, src, dst, symlinks=False): member in class:FakeShutilModule
190 self.copytree(srcname, dstname, symlinks)
202 self.copytree(src, dst, symlinks=True)
  /external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/
fake_filesystem_shutil.py 33 >>> shutil_module.copytree('/src', '/dst')
165 def copytree(self, src, dst, symlinks=False): member in class:FakeShutilModule
190 self.copytree(srcname, dstname, symlinks)
202 self.copytree(src, dst, symlinks=True)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
298 copytree(src, real_dst, symlinks=True)
  /prebuilts/gdb/linux-x86/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
298 copytree(src, real_dst, symlinks=True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
298 copytree(src, real_dst, symlinks=True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shutil.py 26 "copytree", "move", "rmtree", "Error", "SpecialFileError",
134 """Function that can be used as copytree() ignore parameter.
145 def copytree(src, dst, symlinks=False, ignore=None): function
158 being visited by copytree(), and `names` which is the list of
163 Since copytree() is called recursively, the callable will be
189 copytree(srcname, dstname, symlinks, ignore)
193 # catch the Error from the recursive copytree so that we can
298 copytree(src, real_dst, symlinks=True)
  /external/skia/tools/skp/
webpages_playback.py 520 def copytree(source_dir, dest_dir): function in function:LocalFileSystemDataStore.upload_dir_contents
527 copytree(source, dest)
530 copytree(source_dir, os.path.join(self._base_dir, dest_dir))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/selinux/
__init__.py 112 def copytree(src, dest): function
113 """ An SELinux-friendly shutil.copytree method """
114 shutil.copytree(src, dest)
    [all...]

Completed in 3272 milliseconds