Classes | Typedefs | Enumerations | Functions
fmt::internal Namespace Reference

Classes

struct  Arg
 
struct  ArgArray
 
struct  ArgArray< N, false >
 
struct  ArgArray< N, true >
 
class  ArgFormatterBase
 
class  ArgMap
 
struct  ArgType
 
class  BasicCharTraits
 
struct  BasicData
 
class  CharTraits
 
class  CharTraits< char >
 
class  CharTraits< wchar_t >
 
struct  Conditional
 
struct  Conditional< false, T, F >
 
struct  ConvertToInt
 
struct  ConvertToIntImpl
 
struct  ConvertToIntImpl2
 
struct  ConvertToIntImpl2< T, true >
 
struct  ConvertToIntImpl< T, true >
 
struct  DummyInt
 
struct  DummyStream
 
struct  EnableIf
 
struct  EnableIf< true, T >
 
class  FixedBuffer
 
class  FormatBuf
 
class  FormatterBase
 
struct  IntTraits
 
struct  LConvCheck
 
class  MakeArg
 
struct  MakeUnsigned
 
class  MakeValue
 
class  MemoryBuffer
 
struct  NamedArg
 
struct  Not
 
struct  Not< false >
 
struct  NoThousandsSep
 
struct  Null
 
class  PrintfArgFormatter
 
class  PrintfFormatter
 
class  RuntimeError
 
struct  SignChecker
 
struct  SignChecker< false >
 
class  ThousandsSep
 
struct  TypeSelector
 
struct  TypeSelector< false >
 
struct  Value
 
struct  WCharHelper
 
struct  WCharHelper< T, wchar_t >
 

Typedefs

typedef BasicData Data
 
typedef std::numeric_limits< fmt::internal::DummyIntFPUtil
 
typedef char No[2]
 
typedef char Yes[1]
 

Enumerations

enum  { INLINE_BUFFER_SIZE = 500 }
 

Functions

DummyInt _ecvt_s (...)
 
DummyInt _finite (...)
 
DummyInt _isnan (...)
 
template<typename Char >
void check_sign (const Char *&s, const Arg &arg)
 
template<typename T >
const_check (T value)
 
Yesconvert (std::ostream &)
 
Yesconvert (fmt::ULongLong)
 
Noconvert (...)
 
unsigned count_digits (uint64_t n)
 
 FMT_DISABLE_CONVERSION_TO_INT (float)
 
 FMT_DISABLE_CONVERSION_TO_INT (double)
 
 FMT_DISABLE_CONVERSION_TO_INT (long double)
 
 FMT_SPECIALIZE_MAKE_UNSIGNED (char, unsigned char)
 
 FMT_SPECIALIZE_MAKE_UNSIGNED (signed char, unsigned char)
 
 FMT_SPECIALIZE_MAKE_UNSIGNED (short, unsigned short)
 
 FMT_SPECIALIZE_MAKE_UNSIGNED (int, unsigned)
 
 FMT_SPECIALIZE_MAKE_UNSIGNED (long, unsigned long)
 
 FMT_SPECIALIZE_MAKE_UNSIGNED (LongLong, ULongLong)
 
template<typename UInt , typename Char , typename ThousandsSep >
void format_decimal (Char *buffer, UInt value, unsigned num_digits, ThousandsSep thousands_sep)
 
template<typename UInt , typename Char >
void format_decimal (Char *buffer, UInt value, unsigned num_digits)
 
FMT_API void format_system_error (fmt::Writer &out, int error_code, fmt::StringRef message) FMT_NOEXCEPT
 
template<typename T >
T & get ()
 
template<typename Char >
bool is_name_start (Char c)
 
template<typename T >
bool is_negative (T value)
 
DummyInt isinf (...)
 
DummyInt isnan (...)
 
template<typename T >
T * make_ptr (T *ptr, std::size_t)
 
uint64_t make_type ()
 
template<typename T >
uint64_t make_type (const T &arg)
 
uint64_t make_type (FMT_GEN15(FMT_ARG_TYPE_DEFAULT))
 
Nooperator<< (std::ostream &, int)
 
template<typename Char >
unsigned parse_nonnegative_int (const Char *&s)
 
FMT_API void report_unknown_type (char code, const char *type)
 
void require_numeric_argument (const Arg &arg, char spec)
 
DummyInt signbit (...)
 
template<typename LConv >
StringRef thousands_sep (LConv *lc, LConvCheck< char *LConv::*,&LConv::thousands_sep >=0)
 
fmt::StringRef thousands_sep (...)
 
template<typename Int >
MakeUnsigned< Int >::Type to_unsigned (Int value)
 

Typedef Documentation

Definition at line 993 of file format.h.

typedef std::numeric_limits<fmt::internal::DummyInt> fmt::internal::FPUtil

Definition at line 319 of file format.h.

typedef char fmt::internal::No[2]

Definition at line 1253 of file format.h.

typedef char fmt::internal::Yes[1]

Definition at line 1252 of file format.h.

Enumeration Type Documentation

anonymous enum
Enumerator
INLINE_BUFFER_SIZE 

Definition at line 643 of file format.h.

Function Documentation

DummyInt fmt::internal::_ecvt_s (   ...)
inline

Definition at line 327 of file format.h.

DummyInt fmt::internal::_finite (   ...)
inline

Definition at line 335 of file format.h.

DummyInt fmt::internal::_isnan (   ...)
inline

Definition at line 343 of file format.h.

template<typename Char >
void fmt::internal::check_sign ( const Char *&  s,
const Arg arg 
)

Definition at line 4122 of file format.h.

template<typename T >
T fmt::internal::const_check ( value)
inline

Definition at line 351 of file format.h.

Yes& fmt::internal::convert ( std::ostream &  )
Yes& fmt::internal::convert ( fmt::ULongLong  )
No& fmt::internal::convert (   ...)
unsigned fmt::internal::count_digits ( uint64_t  n)
inline

Definition at line 1007 of file format.h.

fmt::internal::FMT_DISABLE_CONVERSION_TO_INT ( float  )
fmt::internal::FMT_DISABLE_CONVERSION_TO_INT ( double  )
fmt::internal::FMT_DISABLE_CONVERSION_TO_INT ( long  double)
fmt::internal::FMT_SPECIALIZE_MAKE_UNSIGNED ( char  ,
unsigned  char 
)
fmt::internal::FMT_SPECIALIZE_MAKE_UNSIGNED ( signed  char,
unsigned  char 
)
fmt::internal::FMT_SPECIALIZE_MAKE_UNSIGNED ( short  ,
unsigned  short 
)
fmt::internal::FMT_SPECIALIZE_MAKE_UNSIGNED ( int  ,
unsigned   
)
fmt::internal::FMT_SPECIALIZE_MAKE_UNSIGNED ( long  ,
unsigned  long 
)
fmt::internal::FMT_SPECIALIZE_MAKE_UNSIGNED ( LongLong  ,
ULongLong   
)
template<typename UInt , typename Char , typename ThousandsSep >
void fmt::internal::format_decimal ( Char *  buffer,
UInt  value,
unsigned  num_digits,
ThousandsSep  thousands_sep 
)
inline

Definition at line 1068 of file format.h.

template<typename UInt , typename Char >
void fmt::internal::format_decimal ( Char *  buffer,
UInt  value,
unsigned  num_digits 
)
inline

Definition at line 1096 of file format.h.

FMT_FUNC void fmt::internal::format_system_error ( fmt::Writer out,
int  error_code,
fmt::StringRef  message 
)

Definition at line 600 of file format.cc.

template<typename T >
T& fmt::internal::get ( )
template<typename Char >
bool fmt::internal::is_name_start ( Char  c)
inline

Definition at line 4080 of file format.h.

template<typename T >
bool fmt::internal::is_negative ( value)
inline

Definition at line 944 of file format.h.

DummyInt fmt::internal::isinf (   ...)
inline

Definition at line 331 of file format.h.

DummyInt fmt::internal::isnan (   ...)
inline

Definition at line 339 of file format.h.

template<typename T >
T* fmt::internal::make_ptr ( T *  ptr,
std::size_t   
)
inline

Definition at line 654 of file format.h.

uint64_t fmt::internal::make_type ( )
inline

Definition at line 2473 of file format.h.

template<typename T >
uint64_t fmt::internal::make_type ( const T &  arg)
inline

Definition at line 2479 of file format.h.

uint64_t fmt::internal::make_type ( FMT_GEN15(FMT_ARG_TYPE_DEFAULT )
inline

Definition at line 2540 of file format.h.

No& fmt::internal::operator<< ( std::ostream &  ,
int   
)
template<typename Char >
unsigned fmt::internal::parse_nonnegative_int ( const Char *&  s)

Definition at line 4088 of file format.h.

FMT_FUNC void fmt::internal::report_unknown_type ( char  code,
const char *  type 
)

Definition at line 509 of file format.cc.

void fmt::internal::require_numeric_argument ( const Arg arg,
char  spec 
)
inline

Definition at line 4111 of file format.h.

DummyInt fmt::internal::signbit (   ...)
inline

Definition at line 323 of file format.h.

template<typename LConv >
StringRef fmt::internal::thousands_sep ( LConv *  lc,
LConvCheck< char *LConv::*,&LConv::thousands_sep >  = 0 
)
inline

Definition at line 1343 of file format.h.

fmt::StringRef fmt::internal::thousands_sep (   ...)
inline

Definition at line 1349 of file format.h.

template<typename Int >
MakeUnsigned<Int>::Type fmt::internal::to_unsigned ( Int  value)
inline

Definition at line 635 of file format.h.



ros_opcua_impl_freeopcua
Author(s): Denis Štogl
autogenerated on Tue Jan 19 2021 03:12:09