LLVM  8.0.1
Functions
NativeFormatting.cpp File Reference
#include "llvm/Support/NativeFormatting.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/SmallString.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/Format.h"
#include <float.h>
Include dependency graph for NativeFormatting.cpp:

Go to the source code of this file.

Functions

template<typename T , std::size_t N>
static int format_to_buffer (T Value, char(&Buffer)[N])
 
static void writeWithCommas (raw_ostream &S, ArrayRef< char > Buffer)
 
template<typename T >
static void write_unsigned_impl (raw_ostream &S, T N, size_t MinDigits, IntegerStyle Style, bool IsNegative)
 
template<typename T >
static void write_unsigned (raw_ostream &S, T N, size_t MinDigits, IntegerStyle Style, bool IsNegative=false)
 
template<typename T >
static void write_signed (raw_ostream &S, T N, size_t MinDigits, IntegerStyle Style)
 

Function Documentation

◆ format_to_buffer()

template<typename T , std::size_t N>
static int format_to_buffer ( T  Value,
char(&)  Buffer[N] 
)
static

Definition at line 22 of file NativeFormatting.cpp.

References llvm::sys::path::end().

Referenced by write_unsigned_impl().

◆ write_signed()

template<typename T >
static void write_signed ( raw_ostream S,
T  N,
size_t  MinDigits,
IntegerStyle  Style 
)
static

Definition at line 89 of file NativeFormatting.cpp.

References write_unsigned().

Referenced by llvm::write_integer().

◆ write_unsigned()

template<typename T >
static void write_unsigned ( raw_ostream S,
T  N,
size_t  MinDigits,
IntegerStyle  Style,
bool  IsNegative = false 
)
static

Definition at line 78 of file NativeFormatting.cpp.

References write_unsigned_impl().

Referenced by llvm::write_integer(), and write_signed().

◆ write_unsigned_impl()

template<typename T >
static void write_unsigned_impl ( raw_ostream S,
T  N,
size_t  MinDigits,
IntegerStyle  Style,
bool  IsNegative 
)
static

◆ writeWithCommas()

static void writeWithCommas ( raw_ostream S,
ArrayRef< char Buffer 
)
static