Home | History | Annotate | Download | only in Serialization

Lines Matching defs:Path

50 #include "llvm/Support/Path.h"
885 /// \brief If a header file is not found at the path that we expect it to be
898 assert(path::is_absolute(OriginalDir));
901 path::const_iterator fileDirI = path::begin(path::parent_path(filePath)),
902 fileDirE = path::end(path::parent_path(filePath));
903 path::const_iterator origDirI = path::begin(OriginalDir),
904 origDirE = path::end(OriginalDir);
905 // Skip the common path components from filePath and OriginalDir.
912 path::append(currPCHPath, "..");
913 path::append(currPCHPath, fileDirI, fileDirE);
914 path::append(currPCHPath, path::filename(Filename));
1062 return std::make_pair(M->ImportLoc, llvm::sys::path::stem(M->FileName));
1723 // erroneously trigger this error-handling path.
1767 /// not an absolute path, add the system root to the beginning of the file
1775 if (Filename.empty() || llvm::sys::path::is_absolute(Filename))
3117 CurrentDir = llvm::sys::path::parent_path(FileName);
4049 std::string Path = ReadString(Record, Idx);
4055 HeaderSearchOptions::Entry(Path, Group, IsFramework, IgnoreSysRoot));