Home | History | Annotate | Download | only in MC

Lines Matching refs:FileName

301 unsigned MCContext::GetDwarfFile(StringRef Directory, StringRef FileName,
323 // Separate the directory part from the basename of the FileName.
324 StringRef tFileName = sys::path::filename(FileName);
326 Directory = sys::path::parent_path(FileName);
328 FileName = tFileName;
358 char *Buf = static_cast<char *>(Allocate(FileName.size()));
359 memcpy(Buf, FileName.data(), FileName.size());
360 File = new (*this) MCDwarfFile(StringRef(Buf, FileName.size()), DirIndex);