OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dst_dir
(Results
1 - 13
of
13
) sorted by null
/external/chromium_org/chrome/test/perf/
generate_profile.h
26
const base::FilePath&
dst_dir
) WARN_UNUSED_RESULT;
generate_profile.cc
212
const base::FilePath&
dst_dir
) {
213
if (!file_util::CreateDirectory(
dst_dir
)) {
214
PLOG(ERROR) << "Unable to create directory " <<
dst_dir
.value().c_str();
258
base::FilePath dst_file =
dst_dir
.Append(path.BaseName());
/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
45
def _CompileFilter(syzygy_dir, executable, symbol,
dst_dir
, filter_file):
47
dst_dir
. Returns the absolute path of the compiled filter.
50
dst_dir
, os.path.basename(filter_file) + '.json'))
65
def _InstrumentBinary(syzygy_dir, mode, executable, symbol,
dst_dir
,
68
instrumented executable and symbol files to
dst_dir
.
77
os.path.join(
dst_dir
, os.path.basename(executable))),
79
os.path.join(
dst_dir
, os.path.basename(symbol)))]
create_installer_archive.py
119
dst_dir
= os.path.join(staging_dir, config.get(section, option))
121
if src_paths and not os.path.exists(
dst_dir
):
122
os.makedirs(
dst_dir
)
124
dst_path = os.path.join(
dst_dir
, os.path.basename(src_path))
126
shutil.copy(src_path,
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/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
159
def FindAndCopyFiles(src_files, root, search_dirs,
dst_dir
):
160
buildbot_common.MakeDir(
dst_dir
)
165
dst_file = os.path.join(
dst_dir
, src_name)
build_sdk.py
454
dst_dir
= GetOutputToolchainLib(pepperdir, tc, xarch)
455
InstallFiles(src_dir,
dst_dir
, TOOLCHAIN_LIBS[tc])
459
InstallFiles(src_dir,
dst_dir
, ['crt1.o'])
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
test_result_writer.py
271
dst_dir
= fs.dirname(fs.join(self._root_output_dir, self._test_name))
272
dst_filepath = fs.join(
dst_dir
, fs.basename(src_filepath))
Completed in 842 milliseconds