Home
last modified time | relevance | path

Searched refs:ParentDir (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/clang/lib/Driver/ToolChains/
DAMDGPU.cpp127 StringRef ParentDir = llvm::sys::path::parent_path(InstallDir); in getInstallationPathCandidates() local
128 StringRef ParentName = llvm::sys::path::filename(ParentDir); in getInstallationPathCandidates()
132 ParentDir = llvm::sys::path::parent_path(ParentDir); in getInstallationPathCandidates()
133 ParentName = llvm::sys::path::filename(ParentDir); in getInstallationPathCandidates()
138 ParentDir = llvm::sys::path::parent_path(ParentDir); in getInstallationPathCandidates()
140 Candidates.emplace_back(ParentDir.str(), /*StrictChecking=*/true); in getInstallationPathCandidates()
/external/rust/cxx/gen/src/
Dcheck.rs19 if let Some(Component::CurDir) | Some(Component::ParentDir) = first_component { in check_dot_includes()
/external/llvm/tools/llvm-cov/
DSourceCoverageView.cpp61 auto ParentDir = sys::path::parent_path(FullPath); in createOutputStream() local
62 if (auto E = sys::fs::create_directories(ParentDir)) in createOutputStream()
/external/llvm-project/llvm/tools/llvm-cov/
DSourceCoverageView.cpp62 auto ParentDir = sys::path::parent_path(FullPath); in createOutputStream() local
63 if (auto E = sys::fs::create_directories(ParentDir)) in createOutputStream()
/external/rust/cxx/gen/build/src/
Dpaths.rs23 Component::ParentDir => drop(rel_path.pop()), // noop if empty in local_relative_path()
/external/clang/lib/Lex/
DModuleMap.cpp625 if (const DirectoryEntry *ParentDir = FileMgr.getDirectory(Parent)) { in inferFrameworkModule() local
629 inferred = InferredDirectories.find(ParentDir); in inferFrameworkModule()
635 HeaderInfo.lookupModuleMapFile(ParentDir, IsFrameworkDir)) { in inferFrameworkModule()
636 parseModuleMapFile(ModMapFile, Attrs.IsSystem, ParentDir); in inferFrameworkModule()
637 inferred = InferredDirectories.find(ParentDir); in inferFrameworkModule()
642 std::make_pair(ParentDir, InferredDirectory())).first; in inferFrameworkModule()
/external/llvm-project/llvm/tools/llvm-ar/
Dllvm-ar.cpp503 StringRef ParentDir = sys::path::parent_path(ArchiveName); in doDisplayTable() local
504 if (!ParentDir.empty()) in doDisplayTable()
505 outs() << sys::path::convert_to_slash(ParentDir) << '/'; in doDisplayTable()
/external/llvm-project/clang/lib/Lex/
DModuleMap.cpp967 if (auto ParentDir = FileMgr.getDirectory(Parent)) { in inferFrameworkModule() local
971 inferred = InferredDirectories.find(*ParentDir); in inferFrameworkModule()
977 HeaderInfo.lookupModuleMapFile(*ParentDir, IsFrameworkDir)) { in inferFrameworkModule()
978 parseModuleMapFile(ModMapFile, Attrs.IsSystem, *ParentDir); in inferFrameworkModule()
979 inferred = InferredDirectories.find(*ParentDir); in inferFrameworkModule()
984 std::make_pair(*ParentDir, InferredDirectory())).first; in inferFrameworkModule()
/external/llvm/unittests/Support/
DPath.cpp341 auto ParentDir = *++It; in TEST() local
351 EXPECT_EQ(ParentDir, ParentDir2); in TEST()
/external/rust/crates/zip/src/
Dread.rs724 Component::ParentDir => depth = depth.checked_sub(1)?, in enclosed_name()
/external/llvm-project/clang/lib/CodeGen/
DCGStmtOpenMP.cpp4416 const OMPExecutableDirective &ParentDir = *OMPParentLoopDirectiveForScan; in EmitOMPScanDirective() local
4426 for (const auto *C : ParentDir.getClausesOfKind<OMPReductionClause>()) { in EmitOMPScanDirective()
4440 if (ParentDir.getDirectiveKind() == OMPD_simd || in EmitOMPScanDirective()
4442 isOpenMPSimdDirective(ParentDir.getDirectiveKind()))) { in EmitOMPScanDirective()
4508 *this, ParentDir.getEndLoc(), Privates, LHSs, RHSs, ReductionOps, in EmitOMPScanDirective()
4542 const auto *IVExpr = cast<OMPLoopDirective>(ParentDir) in EmitOMPScanDirective()
4574 const auto *IVExpr = cast<OMPLoopDirective>(ParentDir) in EmitOMPScanDirective()
/external/vm_tools/p9/src/server/
Dtests.rs56 Component::ParentDir => { in join_path()