LLVM 19.0.0git
Classes | Namespaces | Typedefs
FormatProviders.h File Reference
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/StringSwitch.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Support/FormatVariadicDetails.h"
#include "llvm/Support/NativeFormatting.h"
#include <array>
#include <optional>
#include <type_traits>

Go to the source code of this file.

Classes

struct  llvm::detail::use_integral_formatter< T >
 
struct  llvm::detail::use_char_formatter< T >
 
struct  llvm::detail::is_cstring< T >
 
struct  llvm::detail::use_string_formatter< T >
 
struct  llvm::detail::use_pointer_formatter< T >
 
struct  llvm::detail::use_double_formatter< T >
 
class  llvm::detail::HelperFunctions
 
struct  llvm::format_provider< T, std::enable_if_t< detail::use_integral_formatter< T >::value > >
 Implementation of format_provider<T> for integral arithmetic types. More...
 
struct  llvm::format_provider< T, std::enable_if_t< detail::use_pointer_formatter< T >::value > >
 Implementation of format_provider<T> for integral pointer types. More...
 
struct  llvm::format_provider< T, std::enable_if_t< detail::use_string_formatter< T >::value > >
 Implementation of format_provider<T> for c-style strings and string objects such as std::string and llvm::StringRef. More...
 
struct  llvm::format_provider< Twine >
 Implementation of format_provider<T> for llvm::Twine. More...
 
struct  llvm::format_provider< T, std::enable_if_t< detail::use_char_formatter< T >::value > >
 Implementation of format_provider<T> for characters. More...
 
struct  llvm::format_provider< bool >
 Implementation of format_provider<T> for type bool More...
 
struct  llvm::format_provider< T, std::enable_if_t< detail::use_double_formatter< T >::value > >
 Implementation of format_provider<T> for floating point types. More...
 
struct  llvm::detail::range_item_has_provider< IterT >
 
class  llvm::format_provider< llvm::iterator_range< IterT > >
 Implementation of format_provider<T> for ranges. More...
 

Namespaces

namespace  llvm
 This is an optimization pass for GlobalISel generic memory operations.
 
namespace  llvm::detail
 These are wrappers over isa* function that allow them to be used in generic algorithms such as llvm:all_of, llvm::none_of, etc.
 

Typedefs

template<typename IterT >
using llvm::detail::IterValue = typename std::iterator_traits< IterT >::value_type