LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
llvm::format_object_base Class Referenceabstract

#include <Format.h>

Inheritance diagram for llvm::format_object_base:
Inheritance graph
[legend]
Collaboration diagram for llvm::format_object_base:
Collaboration graph
[legend]

Public Member Functions

 format_object_base (const char *fmt)
 
virtual ~format_object_base ()
 
unsigned print (char *Buffer, unsigned BufferSize) const
 

Protected Member Functions

virtual void home ()
 
virtual int snprint (char *Buffer, unsigned BufferSize) const =0
 snprint - Call snprintf() for this object, on the given buffer and size. More...
 

Protected Attributes

const char * Fmt
 

Detailed Description

format_object_base - This is a helper class used for handling formatted output. It is the abstract base class of a templated derived class.

Definition at line 41 of file Format.h.

Constructor & Destructor Documentation

llvm::format_object_base::format_object_base ( const char *  fmt)
inline

Definition at line 50 of file Format.h.

virtual llvm::format_object_base::~format_object_base ( )
inlinevirtual

Definition at line 51 of file Format.h.

Member Function Documentation

void format_object_base::home ( )
protectedvirtual

Definition at line 416 of file raw_ostream.cpp.

unsigned llvm::format_object_base::print ( char *  Buffer,
unsigned  BufferSize 
) const
inline

print - Format the object into the specified buffer. On success, this returns the length of the formatted string. If the buffer is too small, this returns a length to retry with, which will be larger than BufferSize.

Definition at line 56 of file Format.h.

References N, and snprint().

Referenced by llvm::raw_ostream::operator<<().

virtual int llvm::format_object_base::snprint ( char *  Buffer,
unsigned  BufferSize 
) const
protectedpure virtual

Member Data Documentation

const char* llvm::format_object_base::Fmt
protected

The documentation for this class was generated from the following files: