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.cpp607 String AbsPath{FilePath}; in isIgnored() local
610 make_absolute(AbsPath); in isIgnored()
611 remove_dots(AbsPath, /*remove_dot_dot=*/true); in isIgnored()
613 if (StringRef Dir{parent_path(AbsPath)}; PrevDir != Dir) { in isIgnored()
646 const auto Pathname{convert_to_slash(AbsPath)}; in isIgnored()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp521 llvm::SmallString<128> AbsPath(FileName); in fillRealPathName() local
526 makeAbsolutePath(AbsPath); in fillRealPathName()
527 llvm::sys::path::remove_dots(AbsPath, /*remove_dot_dot=*/true); in fillRealPathName()
528 UFE->RealPathName = std::string(AbsPath); in fillRealPathName()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp538 auto AbsPath = getAbsolutePath(*OverlayFileSystem, SourcePath); in run() local
539 if (!AbsPath) { in run()
542 << llvm::toString(AbsPath.takeError()) << "\n"; in run()
545 AbsolutePaths.push_back(std::move(*AbsPath)); in run()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp856 std::optional<SmallString<128>> AbsPath; in createOutputFileImpl() local
861 AbsPath.emplace(OutputPath); in createOutputFileImpl()
862 FileMgr->FixupRelativePath(*AbsPath); in createOutputFileImpl()
863 OutputPath = *AbsPath; in createOutputFileImpl()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCommandLine.cpp1412 SmallString<128> AbsPath; in readConfigFile() local
1414 AbsPath.assign(CfgFile); in readConfigFile()
1415 if (std::error_code EC = FS->makeAbsolute(AbsPath)) in readConfigFile()
1418 CfgFile = AbsPath.str(); in readConfigFile()