Home
last modified time | relevance | path

Searched refs:cur_dir (Results 1 – 17 of 17) sorted by relevance

/third_party/curl/tests/
Dpathhelp.pm137 my $cur_dir;
140 chomp($cur_dir = `bash -c 'pwd -W'`);
146 $cur_dir .= '/' if length($cur_dir) > 3;
150 $cur_dir = `cmd "/c;" echo %__CD__%`;
151 if($? != 0 || substr($cur_dir, 0, 1) eq '%') {
156 $cur_dir =~ s{\n|\r}{}g;
159 $cur_dir =~ s{\\}{/}g;
161 return $cur_dir;
376 my $cur_dir;
379 $cur_dir = `bash -c 'pwd -L'`;
[all …]
/third_party/gn/src/gn/
Dlabel_unittest.cc18 const char* cur_dir; member
84 Label result = Label::Resolve(SourceDir(cur.cur_dir), std::string_view(), in TEST()
106 SourceDir cur_dir("//cur/"); in TEST() local
110 Label result = Label::Resolve(cur_dir, std::string_view(), default_toolchain, in TEST()
117 result = Label::Resolve(cur_dir, source_root, default_toolchain, in TEST()
124 result = Label::Resolve(cur_dir, source_root, default_toolchain, in TEST()
134 result = Label::Resolve(cur_dir, source_root, default_toolchain, in TEST()
Dfunction_read_file.cc55 const SourceDir& cur_dir = scope->GetSourceDir(); in RunReadFile() local
56 SourceFile source_file = cur_dir.ResolveRelativeFile( in RunReadFile()
Dfunction_write_file.cc65 const SourceDir& cur_dir = scope->GetSourceDir(); in RunWriteFile() local
66 SourceFile source_file = cur_dir.ResolveRelativeFile( in RunWriteFile()
Dvisibility_unittest.cc58 SourceDir cur_dir("//"); in TEST() local
65 ASSERT_TRUE(vis.Set(cur_dir, source_root, list, &err)); in TEST()
Dsetup.cc663 base::FilePath cur_dir; in FillSourceDir() local
664 base::GetCurrentDirectory(&cur_dir); in FillSourceDir()
665 dotfile_name_ = FindDotFile(cur_dir); in FillSourceDir()
Dcommands.cc530 SourceDir cur_dir = in ResolveFromCommandLineInput() local
534 setup, cur_dir, cur, default_toolchain_only, target_matches, in ResolveFromCommandLineInput()
/third_party/mindspore/tests/ut/python/dataset/
Dutil.py37 def _save_golden(cur_dir, golden_ref_dir, result_dict): argument
41 logger.info("cur_dir is {}".format(cur_dir))
46 def _save_golden_dict(cur_dir, golden_ref_dir, result_dict): argument
50 logger.info("cur_dir is {}".format(cur_dir))
106 cur_dir = os.path.dirname(os.path.realpath(__file__))
107 golden_ref_dir = os.path.join(cur_dir, "../../data/dataset", 'golden', filename)
110 _save_golden_dict(cur_dir, golden_ref_dir, result_dict)
138 cur_dir = os.path.dirname(os.path.realpath(__file__))
139 golden_ref_dir = os.path.join(cur_dir, "../../data/dataset", 'golden', filename)
142 _save_golden_dict(cur_dir, golden_ref_dir, result_dict)
[all …]
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/codegen/
Dgen_knobs.py38 cur_dir = os.path.dirname(os.path.abspath(__file__))
39 template_cpp = os.path.join(cur_dir, 'templates', 'gen_knobs.cpp')
40 template_h = os.path.join(cur_dir, 'templates', 'gen_knobs.h')
Dgen_llvm_types.py308 cur_dir = os.path.dirname(os.path.abspath(__file__))
309 template = os.path.join(cur_dir, 'templates', 'gen_llvm.hpp')
/third_party/nghttp2/doc/_themes/sphinx_rtd_theme/
D__init__.py18 cur_dir = path.abspath(path.dirname(path.dirname(__file__)))
19 return cur_dir
/third_party/gstreamer/gstplugins_base/tests/examples/encoding/
Dencoding.c349 gchar *cur_dir; in ensure_uri() local
350 cur_dir = g_get_current_dir (); in ensure_uri()
351 path = g_build_filename (cur_dir, location, NULL); in ensure_uri()
352 g_free (cur_dir); in ensure_uri()
/third_party/gstreamer/gstplugins_base/tools/
Dgst-discoverer.c577 gchar *cur_dir; in process_file() local
579 cur_dir = g_get_current_dir (); in process_file()
580 path = g_build_filename (cur_dir, filename, NULL); in process_file()
581 g_free (cur_dir); in process_file()
/third_party/mindspore/tests/ut/python/onnx/
Dtest_onnx.py42 cur_dir = os.path.dirname(os.path.realpath(__file__))
43 for filename in os.listdir(cur_dir):
/third_party/python/Lib/unittest/test/
Dtest_program.py390 cur_dir = os.getcwd()
393 return os.path.join(cur_dir, name)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DPath.inc552 dirent *cur_dir = ::readdir(reinterpret_cast<DIR *>(it.IterationHandle));
553 if (cur_dir == nullptr && errno != 0) {
555 } else if (cur_dir != nullptr) {
556 StringRef name(cur_dir->d_name, NAMLEN(cur_dir));
/third_party/boost/libs/filesystem/src/
Doperations.cpp1000 path cur_dir = detail::current_path(ec); in copy() local
1003 path abs_from = detail::absolute(from.parent_path(), cur_dir, ec); in copy()
1009 abs_to = detail::absolute(abs_to, cur_dir, ec); in copy()