HomeSort by: relevance | last modified time | path
    Searched refs:ParentPath (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
aslxrefout.c 235 char *ParentPath;
263 ParentPath = AcpiNsGetNormalizedPathname (Node, TRUE);
266 ParentPath, AcpiUtGetTypeName (Node->Type));
267 ACPI_FREE (ParentPath);
329 ParentPath = AcpiNsGetNormalizedPathname (
333 Length, ParentPath);
334 ACPI_FREE (ParentPath);
344 ParentPath = AcpiNsGetNormalizedPathname (
349 ParentPath);
350 ACPI_FREE (ParentPath);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinkerDeclContext.h 38 StringRef ParentPath = sys::path::parent_path(Path);
40 // If the ParentPath has not yet been resolved, resolve and cache it for
42 if (!ResolvedPaths.count(ParentPath)) {
44 sys::fs::real_path(ParentPath, RealPath);
46 {ParentPath, std::string(RealPath.c_str(), RealPath.size())});
50 SmallString<256> ResolvedPath(ResolvedPaths[ParentPath]);
  /src/sys/external/bsd/acpica/dist/common/
dmextern.c 201 char *ParentPath;
248 ParentPath = AcpiNsGetExternalPathname (Node);
249 if (!ParentPath)
254 Length = (strlen (ParentPath) + strlen (Path) + 1);
255 if (ParentPath[1])
258 * If ParentPath is not just a simple '\', increment the length
259 * for the required dot separator (ParentPath.Path)
265 if (*ParentPath == AML_ROOT_PREFIX)
283 strcpy (Fullpath, &ParentPath[Index]);
289 if (ParentPath[1]
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
SourceCoverageView.cpp 43 SmallString<256> ParentPath = sys::path::parent_path(Path);
44 sys::path::remove_dots(ParentPath, /*remove_dot_dots=*/true);
45 sys::path::append(FullPath, sys::path::relative_path(ParentPath));
  /src/sys/external/bsd/acpica/dist/debugger/
dbcmds.c 912 char *ParentPath;
918 ParentPath = AcpiNsGetNormalizedPathname (Node, TRUE);
919 if (!ParentPath)
940 AcpiOsPrintf ("\nDevice: %s\n", ParentPath);
1128 ACPI_FREE (ParentPath);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
llvm-lto.cpp 479 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
480 if (!ParentPath.empty()) {
482 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
483 error(EC, "error creating the directory '" + ParentPath + "'");
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
AMDGPU.cpp 250 auto ParentPath = llvm::sys::path::parent_path(RealClangPath);
251 if (ParentPath != InstallDir)
252 ROCmSearchDirs.emplace_back(DeduceROCmPath(ParentPath));
MSVC.cpp 191 llvm::StringRef ParentPath = llvm::sys::path::parent_path(TestPath);
192 llvm::StringRef ParentFilename = llvm::sys::path::filename(ParentPath);
194 Path = std::string(ParentPath);
202 Path = std::string(ParentPath);
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTO.cpp 1315 StringRef ParentPath = llvm::sys::path::parent_path(NewPath.str());
1316 if (!ParentPath.empty()) {
1318 if (std::error_code EC = llvm::sys::fs::create_directories(ParentPath))
1319 llvm::errs() << "warning: could not create directory '" << ParentPath

Completed in 34 milliseconds