Home | History | Annotate | Download | only in Support

Lines Matching refs:raw_fd_ostream

426 //  raw_fd_ostream
429 /// raw_fd_ostream - Open the specified file for writing. If an error
433 raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
466 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
468 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered)
487 raw_fd_ostream::~raw_fd_ostream() {
515 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size) {
565 void raw_fd_ostream::close() {
577 uint64_t raw_fd_ostream::seek(uint64_t off) {
585 size_t raw_fd_ostream::preferred_buffer_size() const {
605 raw_ostream &raw_fd_ostream::changeColor(enum Colors colors, bool bold,
621 raw_ostream &raw_fd_ostream::resetColor() {
634 raw_ostream &raw_fd_ostream::reverseColor() {
647 bool raw_fd_ostream::is_displayed() const {
651 bool raw_fd_ostream::has_colors() const {
665 static raw_fd_ostream S(STDOUT_FILENO, true);
673 static raw_fd_ostream S(STDERR_FILENO, false, true);