Home
last modified time | relevance | path

Searched refs:current_path (Results 1 – 25 of 34) sorted by relevance

12

/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.current_path/
Dcurrent_path.pass.cpp35 ASSERT_NOT_NOEXCEPT(current_path()); in TEST_CASE()
36 ASSERT_NOT_NOEXCEPT(current_path(ec)); in TEST_CASE()
37 ASSERT_NOT_NOEXCEPT(current_path(p)); in TEST_CASE()
38 ASSERT_NOEXCEPT(current_path(p, ec)); in TEST_CASE()
44 const path p = current_path(ec); in TEST_CASE()
49 const path p2 = current_path(); in TEST_CASE()
56 current_path(new_path); in TEST_CASE()
57 TEST_CHECK(current_path() == new_path); in TEST_CASE()
64 const path old_p = current_path(); in TEST_CASE()
65 current_path(p, ec); in TEST_CASE()
[all …]
/external/libchrome/base/
Dvalues.cc383 std::string current_path(path); in Set() local
385 for (size_t delimiter_position = current_path.find('.'); in Set()
387 delimiter_position = current_path.find('.')) { in Set()
389 std::string key(current_path, 0, delimiter_position); in Set()
397 current_path.erase(0, delimiter_position + 1); in Set()
400 current_dictionary->SetWithoutPathExpansion(current_path, in Set()
468 StringPiece current_path(path); in Get() local
470 for (size_t delimiter_position = current_path.find('.'); in Get()
472 delimiter_position = current_path.find('.')) { in Get()
475 current_path.substr(0, delimiter_position).as_string(), in Get()
[all …]
/external/autotest/server/cros/chaos_lib/
Dchaos_parser.py297 current_path = os.path.join(root, name)
299 status = current_path
301 open(current_path).read()):
/external/protobuf/src/google/protobuf/util/
Dfield_mask_util.cc267 string current_path = prefix.empty() ? it->first : prefix + "." + it->first; in MergeToFieldMask() local
268 MergeToFieldMask(current_path, it->second, out); in MergeToFieldMask()
332 string current_path = prefix.empty() ? it->first : prefix + "." + it->first; in MergeLeafNodesToTree() local
333 MergeLeafNodesToTree(current_path, it->second, out); in MergeLeafNodesToTree()
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.system_complete/
Dsystem_complete.pass.cpp49 const path base = current_path(); in TEST_CASE()
/external/libchrome/base/files/
Dfile_util_posix.cc809 FilePath current_path = base; in VerifyPathControlledByUser() local
810 if (!VerifySpecificPathControlledByUser(current_path, owner_uid, group_gids)) in VerifyPathControlledByUser()
814 current_path = current_path.Append(*ip); in VerifyPathControlledByUser()
816 current_path, owner_uid, group_gids)) in VerifyPathControlledByUser()
/external/toolchain-utils/crosperf/
Dresults_cache_unittest.py638 current_path = os.getcwd()
639 cache_dir = os.path.join(current_path, 'test_cache/test_input')
752 current_path = os.getcwd()
753 cache_dir = os.path.join(current_path, 'test_cache/test_output')
926 current_path = os.getcwd()
927 cache_dir = os.path.join(current_path,
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.absolute/
Dabsolute.pass.cpp108 const path base = current_path(); in TEST_CASE()
/external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.canonical/
Dcanonical.pass.cpp115 TEST_CHECK(err.path2() == current_path()); in TEST_CASE()
/external/libcxx/include/experimental/
Dfilesystem77 path absolute(const path& p, const path& base=current_path());
79 path canonical(const path& p, const path& base = current_path());
121 path current_path();
122 path current_path(error_code& ec);
123 void current_path(const path& p);
124 void current_path(const path& p, error_code& ec) _NOEXCEPT;
1306 path current_path() {
1311 path current_path(error_code& __ec) {
1316 void current_path(const path& __p) {
1321 void current_path(const path& __p, error_code& __ec) _NOEXCEPT {
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DFileSystem.h170 error_code current_path(SmallVectorImpl<char> &result);
/external/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DPath.inc79 CurPathLen = 0; // No contribution from current_path needed.
92 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
181 std::error_code current_path(SmallVectorImpl<char> &result) {
/external/llvm/lib/Support/Windows/
DPath.inc79 CurPathLen = 0; // No contribution from current_path needed.
92 if (std::error_code EC = llvm::sys::fs::current_path(CurPath))
187 std::error_code current_path(SmallVectorImpl<char> &result) {
/external/llvm/tools/llvm-mc/
Dllvm-mc.cpp466 if (!sys::fs::current_path(CWD)) in main()
/external/clang/lib/StaticAnalyzer/Core/
DHTMLDiagnostics.cpp187 llvm::sys::fs::current_path(DirName); in ReportDiag()
/external/clang/lib/Tooling/
DTooling.cpp366 if (std::error_code EC = llvm::sys::fs::current_path(InitialDirectory)) in run()
/external/llvm/include/llvm/Support/
DFileSystem.h347 std::error_code current_path(SmallVectorImpl<char> &result);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFileSystem.h358 std::error_code current_path(SmallVectorImpl<char> &result);
/external/swiftshader/third_party/LLVM/lib/Support/
DPathV2.cpp613 if (error_code ec = current_path(current_dir)) return ec; in make_absolute()
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPathV2.inc98 error_code current_path(SmallVectorImpl<char> &result) {
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp449 if (sys::fs::current_path(CurPath)) return FName; in mangleName()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DPath.cpp826 else if (std::error_code ec = current_path(current_dir)) in make_absolute()
/external/llvm/lib/Support/
DPath.cpp824 else if (std::error_code ec = current_path(current_dir)) in make_absolute()
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DPathV2.inc138 error_code current_path(SmallVectorImpl<char> &result) {
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp695 sys::fs::current_path(CacheDir); in MCJITObjectCache()

12