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 38 mcld::raw_fd_ostream::raw_fd_ostream(const char *pFilename, function in class:mcld::raw_fd_ostream
41 : llvm::raw_fd_ostream(pFilename, pErrorInfo, pFlags),
46 mcld::raw_fd_ostream::raw_fd_ostream(int pFD, function in class:mcld::raw_fd_ostream
49 : llvm::raw_fd_ostream(pFD, pShouldClose, pUnbuffered),
54 mcld::raw_fd_ostream::~raw_fd_ostream()
58 void mcld::raw_fd_ostream::setColor(bool pEnable)
65 mcld::raw_fd_ostream::changeColor(enum llvm::raw_ostream::Colors pColor
    [all...]
  /external/llvm/lib/Support/
raw_ostream.cpp 420 // raw_fd_ostream
423 /// raw_fd_ostream - Open the specified file for writing. If an error
427 raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, function in class:raw_fd_ostream
459 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
461 raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) function in class:raw_fd_ostream
479 raw_fd_ostream::~raw_fd_ostream() {
507 void raw_fd_ostream::write_impl(const char *Ptr, size_t Size)
    [all...]
  /external/llvm/include/llvm/Support/
raw_ostream.h 308 /// raw_fd_ostream - A raw_ostream that writes to a file descriptor.
310 class raw_fd_ostream : public raw_ostream { class in namespace:llvm
339 /// raw_fd_ostream - Open the specified file for writing. If an error occurs,
349 raw_fd_ostream(const char *Filename, std::string &ErrorInfo,
352 /// raw_fd_ostream ctor - FD is the file descriptor that this writes to. If
354 raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
356 ~raw_fd_ostream();
386 /// has_error - Return the value of the flag in this raw_fd_ostream indicating

Completed in 135 milliseconds