HomeSort by relevance Sort by last modified time
    Searched defs:raw_fd_ostream (Results 1 - 4 of 4) sorted by null

  /frameworks/compile/mclinker/include/mcld/Support/
raw_ostream.h 19 class raw_fd_ostream : public llvm::raw_fd_ostream class in namespace:mcld
22 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
32 raw_fd_ostream(const char *pFilename,
36 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
38 raw_fd_ostream(int pFD, bool pShouldClose, bool pUnbuffered=false);
40 virtual ~raw_fd_ostream();
63 mcld::raw_fd_ostream &outs();
67 mcld::raw_fd_ostream &errs();
  /frameworks/compile/mclinker/lib/Support/
raw_ostream.cpp 34 mcld::raw_fd_ostream::raw_fd_ostream(const char *pFilename, function in class:mcld::raw_fd_ostream
37 : llvm::raw_fd_ostream(pFilename, pErrorInfo, pFlags),
42 mcld::raw_fd_ostream::raw_fd_ostream(int pFD, function in class:mcld::raw_fd_ostream
45 : llvm::raw_fd_ostream(pFD, pShouldClose, pUnbuffered),
50 mcld::raw_fd_ostream::~raw_fd_ostream()
54 void mcld::raw_fd_ostream::setColor(bool pEnable)
61 mcld::raw_fd_ostream::changeColor(enum llvm::raw_ostream::Colors pColor
    [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 419 // raw_fd_ostream
422 /// raw_fd_ostream - Open the specified file for writing. If an error
426 raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, function in class:raw_fd_ostream
476 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
478 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) function in class:raw_fd_ostream
496 raw_fd_ostream::~raw_fd_ostream() {
524 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size)
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 307 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
309 class raw_fd_ostream : public raw_ostream { class in namespace:llvm
340 /// F_Excl - When opening a file, this flag makes raw_fd_ostream
354 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
364 raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
367 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
369 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
371 ~raw_fd_ostream();
401 /// has_error - Return the value of the flag in this raw_fd_ostream indicating

Completed in 139 milliseconds