HomeSort by relevance Sort by last modified time
    Searched refs:dst_dir (Results 1 - 14 of 14) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_shutil.py 155 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
163 shutil.copytree(src_dir, dst_dir)
164 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
165 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
166 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
168 actual = read_data(os.path.join(dst_dir, 'test.txt'))
170 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
175 os.path.join(dst_dir, 'test.txt'),
177 os.path.join(dst_dir, 'test_dir', 'test.txt'),
182 os.path.dirname(dst_dir)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_shutil.py 155 dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
163 shutil.copytree(src_dir, dst_dir)
164 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test.txt')))
165 self.assertTrue(os.path.isdir(os.path.join(dst_dir, 'test_dir')))
166 self.assertTrue(os.path.isfile(os.path.join(dst_dir, 'test_dir',
168 actual = read_data(os.path.join(dst_dir, 'test.txt'))
170 actual = read_data(os.path.join(dst_dir, 'test_dir', 'test.txt'))
175 os.path.join(dst_dir, 'test.txt'),
177 os.path.join(dst_dir, 'test_dir', 'test.txt'),
182 os.path.dirname(dst_dir)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_file_util.py 73 dst_dir = self.mkdtemp()
74 copy_file(foo, dst_dir)
75 self.assertTrue(os.path.exists(os.path.join(dst_dir, 'foo')))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_file_util.py 73 dst_dir = self.mkdtemp()
74 copy_file(foo, dst_dir)
75 self.assertTrue(os.path.exists(os.path.join(dst_dir, 'foo')))
  /external/chromium_org/chrome/tools/build/win/
syzygy_instrument.py 60 def _InstrumentBinary(syzygy_dir, mode, executable, symbol, dst_dir,
63 instrumented executable and symbol files to dst_dir.
72 os.path.join(dst_dir, os.path.basename(executable))),
74 os.path.join(dst_dir, os.path.basename(symbol)))]
create_installer_archive.py 117 dst_dir = os.path.join(staging_dir, config.get(section, option))
119 if src_paths and not os.path.exists(dst_dir):
120 os.makedirs(dst_dir)
122 dst_path = os.path.join(dst_dir, os.path.basename(src_path))
124 shutil.copy(src_path, dst_dir)
  /external/chromium_org/third_party/skia/platform_tools/android/bin/
gyp_to_android.py 125 dst_dir = target_dir
127 dst_dir = os.path.join(SKIA_DIR, 'include', 'core')
131 require_sk_user_config=require_sk_user_config, target_dir=dst_dir,
  /external/skia/platform_tools/android/bin/
gyp_to_android.py 125 dst_dir = target_dir
127 dst_dir = os.path.join(SKIA_DIR, 'include', 'core')
131 require_sk_user_config=require_sk_user_config, target_dir=dst_dir,
  /ndk/sources/host-tools/sed-4.2.1/
autoboot 352 dst_dir=`dirname "$dst"`
353 if ! test -d "$dst_dir"; then
354 mkdir -p "$dst_dir"
359 parent=`dirname "$dst_dir"`
363 insert_sorted_if_absent $ig `echo "$dst_dir"|sed 's,.*/,,'`
424 dst_dir=`dirname "$cp_dst"`
425 test -d "$dst_dir" || mkdir -p "$dst_dir"
  /external/chromium_org/native_client_sdk/src/tools/tests/
create_nmf_test.py 110 dst_dir = os.path.dirname(name)
111 if not os.path.exists(dst_dir):
112 os.makedirs(dst_dir)
156 dst_dir = os.path.dirname(dst_nexe)
157 if not os.path.exists(dst_dir):
158 os.makedirs(dst_dir)
  /external/chromium_org/remoting/host/installer/
build-installer-archive.py 117 dst_dir = os.path.dirname(dst_file)
118 if not os.path.exists(dst_dir):
119 os.makedirs(dst_dir, 0775)
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 169 def FindAndCopyFiles(src_files, root, search_dirs, dst_dir):
170 buildbot_common.MakeDir(dst_dir)
175 dst_file = os.path.join(dst_dir, src_name)
build_sdk.py 430 dst_dir = GetOutputToolchainLib(pepperdir, tc, xarch)
431 InstallFiles(src_dir, dst_dir, TOOLCHAIN_LIBS[tc])
440 InstallFiles(src_dir, dst_dir, ['crt1.o'])
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
test_result_writer.py 290 dst_dir = fs.dirname(fs.join(self._root_output_dir, self._test_name))
291 dst_filepath = fs.join(dst_dir, fs.basename(src_filepath))

Completed in 573 milliseconds