Home | History | Annotate | Download | only in DebugIR

Lines Matching defs:Dir

49 void insertCUDescriptor(Module *M, StringRef File, StringRef Dir,
52 B.createCompileUnit(dwarf::DW_LANG_C99, File, Dir, Producer, false, "", 0);
68 // allocate a sufficiently sized buffer to store the current working dir.
83 /// Returns a concatenated path string consisting of Dir and Filename
84 string getPath(const string &Dir, const string &Filename) {
86 sys::path::append(Path, Dir, Filename);
87 Path.resize(Dir.size() + Filename.size() + 2);
88 Path[Dir.size() + Filename.size() + 1] = '\0';
100 string Dir = "MadeUpDirectory";
102 string Path(getPath(Dir, File));