Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp603 String AbsPath{FilePath}; in isIgnored() local
606 make_absolute(AbsPath); in isIgnored()
607 remove_dots(AbsPath, /*remove_dot_dot=*/true); in isIgnored()
609 if (StringRef Dir{parent_path(AbsPath)}; PrevDir != Dir) { in isIgnored()
642 const auto Pathname{convert_to_slash(AbsPath)}; in isIgnored()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp507 llvm::SmallString<128> AbsPath(FileName); in fillRealPathName() local
512 makeAbsolutePath(AbsPath); in fillRealPathName()
513 llvm::sys::path::remove_dots(AbsPath, /*remove_dot_dot=*/true); in fillRealPathName()
514 UFE->RealPathName = std::string(AbsPath); in fillRealPathName()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp536 auto AbsPath = getAbsolutePath(*OverlayFileSystem, SourcePath); in run() local
537 if (!AbsPath) { in run()
540 << llvm::toString(AbsPath.takeError()) << "\n"; in run()
543 AbsolutePaths.push_back(std::move(*AbsPath)); in run()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp853 std::optional<SmallString<128>> AbsPath; in createOutputFileImpl() local
858 AbsPath.emplace(OutputPath); in createOutputFileImpl()
859 FileMgr->FixupRelativePath(*AbsPath); in createOutputFileImpl()
860 OutputPath = *AbsPath; in createOutputFileImpl()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1429 SmallString<128> AbsPath; in readConfigFile() local
1431 AbsPath.assign(CfgFile); in readConfigFile()
1432 if (std::error_code EC = FS->makeAbsolute(AbsPath)) in readConfigFile()
1435 CfgFile = AbsPath.str(); in readConfigFile()