Home
last modified time | relevance | path

Searched refs:AbsPath (Results 1 – 5 of 5) sorted by relevance

/openbsd/gnu/llvm/clang/tools/clang-extdef-mapping/
H A DClangExtDefMapGen.cpp162 SmallString<128> AbsPath(AstPath); in HandleAST() local
163 FM.makeAbsolutePath(AbsPath); in HandleAST()
166 MapExtDefNamesConsumer(Unit->getASTContext(), AbsPath); in HandleAST()
/openbsd/gnu/llvm/clang/lib/Basic/
H A DFileManager.cpp529 llvm::SmallString<128> AbsPath(FileName); in fillRealPathName() local
534 makeAbsolutePath(AbsPath); in fillRealPathName()
535 llvm::sys::path::remove_dots(AbsPath, /*remove_dot_dot=*/true); in fillRealPathName()
536 UFE->RealPathName = std::string(AbsPath.str()); in fillRealPathName()
/openbsd/gnu/llvm/clang/lib/Tooling/
H A DTooling.cpp507 auto AbsPath = getAbsolutePath(*OverlayFileSystem, SourcePath); in run() local
508 if (!AbsPath) { in run()
511 << llvm::toString(AbsPath.takeError()) << "\n"; in run()
514 AbsolutePaths.push_back(std::move(*AbsPath)); in run()
/openbsd/gnu/llvm/clang/lib/Frontend/
H A DCompilerInstance.cpp852 std::optional<SmallString<128>> AbsPath; in createOutputFileImpl() local
854 AbsPath.emplace(OutputPath); in createOutputFileImpl()
855 FileMgr->FixupRelativePath(*AbsPath); in createOutputFileImpl()
856 OutputPath = *AbsPath; in createOutputFileImpl()
/openbsd/gnu/llvm/llvm/lib/Support/
H A DCommandLine.cpp1431 SmallString<128> AbsPath; in readConfigFile() local
1433 AbsPath.assign(CfgFile); in readConfigFile()
1434 if (std::error_code EC = FS->makeAbsolute(AbsPath)) in readConfigFile()
1437 CfgFile = AbsPath.str(); in readConfigFile()