Home | History | Annotate | Download | only in Support

Lines Matching refs:FS

399 raw_ostream &raw_ostream::operator<<(const FormattedString &FS) {
400 unsigned Len = FS.Str.size();
401 int PadAmount = FS.Width - Len;
402 if (FS.RightJustify && (PadAmount > 0))
404 this->operator<<(FS.Str);
405 if (!FS.RightJustify && (PadAmount > 0))
491 sys::fs::OpenFlags Flags) {
499 if (!(Flags & sys::fs::F_Text))
505 EC = sys::fs::openFileForWrite(Filename, FD, Flags);
513 sys::fs::OpenFlags Flags)
530 sys::fs::file_status Status;
532 SupportsSeeking = !EC && Status.type() == sys::fs::file_type::regular_file;
708 static raw_fd_ostream S("-", EC, sys::fs::F_None);