Home | History | Annotate | Download | only in Serialization

Lines Matching defs:Path

52 #include "llvm/Support/Path.h"
1116 /// \brief If a header file is not found at the path that we expect it to be
1129 assert(path::is_absolute(OriginalDir));
1132 path::const_iterator fileDirI = path::begin(path::parent_path(filePath)),
1133 fileDirE = path::end(path::parent_path(filePath));
1134 path::const_iterator origDirI = path::begin(OriginalDir),
1135 origDirE = path::end(OriginalDir);
1136 // Skip the common path components from filePath and OriginalDir.
1143 path::append(currPCHPath, "..");
1144 path::append(currPCHPath, fileDirI, fileDirE);
1145 path::append(currPCHPath, path::filename(Filename));
2135 // erroneously trigger this error-handling path.
2190 /// not an absolute path, add the system root to the beginning of the file
2198 if (Filename.empty() || llvm::sys::path::is_absolute(Filename))
3682 CurrentDir = llvm::sys::path::parent_path(FileName);
4633 std::string Path = ReadString(Record, Idx);
4639 HeaderSearchOptions::Entry(Path, Group, IsFramework, IgnoreSysRoot));