/external/skia/infra/bots/assets/chromebook_arm_gles/ |
D | create.py | 47 shutil.copytree('/usr/include/EGL', os.path.join(include_dir, 'EGL')) 48 shutil.copytree('/usr/include/KHR', os.path.join(include_dir, 'KHR')) 49 shutil.copytree('/usr/include/GLES2', os.path.join(include_dir, 'GLES2')) 50 shutil.copytree('/usr/include/GLES3', os.path.join(include_dir, 'GLES3'))
|
/external/skia/infra/bots/assets/chromebook_x86_64_gles/ |
D | create.py | 47 shutil.copytree('/usr/include/EGL', os.path.join(include_dir, 'EGL')) 48 shutil.copytree('/usr/include/KHR', os.path.join(include_dir, 'KHR')) 49 shutil.copytree('/usr/include/GLES2', os.path.join(include_dir, 'GLES2')) 50 shutil.copytree('/usr/include/GLES3', os.path.join(include_dir, 'GLES3'))
|
/external/skqp/infra/bots/assets/chromebook_x86_64_gles/ |
D | create.py | 46 shutil.copytree('/usr/include/EGL', os.path.join(include_dir, 'EGL')) 47 shutil.copytree('/usr/include/KHR', os.path.join(include_dir, 'KHR')) 48 shutil.copytree('/usr/include/GLES2', os.path.join(include_dir, 'GLES2')) 49 shutil.copytree('/usr/include/GLES3', os.path.join(include_dir, 'GLES3'))
|
/external/skqp/infra/bots/assets/chromebook_arm_gles/ |
D | create.py | 46 shutil.copytree('/usr/include/EGL', os.path.join(include_dir, 'EGL')) 47 shutil.copytree('/usr/include/KHR', os.path.join(include_dir, 'KHR')) 48 shutil.copytree('/usr/include/GLES2', os.path.join(include_dir, 'GLES2')) 49 shutil.copytree('/usr/include/GLES3', os.path.join(include_dir, 'GLES3'))
|
/external/icu/tools/ |
D | updatecldrdata.py | 39 shutil.copytree(cldr_dir, cldr_build_dir, symlinks=True) 41 shutil.copytree(os.path.join(icu_dir, 'icu4c'), icu4c_build_dir, symlinks=True) 43 shutil.copytree(os.path.join(icu_dir, 'icu4j'), icu4j_build_dir, symlinks=True) 45 shutil.copytree(os.path.join(icu_dir, 'tools'), icu_tools_build_dir, symlinks=True) 114 shutil.copytree(src, dst)
|
/external/python/google-api-python-client/ |
D | expandsymlinks.py | 21 from shutil import copytree 52 copytree(FLAGS.source, FLAGS.dest, symlinks=True,
|
/external/python/cpython2/Doc/library/ |
D | shutil.rst | 93 :func:`copytree`\'s *ignore* argument, ignoring files and directories that 99 .. function:: copytree(src, dst, symlinks=False, ignore=None) 113 arguments the directory being visited by :func:`copytree`, and a list of its 114 contents, as returned by :func:`os.listdir`. Since :func:`copytree` is 181 operation. For :func:`copytree`, the exception argument is a list of 3-tuples 189 copytree example 192 This example is the implementation of the :func:`copytree` function, described 196 def copytree(src, dst, symlinks=False, ignore=None): 215 copytree(srcname, dstname, symlinks, ignore) 221 # catch the Error from the recursive copytree so that we can [all …]
|
/external/skqp/infra/bots/assets/armhf_sysroot/ |
D | create.py | 35 shutil.copytree('/usr/arm-linux-gnueabihf', target_dir) 36 shutil.copytree('/usr/lib/gcc-cross/arm-linux-gnueabihf/4.8.4',
|
/external/skia/infra/bots/assets/armhf_sysroot/ |
D | create.py | 36 shutil.copytree('/usr/arm-linux-gnueabihf', target_dir) 37 shutil.copytree('/usr/lib/gcc-cross/arm-linux-gnueabihf/6',
|
/external/tensorflow/tensorflow/tools/docs/ |
D | build_java_api_docs.py | 62 shutil.copytree(SOURCE_PATH, merged_source / 'java') 75 shutil.copytree(OP_SOURCE_PATH, merged_source / 'java/org/tensorflow/ops')
|
/external/python/setuptools/setuptools/command/ |
D | install_egg_info.py | 42 self.copytree, (), "Copying %s to %s" % (self.source, self.target) 49 def copytree(self): member in install_egg_info
|
/external/selinux/libselinux/src/ |
D | selinuxswig_python.i | 54 def copytree(src, dest): 56 shutil.copytree(src, dest)
|
/external/capstone/bindings/python/ |
D | setup.py | 88 shutil.copytree(os.path.join(BUILD_DIR, "arch"), os.path.join(SRC_DIR, "arch")) 89 shutil.copytree(os.path.join(BUILD_DIR, "include"), os.path.join(SRC_DIR, "include")) 121 …shutil.copytree(os.path.join(BUILD_DIR, 'include', 'capstone'), os.path.join(HEADERS_DIR, 'capston…
|
/external/python/cpython3/Doc/library/ |
D | shutil.rst | 224 :func:`copytree`\'s *ignore* argument, ignoring files and directories that 228 .. function:: copytree(src, dst, symlinks=False, ignore=None, \ 253 arguments the directory being visited by :func:`copytree`, and a list of its 254 contents, as returned by :func:`os.listdir`. Since :func:`copytree` is 269 .. audit-event:: shutil.copytree src,dst shutil.copytree 354 :func:`copytree` is called, passing it the :func:`copy_function`. The 438 operation. For :func:`copytree`, the exception argument is a list of 3-tuples 447 :func:`copy`, :func:`copy2`, :func:`copytree`, and :func:`move`) may use 467 .. _shutil-copytree-example: 469 copytree example [all …]
|
/external/python/setuptools/setuptools/ |
D | build_meta.py | 149 shutil.copytree('dist', wheel_directory) 166 shutil.copytree('dist', sdist_directory)
|
/external/python/cpython2/Lib/plat-mac/ |
D | macostools.py | 130 def copytree(src, dst, copydates=1): function 136 copytree(os.path.join(src, f), os.path.join(dst, f), copydates)
|
/external/skqp/gn/ |
D | cp.py | 21 shutil.copytree(src, dst)
|
/external/skia/gn/ |
D | cp.py | 21 shutil.copytree(src, dst)
|
/external/perfetto/gn/standalone/ |
D | cp.py | 31 shutil.copytree(src, dst)
|
/external/skqp/infra/bots/assets/android_sdk_linux/ |
D | create.py | 27 shutil.copytree(android_sdk_root, dst)
|
/external/skia/infra/bots/assets/android_sdk_linux/ |
D | create.py | 27 shutil.copytree(android_sdk_root, dst)
|
/external/oss-fuzz/infra/ |
D | test_helpers.py | 38 shutil.copytree(directory, temp_copy_path)
|
/external/skia/tools/skqp/ |
D | setup_resources | 19 shutil.copytree(os.path.join(skia, 'resources'), dst)
|
/external/skqp/tools/skqp/ |
D | setup_resources | 19 shutil.copytree(os.path.join(skia, 'resources'), dst)
|
/external/pigweed/pw_toolchain/py/pw_toolchain/ |
D | copy_with_metadata.py | 33 shutil.copytree(src, dest, symlinks=True)
|