Searched refs:__underlying_ (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | range_default_formatter.h | 99 range_formatter<remove_cvref_t<ranges::range_reference_t<__maybe_const_r>>, _CharT> __underlying_; 103 __underlying_.set_separator(__separator); 107 __underlying_.set_brackets(__opening_bracket, __closing_bracket); 112 return __underlying_.parse(__ctx); 118 return __underlying_.format(__range, __ctx); 127 range_formatter<__element_type, _CharT> __underlying_; 133 __underlying_.set_brackets(_LIBCPP_STATICALLY_WIDEN(_CharT, "{"), _LIBCPP_STATICALLY_WIDEN(_CharT, "}")); 134 __underlying_.underlying().set_brackets({}, {}); 135 __underlying_.underlying().set_separator(_LIBCPP_STATICALLY_WIDEN(_CharT, ": ")); 140 return __underlying_ [all...] |
H A D | range_formatter.h | 52 _LIBCPP_HIDE_FROM_ABI constexpr formatter<_Tp, _CharT>& underlying() noexcept { return __underlying_; } in underlying() 53 _LIBCPP_HIDE_FROM_ABI constexpr const formatter<_Tp, _CharT>& underlying() const noexcept { return __underlying_; } 88 __begin = __underlying_.parse(__ctx); in parse() 115 std::__set_debug_format(__underlying_); in parse() 203 __ctx.advance_to(__underlying_.format(__e, __ctx)); in __format_as_sequence() 248 [[maybe_unused]] typename _ParseContext::iterator __result = __underlying_.parse(__ctx); 254 formatter<_Tp, _CharT> __underlying_; in __parse_empty_range_underlying_spec() 260 formatter<_Tp, _CharT> __underlying_; global() member
|
H A D | container_adaptor.h | 42 formatter<ranges::ref_view<__maybe_const_container>, _CharT> __underlying_; member 47 return __underlying_.parse(__ctx); in parse() 53 return __underlying_.format(__adaptor.__get_container(), __ctx); in format()
|
H A D | formatter_tuple.h | 75 auto& __formatter = std::get<_Index>(__underlying_); in parse() 123 __ctx.advance_to(std::get<_Index>(__underlying_).format(std::get<_Index>(__tuple), __ctx)); in __format_tuple() 132 tuple<formatter<remove_cvref_t<_Args>, _CharT>...> __underlying_;
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | vector | 2988 formatter<bool, _CharT> __underlying_; 2993 return __underlying_.parse(__ctx); 2998 return __underlying_.format(__ref, __ctx);
|