reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-rc/ResourceFileWriter.cpp
 1517   Path.assign(Cwd.begin(), Cwd.end());
 1518   sys::path::append(Path, File);
 1519   if (sys::fs::exists(Path))
 1520     return errorOrToExpected(MemoryBuffer::getFile(Path, -1, false));
 1525   Path.assign(InputFileDir.begin(), InputFileDir.end());
 1526   sys::path::append(Path, File);
 1527   if (sys::fs::exists(Path))
 1528     return errorOrToExpected(MemoryBuffer::getFile(Path, -1, false));
 1532     Path.assign(ForceInclude.begin(), ForceInclude.end());
 1533     sys::path::append(Path, File);
 1534     if (sys::fs::exists(Path))
 1535       return errorOrToExpected(MemoryBuffer::getFile(Path, -1, false));