Home
last modified time | relevance | path

Searched refs:__loc (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__memory/
H A Dconstruct_at.h65 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __destroy_at(_Tp* __loc) { in __destroy_at() argument
66 _LIBCPP_ASSERT_NON_NULL(__loc != nullptr, "null pointer given to destroy_at"); in __destroy_at()
67 __loc->~_Tp(); in __destroy_at()
72 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __destroy_at(_Tp* __loc) { in __destroy_at() argument
73 _LIBCPP_ASSERT_NON_NULL(__loc != nullptr, "null pointer given to destroy_at"); in __destroy_at()
74 std::__destroy(std::begin(*__loc), std::end(*__loc)); in __destroy_at()
99 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void destroy_at(_Tp* __loc) { in destroy_at() argument
100 std::__destroy_at(__loc); in destroy_at()
105 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void destroy_at(_Tp* __loc) { in destroy_at() argument
106 std::__destroy_at(__loc); in destroy_at()
H A Duninitialized_algorithms.h404 …DE_FROM_ABI constexpr void __allocator_construct_at_multidimensional(_Alloc& __alloc, _Tp* __loc) { in __allocator_construct_at_multidimensional() argument
412 _Tp& __array = *__loc; in __allocator_construct_at_multidimensional()
424 allocator_traits<_Alloc>::construct(__alloc, __loc); in __allocator_construct_at_multidimensional()
440 __allocator_construct_at_multidimensional(_Alloc& __alloc, _Tp* __loc, _Arg const& __arg) { in __allocator_construct_at_multidimensional() argument
452 _Tp& __array = *__loc; in __allocator_construct_at_multidimensional()
463 allocator_traits<_Alloc>::construct(__alloc, __loc, __arg); in __allocator_construct_at_multidimensional()
/freebsd/include/xlocale/
H A D_ctype.h71 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
73 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
76 __maskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) in __maskrune_l() argument
79 _RuneLocale *runes = __runes_for_locale(__loc, &__limit); in __maskrune_l()
80 return ((__c < 0 || __c >= _CACHED_RUNES) ? ___runetype_l(__c, __loc) : in __maskrune_l()
85 __istype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) in __istype_l() argument
87 return (!!__maskrune_l(__c, __f, __loc)); in __istype_l()
96 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
98 __sbistype_l(__ct_rune_t __c, unsigned long __f, locale_t __loc);
101 __sbmaskrune_l(__ct_rune_t __c, unsigned long __f, locale_t __loc) in __sbmaskrune_l() argument
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/
H A Dwin32.h163 lconv* localeconv_l(locale_t& __loc);
164 size_t mbrlen_l(const char* __restrict __s, size_t __n, mbstate_t* __restrict __ps, locale_t __loc);
166 …ct __dst, const char** __restrict __src, size_t __len, mbstate_t* __restrict __ps, locale_t __loc);
167 size_t wcrtomb_l(char* __restrict __s, wchar_t __wc, mbstate_t* __restrict __ps, locale_t __loc);
169 …estrict __pwc, const char* __restrict __s, size_t __n, mbstate_t* __restrict __ps, locale_t __loc);
175 locale_t __loc);
181 locale_t __loc);
182 wint_t btowc_l(int __c, locale_t __loc);
183 int wctob_l(wint_t __c, locale_t __loc);
199 …_LIBCPP_HIDE_FROM_ABI int islower_l(int __c, _locale_t __loc) { return _islower_l((int)__c, __loc)… in islower_l() argument
[all …]
H A Dlocale_guard.h24 _LIBCPP_HIDE_FROM_ABI __libcpp_locale_guard(locale_t& __loc) : __old_loc_(uselocale(__loc)) {} in __libcpp_locale_guard()
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_functions.h540 locale __loc, in requires()
545 … std::__format_context_create(std::move(__out_it), __args, std::move(__loc))); in requires()
550 std::__format_context_create(__buffer.__make_output_iterator(), __args, std::move(__loc))); in requires()
557 vformat_to(_OutIt __out_it, locale __loc, string_view __fmt, format_args __args) { in vformat_to() argument
558 return std::__vformat_to(std::move(__out_it), std::move(__loc), __fmt, __args); in vformat_to()
564 vformat_to(_OutIt __out_it, locale __loc, wstring_view __fmt, wformat_args __args) { in vformat_to() argument
565 return std::__vformat_to(std::move(__out_it), std::move(__loc), __fmt, __args); in vformat_to()
571 format_to(_OutIt __out_it, locale __loc, format_string<_Args...> __fmt, _Args&&... __args) { in format_to() argument
572 …return std::vformat_to(std::move(__out_it), std::move(__loc), __fmt.get(), std::make_format_args(_… in format_to()
578 format_to(_OutIt __out_it, locale __loc, wformat_string<_Args...> __fmt, _Args&&... __args) { in format_to() argument
[all …]
H A Dformat_context.h58 optional<std::locale>&& __loc = nullopt) {
59 return std::basic_format_context(std::move(__out_it), __args, std::move(__loc));
124 … _OutIt __out_it, basic_format_args<basic_format_context> __args, optional<std::locale>&& __loc) in _LIBCPP_PREFERRED_NAME()
125 : __out_it_(std::move(__out_it)), __args_(__args), __loc_(std::move(__loc)) {} in _LIBCPP_PREFERRED_NAME()
H A Dformatter_floating_point.h500 std::locale __loc,
502 const auto& __np = std::use_facet<numpunct<_CharT>>(__loc);
/freebsd/contrib/llvm-project/libcxx/src/
H A Dstd_stream.h48 virtual void imbue(const locale& __loc);
84 void __stdinbuf<_CharT>::imbue(const locale& __loc) { in __stdinbuf()
85 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc); in __stdinbuf()
256 virtual void imbue(const locale& __loc); in pbackfail()
377 void __stdoutbuf<_CharT>::imbue(const locale& __loc) { in overflow()
379 __cv_ = &use_facet<codecvt<char_type, char, state_type> >(__loc); in overflow()
93 imbue(const locale & __loc) imbue() argument
436 imbue(const locale & __loc) imbue() argument
H A Dlocale.cpp3960 static bool checked_string_to_char_convert(char& dest, const char* ptr, locale_t __loc) { in checked_string_to_char_convert() argument
3972 if (!checked_string_to_wchar_convert(wout, ptr, __loc)) in checked_string_to_char_convert()
3975 if ((res = __libcpp_wctob_l(wout, __loc)) != char_traits<char>::eof()) { in checked_string_to_char_convert()
/freebsd/contrib/llvm-project/libcxx/include/
H A D__locale104 …_LIBCPP_HIDE_FROM_ABI explicit locale(__private_constructor_tag, __imp* __loc) : __locale_(__loc) …
661 inline _LIBCPP_HIDE_FROM_ABI bool isspace(_CharT __c, const locale& __loc) {
662 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::space, __c);
666 inline _LIBCPP_HIDE_FROM_ABI bool isprint(_CharT __c, const locale& __loc) {
667 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::print, __c);
671 inline _LIBCPP_HIDE_FROM_ABI bool iscntrl(_CharT __c, const locale& __loc) {
672 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::cntrl, __c);
676 inline _LIBCPP_HIDE_FROM_ABI bool isupper(_CharT __c, const locale& __loc) {
677 return std::use_facet<ctype<_CharT> >(__loc).is(ctype_base::upper, __c);
681 inline _LIBCPP_HIDE_FROM_ABI bool islower(_CharT __c, const locale& __loc) {
[all …]
H A Dlocale421 locale __loc = __iob.getloc();
422 const numpunct<_CharT>& __np = use_facet<numpunct<_CharT> >(__loc);
444 locale __loc = __iob.getloc();
445 use_facet<ctype<_Tp> >(__loc).widen(__src, __src + __int_chr_cnt, __atoms);
460 locale __loc = __iob.getloc();
461 std::use_facet<ctype<_CharT> >(__loc).widen(__src, __src + __int_chr_cnt, __atoms);
462 const numpunct<_CharT>& __np = std::use_facet<numpunct<_CharT> >(__loc);
471 locale __loc = __iob.getloc();
472 std::use_facet<ctype<_CharT> >(__loc).widen(__src, __src + __fp_chr_cnt, __atoms);
473 const numpunct<_CharT>& __np = std::use_facet<numpunct<_CharT> >(__loc);
[all …]
H A Dstreambuf146 inline _LIBCPP_HIDE_FROM_ABI_AFTER_V1 locale pubimbue(const locale& __loc) {
147 imbue(__loc);
149 __loc_ = __loc;
264 virtual void imbue(const locale& __loc);
H A Dios316 locale imbue(const locale& __loc);
604 _LIBCPP_HIDE_FROM_ABI locale imbue(const locale& __loc);
674 inline _LIBCPP_HIDE_FROM_ABI locale basic_ios<_CharT, _Traits>::imbue(const locale& __loc) {
676 ios_base::imbue(__loc);
678 rdbuf()->pubimbue(__loc);
H A Dfstream297 void imbue(const locale& __loc) override;
1019 void basic_filebuf<_CharT, _Traits>::imbue(const locale& __loc) {
1021 __cv_ = &std::use_facet<codecvt<char_type, char, state_type> >(__loc);
H A Dregex2413 _LIBCPP_HIDE_FROM_ABI locale_type imbue(locale_type __loc) {
2416 return __traits_.imbue(__loc);