Home | History | Annotate | Download | only in Support

Lines Matching refs:filename

37   /// If an exception is thrown from a region, the object removes the filename
41 SmallString<128> Filename;
46 explicit FileRemover(const Twine& filename, bool deleteIt = true)
48 filename.toVector(Filename);
54 sys::fs::remove(Filename);
61 void setFile(const Twine& filename, bool deleteIt = true) {
64 sys::fs::remove(Filename);
67 Filename.clear();
68 filename.toVector(Filename);