/third_party/gettext/gettext-tools/misc/ |
D | autopoint.in | 470 work_dir=tmpwrk$$ 471 mkdir "$work_dir" || { 472 if test -d "$work_dir"; then 473 func_fatal_error "directory $work_dir already exists" 475 func_fatal_error "cannot create directory $work_dir" 497 | (cd "$work_dir" && tar xf - "gettext-$ver") 498 if test `find "$work_dir" -type f -print | wc -l` = 0; then 499 rm -rf "$work_dir" 502 mv "$work_dir/gettext-$ver" "$work_dir/archive" 600 cd "$work_dir" [all …]
|
D | convert-archive.in | 110 work_dir=tmpwrk$$ 111 mkdir "$work_dir" || { 112 if test -d "$work_dir"; then 113 func_fatal_error "directory $work_dir already exists" 115 func_fatal_error "cannot create directory $work_dir" 184 (cd "$work_dir" 191 mv "$work_dir"/archive "$unpacked/$version" 195 rm -rf "$work_dir" 201 work_dir=tmpwrk$$ 202 mkdir "$work_dir" || { [all …]
|
D | add-to-archive | 52 work_dir=tmpwrk$$ 53 mkdir "$work_dir" 54 mkdir "$work_dir/archive" 55 work_archive=`pwd`/"$work_dir/archive" 89 rm -rf "$work_dir"
|
/third_party/mindspore/tests/perf_test/mind_expression_perf/ |
D | run.sh | 22 work_dir="/opt/npu/me_monitor" 23 me_report_path=$work_dir/logs/ME_report_daily.xlsx 25 log_path=$work_dir/logs/$log_dir 48 log_path=$work_dir/logs/$log_dir 60 cd $work_dir 78 cd $work_dir/mindspore 85 cd $work_dir 97 bash $work_dir/faceReidToMe/dist_env/env_26/dist_env_26.sh 101 cd $work_dir 106 cd $work_dir [all …]
|
/third_party/jsoncpp/devtools/ |
D | batchbuild.py | 56 def __init__(self, desc, work_dir, source_dir): argument 58 self.work_dir = work_dir 60 self.cmake_log_path = os.path.join(work_dir, 'batchbuild_cmake.log') 61 self.build_log_path = os.path.join(work_dir, 'batchbuild_build.log') 82 cmd = ['cmake', '--build', self.work_dir] 90 …rocess = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=self.work_dir, 100 if os.path.isdir(self.work_dir): 101 print(' Removing work directory', self.work_dir) 102 shutil.rmtree(self.work_dir, ignore_errors=True) 103 if not os.path.isdir(self.work_dir): [all …]
|
/third_party/boost/tools/build/src/engine/ |
D | startup.cpp | 165 std::string work_dir{b2::paths::normalize(b2::cwd_str()) + "/"}; in bootstrap() local 166 while (b2_file_path.empty() && !work_dir.empty()) in bootstrap() 168 if (b2::filesys::is_file(work_dir + boost_build_jam)) in bootstrap() 169 b2_file_path = work_dir + boost_build_jam; in bootstrap() 170 else if (work_dir.length() == 1 && work_dir[0] == '/') in bootstrap() 171 work_dir.clear(); in bootstrap() 174 auto parent_pos = work_dir.rfind('/', work_dir.length() - 2); in bootstrap() 176 work_dir.erase(parent_pos + 1); in bootstrap() 178 work_dir.clear(); in bootstrap()
|
/third_party/skia/tools/android/ |
D | upload_to_android.py | 57 def init_work_dir(work_dir): argument 58 if not os.path.isdir(work_dir): 59 print('Creating %s' % work_dir) 60 os.makedirs(work_dir) 63 repo_dir = os.path.join(work_dir, 'bin') 79 android_dir = os.path.join(work_dir, 'android-repo') 207 def upload_to_android(work_dir, modifier): argument 208 repo_binary = init_work_dir(work_dir) 240 upload_to_android(args.work_dir, FetchModifier(args.change_num, args.debug))
|
/third_party/flutter/skia/tools/android/ |
D | upload_to_android.py | 55 def init_work_dir(work_dir): argument 56 if not os.path.isdir(work_dir): 57 print 'Creating %s' % work_dir 58 os.makedirs(work_dir) 61 repo_dir = os.path.join(work_dir, 'bin') 77 android_dir = os.path.join(work_dir, 'android-repo') 205 def upload_to_android(work_dir, modifier): argument 206 repo_binary = init_work_dir(work_dir) 238 upload_to_android(args.work_dir, FetchModifier(args.change_num, args.debug))
|
/third_party/python/Lib/test/ |
D | test_cmd_line_script.py | 672 with os_helper.temp_dir() as work_dir, os_helper.temp_dir() as script_dir: 676 p = spawn_python("-Es", script_name, cwd=work_dir) 679 self.assertNotIn(work_dir, out_by_name) 681 p = spawn_python("-Es", script_dir, cwd=work_dir) 685 p = spawn_python("-I", script_dir, cwd=work_dir) 704 with os_helper.temp_dir() as work_dir: 705 script_dir = os.path.join(work_dir, "script_pkg") 711 p = spawn_python("-sm", "script_pkg.__main__", cwd=work_dir) 713 self.assertEqual(out_by_module[0], work_dir) 716 p = spawn_python("-sm", "script_pkg", cwd=work_dir) [all …]
|
D | test_shutil.py | 1316 work_dir = os.path.dirname(tmpdir2) 1319 with os_helper.change_cwd(work_dir): 1333 with os_helper.change_cwd(work_dir): 1405 work_dir = os.path.dirname(tmpdir2) 1408 with os_helper.change_cwd(work_dir): 1421 with os_helper.change_cwd(work_dir):
|
/third_party/wayland_standard/protocol/ |
D | generate-shm-formats.py | 77 with tempfile.TemporaryDirectory() as work_dir: 78 c_file_name = work_dir + "/print-formats.c" 79 exe_file_name = work_dir + "/print-formats"
|
/third_party/mindspore/mindspore/lite/micro/coder/utils/ |
D | dir_utils.cc | 106 std::string work_dir = current_dir; in InitProjDirs() local 114 current_dir = work_dir + slashCh + work; in InitProjDirs()
|
/third_party/boost/boost/process/detail/windows/ |
D | start_dir.hpp | 26 exec.work_dir = s_.c_str(); in on_setup()
|
D | executor.hpp | 197 work_dir, // LPCSTR_ lpCurrentDirectory, in operator ()() 238 const Char * work_dir = nullptr; member in boost::process::detail::windows::executor
|
/third_party/libcoap/scripts/ |
D | dist.sh | 56 work_dir=$PWD
|
/third_party/grpc/src/python/grpcio_tests/tests/protoc_plugin/ |
D | _python_plugin_test.py | 643 work_dir = tempfile.mkdtemp() 647 work_dir, "--grpc_python_out", work_dir, 659 shutil.rmtree(work_dir)
|
/third_party/boost/boost/process/ |
D | extend.hpp | 296 const Char * work_dir = nullptr; member
|